class Google::Apis::ApigeeV1::GoogleCloudApigeeV1AliasRevisionConfig

Attributes

location[RW]

Location of the alias file. For example, a Google Cloud Storage URI. Corresponds to the JSON property `location` @return [String]

name[RW]

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 property `name` @return [String]

type[RW]

Corresponds to the JSON property `type` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigee_v1/classes.rb, line 354
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