class Google::Apis::ApigeeV1::GoogleCloudApigeeV1Alias

Reference to a certificate or key/certificate pair.

Attributes

alias[RW]

Resource ID for this alias. Values must match the regular expression `[^/]`1, 255“. Corresponds to the JSON property `alias` @return [String]

certs_info[RW]

Chain of certificates under this alias. Corresponds to the JSON property `certsInfo` @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Certificate]

type[RW]

Type of alias. 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 316
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 321
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