Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ConnectorConfig
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ConnectorConfig
- 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
-
#details ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ConnectorConfigDetails
The details of the connector config.
-
#display_name ⇒ String
Required.
-
#name ⇒ String
Identifier.
-
#status ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ConnectorConfigStatus
The status of the connector config.
-
#type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1ConnectorConfig
constructor
A new instance of GoogleChromeManagementVersionsV1ConnectorConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementVersionsV1ConnectorConfig
Returns a new instance of GoogleChromeManagementVersionsV1ConnectorConfig.
4939 4940 4941 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4939 def initialize(**args) update!(**args) end |
Instance Attribute Details
#details ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ConnectorConfigDetails
The details of the connector config.
Corresponds to the JSON property details
4917 4918 4919 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4917 def details @details end |
#display_name ⇒ String
Required. The display name of the config.
Corresponds to the JSON property displayName
4922 4923 4924 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4922 def display_name @display_name end |
#name ⇒ String
Identifier. Format: customers/customer/connectorConfigs/connector_config
Corresponds to the JSON property name
4927 4928 4929 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4927 def name @name end |
#status ⇒ Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ConnectorConfigStatus
The status of the connector config.
Corresponds to the JSON property status
4932 4933 4934 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4932 def status @status end |
#type ⇒ String
Required. The type of the connector.
Corresponds to the JSON property type
4937 4938 4939 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4937 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4944 4945 4946 4947 4948 4949 4950 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 4944 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 |