Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#1828)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jan 30, 2023
1 parent 50fc7c4 commit a5d0daa
Show file tree
Hide file tree
Showing 20 changed files with 307 additions and 58 deletions.
32 changes: 30 additions & 2 deletions apigeeregistry/v1/apigeeregistry-api.json
Expand Up @@ -915,6 +915,11 @@
"name"
],
"parameters": {
"filter": {
"description": "An expression that can be used to filter the list. Filters use the Common Expression Language and can refer to all message fields.",
"location": "query",
"type": "string"
},
"name": {
"description": "Required. The name of the deployment to list revisions for.",
"location": "path",
Expand Down Expand Up @@ -2046,6 +2051,11 @@
"name"
],
"parameters": {
"filter": {
"description": "An expression that can be used to filter the list. Filters use the Common Expression Language and can refer to all message fields.",
"location": "query",
"type": "string"
},
"name": {
"description": "Required. The name of the spec to list revisions for.",
"location": "path",
Expand Down Expand Up @@ -3171,7 +3181,7 @@
}
}
},
"revision": "20220929",
"revision": "20230118",
"rootUrl": "https://apigeeregistry.googleapis.com/",
"schemas": {
"Api": {
Expand Down Expand Up @@ -3247,7 +3257,7 @@
"type": "object"
},
"apiSpecRevision": {
"description": "The full resource name (including revision ID) of the spec of the API being served by the deployment. Changes to this value will update the revision. Format: `apis/{api}/deployments/{deployment}`",
"description": "The full resource name (including revision ID) of the spec of the API being served by the deployment. Changes to this value will update the revision. Format: `projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec@revision}`",
"type": "string"
},
"createTime": {
Expand Down Expand Up @@ -3423,6 +3433,10 @@
"description": "Resource name.",
"type": "string"
},
"primarySpec": {
"description": "The primary spec for this version. Format: projects/{project}/locations/{location}/apis/{api}/versions/{version}/specs/{spec}",
"type": "string"
},
"state": {
"description": "A user-definable description of the lifecycle phase of this API version. Format: free-form, but we expect single words that describe API maturity, e.g., \"CONCEPT\", \"DESIGN\", \"DEVELOPMENT\", \"STAGING\", \"PRODUCTION\", \"DEPRECATED\", \"RETIRED\".",
"type": "string"
Expand All @@ -3440,6 +3454,13 @@
"description": "Artifacts of resources. Artifacts are unique (single-value) per resource and are used to store metadata that is too large or numerous to be stored directly on the resource. Since artifacts are stored separately from parent resources, they should generally be used for metadata that is needed infrequently, i.e., not for display in primary views of the resource but perhaps displayed or downloaded upon request. The `ListArtifacts` method allows artifacts to be quickly enumerated and checked for presence without downloading their (potentially-large) contents.",
"id": "Artifact",
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"description": "Annotations attach non-identifying metadata to resources. Annotation keys and values are less restricted than those of labels, but should be generally used for small values of broad interest. Larger, topic- specific metadata should be stored in Artifacts.",
"type": "object"
},
"contents": {
"description": "Input only. The contents of the artifact. Provided by API callers when artifacts are created or replaced. To access the contents of an artifact, use GetArtifactContents.",
"format": "byte",
Expand All @@ -3456,6 +3477,13 @@
"readOnly": true,
"type": "string"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Labels attach identifying metadata to resources. Identifying metadata can be used to filter list operations. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one resource (System labels are excluded). See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with \"registry.googleapis.com/\" and cannot be changed.",
"type": "object"
},
"mimeType": {
"description": "A content type specifier for the artifact. Content type specifiers are Media Types (https://en.wikipedia.org/wiki/Media_type) with a possible \"schema\" parameter that specifies a schema for the stored information. Content types can specify compression. Currently only GZip compression is supported (indicated with \"+gzip\").",
"type": "string"
Expand Down
62 changes: 56 additions & 6 deletions apigeeregistry/v1/apigeeregistry-gen.go

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

8 changes: 3 additions & 5 deletions chromemanagement/v1/chromemanagement-api.json
Expand Up @@ -638,7 +638,7 @@
],
"parameters": {
"filter": {
"description": "Optional. Only include resources that match the filter. Supported filter fields: * device_id * user_id * device_org_unit_id * user_org_unit_id * timestamp * event_type",
"description": "Optional. Only include resources that match the filter. Supported filter fields: - device_id - user_id - device_org_unit_id - user_org_unit_id - timestamp - event_type The \"timestamp\" filter accepts either Epoch milliseconds or RFC 3339 formatted time surrounded by simple double quotes.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -720,7 +720,7 @@
],
"parameters": {
"filter": {
"description": "Only include resources that match the filter. Supported filter fields: * user_id * user_org_unit_id",
"description": "Only include resources that match the filter. Supported filter fields: - user_id - user_org_unit_id ",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -764,7 +764,7 @@
}
}
},
"revision": "20230124",
"revision": "20230127",
"rootUrl": "https://chromemanagement.googleapis.com/",
"schemas": {
"GoogleChromeManagementV1AndroidAppInfo": {
Expand Down Expand Up @@ -2695,15 +2695,13 @@
"enum": [
"EVENT_TYPE_UNSPECIFIED",
"AUDIO_SEVERE_UNDERRUN",
"NETWORK_CONNECTION_STATE_CHANGE",
"USB_ADDED",
"USB_REMOVED",
"NETWORK_HTTPS_LATENCY_CHANGE"
],
"enumDescriptions": [
"Event type unknown.",
"Triggered when a audio devices run out of buffer data for more than 5 seconds.",
"Triggered immediately on any changes to a network connection.",
"Triggered when USB devices are added.",
"Triggered when USB devices are removed.",
"Triggered when a new HTTPS latency problem was detected or the device has recovered form an existing HTTPS latency problem."
Expand Down
14 changes: 7 additions & 7 deletions chromemanagement/v1/chromemanagement-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 datamigration/v1/datamigration-api.json
Expand Up @@ -677,7 +677,7 @@
"type": "string"
},
"filter": {
"description": "Filter the returned entities based on AIP-160 standard",
"description": "Filter the returned entities based on AIP-160 standard.",
"location": "query",
"type": "string"
},
Expand All @@ -693,7 +693,7 @@
"type": "string"
},
"tree": {
"description": "The tree to fetch",
"description": "The tree to fetch.",
"enum": [
"DB_TREE_TYPE_UNSPECIFIED",
"SOURCE_TREE",
Expand Down Expand Up @@ -1708,7 +1708,7 @@
}
}
},
"revision": "20230105",
"revision": "20230118",
"rootUrl": "https://datamigration.googleapis.com/",
"schemas": {
"AlloyDbConnectionProfile": {
Expand Down
8 changes: 4 additions & 4 deletions datamigration/v1/datamigration-gen.go

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

0 comments on commit a5d0daa

Please sign in to comment.