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.



6547
6548
6549
# File 'lib/google/apis/connectors_v1/classes.rb', line 6547

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

Instance Attribute Details

#clientString

Optional. Client type for the regional settings. Corresponds to the JSON property client

Returns:

  • (String)


6523
6524
6525
# File 'lib/google/apis/connectors_v1/classes.rb', line 6523

def client
  @client
end

#encryption_configGoogle::Apis::ConnectorsV1::EncryptionConfig

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



6528
6529
6530
# File 'lib/google/apis/connectors_v1/classes.rb', line 6528

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)


6534
6535
6536
# File 'lib/google/apis/connectors_v1/classes.rb', line 6534

def name
  @name
end

#network_configGoogle::Apis::ConnectorsV1::NetworkConfig

Regional Network Config. Corresponds to the JSON property networkConfig



6539
6540
6541
# File 'lib/google/apis/connectors_v1/classes.rb', line 6539

def network_config
  @network_config
end

#provisionedBoolean Also known as: provisioned?

Output only. Specifies whether the region is provisioned. Corresponds to the JSON property provisioned

Returns:

  • (Boolean)


6544
6545
6546
# File 'lib/google/apis/connectors_v1/classes.rb', line 6544

def provisioned
  @provisioned
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6552
6553
6554
6555
6556
6557
6558
# File 'lib/google/apis/connectors_v1/classes.rb', line 6552

def update!(**args)
  @client = args[:client] if args.key?(:client)
  @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