Class: Google::Apis::ArtifactregistryV1::ImportYumArtifactsGcsSource

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/artifactregistry_v1/classes.rb,
lib/google/apis/artifactregistry_v1/representations.rb,
lib/google/apis/artifactregistry_v1/representations.rb

Overview

Google Cloud Storage location where the artifacts currently reside.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ImportYumArtifactsGcsSource

Returns a new instance of ImportYumArtifactsGcsSource.



1213
1214
1215
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1213

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#urisArray<String>

Cloud Storage paths URI (e.g., gs://my_bucket//my_object). Corresponds to the JSON property uris

Returns:

  • (Array<String>)


1205
1206
1207
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1205

def uris
  @uris
end

#use_wildcardsBoolean Also known as: use_wildcards?

Supports URI wildcards for matching multiple objects from a single URI. Corresponds to the JSON property useWildcards

Returns:

  • (Boolean)


1210
1211
1212
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1210

def use_wildcards
  @use_wildcards
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1218
1219
1220
1221
# File 'lib/google/apis/artifactregistry_v1/classes.rb', line 1218

def update!(**args)
  @uris = args[:uris] if args.key?(:uris)
  @use_wildcards = args[:use_wildcards] if args.key?(:use_wildcards)
end