class Google::Apis::ArtifactregistryV1beta2::ImportYumArtifactsGcsSource

Google Cloud Storage location where the artifacts currently reside.

Attributes

uris[RW]

Cloud Storage paths URI (e.g., gs://my_bucket//my_object). Corresponds to the JSON property `uris` @return [Array<String>]

use_wildcards[RW]

Supports URI wildcards for matching multiple objects from a single URI. Corresponds to the JSON property `useWildcards` @return [Boolean]

use_wildcards?[RW]

Supports URI wildcards for matching multiple objects from a single URI. Corresponds to the JSON property `useWildcards` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/artifactregistry_v1beta2/classes.rb, line 441
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/artifactregistry_v1beta2/classes.rb, line 446
def update!(**args)
  @uris = args[:uris] if args.key?(:uris)
  @use_wildcards = args[:use_wildcards] if args.key?(:use_wildcards)
end