Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2232)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Oct 22, 2023
1 parent 9835f38 commit a1fb230
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 18 deletions.
32 changes: 31 additions & 1 deletion artifactregistry/v1/artifactregistry-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1713,7 +1713,7 @@
}
}
},
"revision": "20231002",
"revision": "20231018",
"rootUrl": "https://artifactregistry.googleapis.com/",
"schemas": {
"AptArtifact": {
Expand Down Expand Up @@ -3013,6 +3013,10 @@
"$ref": "PythonRepository",
"description": "Specific settings for a Python remote repository."
},
"upstreamCredentials": {
"$ref": "UpstreamCredentials",
"description": "Optional. The credentials used to access the remote repository."
},
"yumRepository": {
"$ref": "YumRepository",
"description": "Specific settings for a Yum remote repository."
Expand Down Expand Up @@ -3390,6 +3394,17 @@
},
"type": "object"
},
"UpstreamCredentials": {
"description": "The credentials to access the remote repository.",
"id": "UpstreamCredentials",
"properties": {
"usernamePasswordCredentials": {
"$ref": "UsernamePasswordCredentials",
"description": "Use username and password to access the remote repository."
}
},
"type": "object"
},
"UpstreamPolicy": {
"description": "Artifact policy configuration for the repository contents.",
"id": "UpstreamPolicy",
Expand All @@ -3410,6 +3425,21 @@
},
"type": "object"
},
"UsernamePasswordCredentials": {
"description": "Username and password credentials.",
"id": "UsernamePasswordCredentials",
"properties": {
"passwordSecretVersion": {
"description": "The Secret Manager key version that holds the password to access the remote repository. Must be in the format of `projects/{project}/secrets/{secret}/versions/{version}`.",
"type": "string"
},
"username": {
"description": "The username to access the remote repository.",
"type": "string"
}
},
"type": "object"
},
"VPCSCConfig": {
"description": "The Artifact Registry VPC SC config that apply to a Project.",
"id": "VPCSCConfig",
Expand Down
70 changes: 70 additions & 0 deletions artifactregistry/v1/artifactregistry-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 batch/v1/batch-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@
}
}
},
"revision": "20230929",
"revision": "20231009",
"rootUrl": "https://batch.googleapis.com/",
"schemas": {
"Accelerator": {
Expand Down Expand Up @@ -2033,7 +2033,7 @@
"type": "string"
},
"parallelism": {
"description": "Max number of tasks that can run in parallel. Default to min(task_count, 1000). Field parallelism must be 1 if the scheduling_policy is IN_ORDER.",
"description": "Max number of tasks that can run in parallel. Default to min(task_count, parallel tasks per job limit). See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits). Field parallelism must be 1 if the scheduling_policy is IN_ORDER.",
"format": "int64",
"type": "string"
},
Expand Down
5 changes: 3 additions & 2 deletions batch/v1/batch-gen.go

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

6 changes: 3 additions & 3 deletions workflowexecutions/v1/workflowexecutions-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -274,12 +274,12 @@
],
"parameters": {
"filter": {
"description": "Optional. Filters applied to the [Executions.ListExecutions] results. The following fields are supported for filtering: executionID, state, startTime, endTime, duration, workflowRevisionID, stepName, and label.",
"description": "Optional. Filters applied to the `[Executions.ListExecutions]` results. The following fields are supported for filtering: `executionId`, `state`, `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, and `label`. For details, see AIP-160. For example, if you are using the Google APIs Explorer: `state=\"SUCCEEDED\"` or `startTime\u003e\"2023-08-01\" AND state=\"FAILED\"`",
"location": "query",
"type": "string"
},
"orderBy": {
"description": "Optional. The ordering applied to the [Executions.ListExecutions] results. By default the ordering is based on descending start time. The following fields are supported for order by: executionID, startTime, endTime, duration, state, and workflowRevisionID.",
"description": "Optional. Comma-separated list of fields that specify the ordering applied to the `[Executions.ListExecutions]` results. By default the ordering is based on descending `startTime`. The following fields are supported for ordering: `executionId`, `state`, `startTime`, `endTime`, `duration`, and `workflowRevisionId`. For details, see AIP-132.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -376,7 +376,7 @@
}
}
},
"revision": "20230912",
"revision": "20231016",
"rootUrl": "https://workflowexecutions.googleapis.com/",
"schemas": {
"Callback": {
Expand Down
24 changes: 14 additions & 10 deletions workflowexecutions/v1/workflowexecutions-gen.go

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

0 comments on commit a1fb230

Please sign in to comment.