Skip to content

Commit e0db6a5

Browse files
feat(all): auto-regenerate discovery clients (#2366)
1 parent f40db7f commit e0db6a5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1566
-666
lines changed

apphub/v1/apphub-api.json

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@
396396
}
397397
}
398398
},
399-
"revision": "20240104",
399+
"revision": "20240116",
400400
"rootUrl": "https://apphub.googleapis.com/",
401401
"schemas": {
402402
"AuditConfig": {
@@ -640,6 +640,37 @@
640640
},
641641
"type": "object"
642642
},
643+
"ReconciliationOperationMetadata": {
644+
"description": "Operation metadata returned by the CLH during resource state reconciliation.",
645+
"id": "ReconciliationOperationMetadata",
646+
"properties": {
647+
"deleteResource": {
648+
"deprecated": true,
649+
"description": "DEPRECATED. Use exclusive_action instead.",
650+
"type": "boolean"
651+
},
652+
"exclusiveAction": {
653+
"description": "Excluisive action returned by the CLH.",
654+
"enum": [
655+
"UNKNOWN_REPAIR_ACTION",
656+
"DELETE",
657+
"RETRY"
658+
],
659+
"enumDeprecated": [
660+
false,
661+
true,
662+
false
663+
],
664+
"enumDescriptions": [
665+
"Unknown repair action.",
666+
"The resource has to be deleted. When using this bit, the CLH should fail the operation. DEPRECATED. Instead use DELETE_RESOURCE OperationSignal in SideChannel.",
667+
"This resource could not be repaired but the repair should be tried again at a later time. This can happen if there is a dependency that needs to be resolved first- e.g. if a parent resource must be repaired before a child resource."
668+
],
669+
"type": "string"
670+
}
671+
},
672+
"type": "object"
673+
},
643674
"SetIamPolicyRequest": {
644675
"description": "Request message for `SetIamPolicy` method.",
645676
"id": "SetIamPolicyRequest",

apphub/v1/apphub-gen.go

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

batch/v1/batch-api.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"baseUrl": "https://batch.googleapis.com/",
1313
"batchPath": "batch",
1414
"canonicalName": "Batch",
15-
"description": "An API to manage the running of batch jobs on Google Cloud Platform.",
15+
"description": "An API to manage the running of batch resources on Google Cloud Platform.",
1616
"discoveryVersion": "v1",
1717
"documentationLink": "https://cloud.google.com/batch/",
1818
"fullyEncodeReservedExpansion": true,
@@ -561,7 +561,7 @@
561561
}
562562
}
563563
},
564-
"revision": "20240103",
564+
"revision": "20240112",
565565
"rootUrl": "https://batch.googleapis.com/",
566566
"schemas": {
567567
"Accelerator": {
@@ -774,11 +774,11 @@
774774
"id": "AgentScript",
775775
"properties": {
776776
"path": {
777-
"description": "Script file path on the host VM. To specify an interpreter, please add a `#!`(also known as [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix))) as the first line of the file.(For example, to execute the script using bash, `#!/bin/bash` should be the first line of the file. To execute the script using`Python3`, `#!/usr/bin/env python3` should be the first line of the file.) Otherwise, the file will by default be excuted by `/bin/sh`.",
777+
"description": "Script file path on the host VM. To specify an interpreter, please add a `#!`(also known as [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix))) as the first line of the file.(For example, to execute the script using bash, `#!/bin/bash` should be the first line of the file. To execute the script using`Python3`, `#!/usr/bin/env python3` should be the first line of the file.) Otherwise, the file will by default be executed by `/bin/sh`.",
778778
"type": "string"
779779
},
780780
"text": {
781-
"description": "Shell script text. To specify an interpreter, please add a `#!\\n` at the beginning of the text.(For example, to execute the script using bash, `#!/bin/bash\\n` should be added. To execute the script using`Python3`, `#!/usr/bin/env python3\\n` should be added.) Otherwise, the script will by default be excuted by `/bin/sh`.",
781+
"description": "Shell script text. To specify an interpreter, please add a `#!\\n` at the beginning of the text.(For example, to execute the script using bash, `#!/bin/bash\\n` should be added. To execute the script using`Python3`, `#!/usr/bin/env python3\\n` should be added.) Otherwise, the script will by default be executed by `/bin/sh`.",
782782
"type": "string"
783783
}
784784
},
@@ -1946,11 +1946,11 @@
19461946
"id": "Script",
19471947
"properties": {
19481948
"path": {
1949-
"description": "Script file path on the host VM. To specify an interpreter, please add a `#!`(also known as [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix))) as the first line of the file.(For example, to execute the script using bash, `#!/bin/bash` should be the first line of the file. To execute the script using`Python3`, `#!/usr/bin/env python3` should be the first line of the file.) Otherwise, the file will by default be excuted by `/bin/sh`.",
1949+
"description": "Script file path on the host VM. To specify an interpreter, please add a `#!`(also known as [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix))) as the first line of the file.(For example, to execute the script using bash, `#!/bin/bash` should be the first line of the file. To execute the script using`Python3`, `#!/usr/bin/env python3` should be the first line of the file.) Otherwise, the file will by default be executed by `/bin/sh`.",
19501950
"type": "string"
19511951
},
19521952
"text": {
1953-
"description": "Shell script text. To specify an interpreter, please add a `#!\\n` at the beginning of the text.(For example, to execute the script using bash, `#!/bin/bash\\n` should be added. To execute the script using`Python3`, `#!/usr/bin/env python3\\n` should be added.) Otherwise, the script will by default be excuted by `/bin/sh`.",
1953+
"description": "Shell script text. To specify an interpreter, please add a `#!\\n` at the beginning of the text.(For example, to execute the script using bash, `#!/bin/bash\\n` should be added. To execute the script using`Python3`, `#!/usr/bin/env python3\\n` should be added.) Otherwise, the script will by default be executed by `/bin/sh`.",
19541954
"type": "string"
19551955
}
19561956
},
@@ -2097,7 +2097,7 @@
20972097
"type": "boolean"
20982098
},
20992099
"runAsNonRoot": {
2100-
"description": "Optional. If not set or set to false, Batch will use root user to execute runnables. If set to true, Batch will make sure to run the runnables using non-root user. Currently, the non-root user Batch used is generated by OS login. Reference: https://cloud.google.com/compute/docs/oslogin",
2100+
"description": "Optional. If not set or set to false, Batch uses the root user to execute runnables. If set to true, Batch will make sure to run the runnables using a non-root user. Currently, the non-root user Batch used is generated by OS Login. For more information, see [About OS Login](https://cloud.google.com/compute/docs/oslogin).",
21012101
"type": "boolean"
21022102
},
21032103
"schedulingPolicy": {

batch/v1/batch-gen.go

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

connectors/v1/connectors-api.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2354,7 +2354,7 @@
23542354
}
23552355
}
23562356
},
2357-
"revision": "20240102",
2357+
"revision": "20240116",
23582358
"rootUrl": "https://connectors.googleapis.com/",
23592359
"schemas": {
23602360
"AuditConfig": {
@@ -3434,7 +3434,7 @@
34343434
"type": "string"
34353435
},
34363436
"serviceAccount": {
3437-
"description": "Required. Service account used by runtime plane to access auth config secrets.",
3437+
"description": "Optional. Service account used by runtime plane to access auth config secrets.",
34383438
"type": "string"
34393439
},
34403440
"specLocation": {
@@ -3957,6 +3957,10 @@
39573957
"description": "Optional. Private Connectivity Enabled.",
39583958
"type": "boolean"
39593959
},
3960+
"proxyDestinationConfig": {
3961+
"$ref": "DestinationConfig",
3962+
"description": "Optional. Proxy for Eventing auto-registration."
3963+
},
39603964
"registrationDestinationConfig": {
39613965
"$ref": "DestinationConfig",
39623966
"description": "Registration endpoint for auto registration."
@@ -4023,6 +4027,10 @@
40234027
},
40244028
"type": "array"
40254029
},
4030+
"proxyDestinationConfig": {
4031+
"$ref": "DestinationConfigTemplate",
4032+
"description": "Proxy destination config template."
4033+
},
40264034
"registrationDestinationConfig": {
40274035
"$ref": "DestinationConfigTemplate",
40284036
"description": "Registration host destination config template."
@@ -6004,6 +6012,11 @@
60046012
"networkConfig": {
60056013
"$ref": "NetworkConfig",
60066014
"description": "Optional. Regional network config."
6015+
},
6016+
"provisioned": {
6017+
"description": "Output only. Specifies whether the region is provisioned.",
6018+
"readOnly": true,
6019+
"type": "boolean"
60076020
}
60086021
},
60096022
"type": "object"

