-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
240 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Package client | ||
/* | ||
* YuanJing OpenAPI SDK for Go | ||
* | ||
* | ||
*/ | ||
package model | ||
|
||
type ConsoleAdminListInstancesOfProjectForms struct { | ||
NextToken *string `json:"nextToken,omitempty"` | ||
MaxResult *int64 `json:"maxResult,omitempty"` | ||
ProjectId string `json:"projectId"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Package client | ||
/* | ||
* YuanJing OpenAPI SDK for Go | ||
* | ||
* | ||
*/ | ||
package model | ||
|
||
type ConsoleAdminListInstancesOfProjectResult struct { | ||
Success string `json:"success,omitempty"` | ||
Model ConsoleAdminListInstancesOfProjectResultModel `json:"model,omitempty"` | ||
MsgInfo string `json:"msgInfo,omitempty"` | ||
MsgCode string `json:"msgCode,omitempty"` | ||
} |
14 changes: 14 additions & 0 deletions
14
client/model/consoleadminlistinstancesofprojectresultmodel.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Package client | ||
/* | ||
* YuanJing OpenAPI SDK for Go | ||
* | ||
* | ||
*/ | ||
package model | ||
|
||
type ConsoleAdminListInstancesOfProjectResultModel struct { | ||
MaxResult int32 `json:"maxResult,omitempty"` | ||
NextToken string `json:"nextToken,omitempty"` | ||
DataList []ConsoleAdminListInstancesOfProjectResultModelDataList `json:"dataList,omitempty"` | ||
Count int32 `json:"count,omitempty"` | ||
} |
24 changes: 24 additions & 0 deletions
24
client/model/consoleadminlistinstancesofprojectresultmodeldatalist.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Package client | ||
/* | ||
* YuanJing OpenAPI SDK for Go | ||
* | ||
* | ||
*/ | ||
package model | ||
|
||
type ConsoleAdminListInstancesOfProjectResultModelDataList struct { | ||
CommoditySpecificationCnName string `json:"commoditySpecificationCnName,omitempty"` | ||
BandwidthChargeType string `json:"bandwidthChargeType,omitempty"` | ||
EffectiveTime int64 `json:"effectiveTime,omitempty"` | ||
PlatformType string `json:"platformType,omitempty"` | ||
PaymentType string `json:"paymentType,omitempty"` | ||
Token string `json:"token,omitempty"` | ||
ExpireTime int64 `json:"expireTime,omitempty"` | ||
CommodityInstanceName string `json:"commodityInstanceName,omitempty"` | ||
CommodityInstanceId string `json:"commodityInstanceId,omitempty"` | ||
Region string `json:"region,omitempty"` | ||
ProjectId string `json:"projectId,omitempty"` | ||
ContainerCount string `json:"containerCount,omitempty"` | ||
Status string `json:"status,omitempty"` | ||
TradeChannel string `json:"tradeChannel,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Package client | ||
/* | ||
* YuanJing OpenAPI SDK for Go | ||
* | ||
* | ||
*/ | ||
package model | ||
|
||
type GetPairResult struct { | ||
// 临时token | ||
Token string `json:"token,omitempty"` | ||
// 临时secretKey | ||
AccessSecret string `json:"accessSecret,omitempty"` | ||
// token失效时间戳,单位:秒 | ||
Expired string `json:"expired,omitempty"` | ||
// 返回码 | ||
Code string `json:"code,omitempty"` | ||
// 返回信息 | ||
Message string `json:"message,omitempty"` | ||
} |