Class: Google::Apis::ConnectorsV1::RegionalSettings
- Inherits:
-
Object
- Object
- Google::Apis::ConnectorsV1::RegionalSettings
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/connectors_v1/classes.rb,
lib/google/apis/connectors_v1/representations.rb,
lib/google/apis/connectors_v1/representations.rb
Overview
Regional Settings details.
Instance Attribute Summary collapse
-
#encryption_config ⇒ Google::Apis::ConnectorsV1::EncryptionConfig
Regional encryption config for CMEK details.
-
#name ⇒ String
Output only.
-
#network_config ⇒ Google::Apis::ConnectorsV1::NetworkConfig
Regional Network Config.
-
#provisioned ⇒ Boolean
(also: #provisioned?)
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RegionalSettings
constructor
A new instance of RegionalSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RegionalSettings
Returns a new instance of RegionalSettings.
4387 4388 4389 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4387 def initialize(**args) update!(**args) end |
Instance Attribute Details
#encryption_config ⇒ Google::Apis::ConnectorsV1::EncryptionConfig
Regional encryption config for CMEK details.
Corresponds to the JSON property encryptionConfig
4368 4369 4370 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4368 def encryption_config @encryption_config end |
#name ⇒ String
Output only. Resource name of the Connection. Format: projects/project/
locations/location/regionalSettings
Corresponds to the JSON property name
4374 4375 4376 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4374 def name @name end |
#network_config ⇒ Google::Apis::ConnectorsV1::NetworkConfig
Regional Network Config.
Corresponds to the JSON property networkConfig
4379 4380 4381 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4379 def network_config @network_config end |
#provisioned ⇒ Boolean Also known as: provisioned?
Output only. Specifies whether the region is provisioned.
Corresponds to the JSON property provisioned
4384 4385 4386 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4384 def provisioned @provisioned end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4392 4393 4394 4395 4396 4397 |
# File 'lib/google/apis/connectors_v1/classes.rb', line 4392 def update!(**args) @encryption_config = args[:encryption_config] if args.key?(:encryption_config) @name = args[:name] if args.key?(:name) @network_config = args[:network_config] if args.key?(:network_config) @provisioned = args[:provisioned] if args.key?(:provisioned) end |