Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ConnectorConfig

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

A representation of a connector config.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChromeManagementVersionsV1ConnectorConfig

Returns a new instance of GoogleChromeManagementVersionsV1ConnectorConfig.



5009
5010
5011
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5009

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

Instance Attribute Details

#detailsGoogle::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ConnectorConfigDetails

The details of the connector config. Corresponds to the JSON property details



4987
4988
4989
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4987

def details
  @details
end

#display_nameString

Required. The display name of the config. Corresponds to the JSON property displayName

Returns:

  • (String)


4992
4993
4994
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4992

def display_name
  @display_name
end

#nameString

Identifier. Format: customers/customer/connectorConfigs/connector_config Corresponds to the JSON property name

Returns:

  • (String)


4997
4998
4999
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4997

def name
  @name
end

#statusGoogle::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ConnectorConfigStatus

The status of the connector config. Corresponds to the JSON property status



5002
5003
5004
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5002

def status
  @status
end

#typeString

Required. The type of the connector. Corresponds to the JSON property type

Returns:

  • (String)


5007
5008
5009
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5007

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5014
5015
5016
5017
5018
5019
5020
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 5014

def update!(**args)
  @details = args[:details] if args.key?(:details)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @status = args[:status] if args.key?(:status)
  @type = args[:type] if args.key?(:type)
end