connectors/v1/connectors-gen.go

Lines changed: 12 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dataplex/v1/dataplex-api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4360,7 +4360,7 @@
43604360
}
43614361
}
43624362
},
4363-
"revision": "20231231",
4363+
"revision": "20240115",
43644364
"rootUrl": "https://dataplex.googleapis.com/",
43654365
"schemas": {
43664366
"Empty": {
@@ -7136,7 +7136,7 @@
71367136
"Number of resources matched with particular Query.",
71377137
"Rule processing exceeds the allowed limit.",
71387138
"Rule processing errors.",
7139-
"Governance rule prcoessing Event."
7139+
"Governance rule processing Event."
71407140
],
71417141
"type": "string"
71427142
},

dataplex/v1/dataplex-gen.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dialogflow/v2/dialogflow-api.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8327,7 +8327,7 @@
83278327
}
83288328
}
83298329
},
8330-
"revision": "20240102",
8330+
"revision": "20240113",
83318331
"rootUrl": "https://dialogflow.googleapis.com/",
83328332
"schemas": {
83338333
"GoogleCloudDialogflowCxV3AdvancedSettings": {
@@ -9288,6 +9288,10 @@
92889288
],
92899289
"type": "string"
92909290
},
9291+
"optOutConformerModelMigration": {
9292+
"description": "If `true`, the request will opt out for STT conformer model migration. This field will be deprecated once force migration takes place in June 2024.",
9293+
"type": "boolean"
9294+
},
92919295
"phraseHints": {
92929296
"description": "Optional. A list of strings containing words and phrases that the speech recognizer should recognize with higher likelihood. See [the Cloud Speech documentation](https://cloud.google.com/speech-to-text/docs/basics#phrase-hints) for more details.",
92939297
"items": {
@@ -10085,7 +10089,7 @@
1008510089
"id": "GoogleCloudDialogflowCxV3TextInput",
1008610090
"properties": {
1008710091
"text": {
10088-
"description": "Required. The UTF-8 encoded natural language text to be processed. Text length must not exceed 256 characters.",
10092+
"description": "Required. The UTF-8 encoded natural language text to be processed.",
1008910093
"type": "string"
1009010094
}
1009110095
},
@@ -11496,6 +11500,10 @@
1149611500
],
1149711501
"type": "string"
1149811502
},
11503+
"optOutConformerModelMigration": {
11504+
"description": "If `true`, the request will opt out for STT conformer model migration. This field will be deprecated once force migration takes place in June 2024.",
11505+
"type": "boolean"
11506+
},
1149911507
"phraseHints": {
1150011508
"description": "Optional. A list of strings containing words and phrases that the speech recognizer should recognize with higher likelihood. See [the Cloud Speech documentation](https://cloud.google.com/speech-to-text/docs/basics#phrase-hints) for more details.",
1150111509
"items": {
@@ -12277,7 +12285,7 @@
1227712285
"id": "GoogleCloudDialogflowCxV3beta1TextInput",
1227812286
"properties": {
1227912287
"text": {
12280-
"description": "Required. The UTF-8 encoded natural language text to be processed. Text length must not exceed 256 characters.",
12288+
"description": "Required. The UTF-8 encoded natural language text to be processed.",
1228112289
"type": "string"
1228212290
}
1228312291
},
@@ -15293,6 +15301,10 @@
1529315301
],
1529415302
"type": "string"
1529515303
},
15304+
"optOutConformerModelMigration": {
15305+
"description": "If `true`, the request will opt out for STT conformer model migration. This field will be deprecated once force migration takes place in June 2024.",
15306+
"type": "boolean"
15307+
},
1529615308
"phraseHints": {
1529715309
"deprecated": true,
1529815310
"description": "A list of strings containing words and phrases that the speech recognizer should recognize with higher likelihood. See [the Cloud Speech documentation](https://cloud.google.com/speech-to-text/docs/basics#phrase-hints) for more details. This field is deprecated. Please use [`speech_contexts`]() instead. If you specify both [`phrase_hints`]() and [`speech_contexts`](), Dialogflow will treat the [`phrase_hints`]() as a single additional [`SpeechContext`]().",

0 commit comments

Comments
 (0)