pulumi-gcp 7.21.0__py3-none-any.whl → 7.21.0a1714002516__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 +0 -40
- pulumi_gcp/alloydb/_inputs.py +0 -74
- pulumi_gcp/alloydb/backup.py +12 -0
- pulumi_gcp/alloydb/cluster.py +12 -0
- pulumi_gcp/alloydb/instance.py +81 -90
- pulumi_gcp/alloydb/outputs.py +0 -98
- pulumi_gcp/apigee/environment.py +0 -47
- pulumi_gcp/apigee/sharedflow.py +20 -0
- pulumi_gcp/appengine/flexible_app_version.py +20 -0
- pulumi_gcp/applicationintegration/__init__.py +0 -1
- pulumi_gcp/applicationintegration/_inputs.py +0 -843
- pulumi_gcp/applicationintegration/outputs.py +0 -891
- pulumi_gcp/bigquerydatapolicy/_inputs.py +4 -21
- pulumi_gcp/bigquerydatapolicy/data_policy.py +0 -78
- pulumi_gcp/bigquerydatapolicy/outputs.py +3 -16
- pulumi_gcp/certificateauthority/_inputs.py +12 -92
- pulumi_gcp/certificateauthority/authority.py +27 -117
- pulumi_gcp/certificateauthority/certificate.py +0 -176
- pulumi_gcp/certificateauthority/outputs.py +12 -144
- pulumi_gcp/cloudbuild/worker_pool.py +12 -0
- pulumi_gcp/cloudbuildv2/connection.py +12 -0
- pulumi_gcp/cloudbuildv2/repository.py +12 -0
- pulumi_gcp/clouddeploy/automation.py +12 -0
- pulumi_gcp/clouddeploy/custom_target_type.py +12 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +12 -0
- pulumi_gcp/clouddeploy/target.py +12 -0
- pulumi_gcp/cloudrunv2/job.py +12 -0
- pulumi_gcp/cloudrunv2/service.py +12 -0
- pulumi_gcp/composer/__init__.py +0 -1
- pulumi_gcp/composer/environment.py +47 -35
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +58 -121
- pulumi_gcp/compute/forwarding_rule.py +13 -0
- pulumi_gcp/compute/global_address.py +12 -0
- pulumi_gcp/compute/global_forwarding_rule.py +282 -0
- pulumi_gcp/compute/instance_from_machine_image.py +46 -14
- pulumi_gcp/compute/instance_from_template.py +46 -14
- pulumi_gcp/compute/outputs.py +65 -120
- pulumi_gcp/compute/region_instance_template.py +13 -0
- pulumi_gcp/compute/region_target_https_proxy.py +0 -257
- pulumi_gcp/compute/region_url_map.py +470 -0
- pulumi_gcp/container/attached_cluster.py +12 -0
- pulumi_gcp/container/aws_cluster.py +12 -0
- pulumi_gcp/container/aws_node_pool.py +12 -0
- pulumi_gcp/container/azure_cluster.py +12 -0
- pulumi_gcp/container/azure_node_pool.py +12 -0
- pulumi_gcp/container/cluster.py +20 -0
- pulumi_gcp/dataflow/flex_template_job.py +39 -0
- pulumi_gcp/dataloss/__init__.py +0 -1
- pulumi_gcp/dataloss/_inputs.py +0 -1040
- pulumi_gcp/dataloss/outputs.py +0 -1123
- pulumi_gcp/dataproc/cluster.py +20 -0
- pulumi_gcp/dataproc/workflow_template.py +26 -21
- pulumi_gcp/deploymentmanager/deployment.py +34 -0
- pulumi_gcp/dns/_inputs.py +2 -2
- pulumi_gcp/dns/outputs.py +2 -2
- pulumi_gcp/dns/record_set.py +36 -2
- pulumi_gcp/filestore/get_instance.py +1 -11
- pulumi_gcp/filestore/instance.py +0 -101
- pulumi_gcp/firebase/_inputs.py +0 -16
- pulumi_gcp/firebase/android_app.py +27 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +0 -20
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +0 -10
- pulumi_gcp/firebase/app_check_service_config.py +125 -0
- pulumi_gcp/firebase/apple_app.py +27 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +27 -0
- pulumi_gcp/firebase/hosting_version.py +0 -44
- pulumi_gcp/firebase/outputs.py +0 -12
- pulumi_gcp/firebase/web_app.py +20 -0
- pulumi_gcp/firestore/database.py +68 -0
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +12 -0
- pulumi_gcp/logging/folder_sink.py +0 -54
- pulumi_gcp/logging/organization_sink.py +0 -54
- pulumi_gcp/monitoring/_inputs.py +2 -46
- pulumi_gcp/monitoring/outputs.py +2 -40
- pulumi_gcp/monitoring/uptime_check_config.py +0 -6
- pulumi_gcp/netapp/active_directory.py +20 -0
- pulumi_gcp/netapp/volume_replication.py +68 -0
- pulumi_gcp/networkconnectivity/__init__.py +0 -1
- pulumi_gcp/provider.py +1 -3
- pulumi_gcp/secretmanager/get_secret.py +3 -13
- pulumi_gcp/secretmanager/outputs.py +1 -20
- pulumi_gcp/secretmanager/secret.py +15 -90
- pulumi_gcp/servicenetworking/connection.py +20 -0
- pulumi_gcp/spanner/database.py +41 -0
- pulumi_gcp/spanner/instance.py +40 -0
- pulumi_gcp/storage/__init__.py +0 -1
- pulumi_gcp/storage/bucket.py +12 -0
- pulumi_gcp/storage/outputs.py +0 -63
- pulumi_gcp/workstations/workstation.py +12 -0
- pulumi_gcp/workstations/workstation_cluster.py +12 -0
- pulumi_gcp/workstations/workstation_config.py +12 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/RECORD +100 -106
- pulumi_gcp/applicationintegration/auth_config.py +0 -998
- pulumi_gcp/composer/user_workloads_secret.py +0 -441
- pulumi_gcp/compute/security_policy_rule.py +0 -850
- pulumi_gcp/dataloss/prevention_discovery_config.py +0 -737
- pulumi_gcp/networkconnectivity/internal_range.py +0 -1024
- pulumi_gcp/storage/get_bucket_objects.py +0 -153
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/top_level.txt +0 -0
@@ -178,6 +178,8 @@ class _CustomTargetTypeState:
|
|
178
178
|
Structure is documented below.
|
179
179
|
:param pulumi.Input[str] custom_target_type_id: Resource id of the `CustomTargetType`.
|
180
180
|
:param pulumi.Input[str] description: Description of the `CustomTargetType`. Max length is 255 characters.
|
181
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
182
|
+
Terraform, other clients and services.
|
181
183
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
182
184
|
:param pulumi.Input[str] etag: The weak etag of the `CustomTargetType` resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
183
185
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
|
@@ -292,6 +294,10 @@ class _CustomTargetTypeState:
|
|
292
294
|
@property
|
293
295
|
@pulumi.getter(name="effectiveAnnotations")
|
294
296
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
297
|
+
"""
|
298
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
299
|
+
Terraform, other clients and services.
|
300
|
+
"""
|
295
301
|
return pulumi.get(self, "effective_annotations")
|
296
302
|
|
297
303
|
@effective_annotations.setter
|
@@ -752,6 +758,8 @@ class CustomTargetType(pulumi.CustomResource):
|
|
752
758
|
Structure is documented below.
|
753
759
|
:param pulumi.Input[str] custom_target_type_id: Resource id of the `CustomTargetType`.
|
754
760
|
:param pulumi.Input[str] description: Description of the `CustomTargetType`. Max length is 255 characters.
|
761
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
762
|
+
Terraform, other clients and services.
|
755
763
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
756
764
|
:param pulumi.Input[str] etag: The weak etag of the `CustomTargetType` resource. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
757
765
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the following constraints: * Keys and values can contain only lowercase letters, numeric characters, underscores, and dashes. * All characters must use UTF-8 encoding, and international characters are allowed. * Keys must start with a lowercase letter or international character. * Each resource is limited to a maximum of 64 labels. Both keys and values are additionally constrained to be <= 128 bytes.
|
@@ -836,6 +844,10 @@ class CustomTargetType(pulumi.CustomResource):
|
|
836
844
|
@property
|
837
845
|
@pulumi.getter(name="effectiveAnnotations")
|
838
846
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
847
|
+
"""
|
848
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
849
|
+
Terraform, other clients and services.
|
850
|
+
"""
|
839
851
|
return pulumi.get(self, "effective_annotations")
|
840
852
|
|
841
853
|
@property
|
@@ -194,6 +194,8 @@ class _DeliveryPipelineState:
|
|
194
194
|
:param pulumi.Input[Sequence[pulumi.Input['DeliveryPipelineConditionArgs']]] conditions: Output only. Information around the state of the Delivery Pipeline.
|
195
195
|
:param pulumi.Input[str] create_time: Output only. Time at which the pipeline was created.
|
196
196
|
:param pulumi.Input[str] description: Description of the `DeliveryPipeline`. Max length is 255 characters.
|
197
|
+
:param pulumi.Input[Mapping[str, Any]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
198
|
+
Terraform, other clients and services.
|
197
199
|
:param pulumi.Input[Mapping[str, Any]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
198
200
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
199
201
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the
|
@@ -299,6 +301,10 @@ class _DeliveryPipelineState:
|
|
299
301
|
@property
|
300
302
|
@pulumi.getter(name="effectiveAnnotations")
|
301
303
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
304
|
+
"""
|
305
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
306
|
+
Terraform, other clients and services.
|
307
|
+
"""
|
302
308
|
return pulumi.get(self, "effective_annotations")
|
303
309
|
|
304
310
|
@effective_annotations.setter
|
@@ -1046,6 +1052,8 @@ class DeliveryPipeline(pulumi.CustomResource):
|
|
1046
1052
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['DeliveryPipelineConditionArgs']]]] conditions: Output only. Information around the state of the Delivery Pipeline.
|
1047
1053
|
:param pulumi.Input[str] create_time: Output only. Time at which the pipeline was created.
|
1048
1054
|
:param pulumi.Input[str] description: Description of the `DeliveryPipeline`. Max length is 255 characters.
|
1055
|
+
:param pulumi.Input[Mapping[str, Any]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1056
|
+
Terraform, other clients and services.
|
1049
1057
|
:param pulumi.Input[Mapping[str, Any]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
1050
1058
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
1051
1059
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Labels are attributes that can be set and used by both the user and by Google Cloud Deploy. Labels must meet the
|
@@ -1124,6 +1132,10 @@ class DeliveryPipeline(pulumi.CustomResource):
|
|
1124
1132
|
@property
|
1125
1133
|
@pulumi.getter(name="effectiveAnnotations")
|
1126
1134
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, Any]]:
|
1135
|
+
"""
|
1136
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1137
|
+
Terraform, other clients and services.
|
1138
|
+
"""
|
1127
1139
|
return pulumi.get(self, "effective_annotations")
|
1128
1140
|
|
1129
1141
|
@property
|
pulumi_gcp/clouddeploy/target.py
CHANGED
@@ -282,6 +282,8 @@ class _TargetState:
|
|
282
282
|
:param pulumi.Input[str] create_time: Output only. Time at which the `Target` was created.
|
283
283
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] deploy_parameters: Optional. The deploy parameters to use for this target.
|
284
284
|
:param pulumi.Input[str] description: Optional. Description of the `Target`. Max length is 255 characters.
|
285
|
+
:param pulumi.Input[Mapping[str, Any]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
286
|
+
Terraform, other clients and services.
|
285
287
|
:param pulumi.Input[Mapping[str, Any]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
286
288
|
:param pulumi.Input[str] etag: Optional. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
287
289
|
:param pulumi.Input[Sequence[pulumi.Input['TargetExecutionConfigArgs']]] execution_configs: Configurations for all execution that relates to this `Target`. Each `ExecutionEnvironmentUsage` value may only be used in a single configuration; using the same value multiple times is an error. When one or more configurations are specified, they must include the `RENDER` and `DEPLOY` `ExecutionEnvironmentUsage` values. When no configurations are specified, execution will use the default specified in `DefaultPool`.
|
@@ -414,6 +416,10 @@ class _TargetState:
|
|
414
416
|
@property
|
415
417
|
@pulumi.getter(name="effectiveAnnotations")
|
416
418
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
419
|
+
"""
|
420
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
421
|
+
Terraform, other clients and services.
|
422
|
+
"""
|
417
423
|
return pulumi.get(self, "effective_annotations")
|
418
424
|
|
419
425
|
@effective_annotations.setter
|
@@ -1015,6 +1021,8 @@ class Target(pulumi.CustomResource):
|
|
1015
1021
|
:param pulumi.Input[str] create_time: Output only. Time at which the `Target` was created.
|
1016
1022
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] deploy_parameters: Optional. The deploy parameters to use for this target.
|
1017
1023
|
:param pulumi.Input[str] description: Optional. Description of the `Target`. Max length is 255 characters.
|
1024
|
+
:param pulumi.Input[Mapping[str, Any]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1025
|
+
Terraform, other clients and services.
|
1018
1026
|
:param pulumi.Input[Mapping[str, Any]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
1019
1027
|
:param pulumi.Input[str] etag: Optional. This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
1020
1028
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TargetExecutionConfigArgs']]]] execution_configs: Configurations for all execution that relates to this `Target`. Each `ExecutionEnvironmentUsage` value may only be used in a single configuration; using the same value multiple times is an error. When one or more configurations are specified, they must include the `RENDER` and `DEPLOY` `ExecutionEnvironmentUsage` values. When no configurations are specified, execution will use the default specified in `DefaultPool`.
|
@@ -1111,6 +1119,10 @@ class Target(pulumi.CustomResource):
|
|
1111
1119
|
@property
|
1112
1120
|
@pulumi.getter(name="effectiveAnnotations")
|
1113
1121
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, Any]]:
|
1122
|
+
"""
|
1123
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1124
|
+
Terraform, other clients and services.
|
1125
|
+
"""
|
1114
1126
|
return pulumi.get(self, "effective_annotations")
|
1115
1127
|
|
1116
1128
|
@property
|
pulumi_gcp/cloudrunv2/job.py
CHANGED
@@ -263,6 +263,8 @@ class _JobState:
|
|
263
263
|
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
264
264
|
:param pulumi.Input[str] creator: Email address of the authenticated creator.
|
265
265
|
:param pulumi.Input[str] delete_time: The deletion time.
|
266
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
267
|
+
Terraform, other clients and services.
|
266
268
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
267
269
|
:param pulumi.Input[str] etag: A system-generated fingerprint for this version of the resource. May be used to detect modification conflict during updates.
|
268
270
|
:param pulumi.Input[int] execution_count: Number of executions created for this job.
|
@@ -466,6 +468,10 @@ class _JobState:
|
|
466
468
|
@property
|
467
469
|
@pulumi.getter(name="effectiveAnnotations")
|
468
470
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
471
|
+
"""
|
472
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
473
|
+
Terraform, other clients and services.
|
474
|
+
"""
|
469
475
|
return pulumi.get(self, "effective_annotations")
|
470
476
|
|
471
477
|
@effective_annotations.setter
|
@@ -1464,6 +1470,8 @@ class Job(pulumi.CustomResource):
|
|
1464
1470
|
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
1465
1471
|
:param pulumi.Input[str] creator: Email address of the authenticated creator.
|
1466
1472
|
:param pulumi.Input[str] delete_time: The deletion time.
|
1473
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1474
|
+
Terraform, other clients and services.
|
1467
1475
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
1468
1476
|
:param pulumi.Input[str] etag: A system-generated fingerprint for this version of the resource. May be used to detect modification conflict during updates.
|
1469
1477
|
:param pulumi.Input[int] execution_count: Number of executions created for this job.
|
@@ -1612,6 +1620,10 @@ class Job(pulumi.CustomResource):
|
|
1612
1620
|
@property
|
1613
1621
|
@pulumi.getter(name="effectiveAnnotations")
|
1614
1622
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
1623
|
+
"""
|
1624
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1625
|
+
Terraform, other clients and services.
|
1626
|
+
"""
|
1615
1627
|
return pulumi.get(self, "effective_annotations")
|
1616
1628
|
|
1617
1629
|
@property
|
pulumi_gcp/cloudrunv2/service.py
CHANGED
@@ -362,6 +362,8 @@ class _ServiceState:
|
|
362
362
|
https://cloud.google.com/run/docs/configuring/custom-audiences.
|
363
363
|
:param pulumi.Input[str] delete_time: The deletion time.
|
364
364
|
:param pulumi.Input[str] description: User-provided description of the Service. This field currently has a 512-character limit.
|
365
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
366
|
+
Terraform, other clients and services.
|
365
367
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
366
368
|
:param pulumi.Input[str] etag: A system-generated fingerprint for this version of the resource. May be used to detect modification conflict during updates.
|
367
369
|
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be permamently deleted.
|
@@ -612,6 +614,10 @@ class _ServiceState:
|
|
612
614
|
@property
|
613
615
|
@pulumi.getter(name="effectiveAnnotations")
|
614
616
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
617
|
+
"""
|
618
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
619
|
+
Terraform, other clients and services.
|
620
|
+
"""
|
615
621
|
return pulumi.get(self, "effective_annotations")
|
616
622
|
|
617
623
|
@effective_annotations.setter
|
@@ -1960,6 +1966,8 @@ class Service(pulumi.CustomResource):
|
|
1960
1966
|
https://cloud.google.com/run/docs/configuring/custom-audiences.
|
1961
1967
|
:param pulumi.Input[str] delete_time: The deletion time.
|
1962
1968
|
:param pulumi.Input[str] description: User-provided description of the Service. This field currently has a 512-character limit.
|
1969
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_annotations: All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1970
|
+
Terraform, other clients and services.
|
1963
1971
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
1964
1972
|
:param pulumi.Input[str] etag: A system-generated fingerprint for this version of the resource. May be used to detect modification conflict during updates.
|
1965
1973
|
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be permamently deleted.
|
@@ -2140,6 +2148,10 @@ class Service(pulumi.CustomResource):
|
|
2140
2148
|
@property
|
2141
2149
|
@pulumi.getter(name="effectiveAnnotations")
|
2142
2150
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
2151
|
+
"""
|
2152
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
2153
|
+
Terraform, other clients and services.
|
2154
|
+
"""
|
2143
2155
|
return pulumi.get(self, "effective_annotations")
|
2144
2156
|
|
2145
2157
|
@property
|
pulumi_gcp/composer/__init__.py
CHANGED
@@ -27,11 +27,11 @@ class EnvironmentArgs:
|
|
27
27
|
:param pulumi.Input['EnvironmentConfigArgs'] config: Configuration parameters for this environment.
|
28
28
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for this environment. The labels map can contain no more than 64 entries. Entries of the labels map
|
29
29
|
are UTF8 strings that comply with the following restrictions: Label keys must be between 1 and 63 characters long and
|
30
|
-
must conform to the following regular expression: a-z?. Label values must be between 0 and 63
|
31
|
-
conform to the regular expression (a-z?)?. No more than 64 labels can be
|
32
|
-
and values must be <= 128 bytes in size. **Note**: This field is
|
33
|
-
present in your configuration. Please refer to the field
|
34
|
-
resource.
|
30
|
+
must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])?. Label values must be between 0 and 63
|
31
|
+
characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?. No more than 64 labels can be
|
32
|
+
associated with a given environment. Both keys and values must be <= 128 bytes in size. **Note**: This field is
|
33
|
+
non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
|
34
|
+
'effective_labels' for all of the labels present on the resource.
|
35
35
|
:param pulumi.Input[str] name: Name of the environment.
|
36
36
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
|
37
37
|
:param pulumi.Input[str] region: The location or Compute Engine region for the environment.
|
@@ -68,11 +68,11 @@ class EnvironmentArgs:
|
|
68
68
|
"""
|
69
69
|
User-defined labels for this environment. The labels map can contain no more than 64 entries. Entries of the labels map
|
70
70
|
are UTF8 strings that comply with the following restrictions: Label keys must be between 1 and 63 characters long and
|
71
|
-
must conform to the following regular expression: a-z?. Label values must be between 0 and 63
|
72
|
-
conform to the regular expression (a-z?)?. No more than 64 labels can be
|
73
|
-
and values must be <= 128 bytes in size. **Note**: This field is
|
74
|
-
present in your configuration. Please refer to the field
|
75
|
-
resource.
|
71
|
+
must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])?. Label values must be between 0 and 63
|
72
|
+
characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?. No more than 64 labels can be
|
73
|
+
associated with a given environment. Both keys and values must be <= 128 bytes in size. **Note**: This field is
|
74
|
+
non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
|
75
|
+
'effective_labels' for all of the labels present on the resource.
|
76
76
|
"""
|
77
77
|
return pulumi.get(self, "labels")
|
78
78
|
|
@@ -143,13 +143,15 @@ class _EnvironmentState:
|
|
143
143
|
"""
|
144
144
|
Input properties used for looking up and filtering Environment resources.
|
145
145
|
:param pulumi.Input['EnvironmentConfigArgs'] config: Configuration parameters for this environment.
|
146
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other
|
147
|
+
clients and services.
|
146
148
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for this environment. The labels map can contain no more than 64 entries. Entries of the labels map
|
147
149
|
are UTF8 strings that comply with the following restrictions: Label keys must be between 1 and 63 characters long and
|
148
|
-
must conform to the following regular expression: a-z?. Label values must be between 0 and 63
|
149
|
-
conform to the regular expression (a-z?)?. No more than 64 labels can be
|
150
|
-
and values must be <= 128 bytes in size. **Note**: This field is
|
151
|
-
present in your configuration. Please refer to the field
|
152
|
-
resource.
|
150
|
+
must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])?. Label values must be between 0 and 63
|
151
|
+
characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?. No more than 64 labels can be
|
152
|
+
associated with a given environment. Both keys and values must be <= 128 bytes in size. **Note**: This field is
|
153
|
+
non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
|
154
|
+
'effective_labels' for all of the labels present on the resource.
|
153
155
|
:param pulumi.Input[str] name: Name of the environment.
|
154
156
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
|
155
157
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
@@ -188,6 +190,10 @@ class _EnvironmentState:
|
|
188
190
|
@property
|
189
191
|
@pulumi.getter(name="effectiveLabels")
|
190
192
|
def effective_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
193
|
+
"""
|
194
|
+
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other
|
195
|
+
clients and services.
|
196
|
+
"""
|
191
197
|
return pulumi.get(self, "effective_labels")
|
192
198
|
|
193
199
|
@effective_labels.setter
|
@@ -200,11 +206,11 @@ class _EnvironmentState:
|
|
200
206
|
"""
|
201
207
|
User-defined labels for this environment. The labels map can contain no more than 64 entries. Entries of the labels map
|
202
208
|
are UTF8 strings that comply with the following restrictions: Label keys must be between 1 and 63 characters long and
|
203
|
-
must conform to the following regular expression: a-z?. Label values must be between 0 and 63
|
204
|
-
conform to the regular expression (a-z?)?. No more than 64 labels can be
|
205
|
-
and values must be <= 128 bytes in size. **Note**: This field is
|
206
|
-
present in your configuration. Please refer to the field
|
207
|
-
resource.
|
209
|
+
must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])?. Label values must be between 0 and 63
|
210
|
+
characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?. No more than 64 labels can be
|
211
|
+
associated with a given environment. Both keys and values must be <= 128 bytes in size. **Note**: This field is
|
212
|
+
non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
|
213
|
+
'effective_labels' for all of the labels present on the resource.
|
208
214
|
"""
|
209
215
|
return pulumi.get(self, "labels")
|
210
216
|
|
@@ -315,11 +321,11 @@ class Environment(pulumi.CustomResource):
|
|
315
321
|
:param pulumi.Input[pulumi.InputType['EnvironmentConfigArgs']] config: Configuration parameters for this environment.
|
316
322
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for this environment. The labels map can contain no more than 64 entries. Entries of the labels map
|
317
323
|
are UTF8 strings that comply with the following restrictions: Label keys must be between 1 and 63 characters long and
|
318
|
-
must conform to the following regular expression: a-z?. Label values must be between 0 and 63
|
319
|
-
conform to the regular expression (a-z?)?. No more than 64 labels can be
|
320
|
-
and values must be <= 128 bytes in size. **Note**: This field is
|
321
|
-
present in your configuration. Please refer to the field
|
322
|
-
resource.
|
324
|
+
must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])?. Label values must be between 0 and 63
|
325
|
+
characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?. No more than 64 labels can be
|
326
|
+
associated with a given environment. Both keys and values must be <= 128 bytes in size. **Note**: This field is
|
327
|
+
non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
|
328
|
+
'effective_labels' for all of the labels present on the resource.
|
323
329
|
:param pulumi.Input[str] name: Name of the environment.
|
324
330
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
|
325
331
|
:param pulumi.Input[str] region: The location or Compute Engine region for the environment.
|
@@ -422,13 +428,15 @@ class Environment(pulumi.CustomResource):
|
|
422
428
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
423
429
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
424
430
|
:param pulumi.Input[pulumi.InputType['EnvironmentConfigArgs']] config: Configuration parameters for this environment.
|
431
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other
|
432
|
+
clients and services.
|
425
433
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for this environment. The labels map can contain no more than 64 entries. Entries of the labels map
|
426
434
|
are UTF8 strings that comply with the following restrictions: Label keys must be between 1 and 63 characters long and
|
427
|
-
must conform to the following regular expression: a-z?. Label values must be between 0 and 63
|
428
|
-
conform to the regular expression (a-z?)?. No more than 64 labels can be
|
429
|
-
and values must be <= 128 bytes in size. **Note**: This field is
|
430
|
-
present in your configuration. Please refer to the field
|
431
|
-
resource.
|
435
|
+
must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])?. Label values must be between 0 and 63
|
436
|
+
characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?. No more than 64 labels can be
|
437
|
+
associated with a given environment. Both keys and values must be <= 128 bytes in size. **Note**: This field is
|
438
|
+
non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
|
439
|
+
'effective_labels' for all of the labels present on the resource.
|
432
440
|
:param pulumi.Input[str] name: Name of the environment.
|
433
441
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
|
434
442
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
@@ -460,6 +468,10 @@ class Environment(pulumi.CustomResource):
|
|
460
468
|
@property
|
461
469
|
@pulumi.getter(name="effectiveLabels")
|
462
470
|
def effective_labels(self) -> pulumi.Output[Mapping[str, str]]:
|
471
|
+
"""
|
472
|
+
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Terraform, other
|
473
|
+
clients and services.
|
474
|
+
"""
|
463
475
|
return pulumi.get(self, "effective_labels")
|
464
476
|
|
465
477
|
@property
|
@@ -468,11 +480,11 @@ class Environment(pulumi.CustomResource):
|
|
468
480
|
"""
|
469
481
|
User-defined labels for this environment. The labels map can contain no more than 64 entries. Entries of the labels map
|
470
482
|
are UTF8 strings that comply with the following restrictions: Label keys must be between 1 and 63 characters long and
|
471
|
-
must conform to the following regular expression: a-z?. Label values must be between 0 and 63
|
472
|
-
conform to the regular expression (a-z?)?. No more than 64 labels can be
|
473
|
-
and values must be <= 128 bytes in size. **Note**: This field is
|
474
|
-
present in your configuration. Please refer to the field
|
475
|
-
resource.
|
483
|
+
must conform to the following regular expression: [a-z]([-a-z0-9]*[a-z0-9])?. Label values must be between 0 and 63
|
484
|
+
characters long and must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?. No more than 64 labels can be
|
485
|
+
associated with a given environment. Both keys and values must be <= 128 bytes in size. **Note**: This field is
|
486
|
+
non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
|
487
|
+
'effective_labels' for all of the labels present on the resource.
|
476
488
|
"""
|
477
489
|
return pulumi.get(self, "labels")
|
478
490
|
|
pulumi_gcp/compute/__init__.py
CHANGED
@@ -175,7 +175,6 @@ from .router_nat import *
|
|
175
175
|
from .router_peer import *
|
176
176
|
from .router_status import *
|
177
177
|
from .security_policy import *
|
178
|
-
from .security_policy_rule import *
|
179
178
|
from .security_scan_config import *
|
180
179
|
from .service_attachment import *
|
181
180
|
from .shared_vpc_host_project import *
|