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: Automated regeneration of artifactregistry v1beta2 client #1744

Merged
merged 1 commit into from
Dec 12, 2020
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
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15020,6 +15020,7 @@
"/artifactregistry:v1beta2/artifactregistry.projects.locations.repositories.packages.versions.get/name": name
"/artifactregistry:v1beta2/artifactregistry.projects.locations.repositories.packages.versions.get/view": view
"/artifactregistry:v1beta2/artifactregistry.projects.locations.repositories.packages.versions.list": list_project_location_repository_package_versions
"/artifactregistry:v1beta2/artifactregistry.projects.locations.repositories.packages.versions.list/orderBy": order_by
"/artifactregistry:v1beta2/artifactregistry.projects.locations.repositories.packages.versions.list/pageSize": page_size
"/artifactregistry:v1beta2/artifactregistry.projects.locations.repositories.packages.versions.list/pageToken": page_token
"/artifactregistry:v1beta2/artifactregistry.projects.locations.repositories.packages.versions.list/parent": parent
Expand Down
2 changes: 1 addition & 1 deletion generated/google/apis/artifactregistry_v1beta2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module Apis
# @see https://cloud.google.com/artifacts/docs/
module ArtifactregistryV1beta2
VERSION = 'V1beta2'
REVISION = '20201107'
REVISION = '20201203'

# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
Expand Down
4 changes: 2 additions & 2 deletions generated/google/apis/artifactregistry_v1beta2/classes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class GoogleDevtoolsArtifactregistryV1alpha1ErrorInfo
# @return [Google::Apis::ArtifactregistryV1beta2::Status]
attr_accessor :error

# Google Cloud Storage location for the input content.
# Google Cloud Storage location where the artifacts currently reside.
# Corresponds to the JSON property `gcsSource`
# @return [Google::Apis::ArtifactregistryV1beta2::GoogleDevtoolsArtifactregistryV1alpha1GcsSource]
attr_accessor :gcs_source
Expand All @@ -244,7 +244,7 @@ def update!(**args)
end
end

# Google Cloud Storage location for the input content.
# Google Cloud Storage location where the artifacts currently reside.
class GoogleDevtoolsArtifactregistryV1alpha1GcsSource
include Google::Apis::Core::Hashable

Expand Down
5 changes: 4 additions & 1 deletion generated/google/apis/artifactregistry_v1beta2/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -896,6 +896,8 @@ def get_project_location_repository_package_version(name, view: nil, fields: nil
# Lists versions.
# @param [String] parent
# The name of the parent resource whose versions will be listed.
# @param [String] order_by
# Optional. Sorting field and order
# @param [Fixnum] page_size
# The maximum number of versions to return. Maximum page size is 10,000.
# @param [String] page_token
Expand All @@ -919,11 +921,12 @@ def get_project_location_repository_package_version(name, view: nil, fields: nil
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
# @raise [Google::Apis::AuthorizationError] Authorization is required
def list_project_location_repository_package_versions(parent, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
def list_project_location_repository_package_versions(parent, order_by: nil, page_size: nil, page_token: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
command = make_simple_command(:get, 'v1beta2/{+parent}/versions', options)
command.response_representation = Google::Apis::ArtifactregistryV1beta2::ListVersionsResponse::Representation
command.response_class = Google::Apis::ArtifactregistryV1beta2::ListVersionsResponse
command.params['parent'] = parent unless parent.nil?
command.query['orderBy'] = order_by unless order_by.nil?
command.query['pageSize'] = page_size unless page_size.nil?
command.query['pageToken'] = page_token unless page_token.nil?
command.query['view'] = view unless view.nil?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/google-api-ruby-client.git",
"sha": "b264d974a86e5acbc70cd73915eaf73daac61a63"
"sha": "14926bc6021243bb9b419ee77034b7a2fa849937"
}
}
]
Expand Down