Class: Google::Apis::AlloydbV1alpha::DataplexConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/alloydb_v1alpha/classes.rb,
lib/google/apis/alloydb_v1alpha/representations.rb,
lib/google/apis/alloydb_v1alpha/representations.rb

Overview

Configuration for Dataplex integration.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DataplexConfig

Returns a new instance of DataplexConfig.



1341
1342
1343
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 1341

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

Instance Attribute Details

#enabledBoolean Also known as: enabled?

Dataplex is enabled by default for resources such as clusters and instances. This flag controls the integration of AlloyDB PG resources (like databases, schemas, and tables) with Dataplex." Corresponds to the JSON property enabled

Returns:

  • (Boolean)


1338
1339
1340
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 1338

def enabled
  @enabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1346
1347
1348
# File 'lib/google/apis/alloydb_v1alpha/classes.rb', line 1346

def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
end