Skip to content

Commit

Permalink
feat: regenerate index files
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Sep 27, 2024
1 parent c3b6505 commit a423e86
Show file tree
Hide file tree
Showing 18 changed files with 365 additions and 78 deletions.
125 changes: 122 additions & 3 deletions discovery/apigee-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
"type": "string"
},
"retention": {
"description": "Optional. This setting is applicable only for organizations that are soft-deleted (i.e., BillingType is not EVALUATION). It controls how long Organization data will be retained after the initial delete operation completes. During this period, the Organization may be restored to its last known state. After this period, the Organization will no longer be able to be restored. **Note: During the data retention period specified using this field, the Apigee organization cannot be recreated in the same GCP project.**",
"description": "Optional. This setting is applicable only for organizations that are soft-deleted (i.e., BillingType is not EVALUATION). It controls how long Organization data will be retained after the initial delete operation completes. During this period, the Organization may be restored to its last known state. After this period, the Organization will no longer be able to be restored. **Note: During the data retention period specified using this field, the Apigee organization cannot be recreated in the same Google Cloud project.**",
"enum": [
"DELETION_RETENTION_UNSPECIFIED",
"MINIMUM"
Expand Down Expand Up @@ -5402,6 +5402,62 @@
},
"deployments": {
"methods": {
"get": {
"description": "Gets a particular deployment of Api proxy or a shared flow in an environment",
"flatPath": "v1/organizations/{organizationsId}/environments/{environmentsId}/deployments/{deploymentsId}",
"httpMethod": "GET",
"id": "apigee.organizations.environments.deployments.get",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. Name of the api proxy or the shared flow deployment. Use the following structure in your request: `organizations/{org}/environments/{env}/deployments/{deployment}`",
"location": "path",
"pattern": "^organizations/[^/]+/environments/[^/]+/deployments/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}",
"response": {
"$ref": "GoogleCloudApigeeV1Deployment"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"getIamPolicy": {
"description": "Gets the IAM policy on a deployment. For more information, see [Manage users, roles, and permissions using the API](https://cloud.google.com/apigee/docs/api-platform/system-administration/manage-users-roles). You must have the `apigee.deployments.getIamPolicy` permission to call this API.",
"flatPath": "v1/organizations/{organizationsId}/environments/{environmentsId}/deployments/{deploymentsId}:getIamPolicy",
"httpMethod": "GET",
"id": "apigee.organizations.environments.deployments.getIamPolicy",
"parameterOrder": [
"resource"
],
"parameters": {
"options.requestedPolicyVersion": {
"description": "Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies).",
"format": "int32",
"location": "query",
"type": "integer"
},
"resource": {
"description": "REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.",
"location": "path",
"pattern": "^organizations/[^/]+/environments/[^/]+/deployments/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+resource}:getIamPolicy",
"response": {
"$ref": "GoogleIamV1Policy"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"list": {
"description": "Lists all deployments of API proxies or shared flows in an environment.",
"flatPath": "v1/organizations/{organizationsId}/environments/{environmentsId}/deployments",
Expand Down Expand Up @@ -5431,6 +5487,62 @@
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"setIamPolicy": {
"description": "Sets the IAM policy on a deployment, if the policy already exists it will be replaced. For more information, see [Manage users, roles, and permissions using the API](https://cloud.google.com/apigee/docs/api-platform/system-administration/manage-users-roles). You must have the `apigee.deployments.setIamPolicy` permission to call this API.",
"flatPath": "v1/organizations/{organizationsId}/environments/{environmentsId}/deployments/{deploymentsId}:setIamPolicy",
"httpMethod": "POST",
"id": "apigee.organizations.environments.deployments.setIamPolicy",
"parameterOrder": [
"resource"
],
"parameters": {
"resource": {
"description": "REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.",
"location": "path",
"pattern": "^organizations/[^/]+/environments/[^/]+/deployments/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+resource}:setIamPolicy",
"request": {
"$ref": "GoogleIamV1SetIamPolicyRequest"
},
"response": {
"$ref": "GoogleIamV1Policy"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"testIamPermissions": {
"description": "Tests the permissions of a user on a deployment, and returns a subset of permissions that the user has on the deployment. If the deployment does not exist, an empty permission set is returned (a NOT_FOUND error is not returned).",
"flatPath": "v1/organizations/{organizationsId}/environments/{environmentsId}/deployments/{deploymentsId}:testIamPermissions",
"httpMethod": "POST",
"id": "apigee.organizations.environments.deployments.testIamPermissions",
"parameterOrder": [
"resource"
],
"parameters": {
"resource": {
"description": "REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field.",
"location": "path",
"pattern": "^organizations/[^/]+/environments/[^/]+/deployments/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+resource}:testIamPermissions",
"request": {
"$ref": "GoogleIamV1TestIamPermissionsRequest"
},
"response": {
"$ref": "GoogleIamV1TestIamPermissionsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
Expand Down Expand Up @@ -10045,7 +10157,7 @@
}
}
},
"revision": "20240620",
"revision": "20240919",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -12097,7 +12209,7 @@
"type": "string"
},
"projectId": {
"description": "Required. GCP project in which the datastore exists",
"description": "Required. Google Cloud project in which the datastore exists",
"type": "string"
},
"tablePrefix": {
Expand Down Expand Up @@ -16617,6 +16729,13 @@
"$ref": "GoogleCloudApigeeV1SecurityActionAllow",
"description": "Allow a request through if it matches this SecurityAction."
},
"apiProxies": {
"description": "Optional. If unset, this would apply to all proxies in the environment. If set, this action is enforced only if at least one proxy in the repeated list is deployed at the time of enforcement. If set, several restrictions are enforced on SecurityActions. There can be at most 100 enabled actions with proxies set in an env. Several other restrictions apply on conditions and are detailed later.",
"items": {
"type": "string"
},
"type": "array"
},
"conditionConfig": {
"$ref": "GoogleCloudApigeeV1SecurityActionConditionConfig",
"description": "Required. A valid SecurityAction must contain at least one condition."
Expand Down
8 changes: 6 additions & 2 deletions discovery/baremetalsolution-v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1722,7 +1722,7 @@
}
}
},
"revision": "20240422",
"revision": "20240830",
"rootUrl": "https://baremetalsolution.googleapis.com/",
"schemas": {
"AllowedClient": {
Expand Down Expand Up @@ -2847,7 +2847,7 @@
"type": "string"
},
"vlanAttachments": {
"description": "List of VLAN attachments. As of now there are always 2 attachments, but it is going to change in the future (multi vlan).",
"description": "List of VLAN attachments. As of now there are always 2 attachments, but it is going to change in the future (multi vlan). Use only one of vlan_attachments or vrf",
"items": {
"$ref": "IntakeVlanAttachment"
},
Expand All @@ -2856,6 +2856,10 @@
"vlanSameProject": {
"description": "Whether the VLAN attachment pair is located in the same project.",
"type": "boolean"
},
"vrf": {
"description": "Optional. The name of a pre-existing Vrf that the network should be attached to. Format is `vrfs/{vrf}`. If vrf is specified, vlan_attachments must be empty.",
"type": "string"
}
},
"type": "object"
Expand Down
22 changes: 21 additions & 1 deletion discovery/cloudkms-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
"endpointUrl": "https://cloudkms.europe-west3.rep.googleapis.com/",
"location": "europe-west3"
},
{
"description": "Regional Endpoint",
"endpointUrl": "https://cloudkms.europe-west8.rep.googleapis.com/",
"location": "europe-west8"
},
{
"description": "Regional Endpoint",
"endpointUrl": "https://cloudkms.europe-west9.rep.googleapis.com/",
Expand Down Expand Up @@ -78,6 +83,21 @@
"description": "Regional Endpoint",
"endpointUrl": "https://cloudkms.us-west4.rep.googleapis.com/",
"location": "us-west4"
},
{
"description": "Regional Endpoint",
"endpointUrl": "https://cloudkms.us-west8.rep.googleapis.com/",
"location": "us-west8"
},
{
"description": "Regional Endpoint",
"endpointUrl": "https://cloudkms.us-east5.rep.googleapis.com/",
"location": "us-east5"
},
{
"description": "Regional Endpoint",
"endpointUrl": "https://cloudkms.us-south1.rep.googleapis.com/",
"location": "us-south1"
}
],
"fullyEncodeReservedExpansion": true,
Expand Down Expand Up @@ -2112,7 +2132,7 @@
}
}
},
"revision": "20240808",
"revision": "20240918",
"rootUrl": "https://cloudkms.googleapis.com/",
"schemas": {
"AsymmetricDecryptRequest": {
Expand Down
9 changes: 8 additions & 1 deletion discovery/composer-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
"description": "Manages Apache Airflow environments on Google Cloud Platform.",
"discoveryVersion": "v1",
"documentationLink": "https://cloud.google.com/composer/",
"endpoints": [
{
"description": "Regional Endpoint",
"endpointUrl": "https://composer.us-south1.rep.googleapis.com/",
"location": "us-south1"
}
],
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
Expand Down Expand Up @@ -966,7 +973,7 @@
}
}
},
"revision": "20240716",
"revision": "20240917",
"rootUrl": "https://composer.googleapis.com/",
"schemas": {
"AirflowMetadataRetentionPolicyConfig": {
Expand Down
9 changes: 8 additions & 1 deletion discovery/composer-v1beta1.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
"description": "Manages Apache Airflow environments on Google Cloud Platform.",
"discoveryVersion": "v1",
"documentationLink": "https://cloud.google.com/composer/",
"endpoints": [
{
"description": "Regional Endpoint",
"endpointUrl": "https://composer.us-south1.rep.googleapis.com/",
"location": "us-south1"
}
],
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
Expand Down Expand Up @@ -994,7 +1001,7 @@
}
}
},
"revision": "20240716",
"revision": "20240917",
"rootUrl": "https://composer.googleapis.com/",
"schemas": {
"AirflowMetadataRetentionPolicyConfig": {
Expand Down
8 changes: 5 additions & 3 deletions discovery/datalineage-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@
}
}
},
"revision": "20230908",
"revision": "20240902",
"rootUrl": "https://datalineage.googleapis.com/",
"schemas": {
"GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest": {
Expand Down Expand Up @@ -1060,7 +1060,8 @@
"DATA_FUSION",
"COMPOSER",
"LOOKER_STUDIO",
"DATAPROC"
"DATAPROC",
"VERTEX_AI"
],
"enumDescriptions": [
"Source is Unspecified",
Expand All @@ -1069,7 +1070,8 @@
"Data Fusion",
"Composer",
"Looker Studio",
"Dataproc"
"Dataproc",
"Vertex AI"
],
"type": "string"
}
Expand Down
8 changes: 5 additions & 3 deletions discovery/firebaseappdistribution-v1alpha.json
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@
}
}
},
"revision": "20240726",
"revision": "20240911",
"rootUrl": "https://firebaseappdistribution.googleapis.com/",
"schemas": {
"AndroidxCrawlerOutputPoint": {
Expand Down Expand Up @@ -943,15 +943,17 @@
"NOT_INSTALLED",
"UNABLE_TO_CRAWL",
"DEVICE_OUT_OF_MEMORY",
"FAILED_AI_STEP"
"FAILED_AI_STEP",
"TIMED_OUT"
],
"enumDescriptions": [
"Reason unspecified.",
"The app crashed during the test.",
"If an app is not installed and thus no test can be run with the app. This might be caused by trying to run a test on an unsupported platform.",
"If the app could not be crawled (possibly because the app did not start).",
"If the device ran out of memory during the test.",
"At least one AI step failed."
"At least one AI step failed.",
"The crawl reached the time limit before the test could be completed."
],
"readOnly": true,
"type": "string"
Expand Down
4 changes: 2 additions & 2 deletions discovery/iam-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -3188,7 +3188,7 @@
}
}
},
"revision": "20240725",
"revision": "20240918",
"rootUrl": "https://iam.googleapis.com/",
"schemas": {
"AccessRestrictions": {
Expand Down Expand Up @@ -3555,7 +3555,7 @@
],
"enumDescriptions": [
"No AttributesType specified.",
"Used to get the user's group claims from the Azure AD identity provider using configuration provided in ExtraAttributesOAuth2Client and `mail` property of the `microsoft.graph.group` object is used for claim mapping. See https://learn.microsoft.com/en-us/graph/api/resources/group?view=graph-rest-1.0#properties for more details on `microsoft.graph.group` properties. The attributes obtained from idntity provider are mapped to `assertion.groups`."
"Used to get the user's group claims from the Microsoft Entra ID identity provider using configuration provided in ExtraAttributesOAuth2Client and `mail` property of the `microsoft.graph.group` object is used for claim mapping. See https://learn.microsoft.com/en-us/graph/api/resources/group?view=graph-rest-1.0#properties for more details on `microsoft.graph.group` properties. The attributes obtained from idntity provider are mapped to `assertion.groups`."
],
"type": "string"
},
Expand Down
Loading

0 comments on commit a423e86

Please sign in to comment.