diff --git a/generated/google/apis/artifactregistry_v1beta1.rb b/generated/google/apis/artifactregistry_v1beta1.rb index 87116c564..b29f743a9 100644 --- a/generated/google/apis/artifactregistry_v1beta1.rb +++ b/generated/google/apis/artifactregistry_v1beta1.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/artifacts/docs/ module ArtifactregistryV1beta1 VERSION = 'V1beta1' - REVISION = '20200508' + REVISION = '20200605' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/artifactregistry_v1beta1/classes.rb b/generated/google/apis/artifactregistry_v1beta1/classes.rb index 2d3e90747..f3599ced2 100644 --- a/generated/google/apis/artifactregistry_v1beta1/classes.rb +++ b/generated/google/apis/artifactregistry_v1beta1/classes.rb @@ -237,6 +237,119 @@ module Google end end + # Error information explaining why a package was not imported. + class GoogleDevtoolsArtifactregistryV1alpha1ErrorInfo + include Google::Apis::Core::Hashable + + # The `Status` type defines a logical error model that is suitable for + # different programming environments, including REST APIs and RPC APIs. It is + # used by [gRPC](https://github.com/grpc). Each `Status` message contains + # three pieces of data: error code, error message, and error details. + # You can find out more about this error model and how to work with it in the + # [API Design Guide](https://cloud.google.com/apis/design/errors). + # Corresponds to the JSON property `error` + # @return [Google::Apis::ArtifactregistryV1beta1::Status] + attr_accessor :error + + # Google Cloud Storage location for the input content. + # Corresponds to the JSON property `gcsSource` + # @return [Google::Apis::ArtifactregistryV1beta1::GoogleDevtoolsArtifactregistryV1alpha1GcsSource] + attr_accessor :gcs_source + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @error = args[:error] if args.key?(:error) + @gcs_source = args[:gcs_source] if args.key?(:gcs_source) + end + end + + # Google Cloud Storage location for the input content. + class GoogleDevtoolsArtifactregistryV1alpha1GcsSource + include Google::Apis::Core::Hashable + + # Cloud Storage paths URI (e.g., gs://my_bucket//my_object). + # Corresponds to the JSON property `uris` + # @return [Array] + attr_accessor :uris + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @uris = args[:uris] if args.key?(:uris) + end + end + + # The response message from importing artifacts. + class GoogleDevtoolsArtifactregistryV1alpha1ImportArtifactsResponse + include Google::Apis::Core::Hashable + + # Detailed error info for packages that were not imported. + # Corresponds to the JSON property `errors` + # @return [Array] + attr_accessor :errors + + # The packages updated. + # Corresponds to the JSON property `packages` + # @return [Array] + attr_accessor :packages + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @errors = args[:errors] if args.key?(:errors) + @packages = args[:packages] if args.key?(:packages) + end + end + + # Packages are named collections of versions. + class GoogleDevtoolsArtifactregistryV1alpha1Package + include Google::Apis::Core::Hashable + + # The time when the package was created. + # Corresponds to the JSON property `createTime` + # @return [String] + attr_accessor :create_time + + # The display name of the package. + # Corresponds to the JSON property `displayName` + # @return [String] + attr_accessor :display_name + + # The name of the package, for example: + # "projects/p1/locations/us-central1/repositories/repo1/packages/pkg1". + # Corresponds to the JSON property `name` + # @return [String] + attr_accessor :name + + # The time when the package was last updated. This includes publishing a new + # version of the package. + # Corresponds to the JSON property `updateTime` + # @return [String] + attr_accessor :update_time + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @create_time = args[:create_time] if args.key?(:create_time) + @display_name = args[:display_name] if args.key?(:display_name) + @name = args[:name] if args.key?(:name) + @update_time = args[:update_time] if args.key?(:update_time) + end + end + # A hash of file content. class HashProp include Google::Apis::Core::Hashable diff --git a/generated/google/apis/artifactregistry_v1beta1/representations.rb b/generated/google/apis/artifactregistry_v1beta1/representations.rb index be8ae69c0..eb15496d6 100644 --- a/generated/google/apis/artifactregistry_v1beta1/representations.rb +++ b/generated/google/apis/artifactregistry_v1beta1/representations.rb @@ -46,6 +46,30 @@ module Google include Google::Apis::Core::JsonObjectSupport end + class GoogleDevtoolsArtifactregistryV1alpha1ErrorInfo + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class GoogleDevtoolsArtifactregistryV1alpha1GcsSource + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class GoogleDevtoolsArtifactregistryV1alpha1ImportArtifactsResponse + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class GoogleDevtoolsArtifactregistryV1alpha1Package + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class HashProp class Representation < Google::Apis::Core::JsonRepresentation; end @@ -199,6 +223,43 @@ module Google end end + class GoogleDevtoolsArtifactregistryV1alpha1ErrorInfo + # @private + class Representation < Google::Apis::Core::JsonRepresentation + property :error, as: 'error', class: Google::Apis::ArtifactregistryV1beta1::Status, decorator: Google::Apis::ArtifactregistryV1beta1::Status::Representation + + property :gcs_source, as: 'gcsSource', class: Google::Apis::ArtifactregistryV1beta1::GoogleDevtoolsArtifactregistryV1alpha1GcsSource, decorator: Google::Apis::ArtifactregistryV1beta1::GoogleDevtoolsArtifactregistryV1alpha1GcsSource::Representation + + end + end + + class GoogleDevtoolsArtifactregistryV1alpha1GcsSource + # @private + class Representation < Google::Apis::Core::JsonRepresentation + collection :uris, as: 'uris' + end + end + + class GoogleDevtoolsArtifactregistryV1alpha1ImportArtifactsResponse + # @private + class Representation < Google::Apis::Core::JsonRepresentation + collection :errors, as: 'errors', class: Google::Apis::ArtifactregistryV1beta1::GoogleDevtoolsArtifactregistryV1alpha1ErrorInfo, decorator: Google::Apis::ArtifactregistryV1beta1::GoogleDevtoolsArtifactregistryV1alpha1ErrorInfo::Representation + + collection :packages, as: 'packages', class: Google::Apis::ArtifactregistryV1beta1::GoogleDevtoolsArtifactregistryV1alpha1Package, decorator: Google::Apis::ArtifactregistryV1beta1::GoogleDevtoolsArtifactregistryV1alpha1Package::Representation + + end + end + + class GoogleDevtoolsArtifactregistryV1alpha1Package + # @private + class Representation < Google::Apis::Core::JsonRepresentation + property :create_time, as: 'createTime' + property :display_name, as: 'displayName' + property :name, as: 'name' + property :update_time, as: 'updateTime' + end + end + class HashProp # @private class Representation < Google::Apis::Core::JsonRepresentation diff --git a/generated/google/apis/file_v1.rb b/generated/google/apis/file_v1.rb index 3aa22c823..6a9c2ed82 100644 --- a/generated/google/apis/file_v1.rb +++ b/generated/google/apis/file_v1.rb @@ -25,7 +25,7 @@ module Google # @see https://cloud.google.com/filestore/ module FileV1 VERSION = 'V1' - REVISION = '20200608' + REVISION = '20200613' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'