Skip to content

Commit

Permalink
SDK Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Leaseweb CI committed Oct 10, 2024
1 parent 01b82eb commit d2a3024
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion abuse/configuration.go

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

2 changes: 1 addition & 1 deletion aggregationPack/configuration.go

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

2 changes: 1 addition & 1 deletion dedicatedServer/configuration.go

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

2 changes: 1 addition & 1 deletion invoice/configuration.go

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

2 changes: 1 addition & 1 deletion publicCloud/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ paths:
name: type
required: false
schema:
$ref: '#/components/schemas/instanceType'
$ref: '#/components/schemas/typeName'
style: form
responses:
"200":
Expand Down
4 changes: 2 additions & 2 deletions publicCloud/api_public_cloud.go

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

2 changes: 1 addition & 1 deletion publicCloud/configuration.go

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

4 changes: 2 additions & 2 deletions publicCloud/docs/PublicCloudAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -2479,7 +2479,7 @@ func main() {
imageId := "UBUNTU_22_04_64BIT" // string | Available Images can be obtained using `/v1/images`. (optional)
state := openapiclient.state("CREATING") // State | The instance's current state(s), separated by commas. (optional)
region := openapiclient.regionName("eu-west-3") // RegionName | Available regions can be obtained using `/v1/regions` (optional)
type_ := *openapiclient.NewInstanceType(openapiclient.typeName("lsw.m3.large"), *openapiclient.NewResources(*openapiclient.NewCpu(int32(2), "vCPU"), *openapiclient.NewMemory(float32(3.75), "GiB"), *openapiclient.NewNetworkSpeed(int32(10), "Gbps"), *openapiclient.NewNetworkSpeed(int32(10), "Gbps")), []openapiclient.StorageType{openapiclient.storageType("LOCAL")}, *openapiclient.NewPrices("USD", "$", *openapiclient.NewPrice("0.00004", "0.03000"), *openapiclient.NewStorage(*openapiclient.NewPrice("0.00004", "0.03000"), ))) // InstanceType | Available instance types for your region can be obtained using `/v1/instanceTypes`. (optional)
type_ := openapiclient.typeName("lsw.m3.large") // TypeName | Available instance types for your region can be obtained using `/v1/instanceTypes`. (optional)

configuration := openapiclient.NewConfiguration()
apiClient := openapiclient.NewAPIClient(configuration)
Expand Down Expand Up @@ -2514,7 +2514,7 @@ Name | Type | Description | Notes
**imageId** | **string** | Available Images can be obtained using `/v1/images`. |
**state** | [**State**](State.md) | The instance's current state(s), separated by commas. |
**region** | [**RegionName**](RegionName.md) | Available regions can be obtained using `/v1/regions` |
**type_** | [**InstanceType**](InstanceType.md) | Available instance types for your region can be obtained using `/v1/instanceTypes`. |
**type_** | [**TypeName**](TypeName.md) | Available instance types for your region can be obtained using `/v1/instanceTypes`. |

### Return type

Expand Down

0 comments on commit d2a3024

Please sign in to comment.