Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1466)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Mar 4, 2022
1 parent 398f9e8 commit 76a2c21
Show file tree
Hide file tree
Showing 24 changed files with 324 additions and 216 deletions.
32 changes: 16 additions & 16 deletions apigee/v1/apigee-api.json
Expand Up @@ -2899,7 +2899,7 @@
"endpointAttachments": {
"methods": {
"create": {
"description": "Creates an EndpointAttachment. **Note:** Not supported for Apigee hybrid.",
"description": "Creates an endpoint attachment. **Note:** Not supported for Apigee hybrid.",
"flatPath": "v1/organizations/{organizationsId}/endpointAttachments",
"httpMethod": "POST",
"id": "apigee.organizations.endpointAttachments.create",
Expand All @@ -2908,12 +2908,12 @@
],
"parameters": {
"endpointAttachmentId": {
"description": "The ID to use for the endpoint attachment. ID must be a 1-20 characters string with lowercase letters and numbers and must start with a letter.",
"description": "ID to use for the endpoint attachment. The ID can contain lowercase letters and numbers, must start with a letter, and must be 1-20 characters in length.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The Organization this EndpointAttachment will be created in.",
"description": "Required. Organization the endpoint attachment will be created in.",
"location": "path",
"pattern": "^organizations/[^/]+$",
"required": true,
Expand Down Expand Up @@ -2941,7 +2941,7 @@
],
"parameters": {
"name": {
"description": "Required. Name of the Endpoint Attachment in the following format: `organizations/{organization}/endpointAttachments/{endpoint_attachment}`.",
"description": "Required. Name of the endpoint attachment. Use the following structure in your request: `organizations/{org}/endpointAttachments/{endpoint_attachment}`",
"location": "path",
"pattern": "^organizations/[^/]+/endpointAttachments/[^/]+$",
"required": true,
Expand All @@ -2957,7 +2957,7 @@
]
},
"get": {
"description": "Gets the specified EndpointAttachment.",
"description": "Gets the endpoint attachment.",
"flatPath": "v1/organizations/{organizationsId}/endpointAttachments/{endpointAttachmentsId}",
"httpMethod": "GET",
"id": "apigee.organizations.endpointAttachments.get",
Expand All @@ -2966,7 +2966,7 @@
],
"parameters": {
"name": {
"description": "Required. Name of the Endpoint Attachment in the following format: `organizations/{organization}/endpointAttachments/{endpoint_attachment}`.",
"description": "Required. Name of the endpoint attachment. Use the following structure in your request: `organizations/{org}/endpointAttachments/{endpoint_attachment}`",
"location": "path",
"pattern": "^organizations/[^/]+/endpointAttachments/[^/]+$",
"required": true,
Expand All @@ -2982,7 +2982,7 @@
]
},
"list": {
"description": "Lists the EndpointAttachments in the specified Organization.",
"description": "Lists the endpoint attachments in an organization.",
"flatPath": "v1/organizations/{organizationsId}/endpointAttachments",
"httpMethod": "GET",
"id": "apigee.organizations.endpointAttachments.list",
Expand All @@ -2991,18 +2991,18 @@
],
"parameters": {
"pageSize": {
"description": "Optional. Maximum number of Endpoint Attachments to return. If unspecified, at most 25 attachments will be returned.",
"description": "Optional. Maximum number of endpoint attachments to return. If unspecified, at most 25 attachments will be returned.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Optional. Page token, returned from a previous ListEndpointAttachments call, that you can use to retrieve the next page.",
"description": "Optional. Page token, returned from a previous `ListEndpointAttachments` call, that you can use to retrieve the next page.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. Name of the Organization for which to list Endpoint Attachments in the format: `organizations/{organization}`.",
"description": "Required. Name of the organization for which to list endpoint attachments. Use the following structure in your request: `organizations/{org}`",
"location": "path",
"pattern": "^organizations/[^/]+$",
"required": true,
Expand Down Expand Up @@ -7563,7 +7563,7 @@
}
}
},
"revision": "20220217",
"revision": "20220301",
"rootUrl": "https://apigee.googleapis.com/",
"schemas": {
"EdgeConfigstoreBundleBadBundle": {
Expand Down Expand Up @@ -9625,11 +9625,11 @@
"type": "object"
},
"GoogleCloudApigeeV1EndpointAttachment": {
"description": "Apigee Endpoint Attachment.",
"description": "Apigee endpoint attachment. For more information, see Southbound networking patterns.",
"id": "GoogleCloudApigeeV1EndpointAttachment",
"properties": {
"host": {
"description": "Output only. Host that can be used in either HTTP Target Endpoint directly, or as the host in Target Server.",
"description": "Output only. Host that can be used in either the HTTP target endpoint directly or as the host in target server.",
"readOnly": true,
"type": "string"
},
Expand All @@ -9638,7 +9638,7 @@
"type": "string"
},
"name": {
"description": "Name of the Endpoint Attachment in the following format: `organizations/{organization}/endpointAttachments/{endpoint_attachment}`.",
"description": "Name of the endpoint attachment. Use the following structure in your request: `organizations/{org}/endpointAttachments/{endpoint_attachment}`",
"type": "string"
},
"serviceAttachment": {
Expand Down Expand Up @@ -10700,14 +10700,14 @@
"id": "GoogleCloudApigeeV1ListEndpointAttachmentsResponse",
"properties": {
"endpointAttachments": {
"description": "Endpoint Attachments in the specified organization.",
"description": "Endpoint attachments in the specified organization.",
"items": {
"$ref": "GoogleCloudApigeeV1EndpointAttachment"
},
"type": "array"
},
"nextPageToken": {
"description": "Page token that you can include in a ListEndpointAttachments request to retrieve the next page. If omitted, no subsequent pages exist.",
"description": "Page token that you can include in an `ListEndpointAttachments` request to retrieve the next page. If omitted, no subsequent pages exist.",
"type": "string"
}
},
Expand Down
75 changes: 38 additions & 37 deletions apigee/v1/apigee-gen.go

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

0 comments on commit 76a2c21

Please sign in to comment.