Skip to content

Commit

Permalink
Generated 2020-03-26 for Workorder.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Apr 26, 2020
1 parent 857741f commit 6e81da0
Show file tree
Hide file tree
Showing 26 changed files with 1,286 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2020-04-26 Version: v1.61.143
- Generated 2020-03-26 for `Workorder`.
- New api publish.

2020-04-25 Version: v1.61.142
- Generated 2015-01-01 for `R-kvstore`.
- Generated 2015-01-01 for `R-kvstore`.
Expand Down
129 changes: 129 additions & 0 deletions services/workorder/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

107 changes: 107 additions & 0 deletions services/workorder/close_ticket.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

115 changes: 115 additions & 0 deletions services/workorder/create_ticket.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions services/workorder/endpoint.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package workorder

// EndpointMap Endpoint Data
var EndpointMap map[string]string

// EndpointType regional or central
var EndpointType = "central"

// GetEndpointMap Get Endpoint Data Map
func GetEndpointMap() map[string]string {
if EndpointMap == nil {
EndpointMap = map[string]string{
"ap-southeast-1": "workorder.ap-southeast-1.aliyuncs.com",
"ap-northeast-1": "workorder.ap-northeast-1.aliyuncs.com",
}
}
return EndpointMap
}

// GetEndpointType Get Endpoint Type Value
func GetEndpointType() string {
return EndpointType
}
Loading

0 comments on commit 6e81da0

Please sign in to comment.