Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1SubjectAltName

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb

Overview

Describes a subject alternative name.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementVersionsV1SubjectAltName

Returns a new instance of GoogleChromeManagementVersionsV1SubjectAltName.



6423
6424
6425
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6423

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

Instance Attribute Details

#typeString

Output only. The type of the SubjectAltName extension. Corresponds to the JSON property type

Returns:

  • (String)


6415
6416
6417
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6415

def type
  @type
end

#valueString

Output only. The value of the subject alternative name with respect to the type. Corresponds to the JSON property value

Returns:

  • (String)


6421
6422
6423
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6421

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6428
6429
6430
6431
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6428

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