Managed Service for PostgreSQL API, gRPC: BackupRetentionPolicyService.Create
Add a new retention policy.
gRPC request
rpc Create (CreateBackupRetentionPolicyRequest) returns (CreateBackupRetentionPolicyResponse)
CreateBackupRetentionPolicyRequest
{
"cluster_id": "string",
"cron": {
"day_of_month": "string",
"month": "string",
"day_of_week": "string"
},
"retain_for_days": "int64",
"description": "string",
"policy_name": "string"
}
Field |
Description |
cluster_id |
string Required field. ID of the PostgreSQL cluster. |
cron |
CronTab schedule. |
retain_for_days |
int64 Retention duration. |
description |
string Policy description. |
policy_name |
string Required field. Required. Policy name. |
CronTab
Message to describe a crontab schedule.
Field |
Description |
day_of_month |
string |
month |
string |
day_of_week |
string |
CreateBackupRetentionPolicyResponse
{
"policy": {
"policy_id": "string",
"cluster_id": "string",
"policy_name": "string",
"created_at": "google.protobuf.Timestamp",
"cron": {
"day_of_month": "string",
"month": "string",
"day_of_week": "string"
},
"retain_for_days": "int64",
"description": "string"
}
}
Field |
Description |
policy |
Newly created BackupRetentionPolicy. |
BackupRetentionPolicy
Message to describe a retention policy for cluster backups.
Field |
Description |
policy_id |
string Required field. Required. Policy ID. |
cluster_id |
string Required field. PostgreSQL cluster ID. |
policy_name |
string Required field. Required. Policy name. |
created_at |
Creation timestamp in RFC3339 |
cron |
CronTab schedule. |
retain_for_days |
int64 Retention duration. |
description |
string Human-readable description. |
CronTab
Message to describe a crontab schedule.
Field |
Description |
day_of_month |
string |
month |
string |
day_of_week |
string |