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.



6039
6040
6041
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6039

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)


6031
6032
6033
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6031

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)


6037
6038
6039
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6037

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6044
6045
6046
6047
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 6044

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