|
19 | 19 |
|
20 | 20 | class InitializeServiceRequest extends \Google\Model |
21 | 21 | { |
| 22 | + /** |
| 23 | + * Optional. The location where the BackupPlan will be created. This field is |
| 24 | + * required for multi-region BackupVaults and is optional for regional |
| 25 | + * BackupVaults. It is useful when creating a Backup Vault in a multi-region, |
| 26 | + * allowing the BackupPlan to reside in a specific region within that multi- |
| 27 | + * region. If this field is not provided, the BackupPlan will be created in |
| 28 | + * the same location as specified in the `name` field. |
| 29 | + * |
| 30 | + * @var string |
| 31 | + */ |
| 32 | + public $backupPlanLocation; |
22 | 33 | protected $cloudSqlInstanceInitializationConfigType = CloudSqlInstanceInitializationConfig::class; |
23 | 34 | protected $cloudSqlInstanceInitializationConfigDataType = ''; |
24 | 35 | /** |
@@ -46,6 +57,27 @@ class InitializeServiceRequest extends \Google\Model |
46 | 57 | */ |
47 | 58 | public $resourceType; |
48 | 59 |
|
| 60 | + /** |
| 61 | + * Optional. The location where the BackupPlan will be created. This field is |
| 62 | + * required for multi-region BackupVaults and is optional for regional |
| 63 | + * BackupVaults. It is useful when creating a Backup Vault in a multi-region, |
| 64 | + * allowing the BackupPlan to reside in a specific region within that multi- |
| 65 | + * region. If this field is not provided, the BackupPlan will be created in |
| 66 | + * the same location as specified in the `name` field. |
| 67 | + * |
| 68 | + * @param string $backupPlanLocation |
| 69 | + */ |
| 70 | + public function setBackupPlanLocation($backupPlanLocation) |
| 71 | + { |
| 72 | + $this->backupPlanLocation = $backupPlanLocation; |
| 73 | + } |
| 74 | + /** |
| 75 | + * @return string |
| 76 | + */ |
| 77 | + public function getBackupPlanLocation() |
| 78 | + { |
| 79 | + return $this->backupPlanLocation; |
| 80 | + } |
49 | 81 | /** |
50 | 82 | * Optional. The configuration for initializing a Cloud SQL instance. |
51 | 83 | * |
|
0 commit comments