Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2570

Merged
merged 1 commit into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 38 additions & 37 deletions artifactregistry/v1/artifactregistry-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,38 +115,6 @@
},
"protocol": "rest",
"resources": {
"media": {
"methods": {
"download": {
"description": "Download a file.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/repositories/{repositoriesId}/files/{filesId}:download",
"httpMethod": "GET",
"id": "artifactregistry.media.download",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the file to download.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/repositories/[^/]+/files/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}:download",
"response": {
"$ref": "DownloadFileResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
],
"supportsMediaDownload": true,
"useMediaDownloadService": true
}
}
},
"projects": {
"methods": {
"getProjectSettings": {
Expand Down Expand Up @@ -538,7 +506,7 @@
],
"parameters": {
"name": {
"description": "The name of the repository, for example: `projects/p1/locations/us-central1/repositories/repo1`.",
"description": "The name of the repository, for example: `projects/p1/locations/us-central1/repositories/repo1`. For each location in a project, repository names must be unique.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/repositories/[^/]+$",
"required": true,
Expand Down Expand Up @@ -767,6 +735,34 @@
},
"files": {
"methods": {
"download": {
"description": "Download a file.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/repositories/{repositoriesId}/files/{filesId}:download",
"httpMethod": "GET",
"id": "artifactregistry.projects.locations.repositories.files.download",
"parameterOrder": [
"name"
],
"parameters": {
"name": {
"description": "Required. The name of the file to download.",
"location": "path",
"pattern": "^projects/[^/]+/locations/[^/]+/repositories/[^/]+/files/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+name}:download",
"response": {
"$ref": "DownloadFileResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
],
"supportsMediaDownload": true,
"useMediaDownloadService": true
},
"get": {
"description": "Gets a file.",
"flatPath": "v1/projects/{projectsId}/locations/{locationsId}/repositories/{repositoriesId}/files/{filesId}",
Expand Down Expand Up @@ -1782,7 +1778,7 @@
}
}
},
"revision": "20240425",
"revision": "20240501",
"rootUrl": "https://artifactregistry.googleapis.com/",
"schemas": {
"AptArtifact": {
Expand Down Expand Up @@ -2224,7 +2220,7 @@
"type": "array"
},
"name": {
"description": "The name of the file, for example: \"projects/p1/locations/us-central1/repositories/repo1/files/a%2Fb%2Fc.txt\". If the file ID part contains slashes, they are escaped.",
"description": "The name of the file, for example: `projects/p1/locations/us-central1/repositories/repo1/files/a%2Fb%2Fc.txt`. If the file ID part contains slashes, they are escaped.",
"type": "string"
},
"owner": {
Expand Down Expand Up @@ -3319,13 +3315,18 @@
"type": "string"
},
"name": {
"description": "The name of the repository, for example: `projects/p1/locations/us-central1/repositories/repo1`.",
"description": "The name of the repository, for example: `projects/p1/locations/us-central1/repositories/repo1`. For each location in a project, repository names must be unique.",
"type": "string"
},
"remoteRepositoryConfig": {
"$ref": "RemoteRepositoryConfig",
"description": "Configuration specific for a Remote Repository."
},
"satisfiesPzi": {
"description": "Output only. If set, the repository satisfies physical zone isolation.",
"readOnly": true,
"type": "boolean"
},
"satisfiesPzs": {
"description": "Output only. If set, the repository satisfies physical zone separation.",
"readOnly": true,
Expand Down Expand Up @@ -3754,7 +3755,7 @@
"type": "object"
},
"VirtualRepositoryConfig": {
"description": "Virtual repository configuration.",
"description": "LINT.IfChange Virtual repository configuration.",
"id": "VirtualRepositoryConfig",
"properties": {
"upstreamPolicies": {
Expand Down
Loading