pulumi-gcp 8.21.0a1741070272__py3-none-any.whl → 8.21.0a1741156431__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +16 -0
- pulumi_gcp/alloydb/__init__.py +1 -0
- pulumi_gcp/alloydb/get_cluster.py +491 -0
- pulumi_gcp/alloydb/outputs.py +808 -0
- pulumi_gcp/appengine/_inputs.py +3 -3
- pulumi_gcp/appengine/outputs.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +16 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +16 -0
- pulumi_gcp/backupdisasterrecovery/management_server.py +16 -0
- pulumi_gcp/bigquery/_inputs.py +6 -8
- pulumi_gcp/bigquery/data_transfer_config.py +28 -0
- pulumi_gcp/bigquery/outputs.py +4 -5
- pulumi_gcp/chronicle/rule_deployment.py +21 -7
- pulumi_gcp/composer/get_environment.py +12 -0
- pulumi_gcp/composer/get_image_versions.py +12 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +12 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +140 -6
- pulumi_gcp/datacatalog/entry_group.py +4 -0
- pulumi_gcp/datacatalog/tag_template.py +4 -0
- pulumi_gcp/developerconnect/_inputs.py +575 -0
- pulumi_gcp/developerconnect/connection.py +200 -0
- pulumi_gcp/developerconnect/git_repository_link.py +12 -0
- pulumi_gcp/developerconnect/outputs.py +461 -0
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting.py +6 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +722 -0
- pulumi_gcp/gemini/logging_setting.py +4 -0
- pulumi_gcp/gemini/logging_setting_binding.py +12 -0
- pulumi_gcp/iam/organizations_policy_binding.py +10 -2
- pulumi_gcp/iam/projects_policy_binding.py +10 -2
- pulumi_gcp/iam/workforce_pool_provider.py +63 -11
- pulumi_gcp/parametermanager/get_parameter_version_render.py +3 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +3 -0
- pulumi_gcp/projects/__init__.py +1 -0
- pulumi_gcp/projects/get_ancestry.py +150 -0
- pulumi_gcp/projects/outputs.py +30 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +211 -94
- pulumi_gcp/secretmanager/secret_version.py +73 -23
- pulumi_gcp/spanner/__init__.py +1 -0
- pulumi_gcp/spanner/instance_partition.py +658 -0
- pulumi_gcp/sql/user.py +20 -14
- pulumi_gcp/tpu/_inputs.py +150 -1
- pulumi_gcp/tpu/outputs.py +114 -1
- pulumi_gcp/tpu/v2_queued_resource.py +74 -0
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741156431.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741156431.dist-info}/RECORD +50 -46
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741156431.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741156431.dist-info}/top_level.txt +0 -0
pulumi_gcp/appengine/_inputs.py
CHANGED
@@ -3079,7 +3079,7 @@ if not MYPY:
|
|
3079
3079
|
max_instances: NotRequired[pulumi.Input[int]]
|
3080
3080
|
"""
|
3081
3081
|
Maximum number of instances to run for this version. Set to zero to disable maxInstances configuration.
|
3082
|
-
**Note:** Starting from
|
3082
|
+
**Note:** Starting from March 2025, App Engine sets the maxInstances default for standard environment deployments to 20. This change doesn't impact existing apps. To override the default, specify a new value between 0 and 2147483647, and deploy a new version or redeploy over an existing version. To disable the maxInstances default configuration setting, specify the maximum permitted value 2147483647.
|
3083
3083
|
"""
|
3084
3084
|
min_instances: NotRequired[pulumi.Input[int]]
|
3085
3085
|
"""
|
@@ -3105,7 +3105,7 @@ class StandardAppVersionAutomaticScalingStandardSchedulerSettingsArgs:
|
|
3105
3105
|
target_throughput_utilization: Optional[pulumi.Input[float]] = None):
|
3106
3106
|
"""
|
3107
3107
|
:param pulumi.Input[int] max_instances: Maximum number of instances to run for this version. Set to zero to disable maxInstances configuration.
|
3108
|
-
**Note:** Starting from
|
3108
|
+
**Note:** Starting from March 2025, App Engine sets the maxInstances default for standard environment deployments to 20. This change doesn't impact existing apps. To override the default, specify a new value between 0 and 2147483647, and deploy a new version or redeploy over an existing version. To disable the maxInstances default configuration setting, specify the maximum permitted value 2147483647.
|
3109
3109
|
:param pulumi.Input[int] min_instances: Minimum number of instances to run for this version. Set to zero to disable minInstances configuration.
|
3110
3110
|
:param pulumi.Input[float] target_cpu_utilization: Target CPU utilization ratio to maintain when scaling. Should be a value in the range [0.50, 0.95], zero, or a negative value.
|
3111
3111
|
:param pulumi.Input[float] target_throughput_utilization: Target throughput utilization ratio to maintain when scaling. Should be a value in the range [0.50, 0.95], zero, or a negative value.
|
@@ -3124,7 +3124,7 @@ class StandardAppVersionAutomaticScalingStandardSchedulerSettingsArgs:
|
|
3124
3124
|
def max_instances(self) -> Optional[pulumi.Input[int]]:
|
3125
3125
|
"""
|
3126
3126
|
Maximum number of instances to run for this version. Set to zero to disable maxInstances configuration.
|
3127
|
-
**Note:** Starting from
|
3127
|
+
**Note:** Starting from March 2025, App Engine sets the maxInstances default for standard environment deployments to 20. This change doesn't impact existing apps. To override the default, specify a new value between 0 and 2147483647, and deploy a new version or redeploy over an existing version. To disable the maxInstances default configuration setting, specify the maximum permitted value 2147483647.
|
3128
3128
|
"""
|
3129
3129
|
return pulumi.get(self, "max_instances")
|
3130
3130
|
|
pulumi_gcp/appengine/outputs.py
CHANGED
@@ -2424,7 +2424,7 @@ class StandardAppVersionAutomaticScalingStandardSchedulerSettings(dict):
|
|
2424
2424
|
target_throughput_utilization: Optional[float] = None):
|
2425
2425
|
"""
|
2426
2426
|
:param int max_instances: Maximum number of instances to run for this version. Set to zero to disable maxInstances configuration.
|
2427
|
-
**Note:** Starting from
|
2427
|
+
**Note:** Starting from March 2025, App Engine sets the maxInstances default for standard environment deployments to 20. This change doesn't impact existing apps. To override the default, specify a new value between 0 and 2147483647, and deploy a new version or redeploy over an existing version. To disable the maxInstances default configuration setting, specify the maximum permitted value 2147483647.
|
2428
2428
|
:param int min_instances: Minimum number of instances to run for this version. Set to zero to disable minInstances configuration.
|
2429
2429
|
:param float target_cpu_utilization: Target CPU utilization ratio to maintain when scaling. Should be a value in the range [0.50, 0.95], zero, or a negative value.
|
2430
2430
|
:param float target_throughput_utilization: Target throughput utilization ratio to maintain when scaling. Should be a value in the range [0.50, 0.95], zero, or a negative value.
|
@@ -2443,7 +2443,7 @@ class StandardAppVersionAutomaticScalingStandardSchedulerSettings(dict):
|
|
2443
2443
|
def max_instances(self) -> Optional[int]:
|
2444
2444
|
"""
|
2445
2445
|
Maximum number of instances to run for this version. Set to zero to disable maxInstances configuration.
|
2446
|
-
**Note:** Starting from
|
2446
|
+
**Note:** Starting from March 2025, App Engine sets the maxInstances default for standard environment deployments to 20. This change doesn't impact existing apps. To override the default, specify a new value between 0 and 2147483647, and deploy a new version or redeploy over an existing version. To disable the maxInstances default configuration setting, specify the maximum permitted value 2147483647.
|
2447
2447
|
"""
|
2448
2448
|
return pulumi.get(self, "max_instances")
|
2449
2449
|
|
@@ -327,6 +327,14 @@ class BackupPlan(pulumi.CustomResource):
|
|
327
327
|
resource_type: Optional[pulumi.Input[str]] = None,
|
328
328
|
__props__=None):
|
329
329
|
"""
|
330
|
+
A backup plan defines when and how to back up a resource, including the backup's schedule, retention, and location.
|
331
|
+
|
332
|
+
To get more information about BackupPlan, see:
|
333
|
+
|
334
|
+
* [API documentation](https://cloud.google.com/backup-disaster-recovery/docs/reference/rest)
|
335
|
+
* How-to Guides
|
336
|
+
* [Official Documentation](https://cloud.google.com/backup-disaster-recovery/docs)
|
337
|
+
|
330
338
|
## Example Usage
|
331
339
|
|
332
340
|
### Backup Dr Backup Plan Simple
|
@@ -400,6 +408,14 @@ class BackupPlan(pulumi.CustomResource):
|
|
400
408
|
args: BackupPlanArgs,
|
401
409
|
opts: Optional[pulumi.ResourceOptions] = None):
|
402
410
|
"""
|
411
|
+
A backup plan defines when and how to back up a resource, including the backup's schedule, retention, and location.
|
412
|
+
|
413
|
+
To get more information about BackupPlan, see:
|
414
|
+
|
415
|
+
* [API documentation](https://cloud.google.com/backup-disaster-recovery/docs/reference/rest)
|
416
|
+
* How-to Guides
|
417
|
+
* [Official Documentation](https://cloud.google.com/backup-disaster-recovery/docs)
|
418
|
+
|
403
419
|
## Example Usage
|
404
420
|
|
405
421
|
### Backup Dr Backup Plan Simple
|
@@ -348,6 +348,14 @@ class BackupPlanAssociation(pulumi.CustomResource):
|
|
348
348
|
resource_type: Optional[pulumi.Input[str]] = None,
|
349
349
|
__props__=None):
|
350
350
|
"""
|
351
|
+
A Backup and DR BackupPlanAssociation.
|
352
|
+
|
353
|
+
To get more information about BackupPlanAssociation, see:
|
354
|
+
|
355
|
+
* [API documentation](https://cloud.google.com/backup-disaster-recovery/docs/reference/rest)
|
356
|
+
* How-to Guides
|
357
|
+
* [Official Documentation](https://cloud.google.com/backup-disaster-recovery/docs)
|
358
|
+
|
351
359
|
## Example Usage
|
352
360
|
|
353
361
|
### Backup Dr Bpa
|
@@ -457,6 +465,14 @@ class BackupPlanAssociation(pulumi.CustomResource):
|
|
457
465
|
args: BackupPlanAssociationArgs,
|
458
466
|
opts: Optional[pulumi.ResourceOptions] = None):
|
459
467
|
"""
|
468
|
+
A Backup and DR BackupPlanAssociation.
|
469
|
+
|
470
|
+
To get more information about BackupPlanAssociation, see:
|
471
|
+
|
472
|
+
* [API documentation](https://cloud.google.com/backup-disaster-recovery/docs/reference/rest)
|
473
|
+
* How-to Guides
|
474
|
+
* [Official Documentation](https://cloud.google.com/backup-disaster-recovery/docs)
|
475
|
+
|
460
476
|
## Example Usage
|
461
477
|
|
462
478
|
### Backup Dr Bpa
|
@@ -267,6 +267,14 @@ class ManagementServer(pulumi.CustomResource):
|
|
267
267
|
type: Optional[pulumi.Input[str]] = None,
|
268
268
|
__props__=None):
|
269
269
|
"""
|
270
|
+
A Backup and DR Management Server (Also referred as Management Console)
|
271
|
+
|
272
|
+
To get more information about ManagementServer, see:
|
273
|
+
|
274
|
+
* [API documentation](https://cloud.google.com/backup-disaster-recovery/docs/deployment/deployment-plan)
|
275
|
+
* How-to Guides
|
276
|
+
* [Official Documentation](https://cloud.google.com/backup-disaster-recovery/docs)
|
277
|
+
|
270
278
|
## Example Usage
|
271
279
|
|
272
280
|
### Backup Dr Management Server
|
@@ -339,6 +347,14 @@ class ManagementServer(pulumi.CustomResource):
|
|
339
347
|
args: ManagementServerArgs,
|
340
348
|
opts: Optional[pulumi.ResourceOptions] = None):
|
341
349
|
"""
|
350
|
+
A Backup and DR Management Server (Also referred as Management Console)
|
351
|
+
|
352
|
+
To get more information about ManagementServer, see:
|
353
|
+
|
354
|
+
* [API documentation](https://cloud.google.com/backup-disaster-recovery/docs/deployment/deployment-plan)
|
355
|
+
* How-to Guides
|
356
|
+
* [Official Documentation](https://cloud.google.com/backup-disaster-recovery/docs)
|
357
|
+
|
342
358
|
## Example Usage
|
343
359
|
|
344
360
|
### Backup Dr Management Server
|
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -1398,10 +1398,9 @@ class DataTransferConfigScheduleOptionsArgs:
|
|
1398
1398
|
|
1399
1399
|
if not MYPY:
|
1400
1400
|
class DataTransferConfigSensitiveParamsArgsDict(TypedDict):
|
1401
|
-
secret_access_key: pulumi.Input[str]
|
1401
|
+
secret_access_key: NotRequired[pulumi.Input[str]]
|
1402
1402
|
"""
|
1403
1403
|
The Secret Access Key of the AWS account transferring data from.
|
1404
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
1405
1404
|
"""
|
1406
1405
|
elif False:
|
1407
1406
|
DataTransferConfigSensitiveParamsArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1409,24 +1408,23 @@ elif False:
|
|
1409
1408
|
@pulumi.input_type
|
1410
1409
|
class DataTransferConfigSensitiveParamsArgs:
|
1411
1410
|
def __init__(__self__, *,
|
1412
|
-
secret_access_key: pulumi.Input[str]):
|
1411
|
+
secret_access_key: Optional[pulumi.Input[str]] = None):
|
1413
1412
|
"""
|
1414
1413
|
:param pulumi.Input[str] secret_access_key: The Secret Access Key of the AWS account transferring data from.
|
1415
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
1416
1414
|
"""
|
1417
|
-
|
1415
|
+
if secret_access_key is not None:
|
1416
|
+
pulumi.set(__self__, "secret_access_key", secret_access_key)
|
1418
1417
|
|
1419
1418
|
@property
|
1420
1419
|
@pulumi.getter(name="secretAccessKey")
|
1421
|
-
def secret_access_key(self) -> pulumi.Input[str]:
|
1420
|
+
def secret_access_key(self) -> Optional[pulumi.Input[str]]:
|
1422
1421
|
"""
|
1423
1422
|
The Secret Access Key of the AWS account transferring data from.
|
1424
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
1425
1423
|
"""
|
1426
1424
|
return pulumi.get(self, "secret_access_key")
|
1427
1425
|
|
1428
1426
|
@secret_access_key.setter
|
1429
|
-
def secret_access_key(self, value: pulumi.Input[str]):
|
1427
|
+
def secret_access_key(self, value: Optional[pulumi.Input[str]]):
|
1430
1428
|
pulumi.set(self, "secret_access_key", value)
|
1431
1429
|
|
1432
1430
|
|
@@ -698,6 +698,9 @@ class DataTransferConfig(pulumi.CustomResource):
|
|
698
698
|
* How-to Guides
|
699
699
|
* [Official Documentation](https://cloud.google.com/bigquery/docs/reference/datatransfer/rest/)
|
700
700
|
|
701
|
+
> **Note:** All arguments marked as write-only values will not be stored in the state: `sensitive_params.secret_access_key_wo`.
|
702
|
+
Read more about Write-only Attributes.
|
703
|
+
|
701
704
|
## Example Usage
|
702
705
|
|
703
706
|
### Bigquerydatatransfer Config Scheduled Query
|
@@ -794,6 +797,17 @@ class DataTransferConfig(pulumi.CustomResource):
|
|
794
797
|
})
|
795
798
|
```
|
796
799
|
|
800
|
+
## Ephemeral Attributes Reference
|
801
|
+
|
802
|
+
The following write-only attributes are supported:
|
803
|
+
|
804
|
+
<a name="nested_sensitive_params"></a>The `sensitive_params` block supports:
|
805
|
+
|
806
|
+
* `secret_access_key_wo` -
|
807
|
+
(Optional)
|
808
|
+
The Secret Access Key of the AWS account transferring data from.
|
809
|
+
**Note**: This property is write-only and will not be read from the API.
|
810
|
+
|
797
811
|
## Import
|
798
812
|
|
799
813
|
Config can be imported using any of these accepted formats:
|
@@ -885,6 +899,9 @@ class DataTransferConfig(pulumi.CustomResource):
|
|
885
899
|
* How-to Guides
|
886
900
|
* [Official Documentation](https://cloud.google.com/bigquery/docs/reference/datatransfer/rest/)
|
887
901
|
|
902
|
+
> **Note:** All arguments marked as write-only values will not be stored in the state: `sensitive_params.secret_access_key_wo`.
|
903
|
+
Read more about Write-only Attributes.
|
904
|
+
|
888
905
|
## Example Usage
|
889
906
|
|
890
907
|
### Bigquerydatatransfer Config Scheduled Query
|
@@ -981,6 +998,17 @@ class DataTransferConfig(pulumi.CustomResource):
|
|
981
998
|
})
|
982
999
|
```
|
983
1000
|
|
1001
|
+
## Ephemeral Attributes Reference
|
1002
|
+
|
1003
|
+
The following write-only attributes are supported:
|
1004
|
+
|
1005
|
+
<a name="nested_sensitive_params"></a>The `sensitive_params` block supports:
|
1006
|
+
|
1007
|
+
* `secret_access_key_wo` -
|
1008
|
+
(Optional)
|
1009
|
+
The Secret Access Key of the AWS account transferring data from.
|
1010
|
+
**Note**: This property is write-only and will not be read from the API.
|
1011
|
+
|
984
1012
|
## Import
|
985
1013
|
|
986
1014
|
Config can be imported using any of these accepted formats:
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -1137,19 +1137,18 @@ class DataTransferConfigSensitiveParams(dict):
|
|
1137
1137
|
return super().get(key, default)
|
1138
1138
|
|
1139
1139
|
def __init__(__self__, *,
|
1140
|
-
secret_access_key: str):
|
1140
|
+
secret_access_key: Optional[str] = None):
|
1141
1141
|
"""
|
1142
1142
|
:param str secret_access_key: The Secret Access Key of the AWS account transferring data from.
|
1143
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
1144
1143
|
"""
|
1145
|
-
|
1144
|
+
if secret_access_key is not None:
|
1145
|
+
pulumi.set(__self__, "secret_access_key", secret_access_key)
|
1146
1146
|
|
1147
1147
|
@property
|
1148
1148
|
@pulumi.getter(name="secretAccessKey")
|
1149
|
-
def secret_access_key(self) -> str:
|
1149
|
+
def secret_access_key(self) -> Optional[str]:
|
1150
1150
|
"""
|
1151
1151
|
The Secret Access Key of the AWS account transferring data from.
|
1152
|
-
**Note**: This property is sensitive and will not be displayed in the plan.
|
1153
1152
|
"""
|
1154
1153
|
return pulumi.get(self, "secret_access_key")
|
1155
1154
|
|
@@ -38,7 +38,9 @@ class RuleDeploymentArgs:
|
|
38
38
|
:param pulumi.Input[bool] alerting: Whether detections resulting from this deployment should be considered
|
39
39
|
alerts.
|
40
40
|
:param pulumi.Input[bool] archived: The archive state of the rule deployment.
|
41
|
-
Cannot be set to true unless enabled is set to false.
|
41
|
+
Cannot be set to true unless enabled is set to false i.e.
|
42
|
+
archiving requires a two-step process: first, disable the rule by
|
43
|
+
setting 'enabled' to false, then set 'archive' to true.
|
42
44
|
If set to true, alerting will automatically be set to false.
|
43
45
|
If currently set to true, enabled, alerting, and run_frequency cannot be
|
44
46
|
updated.
|
@@ -122,7 +124,9 @@ class RuleDeploymentArgs:
|
|
122
124
|
def archived(self) -> Optional[pulumi.Input[bool]]:
|
123
125
|
"""
|
124
126
|
The archive state of the rule deployment.
|
125
|
-
Cannot be set to true unless enabled is set to false.
|
127
|
+
Cannot be set to true unless enabled is set to false i.e.
|
128
|
+
archiving requires a two-step process: first, disable the rule by
|
129
|
+
setting 'enabled' to false, then set 'archive' to true.
|
126
130
|
If set to true, alerting will automatically be set to false.
|
127
131
|
If currently set to true, enabled, alerting, and run_frequency cannot be
|
128
132
|
updated.
|
@@ -198,7 +202,9 @@ class _RuleDeploymentState:
|
|
198
202
|
alerts.
|
199
203
|
:param pulumi.Input[str] archive_time: Output only. The timestamp when the rule deployment archive state was last set to true. If the rule deployment's current archive state is not set to true, the field will be empty.
|
200
204
|
:param pulumi.Input[bool] archived: The archive state of the rule deployment.
|
201
|
-
Cannot be set to true unless enabled is set to false.
|
205
|
+
Cannot be set to true unless enabled is set to false i.e.
|
206
|
+
archiving requires a two-step process: first, disable the rule by
|
207
|
+
setting 'enabled' to false, then set 'archive' to true.
|
202
208
|
If set to true, alerting will automatically be set to false.
|
203
209
|
If currently set to true, enabled, alerting, and run_frequency cannot be
|
204
210
|
updated.
|
@@ -296,7 +302,9 @@ class _RuleDeploymentState:
|
|
296
302
|
def archived(self) -> Optional[pulumi.Input[bool]]:
|
297
303
|
"""
|
298
304
|
The archive state of the rule deployment.
|
299
|
-
Cannot be set to true unless enabled is set to false.
|
305
|
+
Cannot be set to true unless enabled is set to false i.e.
|
306
|
+
archiving requires a two-step process: first, disable the rule by
|
307
|
+
setting 'enabled' to false, then set 'archive' to true.
|
300
308
|
If set to true, alerting will automatically be set to false.
|
301
309
|
If currently set to true, enabled, alerting, and run_frequency cannot be
|
302
310
|
updated.
|
@@ -509,7 +517,9 @@ class RuleDeployment(pulumi.CustomResource):
|
|
509
517
|
:param pulumi.Input[bool] alerting: Whether detections resulting from this deployment should be considered
|
510
518
|
alerts.
|
511
519
|
:param pulumi.Input[bool] archived: The archive state of the rule deployment.
|
512
|
-
Cannot be set to true unless enabled is set to false.
|
520
|
+
Cannot be set to true unless enabled is set to false i.e.
|
521
|
+
archiving requires a two-step process: first, disable the rule by
|
522
|
+
setting 'enabled' to false, then set 'archive' to true.
|
513
523
|
If set to true, alerting will automatically be set to false.
|
514
524
|
If currently set to true, enabled, alerting, and run_frequency cannot be
|
515
525
|
updated.
|
@@ -648,7 +658,9 @@ class RuleDeployment(pulumi.CustomResource):
|
|
648
658
|
alerts.
|
649
659
|
:param pulumi.Input[str] archive_time: Output only. The timestamp when the rule deployment archive state was last set to true. If the rule deployment's current archive state is not set to true, the field will be empty.
|
650
660
|
:param pulumi.Input[bool] archived: The archive state of the rule deployment.
|
651
|
-
Cannot be set to true unless enabled is set to false.
|
661
|
+
Cannot be set to true unless enabled is set to false i.e.
|
662
|
+
archiving requires a two-step process: first, disable the rule by
|
663
|
+
setting 'enabled' to false, then set 'archive' to true.
|
652
664
|
If set to true, alerting will automatically be set to false.
|
653
665
|
If currently set to true, enabled, alerting, and run_frequency cannot be
|
654
666
|
updated.
|
@@ -729,7 +741,9 @@ class RuleDeployment(pulumi.CustomResource):
|
|
729
741
|
def archived(self) -> pulumi.Output[Optional[bool]]:
|
730
742
|
"""
|
731
743
|
The archive state of the rule deployment.
|
732
|
-
Cannot be set to true unless enabled is set to false.
|
744
|
+
Cannot be set to true unless enabled is set to false i.e.
|
745
|
+
archiving requires a two-step process: first, disable the rule by
|
746
|
+
setting 'enabled' to false, then set 'archive' to true.
|
733
747
|
If set to true, alerting will automatically be set to false.
|
734
748
|
If currently set to true, enabled, alerting, and run_frequency cannot be
|
735
749
|
updated.
|
@@ -132,6 +132,12 @@ def get_environment(name: Optional[str] = None,
|
|
132
132
|
"""
|
133
133
|
Provides access to Cloud Composer environment configuration in a region for a given project.
|
134
134
|
|
135
|
+
To get more information about Composer Environment, see:
|
136
|
+
|
137
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.environments)
|
138
|
+
* How-to Guides
|
139
|
+
* [Official Documentation](https://cloud.google.com/composer/docs/concepts/overview)
|
140
|
+
|
135
141
|
## Example Usage
|
136
142
|
|
137
143
|
```python
|
@@ -173,6 +179,12 @@ def get_environment_output(name: Optional[pulumi.Input[str]] = None,
|
|
173
179
|
"""
|
174
180
|
Provides access to Cloud Composer environment configuration in a region for a given project.
|
175
181
|
|
182
|
+
To get more information about Composer Environment, see:
|
183
|
+
|
184
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.environments)
|
185
|
+
* How-to Guides
|
186
|
+
* [Official Documentation](https://cloud.google.com/composer/docs/concepts/overview)
|
187
|
+
|
176
188
|
## Example Usage
|
177
189
|
|
178
190
|
```python
|
@@ -86,6 +86,12 @@ def get_image_versions(project: Optional[str] = None,
|
|
86
86
|
"""
|
87
87
|
Provides access to available Cloud Composer versions in a region for a given project.
|
88
88
|
|
89
|
+
To get more information about Composer Image Versions, see:
|
90
|
+
|
91
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.imageVersions)
|
92
|
+
* How-to Guides
|
93
|
+
* [Official Documentation](https://cloud.google.com/composer/docs/concepts/overview)
|
94
|
+
|
89
95
|
## Example Usage
|
90
96
|
|
91
97
|
```python
|
@@ -126,6 +132,12 @@ def get_image_versions_output(project: Optional[pulumi.Input[Optional[str]]] = N
|
|
126
132
|
"""
|
127
133
|
Provides access to available Cloud Composer versions in a region for a given project.
|
128
134
|
|
135
|
+
To get more information about Composer Image Versions, see:
|
136
|
+
|
137
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.imageVersions)
|
138
|
+
* How-to Guides
|
139
|
+
* [Official Documentation](https://cloud.google.com/composer/docs/concepts/overview)
|
140
|
+
|
129
141
|
## Example Usage
|
130
142
|
|
131
143
|
```python
|
@@ -106,6 +106,12 @@ def get_user_workloads_config_map(environment: Optional[str] = None,
|
|
106
106
|
"""
|
107
107
|
Provides access to Kubernetes ConfigMap configuration for a given project, region and Composer Environment.
|
108
108
|
|
109
|
+
To get more information about Composer User Workloads Config Map, see:
|
110
|
+
|
111
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.environments.userWorkloadsConfigMaps)
|
112
|
+
* How-to Guides
|
113
|
+
* [Official Documentation](https://cloud.google.com/composer/docs/concepts/overview)
|
114
|
+
|
109
115
|
## Example Usage
|
110
116
|
|
111
117
|
```python
|
@@ -161,6 +167,12 @@ def get_user_workloads_config_map_output(environment: Optional[pulumi.Input[str]
|
|
161
167
|
"""
|
162
168
|
Provides access to Kubernetes ConfigMap configuration for a given project, region and Composer Environment.
|
163
169
|
|
170
|
+
To get more information about Composer User Workloads Config Map, see:
|
171
|
+
|
172
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.environments.userWorkloadsConfigMaps)
|
173
|
+
* How-to Guides
|
174
|
+
* [Official Documentation](https://cloud.google.com/composer/docs/concepts/overview)
|
175
|
+
|
164
176
|
## Example Usage
|
165
177
|
|
166
178
|
```python
|
@@ -102,6 +102,12 @@ def get_user_workloads_secret(environment: Optional[str] = None,
|
|
102
102
|
"""
|
103
103
|
Provides access to Kubernetes Secret configuration for a given project, region and Composer Environment.
|
104
104
|
|
105
|
+
To get more information about Composer User Workloads Secrets, see:
|
106
|
+
|
107
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.environments.userWorkloadsSecrets)
|
108
|
+
* How-to Guides
|
109
|
+
* [Official Documentation](https://cloud.google.com/artifact-registry/docs/overview)
|
110
|
+
|
105
111
|
## Example Usage
|
106
112
|
|
107
113
|
```python
|
@@ -158,6 +164,12 @@ def get_user_workloads_secret_output(environment: Optional[pulumi.Input[str]] =
|
|
158
164
|
"""
|
159
165
|
Provides access to Kubernetes Secret configuration for a given project, region and Composer Environment.
|
160
166
|
|
167
|
+
To get more information about Composer User Workloads Secrets, see:
|
168
|
+
|
169
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.environments.userWorkloadsSecrets)
|
170
|
+
* How-to Guides
|
171
|
+
* [Official Documentation](https://cloud.google.com/artifact-registry/docs/overview)
|
172
|
+
|
161
173
|
## Example Usage
|
162
174
|
|
163
175
|
```python
|