Skip to content

Commit aa5f7d4

Browse files
feat(datafusion): update the API
#### datafusion:v1beta1 The following keys were added: - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.description - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.location - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.repeated - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.type - schemas.Instance.properties.tags.additionalProperties.type - schemas.Instance.properties.tags.description - schemas.Instance.properties.tags.type #### datafusion:v1 The following keys were added: - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.description - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.location - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.repeated - resources.projects.resources.locations.methods.list.parameters.extraLocationTypes.type - schemas.Instance.properties.tags.additionalProperties.type - schemas.Instance.properties.tags.description - schemas.Instance.properties.tags.type
1 parent 9631e97 commit aa5f7d4

File tree

4 files changed

+44
-2
lines changed

4 files changed

+44
-2
lines changed

‎discovery/datafusion-v1.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@
143143
"name"
144144
],
145145
"parameters": {
146+
"extraLocationTypes": {
147+
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
148+
"location": "query",
149+
"repeated": true,
150+
"type": "string"
151+
},
146152
"filter": {
147153
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
148154
"location": "query",
@@ -732,7 +738,7 @@
732738
}
733739
}
734740
},
735-
"revision": "20250224",
741+
"revision": "20250414",
736742
"rootUrl": "https://datafusion.googleapis.com/",
737743
"schemas": {
738744
"Accelerator": {
@@ -1137,6 +1143,13 @@
11371143
"readOnly": true,
11381144
"type": "string"
11391145
},
1146+
"tags": {
1147+
"additionalProperties": {
1148+
"type": "string"
1149+
},
1150+
"description": "Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example: \"123/environment\": \"production\", \"123/costCenter\": \"marketing\"",
1151+
"type": "object"
1152+
},
11401153
"tenantProjectId": {
11411154
"description": "Output only. The name of the tenant project.",
11421155
"readOnly": true,

‎discovery/datafusion-v1beta1.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,12 @@
143143
"name"
144144
],
145145
"parameters": {
146+
"extraLocationTypes": {
147+
"description": "Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.",
148+
"location": "query",
149+
"repeated": true,
150+
"type": "string"
151+
},
146152
"filter": {
147153
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).",
148154
"location": "query",
@@ -930,7 +936,7 @@
930936
}
931937
}
932938
},
933-
"revision": "20250224",
939+
"revision": "20250414",
934940
"rootUrl": "https://datafusion.googleapis.com/",
935941
"schemas": {
936942
"Accelerator": {
@@ -1349,6 +1355,13 @@
13491355
"readOnly": true,
13501356
"type": "string"
13511357
},
1358+
"tags": {
1359+
"additionalProperties": {
1360+
"type": "string"
1361+
},
1362+
"description": "Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example: \"123/environment\": \"production\", \"123/costCenter\": \"marketing\"",
1363+
"type": "object"
1364+
},
13521365
"tenantProjectId": {
13531366
"description": "Output only. The name of the tenant project.",
13541367
"readOnly": true,

‎src/apis/datafusion/v1.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,10 @@ export namespace datafusion_v1 {
388388
* Output only. Additional information about the current state of this Data Fusion instance if available.
389389
*/
390390
stateMessage?: string | null;
391+
/**
392+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example: "123/environment": "production", "123/costCenter": "marketing"
393+
*/
394+
tags?: {[key: string]: string} | null;
391395
/**
392396
* Output only. The name of the tenant project.
393397
*/
@@ -991,6 +995,10 @@ export namespace datafusion_v1 {
991995
}
992996
export interface Params$Resource$Projects$Locations$List
993997
extends StandardParameters {
998+
/**
999+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
1000+
*/
1001+
extraLocationTypes?: string[];
9941002
/**
9951003
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
9961004
*/

‎src/apis/datafusion/v1beta1.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,10 @@ export namespace datafusion_v1beta1 {
401401
* Output only. Additional information about the current state of this Data Fusion instance if available.
402402
*/
403403
stateMessage?: string | null;
404+
/**
405+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example: "123/environment": "production", "123/costCenter": "marketing"
406+
*/
407+
tags?: {[key: string]: string} | null;
404408
/**
405409
* Output only. The name of the tenant project.
406410
*/
@@ -1137,6 +1141,10 @@ export namespace datafusion_v1beta1 {
11371141
}
11381142
export interface Params$Resource$Projects$Locations$List
11391143
extends StandardParameters {
1144+
/**
1145+
* Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations.
1146+
*/
1147+
extraLocationTypes?: string[];
11401148
/**
11411149
* A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160).
11421150
*/

0 commit comments

Comments
 (0)