Skip to content

Commit 1263cc6

Browse files
feat(all): auto-regenerate discovery clients (#1586)
1 parent 18468ac commit 1263cc6

20 files changed

+2106
-49
lines changed

apigee/v1/apigee-api.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7986,7 +7986,7 @@
79867986
}
79877987
}
79887988
},
7989-
"revision": "20220602",
7989+
"revision": "20220609",
79907990
"rootUrl": "https://apigee.googleapis.com/",
79917991
"schemas": {
79927992
"EdgeConfigstoreBundleBadBundle": {
@@ -10156,6 +10156,10 @@
1015610156
"description": "Optional. Display name for this environment.",
1015710157
"type": "string"
1015810158
},
10159+
"forwardProxyUri": {
10160+
"description": "Optional. Url of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that scheme must be one of \"http\" or \"https\", and port must be supplied.",
10161+
"type": "string"
10162+
},
1015910163
"lastModifiedAt": {
1016010164
"description": "Output only. Last modification time of this environment as milliseconds since epoch.",
1016110165
"format": "int64",
@@ -10236,6 +10240,10 @@
1023610240
},
1023710241
"type": "array"
1023810242
},
10243+
"forwardProxyUri": {
10244+
"description": "The forward proxy's url to be used by the runtime. When set, runtime will send requests to the target via the given forward proxy. This is only used by programmable gateways.",
10245+
"type": "string"
10246+
},
1023910247
"gatewayConfigLocation": {
1024010248
"description": "The location for the gateway config blob as a URI, e.g. a Cloud Storage URI. This is only used by Envoy-based gateways.",
1024110249
"type": "string"

apigee/v1/apigee-gen.go

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

assuredworkloads/v1/assuredworkloads-api.json

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,34 @@
343343
"scopes": [
344344
"https://www.googleapis.com/auth/cloud-platform"
345345
]
346+
},
347+
"restrictAllowedResources": {
348+
"description": "Restrict the list of resources allowed in the Workload environment. The current list of allowed products can be found at https://cloud.google.com/assured-workloads/docs/supported-products In addition to assuredworkloads.workload.update permission, the user should also have orgpolicy.policy.set permission on the folder resource to use this functionality.",
349+
"flatPath": "v1/organizations/{organizationsId}/locations/{locationsId}/workloads/{workloadsId}:restrictAllowedResources",
350+
"httpMethod": "POST",
351+
"id": "assuredworkloads.organizations.locations.workloads.restrictAllowedResources",
352+
"parameterOrder": [
353+
"name"
354+
],
355+
"parameters": {
356+
"name": {
357+
"description": "Required. The resource name of the Workload. This is the workloads's relative path in the API, formatted as \"organizations/{organization_id}/locations/{location_id}/workloads/{workload_id}\". For example, \"organizations/123/locations/us-east1/workloads/assured-workload-1\".",
358+
"location": "path",
359+
"pattern": "^organizations/[^/]+/locations/[^/]+/workloads/[^/]+$",
360+
"required": true,
361+
"type": "string"
362+
}
363+
},
364+
"path": "v1/{+name}:restrictAllowedResources",
365+
"request": {
366+
"$ref": "GoogleCloudAssuredworkloadsV1RestrictAllowedResourcesRequest"
367+
},
368+
"response": {
369+
"$ref": "GoogleCloudAssuredworkloadsV1RestrictAllowedResourcesResponse"
370+
},
371+
"scopes": [
372+
"https://www.googleapis.com/auth/cloud-platform"
373+
]
346374
}
347375
}
348376
}
@@ -351,7 +379,7 @@
351379
}
352380
}
353381
},
354-
"revision": "20220603",
382+
"revision": "20220609",
355383
"rootUrl": "https://assuredworkloads.googleapis.com/",
356384
"schemas": {
357385
"GoogleCloudAssuredworkloadsV1CreateWorkloadOperationMetadata": {
@@ -422,6 +450,33 @@
422450
},
423451
"type": "object"
424452
},
453+
"GoogleCloudAssuredworkloadsV1RestrictAllowedResourcesRequest": {
454+
"description": "Request for restricting list of available resources in Workload environment.",
455+
"id": "GoogleCloudAssuredworkloadsV1RestrictAllowedResourcesRequest",
456+
"properties": {
457+
"restrictionType": {
458+
"description": "Required. The type of restriction for using gcp products in the Workload environment.",
459+
"enum": [
460+
"RESTRICTION_TYPE_UNSPECIFIED",
461+
"ALLOW_ALL_GCP_RESOURCES",
462+
"ALLOW_COMPLIANT_RESOURCES"
463+
],
464+
"enumDescriptions": [
465+
"Unknown restriction type.",
466+
"Allow the use all of all gcp products, irrespective of the compliance posture. This effectively removes gcp.restrictServiceUsage OrgPolicy on the AssuredWorkloads Folder.",
467+
"Based on Workload's compliance regime, allowed list changes. See - https://cloud.google.com/assured-workloads/docs/supported-products for the list of supported resources."
468+
],
469+
"type": "string"
470+
}
471+
},
472+
"type": "object"
473+
},
474+
"GoogleCloudAssuredworkloadsV1RestrictAllowedResourcesResponse": {
475+
"description": "Response for restricting the list of allowed resources.",
476+
"id": "GoogleCloudAssuredworkloadsV1RestrictAllowedResourcesResponse",
477+
"properties": {},
478+
"type": "object"
479+
},
425480
"GoogleCloudAssuredworkloadsV1Workload": {
426481
"description": "An Workload object for managing highly regulated workloads of cloud customers.",
427482
"id": "GoogleCloudAssuredworkloadsV1Workload",

assuredworkloads/v1/assuredworkloads-gen.go

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

0 commit comments

Comments
 (0)