Skip to content

Commit

Permalink
feat(baremetalsolution): update the API
Browse files Browse the repository at this point in the history
#### baremetalsolution:v1

The following keys were changed:
- schemas.Empty.description

#### baremetalsolution:v2

The following keys were added:
- schemas.ProvisioningQuota.properties.networkBandwidth.description
- schemas.ProvisioningQuota.properties.networkBandwidth.format
- schemas.ProvisioningQuota.properties.networkBandwidth.type
- schemas.ProvisioningQuota.properties.serverCount.description
- schemas.ProvisioningQuota.properties.serverCount.format
- schemas.ProvisioningQuota.properties.serverCount.type
- schemas.ProvisioningQuota.properties.storageGib.description
- schemas.ProvisioningQuota.properties.storageGib.format
- schemas.ProvisioningQuota.properties.storageGib.type

The following keys were changed:
- schemas.Empty.description
  • Loading branch information
yoshi-automation authored and sofisl committed Apr 1, 2022
1 parent 5baadcd commit a1efc45
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
4 changes: 2 additions & 2 deletions discovery/baremetalsolution-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
}
}
},
"revision": "20220118",
"revision": "20220322",
"rootUrl": "https://baremetalsolution.googleapis.com/",
"schemas": {
"CancelOperationRequest": {
Expand All @@ -278,7 +278,7 @@
"type": "object"
},
"Empty": {
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.",
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }",
"id": "Empty",
"properties": {},
"type": "object"
Expand Down
19 changes: 17 additions & 2 deletions discovery/baremetalsolution-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1222,7 +1222,7 @@
}
}
},
"revision": "20220314",
"revision": "20220322",
"rootUrl": "https://baremetalsolution.googleapis.com/",
"schemas": {
"AllowedClient": {
Expand Down Expand Up @@ -1271,7 +1271,7 @@
"type": "object"
},
"Empty": {
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.",
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }",
"id": "Empty",
"properties": {},
"type": "object"
Expand Down Expand Up @@ -2234,6 +2234,21 @@
"description": "Output only. The name of the provisioning quota.",
"readOnly": true,
"type": "string"
},
"networkBandwidth": {
"description": "Network bandwidth, Gbps",
"format": "int64",
"type": "string"
},
"serverCount": {
"description": "Server count.",
"format": "int64",
"type": "string"
},
"storageGib": {
"description": "Storage size (GB).",
"format": "int64",
"type": "string"
}
},
"type": "object"
Expand Down
2 changes: 1 addition & 1 deletion src/apis/baremetalsolution/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export namespace baremetalsolution_v1 {
*/
export interface Schema$CancelOperationRequest {}
/**
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \} The JSON representation for `Empty` is empty JSON object `{\}`.
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
*/
export interface Schema$Empty {}
/**
Expand Down
14 changes: 13 additions & 1 deletion src/apis/baremetalsolution/v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export namespace baremetalsolution_v2 {
shareIp?: string | null;
}
/**
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \} The JSON representation for `Empty` is empty JSON object `{\}`.
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
*/
export interface Schema$Empty {}
/**
Expand Down Expand Up @@ -807,6 +807,18 @@ export namespace baremetalsolution_v2 {
* Output only. The name of the provisioning quota.
*/
name?: string | null;
/**
* Network bandwidth, Gbps
*/
networkBandwidth?: string | null;
/**
* Server count.
*/
serverCount?: string | null;
/**
* Storage size (GB).
*/
storageGib?: string | null;
}
/**
* QOS policy parameters.
Expand Down

0 comments on commit a1efc45

Please sign in to comment.