CaaS / CVPC API 開發者中心

內網路由

使用說明

describeIntranetLinks 是用於列出一組以上內網接取服務的詳細資訊。 若沒有 intranetLinkBusinessServiceId 或 orderUuid 的參數,則會根據 vpcBusinessServiceId 及 intranetGatewayBusinessServiceId 列出對應之內網接取服務的資訊。 若均未填入以上參數,則會列出所有內網接取服務資訊。

Request參數

參數 說明 備註
intranetLinkBusinessServiceId

(非必要參數)

內網接取服務識別碼列表
類型 : String
預設值 : 無
是否為複數型態 : 是
可支援多值
orderUuid

(非必要參數)

訂單編號
類型 : String
預設值 : 無
是否為複數型態 : 是
可支援多值
intranetGatewayBusinessServiceId

(非必要參數)

內網路由匣道器服務識別碼
類型 : String
預設值 : 無
是否為複數型態 : 否
vpcBusinessServiceId

(非必要參數)

VPC平台服務識別碼
類型 : String
預設值 : 無
是否為複數型態 : 否

Response參數

參數 說明 備註

requestId

(非必要參數)

請求識別碼
類型 : JSON value : string
是否為複數型態 : 否
系統自動產生
intranetLinkList 內網接取服務資訊列表
類型 : JSON value : array
是否為複數型態 : 是
IntranetLinkEntry列表

Request範例

範例 1: (查詢所有內網接取服務)
https://hws.hicloud.hinet.net/cloud_hws/api/hws/?action=describeIntranetLinks
&chtAuthType=hwspass
&version=${version}
&expires=${expires}
&accessKey=${accessKey}
&signature=${signature}

範例 2: (查詢指定內網接取服務)
https://hws.hicloud.hinet.net/cloud_hws/api/hws/?action=describeIntranetLinks
&intranetLinkBusinessServiceId=VG550100010001
&chtAuthType=hwspass
&version=${version}
&expires=${expires}
&accessKey=${accessKey}
&signature=${signature}

範例 3: (查詢指定內網路由閘道器之內網接取服務)
https://hws.hicloud.hinet.net/cloud_hws/api/hws/?action=describeIntranetLinks
&intranetGatewayBusinessServiceId=UG550100010001
&chtAuthType=hwspass
&version=${version}
&expires=${expires}
&accessKey=${accessKey}
&signature=${signature}

範例 4: (查詢指定VPC平台之內網接取服務)
https://hws.hicloud.hinet.net/cloud_hws/api/hws/?action=describeIntranetLinks
&vpcBusinessServiceId=VV550100010001
&chtAuthType=hwspass
&version=${version}
&expires=${expires}
&accessKey=${accessKey}
&signature=${signature}

		

Response範例

[
	"requestId":"xxxEXAMPLE",
{
		"orderUuid": "cvghe802-1ed4-4a2a-8078-ca0a29deeff0",
		"intranetLinkBusinessServiceId": "VG550100010001",
		"applyDate": "2012-01-01T01:01:01Z",
		"startDate": "2012-01-01T01:02:01Z",
		"endDate": null,
		"name": "myName",
		"description": "myDescription",
		"provisionStatus": "provisionok",
		"provisionMessage": null,
		"businessTag": "61abc22d-7ac2-4855-b770-f5e7cf7fdf4c",
		"regionId": "region-tw-1"
		"intranetGatewayBusinessServiceId": "UG550100010001",
		"vpcBusinessServiceId": "VV550100010001"
	},
	{
		"orderUuid": "pe0fkd0f-df4b-48d0-93bd-4f355c85b2d8",
		"intranetLinkBusinessServiceId": "VG550100010002",
		"applyDate": "2012-01-01T01:01:01Z",
		"startDate": "2012-01-01T01:02:01Z",
		"endDate": null,
		"name": "myName2",
		"description": "myDescription2",
		"provisionStatus": "provisionok",
		"provisionMessage": null,
		"businessTag": "61abc22d-7ac2-4855-b770-f5e7cf7fdf4c",
		"regionId": "region-tw-1"
		"intranetGatewayBusinessServiceId": "UG550100010001",
		"vpcBusinessServiceId": "VV550100010002"
	}
]