Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfoCommonName

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) ⇒ GoogleCloudApigeeV1TlsInfoCommonName

Returns a new instance of GoogleCloudApigeeV1TlsInfoCommonName.



9448
9449
9450
# File 'lib/google/apis/apigee_v1/classes.rb', line 9448

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

Instance Attribute Details

#valueString

The TLS Common Name string of the certificate. Corresponds to the JSON property value

Returns:

  • (String)


9440
9441
9442
# File 'lib/google/apis/apigee_v1/classes.rb', line 9440

def value
  @value
end

#wildcard_matchBoolean Also known as: wildcard_match?

Indicates whether the cert should be matched against as a wildcard cert. Corresponds to the JSON property wildcardMatch

Returns:

  • (Boolean)


9445
9446
9447
# File 'lib/google/apis/apigee_v1/classes.rb', line 9445

def wildcard_match
  @wildcard_match
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9453
9454
9455
9456
# File 'lib/google/apis/apigee_v1/classes.rb', line 9453

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