Codebase list golang-github-denverdino-aliyungo / 5e90b6f7-7c63-482b-970d-bddc0c6a112c/upstream/sid oss / regions_test.go
5e90b6f7-7c63-482b-970d-bddc0c6a112c/upstream/sid

Tree @5e90b6f7-7c63-482b-970d-bddc0c6a112c/upstream/sid (Download .tar.gz)

regions_test.go @5e90b6f7-7c63-482b-970d-bddc0c6a112c/upstream/sidraw · history · blame

package oss_test

import (
	"github.com/denverdino/aliyungo/oss"

	"testing"
)

func TestRegionEndpoint(t *testing.T) {
	t.Log(oss.Beijing.GetInternalEndpoint("test", false))
	t.Log(oss.Beijing.GetVPCInternalEndpoint("test", true))
	t.Log(oss.USEast1.GetVPCInternalEndpoint("test", true))
}