Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AliasRevisionConfig

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1AliasRevisionConfig

Returns a new instance of GoogleCloudApigeeV1AliasRevisionConfig.



355
356
357
# File 'lib/google/apis/apigee_v1/classes.rb', line 355

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

Instance Attribute Details

#locationString

Location of the alias file. For example, a Google Cloud Storage URI. Corresponds to the JSON property location

Returns:

  • (String)


341
342
343
# File 'lib/google/apis/apigee_v1/classes.rb', line 341

def location
  @location
end

#nameString

Name of the alias revision included in the keystore in the following format: organizations/org/environments/env/keystores/keystore/aliases/alias/ revisions/rev` Corresponds to the JSON propertyname`

Returns:

  • (String)


348
349
350
# File 'lib/google/apis/apigee_v1/classes.rb', line 348

def name
  @name
end

#typeString

Corresponds to the JSON property type

Returns:

  • (String)


353
354
355
# File 'lib/google/apis/apigee_v1/classes.rb', line 353

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



360
361
362
363
364
# File 'lib/google/apis/apigee_v1/classes.rb', line 360

def update!(**args)
  @location = args[:location] if args.key?(:location)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
end