Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Alias

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

Overview

Reference to a certificate or key/certificate pair.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1Alias

Returns a new instance of GoogleCloudApigeeV1Alias.



439
440
441
# File 'lib/google/apis/apigee_v1/classes.rb', line 439

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

Instance Attribute Details

#aliasString

Resource ID for this alias. Values must match the regular expression [^/]1, 255`. Corresponds to the JSON propertyalias`

Returns:

  • (String)


427
428
429
# File 'lib/google/apis/apigee_v1/classes.rb', line 427

def alias
  @alias
end

#certs_infoGoogle::Apis::ApigeeV1::GoogleCloudApigeeV1Certificate

Chain of certificates under this alias. Corresponds to the JSON property certsInfo



432
433
434
# File 'lib/google/apis/apigee_v1/classes.rb', line 432

def certs_info
  @certs_info
end

#typeString

Type of alias. Corresponds to the JSON property type

Returns:

  • (String)


437
438
439
# File 'lib/google/apis/apigee_v1/classes.rb', line 437

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



444
445
446
447
448
# File 'lib/google/apis/apigee_v1/classes.rb', line 444

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