Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2090)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jul 29, 2023
1 parent c4d9f14 commit 8ba6963
Show file tree
Hide file tree
Showing 31 changed files with 2,327 additions and 402 deletions.
6 changes: 3 additions & 3 deletions batch/v1/batch-api.json
Expand Up @@ -561,7 +561,7 @@
}
}
},
"revision": "20230705",
"revision": "20230721",
"rootUrl": "https://batch.googleapis.com/",
"schemas": {
"Accelerator": {
Expand Down Expand Up @@ -1333,7 +1333,7 @@
"description": "The attribute requirements of messages to be sent to this Pub/Sub topic. Without this field, no message will be sent."
},
"pubsubTopic": {
"description": "The Pub/Sub topic where notifications like the job state changes will be published. This topic exist in the same project as the job and billings will be charged to this project. If not specified, no Pub/Sub messages will be sent. Topic format: `projects/{project}/topics/{topic}`.",
"description": "The Pub/Sub topic where notifications like the job state changes will be published. The topic must exist in the same project as the job and billings will be charged to this project. If not specified, no Pub/Sub messages will be sent. Topic format: `projects/{project}/topics/{topic}`.",
"type": "string"
}
},
Expand Down Expand Up @@ -1585,7 +1585,7 @@
"type": "object"
},
"Message": {
"description": "Message details. Describe the attribute that a message should have. Without specified message attributes, no message will be sent by default.",
"description": "Message details. Describe the conditions under which messages will be sent. If no attribute is defined, no message will be sent by default. One message should specify either the job or the task level attributes, but not both. For example, job level: JOB_STATE_CHANGED and/or a specified new_job_state; task level: TASK_STATE_CHANGED and/or a specified new_task_state.",
"id": "Message",
"properties": {
"newJobState": {
Expand Down
13 changes: 8 additions & 5 deletions batch/v1/batch-gen.go

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

41 changes: 40 additions & 1 deletion beyondcorp/v1alpha/beyondcorp-api.json
Expand Up @@ -475,6 +475,31 @@
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Lists BrowserDlpRules for PartnerTenant in a given organization.",
"flatPath": "v1alpha/organizations/{organizationsId}/locations/global/partnerTenants/{partnerTenantsId}/browserDlpRules",

This comment has been minimized.

Copy link
@Kiefre

Kiefre Jul 30, 2023

Help

"httpMethod": "GET",
"id": "beyondcorp.organizations.locations.global.partnerTenants.browserDlpRules.list",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. The parent partnerTenant to which the BrowserDlpRules belong. Format: `organizations/{organization_id}/locations/global/partnerTenants/{partner_tenant_id}`",
"location": "path",
"pattern": "^organizations/[^/]+/locations/global/partnerTenants/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1alpha/{+parent}/browserDlpRules",
"response": {
"$ref": "GoogleCloudBeyondcorpPartnerservicesV1alphaListBrowserDlpRulesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"patch": {
"description": "Update an existing BrowserDlpRule in a given organization and PartnerTenant.",
"flatPath": "v1alpha/organizations/{organizationsId}/locations/global/partnerTenants/{partnerTenantsId}/browserDlpRules/{browserDlpRulesId}",
Expand Down Expand Up @@ -3744,7 +3769,7 @@
}
}
},
"revision": "20230616",
"revision": "20230717",
"rootUrl": "https://beyondcorp.googleapis.com/",
"schemas": {
"AllocatedConnection": {
Expand Down Expand Up @@ -5169,6 +5194,20 @@
},
"type": "object"
},
"GoogleCloudBeyondcorpPartnerservicesV1alphaListBrowserDlpRulesResponse": {
"description": "Message for response to listing BrowserDlpRules.",
"id": "GoogleCloudBeyondcorpPartnerservicesV1alphaListBrowserDlpRulesResponse",
"properties": {
"browserDlpRules": {
"description": "The list of ProxyConfig objects.",
"items": {
"$ref": "GoogleCloudBeyondcorpPartnerservicesV1alphaBrowserDlpRule"
},
"type": "array"
}
},
"type": "object"
},
"GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse": {
"description": "Message for response to listing PartnerTenants.",
"id": "GoogleCloudBeyondcorpPartnerservicesV1alphaListPartnerTenantsResponse",
Expand Down
187 changes: 187 additions & 0 deletions beyondcorp/v1alpha/beyondcorp-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 chromepolicy/v1/chromepolicy-api.json
Expand Up @@ -557,7 +557,7 @@
}
}
},
"revision": "20230704",
"revision": "20230727",
"rootUrl": "https://chromepolicy.googleapis.com/",
"schemas": {
"ChromeCrosDpanelAutosettingsProtoPolicyApiLifecycle": {
Expand Down Expand Up @@ -1057,7 +1057,7 @@
"description": "Schema definition using proto descriptor."
},
"fieldDescriptions": {
"description": "Output only. Detailed description of each field that is part of the schema.",
"description": "Output only. Detailed description of each field that is part of the schema. Fields are suggested to be displayed by the ordering in this list, not by field number.",
"items": {
"$ref": "GoogleChromePolicyVersionsV1PolicySchemaFieldDescription"
},
Expand Down Expand Up @@ -1188,7 +1188,7 @@
"type": "string"
},
"nestedFieldDescriptions": {
"description": "Output only. Provides the description of the fields nested in this field, if the field is a message type that defines multiple fields.",
"description": "Output only. Provides the description of the fields nested in this field, if the field is a message type that defines multiple fields. Fields are suggested to be displayed by the ordering in this list, not by field number.",
"items": {
"$ref": "GoogleChromePolicyVersionsV1PolicySchemaFieldDescription"
},
Expand Down
6 changes: 4 additions & 2 deletions chromepolicy/v1/chromepolicy-gen.go

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

0 comments on commit 8ba6963

Please sign in to comment.