Class: Google::Apis::BeyondcorpV1alpha::ConnectorInstanceConfig
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::ConnectorInstanceConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/beyondcorp_v1alpha/classes.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb,
lib/google/apis/beyondcorp_v1alpha/representations.rb
Overview
ConnectorInstanceConfig defines the instance config of a connector.
Instance Attribute Summary collapse
-
#image_config ⇒ Google::Apis::BeyondcorpV1alpha::ImageConfig
ImageConfig defines the control plane images to run.
-
#instance_config ⇒ Hash<String,Object>
The SLM instance agent configuration.
-
#notification_config ⇒ Google::Apis::BeyondcorpV1alpha::NotificationConfig
NotificationConfig defines the mechanisms to notify instance agent.
-
#sequence_number ⇒ Fixnum
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConnectorInstanceConfig
constructor
A new instance of ConnectorInstanceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConnectorInstanceConfig
Returns a new instance of ConnectorInstanceConfig.
914 915 916 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 914 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image_config ⇒ Google::Apis::BeyondcorpV1alpha::ImageConfig
ImageConfig defines the control plane images to run.
Corresponds to the JSON property imageConfig
895 896 897 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 895 def image_config @image_config end |
#instance_config ⇒ Hash<String,Object>
The SLM instance agent configuration.
Corresponds to the JSON property instanceConfig
900 901 902 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 900 def instance_config @instance_config end |
#notification_config ⇒ Google::Apis::BeyondcorpV1alpha::NotificationConfig
NotificationConfig defines the mechanisms to notify instance agent.
Corresponds to the JSON property notificationConfig
905 906 907 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 905 def notification_config @notification_config end |
#sequence_number ⇒ Fixnum
Required. A monotonically increasing number generated and maintained by the
API provider. Every time a config changes in the backend, the sequenceNumber
should be bumped up to reflect the change.
Corresponds to the JSON property sequenceNumber
912 913 914 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 912 def sequence_number @sequence_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
919 920 921 922 923 924 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 919 def update!(**args) @image_config = args[:image_config] if args.key?(:image_config) @instance_config = args[:instance_config] if args.key?(:instance_config) @notification_config = args[:notification_config] if args.key?(:notification_config) @sequence_number = args[:sequence_number] if args.key?(:sequence_number) end |