Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2366)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jan 21, 2024
1 parent f40db7f commit e0db6a5
Show file tree
Hide file tree
Showing 46 changed files with 1,566 additions and 666 deletions.
33 changes: 32 additions & 1 deletion apphub/v1/apphub-api.json
Expand Up @@ -396,7 +396,7 @@
}
}
},
"revision": "20240104",
"revision": "20240116",
"rootUrl": "https://apphub.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -640,6 +640,37 @@
},
"type": "object"
},
"ReconciliationOperationMetadata": {
"description": "Operation metadata returned by the CLH during resource state reconciliation.",
"id": "ReconciliationOperationMetadata",
"properties": {
"deleteResource": {
"deprecated": true,
"description": "DEPRECATED. Use exclusive_action instead.",
"type": "boolean"
},
"exclusiveAction": {
"description": "Excluisive action returned by the CLH.",
"enum": [
"UNKNOWN_REPAIR_ACTION",
"DELETE",
"RETRY"
],
"enumDeprecated": [
false,
true,
false
],
"enumDescriptions": [
"Unknown repair action.",
"The resource has to be deleted. When using this bit, the CLH should fail the operation. DEPRECATED. Instead use DELETE_RESOURCE OperationSignal in SideChannel.",
"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."
],
"type": "string"
}
},
"type": "object"
},
"SetIamPolicyRequest": {
"description": "Request message for `SetIamPolicy` method.",
"id": "SetIamPolicyRequest",
Expand Down
43 changes: 43 additions & 0 deletions apphub/v1/apphub-gen.go

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

14 changes: 7 additions & 7 deletions batch/v1/batch-api.json
Expand Up @@ -12,7 +12,7 @@
"baseUrl": "https://batch.googleapis.com/",
"batchPath": "batch",
"canonicalName": "Batch",
"description": "An API to manage the running of batch jobs on Google Cloud Platform.",
"description": "An API to manage the running of batch resources on Google Cloud Platform.",
"discoveryVersion": "v1",
"documentationLink": "https://cloud.google.com/batch/",
"fullyEncodeReservedExpansion": true,
Expand Down Expand Up @@ -561,7 +561,7 @@
}
}
},
"revision": "20240103",
"revision": "20240112",
"rootUrl": "https://batch.googleapis.com/",
"schemas": {
"Accelerator": {
Expand Down Expand Up @@ -774,11 +774,11 @@
"id": "AgentScript",
"properties": {
"path": {
"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`.",
"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`.",
"type": "string"
},
"text": {
"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`.",
"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`.",
"type": "string"
}
},
Expand Down Expand Up @@ -1946,11 +1946,11 @@
"id": "Script",
"properties": {
"path": {
"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`.",
"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`.",
"type": "string"
},
"text": {
"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`.",
"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`.",
"type": "string"
}
},
Expand Down Expand Up @@ -2097,7 +2097,7 @@
"type": "boolean"
},
"runAsNonRoot": {
"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",
"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).",
"type": "boolean"
},
"schedulingPolicy": {
Expand Down
16 changes: 8 additions & 8 deletions batch/v1/batch-gen.go

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

17 changes: 15 additions & 2 deletions connectors/v1/connectors-api.json
Expand Up @@ -2354,7 +2354,7 @@
}
}
},
"revision": "20240102",
"revision": "20240116",
"rootUrl": "https://connectors.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -3434,7 +3434,7 @@
"type": "string"
},
"serviceAccount": {
"description": "Required. Service account used by runtime plane to access auth config secrets.",
"description": "Optional. Service account used by runtime plane to access auth config secrets.",
"type": "string"
},
"specLocation": {
Expand Down Expand Up @@ -3957,6 +3957,10 @@
"description": "Optional. Private Connectivity Enabled.",
"type": "boolean"
},
"proxyDestinationConfig": {
"$ref": "DestinationConfig",
"description": "Optional. Proxy for Eventing auto-registration."
},
"registrationDestinationConfig": {
"$ref": "DestinationConfig",
"description": "Registration endpoint for auto registration."
Expand Down Expand Up @@ -4023,6 +4027,10 @@
},
"type": "array"
},
"proxyDestinationConfig": {
"$ref": "DestinationConfigTemplate",
"description": "Proxy destination config template."
},
"registrationDestinationConfig": {
"$ref": "DestinationConfigTemplate",
"description": "Registration host destination config template."
Expand Down Expand Up @@ -6004,6 +6012,11 @@
"networkConfig": {
"$ref": "NetworkConfig",
"description": "Optional. Regional network config."
},
"provisioned": {
"description": "Output only. Specifies whether the region is provisioned.",
"readOnly": true,
"type": "boolean"
}
},
"type": "object"
Expand Down
13 changes: 12 additions & 1 deletion connectors/v1/connectors-gen.go

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

4 changes: 2 additions & 2 deletions dataplex/v1/dataplex-api.json
Expand Up @@ -4360,7 +4360,7 @@
}
}
},
"revision": "20231231",
"revision": "20240115",
"rootUrl": "https://dataplex.googleapis.com/",
"schemas": {
"Empty": {
Expand Down Expand Up @@ -7136,7 +7136,7 @@
"Number of resources matched with particular Query.",
"Rule processing exceeds the allowed limit.",
"Rule processing errors.",
"Governance rule prcoessing Event."
"Governance rule processing Event."
],
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion dataplex/v1/dataplex-gen.go

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

18 changes: 15 additions & 3 deletions dialogflow/v2/dialogflow-api.json
Expand Up @@ -8327,7 +8327,7 @@
}
}
},
"revision": "20240102",
"revision": "20240113",
"rootUrl": "https://dialogflow.googleapis.com/",
"schemas": {
"GoogleCloudDialogflowCxV3AdvancedSettings": {
Expand Down Expand Up @@ -9288,6 +9288,10 @@
],
"type": "string"
},
"optOutConformerModelMigration": {
"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.",
"type": "boolean"
},
"phraseHints": {
"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.",
"items": {
Expand Down Expand Up @@ -10085,7 +10089,7 @@
"id": "GoogleCloudDialogflowCxV3TextInput",
"properties": {
"text": {
"description": "Required. The UTF-8 encoded natural language text to be processed. Text length must not exceed 256 characters.",
"description": "Required. The UTF-8 encoded natural language text to be processed.",
"type": "string"
}
},
Expand Down Expand Up @@ -11496,6 +11500,10 @@
],
"type": "string"
},
"optOutConformerModelMigration": {
"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.",
"type": "boolean"
},
"phraseHints": {
"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.",
"items": {
Expand Down Expand Up @@ -12277,7 +12285,7 @@
"id": "GoogleCloudDialogflowCxV3beta1TextInput",
"properties": {
"text": {
"description": "Required. The UTF-8 encoded natural language text to be processed. Text length must not exceed 256 characters.",
"description": "Required. The UTF-8 encoded natural language text to be processed.",
"type": "string"
}
},
Expand Down Expand Up @@ -15293,6 +15301,10 @@
],
"type": "string"
},
"optOutConformerModelMigration": {
"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.",
"type": "boolean"
},
"phraseHints": {
"deprecated": true,
"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`]().",
Expand Down

0 comments on commit e0db6a5

Please sign in to comment.