Skip to content

Commit ba365ce

Browse files
yoshi-automationmiguelvelezsa
authored andcommitted
feat(looker): update the API
#### looker:v1 The following keys were added: - schemas.Instance.properties.classType.description - schemas.Instance.properties.classType.enum - schemas.Instance.properties.classType.enumDescriptions - schemas.Instance.properties.classType.type
1 parent 4f9d063 commit ba365ce

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

discovery/looker-v1.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@
710710
}
711711
}
712712
},
713-
"revision": "20250615",
713+
"revision": "20250721",
714714
"rootUrl": "https://looker.googleapis.com/",
715715
"schemas": {
716716
"AdminSettings": {
@@ -952,6 +952,20 @@
952952
"$ref": "AdminSettings",
953953
"description": "Looker Instance Admin settings."
954954
},
955+
"classType": {
956+
"description": "Optional. Storage class of the instance.",
957+
"enum": [
958+
"CLASS_TYPE_UNSPECIFIED",
959+
"R1",
960+
"P1"
961+
],
962+
"enumDescriptions": [
963+
"Unspecified storage class.",
964+
"Filestore.",
965+
"PD SSD."
966+
],
967+
"type": "string"
968+
},
955969
"consumerNetwork": {
956970
"description": "Network name in the consumer project. Format: `projects/{project}/global/networks/{network}`. Note that the consumer network may be in a different GCP project than the consumer project that is hosting the Looker Instance.",
957971
"type": "string"

src/apis/looker/v1.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,10 @@ export namespace looker_v1 {
290290
* Looker Instance Admin settings.
291291
*/
292292
adminSettings?: Schema$AdminSettings;
293+
/**
294+
* Optional. Storage class of the instance.
295+
*/
296+
classType?: string | null;
293297
/**
294298
* Network name in the consumer project. Format: `projects/{project\}/global/networks/{network\}`. Note that the consumer network may be in a different GCP project than the consumer project that is hosting the Looker Instance.
295299
*/
@@ -1111,6 +1115,7 @@ export namespace looker_v1 {
11111115
* // request body parameters
11121116
* // {
11131117
* // "adminSettings": {},
1118+
* // "classType": "my_classType",
11141119
* // "consumerNetwork": "my_consumerNetwork",
11151120
* // "createTime": "my_createTime",
11161121
* // "customDomain": {},
@@ -1576,6 +1581,7 @@ export namespace looker_v1 {
15761581
* // Example response
15771582
* // {
15781583
* // "adminSettings": {},
1584+
* // "classType": "my_classType",
15791585
* // "consumerNetwork": "my_consumerNetwork",
15801586
* // "createTime": "my_createTime",
15811587
* // "customDomain": {},
@@ -2032,6 +2038,7 @@ export namespace looker_v1 {
20322038
* // request body parameters
20332039
* // {
20342040
* // "adminSettings": {},
2041+
* // "classType": "my_classType",
20352042
* // "consumerNetwork": "my_consumerNetwork",
20362043
* // "createTime": "my_createTime",
20372044
* // "customDomain": {},

0 commit comments

Comments
 (0)