Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,14 @@ message Cluster {
google.protobuf.Timestamp grace_end_time = 4;
}

// Configuration for Dataplex integration.
message DataplexConfig {
// 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."
bool enabled = 1;
}

// Cluster State
enum State {
// The state of the cluster is unknown.
Expand Down Expand Up @@ -770,6 +778,9 @@ message Cluster {
(google.api.field_behavior) = IMMUTABLE,
(google.api.field_behavior) = OPTIONAL
];

// Optional. Configuration for Dataplex integration.
DataplexConfig dataplex_config = 47 [(google.api.field_behavior) = OPTIONAL];
}

// An Instance is a computing unit that an end customer can connect to.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,14 @@ message Cluster {
google.protobuf.Timestamp grace_end_time = 4;
}

// Configuration for Dataplex integration.
message DataplexConfig {
// 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."
bool enabled = 1;
}

// Cluster State
enum State {
// The state of the cluster is unknown.
Expand Down Expand Up @@ -788,6 +796,9 @@ message Cluster {
// service account. The per-cluster service account naming format is subject
// to change.
string service_account_email = 46 [(google.api.field_behavior) = OUTPUT_ONLY];

// Optional. Configuration for Dataplex integration.
DataplexConfig dataplex_config = 47 [(google.api.field_behavior) = OPTIONAL];
}

// An Instance is a computing unit that an end customer can connect to.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,14 @@ message Cluster {
google.protobuf.Timestamp grace_end_time = 4;
}

// Configuration for Dataplex integration.
message DataplexConfig {
// 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."
bool enabled = 1;
}

// Cluster State
enum State {
// The state of the cluster is unknown.
Expand Down Expand Up @@ -785,6 +793,9 @@ message Cluster {
// service account. The per-cluster service account naming format is subject
// to change.
string service_account_email = 46 [(google.api.field_behavior) = OUTPUT_ONLY];

// Optional. Configuration for Dataplex integration.
DataplexConfig dataplex_config = 47 [(google.api.field_behavior) = OPTIONAL];
}

// An Instance is a computing unit that an end customer can connect to.
Expand Down
Loading
Loading