Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2417

Merged
merged 1 commit into from
Feb 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion appengine/v1/appengine-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@
}
}
},
"revision": "20231107",
"revision": "20240212",
"rootUrl": "https://appengine.googleapis.com/",
"schemas": {
"ApiConfigHandler": {
Expand Down Expand Up @@ -3570,6 +3570,13 @@
],
"type": "string"
},
"supportedOperatingSystems": {
"description": "Supported operating systems for the runtime, e.g., 'ubuntu22', etc.",
"items": {
"type": "string"
},
"type": "array"
},
"warnings": {
"description": "Warning messages, e.g., a deprecation warning.",
"items": {
Expand Down
4 changes: 4 additions & 0 deletions appengine/v1/appengine-gen.go

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

9 changes: 8 additions & 1 deletion appengine/v1beta/appengine-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1859,7 +1859,7 @@
}
}
},
"revision": "20231107",
"revision": "20240212",
"rootUrl": "https://appengine.googleapis.com/",
"schemas": {
"ApiConfigHandler": {
Expand Down Expand Up @@ -3827,6 +3827,13 @@
],
"type": "string"
},
"supportedOperatingSystems": {
"description": "Supported operating systems for the runtime, e.g., 'ubuntu22', etc.",
"items": {
"type": "string"
},
"type": "array"
},
"warnings": {
"description": "Warning messages, e.g., a deprecation warning.",
"items": {
Expand Down
4 changes: 4 additions & 0 deletions appengine/v1beta/appengine-gen.go

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

6 changes: 5 additions & 1 deletion blockchainnodeengine/v1/blockchainnodeengine-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
}
}
},
"revision": "20240124",
"revision": "20240207",
"rootUrl": "https://blockchainnodeengine.googleapis.com/",
"schemas": {
"BlockchainNode": {
Expand Down Expand Up @@ -960,6 +960,10 @@
"description": "Configuration for validator-related parameters on the beacon client, and for any GCP-managed validator client.",
"id": "ValidatorConfig",
"properties": {
"beaconFeeRecipient": {
"description": "An Ethereum address which the beacon client will send fee rewards to if no recipient is configured in the validator client. See https://lighthouse-book.sigmaprime.io/suggested-fee-recipient.html or https://docs.prylabs.network/docs/execution-node/fee-recipient for examples of how this is used. Note that while this is often described as \"suggested\", as we run the execution node we can trust the execution node, and therefore this is considered enforced.",
"type": "string"
},
"managedValidatorClient": {
"description": "Immutable. When true, deploys a GCP-managed validator client alongside the beacon client.",
"type": "boolean"
Expand Down
31 changes: 20 additions & 11 deletions blockchainnodeengine/v1/blockchainnodeengine-gen.go

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

76 changes: 74 additions & 2 deletions cloudbuild/v2/cloudbuild-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@
}
}
},
"revision": "20240130",
"revision": "20240207",
"rootUrl": "https://cloudbuild.googleapis.com/",
"schemas": {
"AuditConfig": {
Expand Down Expand Up @@ -945,6 +945,65 @@
},
"type": "object"
},
"BitbucketCloudConfig": {
"description": "Configuration for connections to Bitbucket Cloud.",
"id": "BitbucketCloudConfig",
"properties": {
"authorizerCredential": {
"$ref": "UserCredential",
"description": "Required. An access token with the `webhook`, `repository`, `repository:admin` and `pullrequest` scope access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate these credentials."
},
"readAuthorizerCredential": {
"$ref": "UserCredential",
"description": "Required. An access token with the `repository` access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate the credentials."
},
"webhookSecretSecretVersion": {
"description": "Required. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.",
"type": "string"
},
"workspace": {
"description": "Required. The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.",
"type": "string"
}
},
"type": "object"
},
"BitbucketDataCenterConfig": {
"description": "Configuration for connections to Bitbucket Data Center.",
"id": "BitbucketDataCenterConfig",
"properties": {
"authorizerCredential": {
"$ref": "UserCredential",
"description": "Required. A http access token with the `REPO_ADMIN` scope access."
},
"hostUri": {
"description": "Required. The URI of the Bitbucket Data Center instance or cluster this connection is for.",
"type": "string"
},
"readAuthorizerCredential": {
"$ref": "UserCredential",
"description": "Required. A http access token with the `REPO_READ` access."
},
"serverVersion": {
"description": "Output only. Version of the Bitbucket Data Center running on the `host_uri`.",
"readOnly": true,
"type": "string"
},
"serviceDirectoryConfig": {
"$ref": "GoogleDevtoolsCloudbuildV2ServiceDirectoryConfig",
"description": "Optional. Configuration for using Service Directory to privately connect to a Bitbucket Data Center. This should only be set if the Bitbucket Data Center is hosted on-premises and not reachable by public internet. If this field is left empty, calls to the Bitbucket Data Center will be made over the public internet."
},
"sslCa": {
"description": "Optional. SSL certificate to use for requests to the Bitbucket Data Center.",
"type": "string"
},
"webhookSecretSecretVersion": {
"description": "Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.",
"type": "string"
}
},
"type": "object"
},
"CancelOperationRequest": {
"description": "The request message for Operations.CancelOperation.",
"id": "CancelOperationRequest",
Expand Down Expand Up @@ -1008,7 +1067,7 @@
"type": "object"
},
"Connection": {
"description": "A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center or GitLab.",
"description": "A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center, Bitbucket Cloud or GitLab.",
"id": "Connection",
"properties": {
"annotations": {
Expand All @@ -1018,6 +1077,14 @@
"description": "Allows clients to store small amounts of arbitrary data.",
"type": "object"
},
"bitbucketCloudConfig": {
"$ref": "BitbucketCloudConfig",
"description": "Configuration for connections to Bitbucket Cloud."
},
"bitbucketDataCenterConfig": {
"$ref": "BitbucketDataCenterConfig",
"description": "Configuration for connections to Bitbucket Data Center."
},
"createTime": {
"description": "Output only. Server assigned timestamp for when the connection was created.",
"format": "google-datetime",
Expand Down Expand Up @@ -1911,6 +1978,11 @@
"$ref": "Provenance",
"description": "Optional. Provenance configuration."
},
"record": {
"description": "Output only. The `Record` of this `PipelineRun`. Format: `projects/{project}/locations/{location}/results/{result_id}/records/{record_id}`",
"readOnly": true,
"type": "string"
},
"resolvedPipelineSpec": {
"$ref": "PipelineSpec",
"description": "Output only. The exact PipelineSpec used to instantiate the run.",
Expand Down
125 changes: 124 additions & 1 deletion cloudbuild/v2/cloudbuild-gen.go

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

Loading