Autogenerated update (2020-10-18)
Update: - artifactregistry_v1beta1 - content_v2_1
This commit is contained in:
parent
d28c26731f
commit
c98c719bba
|
@ -14213,6 +14213,7 @@
|
|||
"/artifactregistry:v1beta1/GoogleDevtoolsArtifactregistryV1alpha1GcsSource": google_devtools_artifactregistry_v1alpha1_gcs_source
|
||||
"/artifactregistry:v1beta1/GoogleDevtoolsArtifactregistryV1alpha1GcsSource/uris": uris
|
||||
"/artifactregistry:v1beta1/GoogleDevtoolsArtifactregistryV1alpha1GcsSource/uris/uri": uri
|
||||
"/artifactregistry:v1beta1/GoogleDevtoolsArtifactregistryV1alpha1GcsSource/useWildcards": use_wildcards
|
||||
"/artifactregistry:v1beta1/GoogleDevtoolsArtifactregistryV1alpha1ImportArtifactsResponse": google_devtools_artifactregistry_v1alpha1_import_artifacts_response
|
||||
"/artifactregistry:v1beta1/GoogleDevtoolsArtifactregistryV1alpha1ImportArtifactsResponse/errors": errors
|
||||
"/artifactregistry:v1beta1/GoogleDevtoolsArtifactregistryV1alpha1ImportArtifactsResponse/errors/error": error
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/artifacts/docs/
|
||||
module ArtifactregistryV1beta1
|
||||
VERSION = 'V1beta1'
|
||||
REVISION = '20200903'
|
||||
REVISION = '20201009'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -260,6 +260,12 @@ module Google
|
|||
# @return [Array<String>]
|
||||
attr_accessor :uris
|
||||
|
||||
# Supports URI wildcards for matching multiple objects from a single URI.
|
||||
# Corresponds to the JSON property `useWildcards`
|
||||
# @return [Boolean]
|
||||
attr_accessor :use_wildcards
|
||||
alias_method :use_wildcards?, :use_wildcards
|
||||
|
||||
def initialize(**args)
|
||||
update!(**args)
|
||||
end
|
||||
|
@ -267,6 +273,7 @@ module Google
|
|||
# Update properties of this object
|
||||
def update!(**args)
|
||||
@uris = args[:uris] if args.key?(:uris)
|
||||
@use_wildcards = args[:use_wildcards] if args.key?(:use_wildcards)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -238,6 +238,7 @@ module Google
|
|||
# @private
|
||||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
collection :uris, as: 'uris'
|
||||
property :use_wildcards, as: 'useWildcards'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://developers.google.com/shopping-content
|
||||
module ContentV2_1
|
||||
VERSION = 'V2_1'
|
||||
REVISION = '20201012'
|
||||
REVISION = '20201015'
|
||||
|
||||
# Manage your product listings and accounts for Google Shopping
|
||||
AUTH_CONTENT = 'https://www.googleapis.com/auth/content'
|
||||
|
|
Loading…
Reference in New Issue