Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfoCommonName
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfoCommonName
 
 
- 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
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The TLS Common Name string of the certificate.
 - 
  
    
      #wildcard_match  ⇒ Boolean 
    
    
      (also: #wildcard_match?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the cert should be matched against as a wildcard cert.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudApigeeV1TlsInfoCommonName 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudApigeeV1TlsInfoCommonName.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1TlsInfoCommonName
Returns a new instance of GoogleCloudApigeeV1TlsInfoCommonName.
      11166 11167 11168  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 11166 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#value ⇒ String
The TLS Common Name string of the certificate.
Corresponds to the JSON property value
      11158 11159 11160  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 11158 def value @value end  | 
  
#wildcard_match ⇒ Boolean Also known as: wildcard_match?
Indicates whether the cert should be matched against as a wildcard cert.
Corresponds to the JSON property wildcardMatch
      11163 11164 11165  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 11163 def wildcard_match @wildcard_match end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      11171 11172 11173 11174  | 
    
      # File 'lib/google/apis/apigee_v1/classes.rb', line 11171 def update!(**args) @value = args[:value] if args.key?(:value) @wildcard_match = args[:wildcard_match] if args.key?(:wildcard_match) end  |