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 @@ -19,6 +19,7 @@ package google.cloud.backupdr.v1;
import "google/api/field_behavior.proto";
import "google/api/field_info.proto";
import "google/api/resource.proto";
import "google/cloud/backupdr/v1/backupvault_alloydb.proto";
import "google/cloud/backupdr/v1/backupvault_cloudsql.proto";
import "google/protobuf/field_mask.proto";
import "google/protobuf/timestamp.proto";
Expand Down Expand Up @@ -126,6 +127,11 @@ message BackupPlanAssociation {
CloudSqlInstanceBackupPlanAssociationProperties
cloud_sql_instance_backup_plan_association_properties = 10
[(google.api.field_behavior) = OUTPUT_ONLY];

// Output only. AlloyDB cluster's backup plan association properties.
AlloyDBClusterBackupPlanAssociationProperties
alloydb_cluster_backup_plan_association_properties = 15
[(google.api.field_behavior) = OUTPUT_ONLY];
}

// Output only. The user friendly revision ID of the `BackupPlanRevision`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ syntax = "proto3";
package google.cloud.backupdr.v1;

import "google/api/field_behavior.proto";
import "google/api/field_info.proto";
import "google/api/resource.proto";

option csharp_namespace = "Google.Cloud.BackupDR.V1";
Expand Down Expand Up @@ -61,3 +62,12 @@ message AlloyDbClusterBackupProperties {
// backup was taken.
string database_version = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
}

// Properties for an AlloyDB cluster backup plan association.
message AlloyDBClusterBackupPlanAssociationProperties {
// Output only. The cluster UID of the AlloyDB cluster.
string cluster_uid = 1 [
(google.api.field_info).format = UUID4,
(google.api.field_behavior) = OUTPUT_ONLY
];
}
Loading
Loading