Class: Google::Apis::ConnectorsV1::RegionalSettings

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RegionalSettings

Returns a new instance of RegionalSettings.



4271
4272
4273
# File 'lib/google/apis/connectors_v1/classes.rb', line 4271

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

Instance Attribute Details

#encryption_configGoogle::Apis::ConnectorsV1::EncryptionConfig

Regional encryption config for CMEK details. Corresponds to the JSON property encryptionConfig



4258
4259
4260
# File 'lib/google/apis/connectors_v1/classes.rb', line 4258

def encryption_config
  @encryption_config
end

#nameString

Output only. Resource name of the Connection. Format: projects/project/ locations/location/regionalSettings Corresponds to the JSON property name

Returns:

  • (String)


4264
4265
4266
# File 'lib/google/apis/connectors_v1/classes.rb', line 4264

def name
  @name
end

#network_configGoogle::Apis::ConnectorsV1::NetworkConfig

Regional Network Config. Corresponds to the JSON property networkConfig



4269
4270
4271
# File 'lib/google/apis/connectors_v1/classes.rb', line 4269

def network_config
  @network_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4276
4277
4278
4279
4280
# File 'lib/google/apis/connectors_v1/classes.rb', line 4276

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)
end