pulumi-gcp 7.21.0a1714149635__py3-none-any.whl → 7.21.0a1714155322__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/alloydb/backup.py +0 -12
- pulumi_gcp/alloydb/cluster.py +0 -12
- pulumi_gcp/alloydb/instance.py +0 -81
- pulumi_gcp/apigee/sharedflow.py +0 -20
- pulumi_gcp/appengine/flexible_app_version.py +0 -20
- pulumi_gcp/certificateauthority/authority.py +7 -27
- pulumi_gcp/cloudbuild/worker_pool.py +0 -12
- pulumi_gcp/cloudbuildv2/connection.py +0 -12
- pulumi_gcp/cloudbuildv2/repository.py +0 -12
- pulumi_gcp/clouddeploy/automation.py +0 -12
- pulumi_gcp/clouddeploy/custom_target_type.py +0 -12
- pulumi_gcp/clouddeploy/delivery_pipeline.py +0 -12
- pulumi_gcp/clouddeploy/target.py +0 -12
- pulumi_gcp/cloudrunv2/job.py +0 -12
- pulumi_gcp/cloudrunv2/service.py +0 -12
- pulumi_gcp/composer/environment.py +35 -47
- pulumi_gcp/compute/forwarding_rule.py +0 -13
- pulumi_gcp/compute/global_address.py +0 -12
- pulumi_gcp/compute/instance_from_machine_image.py +14 -46
- pulumi_gcp/compute/instance_from_template.py +14 -46
- pulumi_gcp/compute/outputs.py +0 -8
- pulumi_gcp/compute/region_instance_template.py +0 -13
- pulumi_gcp/container/attached_cluster.py +0 -12
- pulumi_gcp/container/aws_cluster.py +0 -12
- pulumi_gcp/container/aws_node_pool.py +0 -12
- pulumi_gcp/container/azure_cluster.py +0 -12
- pulumi_gcp/container/azure_node_pool.py +0 -12
- pulumi_gcp/container/cluster.py +0 -20
- pulumi_gcp/dataflow/flex_template_job.py +0 -39
- pulumi_gcp/dataproc/cluster.py +0 -20
- pulumi_gcp/dataproc/workflow_template.py +21 -26
- pulumi_gcp/deploymentmanager/deployment.py +0 -34
- pulumi_gcp/dns/record_set.py +0 -34
- pulumi_gcp/firebase/android_app.py +0 -27
- pulumi_gcp/firebase/app_check_service_config.py +0 -125
- pulumi_gcp/firebase/apple_app.py +0 -27
- pulumi_gcp/firebase/hosting_custom_domain.py +0 -27
- pulumi_gcp/firebase/web_app.py +0 -20
- pulumi_gcp/firestore/database.py +0 -68
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +0 -12
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +0 -12
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +0 -12
- pulumi_gcp/gkeonprem/v_mware_cluster.py +0 -12
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +0 -12
- pulumi_gcp/netapp/active_directory.py +0 -20
- pulumi_gcp/netapp/volume_replication.py +0 -68
- pulumi_gcp/secretmanager/secret.py +0 -12
- pulumi_gcp/servicenetworking/connection.py +0 -20
- pulumi_gcp/spanner/database.py +0 -41
- pulumi_gcp/spanner/instance.py +0 -40
- pulumi_gcp/storage/bucket.py +0 -12
- pulumi_gcp/workstations/workstation.py +0 -12
- pulumi_gcp/workstations/workstation_cluster.py +0 -12
- pulumi_gcp/workstations/workstation_config.py +0 -12
- {pulumi_gcp-7.21.0a1714149635.dist-info → pulumi_gcp-7.21.0a1714155322.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.0a1714149635.dist-info → pulumi_gcp-7.21.0a1714155322.dist-info}/RECORD +58 -58
- {pulumi_gcp-7.21.0a1714149635.dist-info → pulumi_gcp-7.21.0a1714155322.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.0a1714149635.dist-info → pulumi_gcp-7.21.0a1714155322.dist-info}/top_level.txt +0 -0
pulumi_gcp/alloydb/backup.py
CHANGED
@@ -249,8 +249,6 @@ class _BackupState:
|
|
249
249
|
Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
250
250
|
:param pulumi.Input[str] description: User-provided description of the backup.
|
251
251
|
:param pulumi.Input[str] display_name: User-settable and human-readable display name for the Backup.
|
252
|
-
: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
|
253
|
-
Terraform, other clients and services.
|
254
252
|
: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.
|
255
253
|
:param pulumi.Input['BackupEncryptionConfigArgs'] encryption_config: EncryptionConfig describes the encryption config of a cluster or a backup that is encrypted with a CMEK (customer-managed encryption key).
|
256
254
|
Structure is documented below.
|
@@ -443,10 +441,6 @@ class _BackupState:
|
|
443
441
|
@property
|
444
442
|
@pulumi.getter(name="effectiveAnnotations")
|
445
443
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
446
|
-
"""
|
447
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
448
|
-
Terraform, other clients and services.
|
449
|
-
"""
|
450
444
|
return pulumi.get(self, "effective_annotations")
|
451
445
|
|
452
446
|
@effective_annotations.setter
|
@@ -1049,8 +1043,6 @@ class Backup(pulumi.CustomResource):
|
|
1049
1043
|
Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
1050
1044
|
:param pulumi.Input[str] description: User-provided description of the backup.
|
1051
1045
|
:param pulumi.Input[str] display_name: User-settable and human-readable display name for the Backup.
|
1052
|
-
: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
|
1053
|
-
Terraform, other clients and services.
|
1054
1046
|
: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.
|
1055
1047
|
:param pulumi.Input[pulumi.InputType['BackupEncryptionConfigArgs']] encryption_config: EncryptionConfig describes the encryption config of a cluster or a backup that is encrypted with a CMEK (customer-managed encryption key).
|
1056
1048
|
Structure is documented below.
|
@@ -1190,10 +1182,6 @@ class Backup(pulumi.CustomResource):
|
|
1190
1182
|
@property
|
1191
1183
|
@pulumi.getter(name="effectiveAnnotations")
|
1192
1184
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
1193
|
-
"""
|
1194
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1195
|
-
Terraform, other clients and services.
|
1196
|
-
"""
|
1197
1185
|
return pulumi.get(self, "effective_annotations")
|
1198
1186
|
|
1199
1187
|
@property
|
pulumi_gcp/alloydb/cluster.py
CHANGED
@@ -441,8 +441,6 @@ class _ClusterState:
|
|
441
441
|
Deleting a cluster forcefully, deletes the cluster and all its associated instances within the cluster.
|
442
442
|
Deleting a Secondary cluster with a secondary instance REQUIRES setting deletion_policy = "FORCE" otherwise an error is returned. This is needed as there is no support to delete just the secondary instance, and the only way to delete secondary instance is to delete the associated secondary cluster forcefully which also deletes the secondary instance.
|
443
443
|
:param pulumi.Input[str] display_name: User-settable and human-readable display name for the Cluster.
|
444
|
-
: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
|
445
|
-
Terraform, other clients and services.
|
446
444
|
: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.
|
447
445
|
:param pulumi.Input['ClusterEncryptionConfigArgs'] encryption_config: EncryptionConfig describes the encryption config of a cluster or a backup that is encrypted with a CMEK (customer-managed encryption key).
|
448
446
|
Structure is documented below.
|
@@ -685,10 +683,6 @@ class _ClusterState:
|
|
685
683
|
@property
|
686
684
|
@pulumi.getter(name="effectiveAnnotations")
|
687
685
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
688
|
-
"""
|
689
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
690
|
-
Terraform, other clients and services.
|
691
|
-
"""
|
692
686
|
return pulumi.get(self, "effective_annotations")
|
693
687
|
|
694
688
|
@effective_annotations.setter
|
@@ -1572,8 +1566,6 @@ class Cluster(pulumi.CustomResource):
|
|
1572
1566
|
Deleting a cluster forcefully, deletes the cluster and all its associated instances within the cluster.
|
1573
1567
|
Deleting a Secondary cluster with a secondary instance REQUIRES setting deletion_policy = "FORCE" otherwise an error is returned. This is needed as there is no support to delete just the secondary instance, and the only way to delete secondary instance is to delete the associated secondary cluster forcefully which also deletes the secondary instance.
|
1574
1568
|
:param pulumi.Input[str] display_name: User-settable and human-readable display name for the Cluster.
|
1575
|
-
: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
|
1576
|
-
Terraform, other clients and services.
|
1577
1569
|
: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.
|
1578
1570
|
:param pulumi.Input[pulumi.InputType['ClusterEncryptionConfigArgs']] encryption_config: EncryptionConfig describes the encryption config of a cluster or a backup that is encrypted with a CMEK (customer-managed encryption key).
|
1579
1571
|
Structure is documented below.
|
@@ -1748,10 +1740,6 @@ class Cluster(pulumi.CustomResource):
|
|
1748
1740
|
@property
|
1749
1741
|
@pulumi.getter(name="effectiveAnnotations")
|
1750
1742
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
1751
|
-
"""
|
1752
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1753
|
-
Terraform, other clients and services.
|
1754
|
-
"""
|
1755
1743
|
return pulumi.get(self, "effective_annotations")
|
1756
1744
|
|
1757
1745
|
@property
|
pulumi_gcp/alloydb/instance.py
CHANGED
@@ -37,15 +37,6 @@ class InstanceArgs:
|
|
37
37
|
|
38
38
|
|
39
39
|
- - -
|
40
|
-
:param pulumi.Input[str] instance_type: The type of the instance. If the instance type is READ_POOL, provide the associated PRIMARY/SECONDARY instance in the
|
41
|
-
'depends_on' meta-data attribute. If the instance type is SECONDARY, point to the cluster_type of the associated
|
42
|
-
secondary cluster instead of mentioning SECONDARY. Example: {instance_type =
|
43
|
-
google_alloydb_cluster.<secondary_cluster_name>.cluster_type} instead of {instance_type = SECONDARY} If the instance
|
44
|
-
type is SECONDARY, the terraform delete instance operation does not delete the secondary instance but abandons it
|
45
|
-
instead. Use deletion_policy = "FORCE" in the associated secondary cluster and delete the cluster forcefully to delete
|
46
|
-
the secondary cluster as well its associated secondary instance. Users can undo the delete secondary instance action by
|
47
|
-
importing the deleted secondary instance by calling terraform import. Possible values: ["PRIMARY", "READ_POOL",
|
48
|
-
"SECONDARY"]
|
49
40
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Annotations to allow client tools to store small amount of arbitrary data. This is distinct from labels.
|
50
41
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
51
42
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
@@ -126,17 +117,6 @@ class InstanceArgs:
|
|
126
117
|
@property
|
127
118
|
@pulumi.getter(name="instanceType")
|
128
119
|
def instance_type(self) -> pulumi.Input[str]:
|
129
|
-
"""
|
130
|
-
The type of the instance. If the instance type is READ_POOL, provide the associated PRIMARY/SECONDARY instance in the
|
131
|
-
'depends_on' meta-data attribute. If the instance type is SECONDARY, point to the cluster_type of the associated
|
132
|
-
secondary cluster instead of mentioning SECONDARY. Example: {instance_type =
|
133
|
-
google_alloydb_cluster.<secondary_cluster_name>.cluster_type} instead of {instance_type = SECONDARY} If the instance
|
134
|
-
type is SECONDARY, the terraform delete instance operation does not delete the secondary instance but abandons it
|
135
|
-
instead. Use deletion_policy = "FORCE" in the associated secondary cluster and delete the cluster forcefully to delete
|
136
|
-
the secondary cluster as well its associated secondary instance. Users can undo the delete secondary instance action by
|
137
|
-
importing the deleted secondary instance by calling terraform import. Possible values: ["PRIMARY", "READ_POOL",
|
138
|
-
"SECONDARY"]
|
139
|
-
"""
|
140
120
|
return pulumi.get(self, "instance_type")
|
141
121
|
|
142
122
|
@instance_type.setter
|
@@ -323,23 +303,12 @@ class _InstanceState:
|
|
323
303
|
:param pulumi.Input[str] create_time: Time the Instance was created in UTC.
|
324
304
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] database_flags: Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
|
325
305
|
:param pulumi.Input[str] display_name: User-settable and human-readable display name for the Instance.
|
326
|
-
: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
|
327
|
-
Terraform, other clients and services.
|
328
306
|
: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.
|
329
307
|
:param pulumi.Input[str] gce_zone: The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
|
330
308
|
:param pulumi.Input[str] instance_id: The ID of the alloydb instance.
|
331
309
|
|
332
310
|
|
333
311
|
- - -
|
334
|
-
:param pulumi.Input[str] instance_type: The type of the instance. If the instance type is READ_POOL, provide the associated PRIMARY/SECONDARY instance in the
|
335
|
-
'depends_on' meta-data attribute. If the instance type is SECONDARY, point to the cluster_type of the associated
|
336
|
-
secondary cluster instead of mentioning SECONDARY. Example: {instance_type =
|
337
|
-
google_alloydb_cluster.<secondary_cluster_name>.cluster_type} instead of {instance_type = SECONDARY} If the instance
|
338
|
-
type is SECONDARY, the terraform delete instance operation does not delete the secondary instance but abandons it
|
339
|
-
instead. Use deletion_policy = "FORCE" in the associated secondary cluster and delete the cluster forcefully to delete
|
340
|
-
the secondary cluster as well its associated secondary instance. Users can undo the delete secondary instance action by
|
341
|
-
importing the deleted secondary instance by calling terraform import. Possible values: ["PRIMARY", "READ_POOL",
|
342
|
-
"SECONDARY"]
|
343
312
|
:param pulumi.Input[str] ip_address: The IP address for the Instance. This is the connection endpoint for an end-user application.
|
344
313
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for the alloydb instance.
|
345
314
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -502,10 +471,6 @@ class _InstanceState:
|
|
502
471
|
@property
|
503
472
|
@pulumi.getter(name="effectiveAnnotations")
|
504
473
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
505
|
-
"""
|
506
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
507
|
-
Terraform, other clients and services.
|
508
|
-
"""
|
509
474
|
return pulumi.get(self, "effective_annotations")
|
510
475
|
|
511
476
|
@effective_annotations.setter
|
@@ -554,17 +519,6 @@ class _InstanceState:
|
|
554
519
|
@property
|
555
520
|
@pulumi.getter(name="instanceType")
|
556
521
|
def instance_type(self) -> Optional[pulumi.Input[str]]:
|
557
|
-
"""
|
558
|
-
The type of the instance. If the instance type is READ_POOL, provide the associated PRIMARY/SECONDARY instance in the
|
559
|
-
'depends_on' meta-data attribute. If the instance type is SECONDARY, point to the cluster_type of the associated
|
560
|
-
secondary cluster instead of mentioning SECONDARY. Example: {instance_type =
|
561
|
-
google_alloydb_cluster.<secondary_cluster_name>.cluster_type} instead of {instance_type = SECONDARY} If the instance
|
562
|
-
type is SECONDARY, the terraform delete instance operation does not delete the secondary instance but abandons it
|
563
|
-
instead. Use deletion_policy = "FORCE" in the associated secondary cluster and delete the cluster forcefully to delete
|
564
|
-
the secondary cluster as well its associated secondary instance. Users can undo the delete secondary instance action by
|
565
|
-
importing the deleted secondary instance by calling terraform import. Possible values: ["PRIMARY", "READ_POOL",
|
566
|
-
"SECONDARY"]
|
567
|
-
"""
|
568
522
|
return pulumi.get(self, "instance_type")
|
569
523
|
|
570
524
|
@instance_type.setter
|
@@ -862,15 +816,6 @@ class Instance(pulumi.CustomResource):
|
|
862
816
|
|
863
817
|
|
864
818
|
- - -
|
865
|
-
:param pulumi.Input[str] instance_type: The type of the instance. If the instance type is READ_POOL, provide the associated PRIMARY/SECONDARY instance in the
|
866
|
-
'depends_on' meta-data attribute. If the instance type is SECONDARY, point to the cluster_type of the associated
|
867
|
-
secondary cluster instead of mentioning SECONDARY. Example: {instance_type =
|
868
|
-
google_alloydb_cluster.<secondary_cluster_name>.cluster_type} instead of {instance_type = SECONDARY} If the instance
|
869
|
-
type is SECONDARY, the terraform delete instance operation does not delete the secondary instance but abandons it
|
870
|
-
instead. Use deletion_policy = "FORCE" in the associated secondary cluster and delete the cluster forcefully to delete
|
871
|
-
the secondary cluster as well its associated secondary instance. Users can undo the delete secondary instance action by
|
872
|
-
importing the deleted secondary instance by calling terraform import. Possible values: ["PRIMARY", "READ_POOL",
|
873
|
-
"SECONDARY"]
|
874
819
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for the alloydb instance.
|
875
820
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
876
821
|
Please refer to the field `effective_labels` for all of the labels present on the resource.
|
@@ -1122,23 +1067,12 @@ class Instance(pulumi.CustomResource):
|
|
1122
1067
|
:param pulumi.Input[str] create_time: Time the Instance was created in UTC.
|
1123
1068
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] database_flags: Database flags. Set at instance level. * They are copied from primary instance on read instance creation. * Read instances can set new or override existing flags that are relevant for reads, e.g. for enabling columnar cache on a read instance. Flags set on read instance may or may not be present on primary.
|
1124
1069
|
:param pulumi.Input[str] display_name: User-settable and human-readable display name for the Instance.
|
1125
|
-
: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
|
1126
|
-
Terraform, other clients and services.
|
1127
1070
|
: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.
|
1128
1071
|
:param pulumi.Input[str] gce_zone: The Compute Engine zone that the instance should serve from, per https://cloud.google.com/compute/docs/regions-zones This can ONLY be specified for ZONAL instances. If present for a REGIONAL instance, an error will be thrown. If this is absent for a ZONAL instance, instance is created in a random zone with available capacity.
|
1129
1072
|
:param pulumi.Input[str] instance_id: The ID of the alloydb instance.
|
1130
1073
|
|
1131
1074
|
|
1132
1075
|
- - -
|
1133
|
-
:param pulumi.Input[str] instance_type: The type of the instance. If the instance type is READ_POOL, provide the associated PRIMARY/SECONDARY instance in the
|
1134
|
-
'depends_on' meta-data attribute. If the instance type is SECONDARY, point to the cluster_type of the associated
|
1135
|
-
secondary cluster instead of mentioning SECONDARY. Example: {instance_type =
|
1136
|
-
google_alloydb_cluster.<secondary_cluster_name>.cluster_type} instead of {instance_type = SECONDARY} If the instance
|
1137
|
-
type is SECONDARY, the terraform delete instance operation does not delete the secondary instance but abandons it
|
1138
|
-
instead. Use deletion_policy = "FORCE" in the associated secondary cluster and delete the cluster forcefully to delete
|
1139
|
-
the secondary cluster as well its associated secondary instance. Users can undo the delete secondary instance action by
|
1140
|
-
importing the deleted secondary instance by calling terraform import. Possible values: ["PRIMARY", "READ_POOL",
|
1141
|
-
"SECONDARY"]
|
1142
1076
|
:param pulumi.Input[str] ip_address: The IP address for the Instance. This is the connection endpoint for an end-user application.
|
1143
1077
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: User-defined labels for the alloydb instance.
|
1144
1078
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -1255,10 +1189,6 @@ class Instance(pulumi.CustomResource):
|
|
1255
1189
|
@property
|
1256
1190
|
@pulumi.getter(name="effectiveAnnotations")
|
1257
1191
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
1258
|
-
"""
|
1259
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1260
|
-
Terraform, other clients and services.
|
1261
|
-
"""
|
1262
1192
|
return pulumi.get(self, "effective_annotations")
|
1263
1193
|
|
1264
1194
|
@property
|
@@ -1291,17 +1221,6 @@ class Instance(pulumi.CustomResource):
|
|
1291
1221
|
@property
|
1292
1222
|
@pulumi.getter(name="instanceType")
|
1293
1223
|
def instance_type(self) -> pulumi.Output[str]:
|
1294
|
-
"""
|
1295
|
-
The type of the instance. If the instance type is READ_POOL, provide the associated PRIMARY/SECONDARY instance in the
|
1296
|
-
'depends_on' meta-data attribute. If the instance type is SECONDARY, point to the cluster_type of the associated
|
1297
|
-
secondary cluster instead of mentioning SECONDARY. Example: {instance_type =
|
1298
|
-
google_alloydb_cluster.<secondary_cluster_name>.cluster_type} instead of {instance_type = SECONDARY} If the instance
|
1299
|
-
type is SECONDARY, the terraform delete instance operation does not delete the secondary instance but abandons it
|
1300
|
-
instead. Use deletion_policy = "FORCE" in the associated secondary cluster and delete the cluster forcefully to delete
|
1301
|
-
the secondary cluster as well its associated secondary instance. Users can undo the delete secondary instance action by
|
1302
|
-
importing the deleted secondary instance by calling terraform import. Possible values: ["PRIMARY", "READ_POOL",
|
1303
|
-
"SECONDARY"]
|
1304
|
-
"""
|
1305
1224
|
return pulumi.get(self, "instance_type")
|
1306
1225
|
|
1307
1226
|
@property
|
pulumi_gcp/apigee/sharedflow.py
CHANGED
@@ -26,8 +26,6 @@ class SharedflowArgs:
|
|
26
26
|
|
27
27
|
- - -
|
28
28
|
:param pulumi.Input[str] org_id: The Apigee Organization name associated with the Apigee instance.
|
29
|
-
:param pulumi.Input[str] detect_md5hash: A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
30
|
-
will trigger an update.
|
31
29
|
:param pulumi.Input[str] name: The ID of the shared flow.
|
32
30
|
"""
|
33
31
|
pulumi.set(__self__, "config_bundle", config_bundle)
|
@@ -66,10 +64,6 @@ class SharedflowArgs:
|
|
66
64
|
@property
|
67
65
|
@pulumi.getter(name="detectMd5hash")
|
68
66
|
def detect_md5hash(self) -> Optional[pulumi.Input[str]]:
|
69
|
-
"""
|
70
|
-
A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
71
|
-
will trigger an update.
|
72
|
-
"""
|
73
67
|
return pulumi.get(self, "detect_md5hash")
|
74
68
|
|
75
69
|
@detect_md5hash.setter
|
@@ -105,8 +99,6 @@ class _SharedflowState:
|
|
105
99
|
:param pulumi.Input[str] config_bundle: Path to the config zip bundle.
|
106
100
|
|
107
101
|
- - -
|
108
|
-
:param pulumi.Input[str] detect_md5hash: A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
109
|
-
will trigger an update.
|
110
102
|
:param pulumi.Input[str] latest_revision_id: The id of the most recently created revision for this shared flow.
|
111
103
|
:param pulumi.Input[str] md5hash: (Computed) Base 64 MD5 hash of the uploaded data. It is speculative as remote does not return hash of the bundle. Remote changes are detected using returned last_modified timestamp.
|
112
104
|
:param pulumi.Input[Sequence[pulumi.Input['SharedflowMetaDataArgs']]] meta_datas: Metadata describing the shared flow.
|
@@ -149,10 +141,6 @@ class _SharedflowState:
|
|
149
141
|
@property
|
150
142
|
@pulumi.getter(name="detectMd5hash")
|
151
143
|
def detect_md5hash(self) -> Optional[pulumi.Input[str]]:
|
152
|
-
"""
|
153
|
-
A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
154
|
-
will trigger an update.
|
155
|
-
"""
|
156
144
|
return pulumi.get(self, "detect_md5hash")
|
157
145
|
|
158
146
|
@detect_md5hash.setter
|
@@ -275,8 +263,6 @@ class Sharedflow(pulumi.CustomResource):
|
|
275
263
|
:param pulumi.Input[str] config_bundle: Path to the config zip bundle.
|
276
264
|
|
277
265
|
- - -
|
278
|
-
:param pulumi.Input[str] detect_md5hash: A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
279
|
-
will trigger an update.
|
280
266
|
:param pulumi.Input[str] name: The ID of the shared flow.
|
281
267
|
:param pulumi.Input[str] org_id: The Apigee Organization name associated with the Apigee instance.
|
282
268
|
"""
|
@@ -381,8 +367,6 @@ class Sharedflow(pulumi.CustomResource):
|
|
381
367
|
:param pulumi.Input[str] config_bundle: Path to the config zip bundle.
|
382
368
|
|
383
369
|
- - -
|
384
|
-
:param pulumi.Input[str] detect_md5hash: A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
385
|
-
will trigger an update.
|
386
370
|
:param pulumi.Input[str] latest_revision_id: The id of the most recently created revision for this shared flow.
|
387
371
|
:param pulumi.Input[str] md5hash: (Computed) Base 64 MD5 hash of the uploaded data. It is speculative as remote does not return hash of the bundle. Remote changes are detected using returned last_modified timestamp.
|
388
372
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SharedflowMetaDataArgs']]]] meta_datas: Metadata describing the shared flow.
|
@@ -418,10 +402,6 @@ class Sharedflow(pulumi.CustomResource):
|
|
418
402
|
@property
|
419
403
|
@pulumi.getter(name="detectMd5hash")
|
420
404
|
def detect_md5hash(self) -> pulumi.Output[Optional[str]]:
|
421
|
-
"""
|
422
|
-
A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
423
|
-
will trigger an update.
|
424
|
-
"""
|
425
405
|
return pulumi.get(self, "detect_md5hash")
|
426
406
|
|
427
407
|
@property
|
@@ -62,8 +62,6 @@ class FlexibleAppVersionArgs:
|
|
62
62
|
:param pulumi.Input['FlexibleAppVersionDeploymentArgs'] deployment: Code and application artifacts that make up this version.
|
63
63
|
:param pulumi.Input['FlexibleAppVersionEndpointsApiServiceArgs'] endpoints_api_service: Code and application artifacts that make up this version.
|
64
64
|
:param pulumi.Input['FlexibleAppVersionEntrypointArgs'] entrypoint: The entrypoint for the application.
|
65
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] env_variables: Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
66
|
-
detect any changes made outside of the Terraform config.
|
67
65
|
:param pulumi.Input[Sequence[pulumi.Input['FlexibleAppVersionHandlerArgs']]] handlers: An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the
|
68
66
|
request and other request handlers are not attempted.
|
69
67
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_services: A list of the types of messages that this application is able to receive. Possible values: ["INBOUND_SERVICE_MAIL",
|
@@ -296,10 +294,6 @@ class FlexibleAppVersionArgs:
|
|
296
294
|
@property
|
297
295
|
@pulumi.getter(name="envVariables")
|
298
296
|
def env_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
299
|
-
"""
|
300
|
-
Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
301
|
-
detect any changes made outside of the Terraform config.
|
302
|
-
"""
|
303
297
|
return pulumi.get(self, "env_variables")
|
304
298
|
|
305
299
|
@env_variables.setter
|
@@ -551,8 +545,6 @@ class _FlexibleAppVersionState:
|
|
551
545
|
:param pulumi.Input['FlexibleAppVersionDeploymentArgs'] deployment: Code and application artifacts that make up this version.
|
552
546
|
:param pulumi.Input['FlexibleAppVersionEndpointsApiServiceArgs'] endpoints_api_service: Code and application artifacts that make up this version.
|
553
547
|
:param pulumi.Input['FlexibleAppVersionEntrypointArgs'] entrypoint: The entrypoint for the application.
|
554
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] env_variables: Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
555
|
-
detect any changes made outside of the Terraform config.
|
556
548
|
:param pulumi.Input[Sequence[pulumi.Input['FlexibleAppVersionHandlerArgs']]] handlers: An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the
|
557
549
|
request and other request handlers are not attempted.
|
558
550
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_services: A list of the types of messages that this application is able to receive. Possible values: ["INBOUND_SERVICE_MAIL",
|
@@ -748,10 +740,6 @@ class _FlexibleAppVersionState:
|
|
748
740
|
@property
|
749
741
|
@pulumi.getter(name="envVariables")
|
750
742
|
def env_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
751
|
-
"""
|
752
|
-
Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
753
|
-
detect any changes made outside of the Terraform config.
|
754
|
-
"""
|
755
743
|
return pulumi.get(self, "env_variables")
|
756
744
|
|
757
745
|
@env_variables.setter
|
@@ -1192,8 +1180,6 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1192
1180
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionDeploymentArgs']] deployment: Code and application artifacts that make up this version.
|
1193
1181
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEndpointsApiServiceArgs']] endpoints_api_service: Code and application artifacts that make up this version.
|
1194
1182
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEntrypointArgs']] entrypoint: The entrypoint for the application.
|
1195
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] env_variables: Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
1196
|
-
detect any changes made outside of the Terraform config.
|
1197
1183
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlexibleAppVersionHandlerArgs']]]] handlers: An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the
|
1198
1184
|
request and other request handlers are not attempted.
|
1199
1185
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_services: A list of the types of messages that this application is able to receive. Possible values: ["INBOUND_SERVICE_MAIL",
|
@@ -1505,8 +1491,6 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1505
1491
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionDeploymentArgs']] deployment: Code and application artifacts that make up this version.
|
1506
1492
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEndpointsApiServiceArgs']] endpoints_api_service: Code and application artifacts that make up this version.
|
1507
1493
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEntrypointArgs']] entrypoint: The entrypoint for the application.
|
1508
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] env_variables: Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
1509
|
-
detect any changes made outside of the Terraform config.
|
1510
1494
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlexibleAppVersionHandlerArgs']]]] handlers: An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the
|
1511
1495
|
request and other request handlers are not attempted.
|
1512
1496
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_services: A list of the types of messages that this application is able to receive. Possible values: ["INBOUND_SERVICE_MAIL",
|
@@ -1645,10 +1629,6 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1645
1629
|
@property
|
1646
1630
|
@pulumi.getter(name="envVariables")
|
1647
1631
|
def env_variables(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1648
|
-
"""
|
1649
|
-
Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
1650
|
-
detect any changes made outside of the Terraform config.
|
1651
|
-
"""
|
1652
1632
|
return pulumi.get(self, "env_variables")
|
1653
1633
|
|
1654
1634
|
@property
|
@@ -44,8 +44,6 @@ class AuthorityArgs:
|
|
44
44
|
:param pulumi.Input[str] location: Location of the CertificateAuthority. A full list of valid locations can be found by
|
45
45
|
running `gcloud privateca locations list`.
|
46
46
|
:param pulumi.Input[str] pool: The name of the CaPool this Certificate Authority belongs to.
|
47
|
-
:param pulumi.Input[bool] deletion_protection: Whether or not to allow Terraform to destroy the CertificateAuthority. Unless this field is set to false in Terraform
|
48
|
-
state, a 'terraform destroy' or 'terraform apply' that would delete the instance will fail.
|
49
47
|
:param pulumi.Input[str] desired_state: Desired state of the CertificateAuthority. Set this field to 'STAGED' to create a 'STAGED' root CA.
|
50
48
|
:param pulumi.Input[str] gcs_bucket: The name of a Cloud Storage bucket where this CertificateAuthority will publish content, such as the CA certificate and
|
51
49
|
CRLs. This must be a bucket name, without any prefixes (such as 'gs://') or suffixes (such as '.googleapis.com'). For
|
@@ -65,7 +63,7 @@ class AuthorityArgs:
|
|
65
63
|
'false'.
|
66
64
|
:param pulumi.Input['AuthoritySubordinateConfigArgs'] subordinate_config: If this is a subordinate CertificateAuthority, this field will be set with the subordinate configuration, which
|
67
65
|
describes its issuers.
|
68
|
-
:param pulumi.Input[str] type: The Type of this CertificateAuthority.
|
66
|
+
:param pulumi.Input[str] type: The Type of this CertificateAuthority. > **Note:** For 'SUBORDINATE' Certificate Authorities, they need to be activated
|
69
67
|
before they can issue certificates. Default value: "SELF_SIGNED" Possible values: ["SELF_SIGNED", "SUBORDINATE"]
|
70
68
|
"""
|
71
69
|
pulumi.set(__self__, "certificate_authority_id", certificate_authority_id)
|
@@ -164,10 +162,6 @@ class AuthorityArgs:
|
|
164
162
|
@property
|
165
163
|
@pulumi.getter(name="deletionProtection")
|
166
164
|
def deletion_protection(self) -> Optional[pulumi.Input[bool]]:
|
167
|
-
"""
|
168
|
-
Whether or not to allow Terraform to destroy the CertificateAuthority. Unless this field is set to false in Terraform
|
169
|
-
state, a 'terraform destroy' or 'terraform apply' that would delete the instance will fail.
|
170
|
-
"""
|
171
165
|
return pulumi.get(self, "deletion_protection")
|
172
166
|
|
173
167
|
@deletion_protection.setter
|
@@ -294,7 +288,7 @@ class AuthorityArgs:
|
|
294
288
|
@pulumi.getter
|
295
289
|
def type(self) -> Optional[pulumi.Input[str]]:
|
296
290
|
"""
|
297
|
-
The Type of this CertificateAuthority.
|
291
|
+
The Type of this CertificateAuthority. > **Note:** For 'SUBORDINATE' Certificate Authorities, they need to be activated
|
298
292
|
before they can issue certificates. Default value: "SELF_SIGNED" Possible values: ["SELF_SIGNED", "SUBORDINATE"]
|
299
293
|
"""
|
300
294
|
return pulumi.get(self, "type")
|
@@ -341,8 +335,6 @@ class _AuthorityState:
|
|
341
335
|
:param pulumi.Input[str] create_time: The time at which this CertificateAuthority was created.
|
342
336
|
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine
|
343
337
|
fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
344
|
-
:param pulumi.Input[bool] deletion_protection: Whether or not to allow Terraform to destroy the CertificateAuthority. Unless this field is set to false in Terraform
|
345
|
-
state, a 'terraform destroy' or 'terraform apply' that would delete the instance will fail.
|
346
338
|
:param pulumi.Input[str] desired_state: Desired state of the CertificateAuthority. Set this field to 'STAGED' to create a 'STAGED' root CA.
|
347
339
|
: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.
|
348
340
|
:param pulumi.Input[str] gcs_bucket: The name of a Cloud Storage bucket where this CertificateAuthority will publish content, such as the CA certificate and
|
@@ -379,7 +371,7 @@ class _AuthorityState:
|
|
379
371
|
:param pulumi.Input[str] state: The State for this CertificateAuthority.
|
380
372
|
:param pulumi.Input['AuthoritySubordinateConfigArgs'] subordinate_config: If this is a subordinate CertificateAuthority, this field will be set with the subordinate configuration, which
|
381
373
|
describes its issuers.
|
382
|
-
:param pulumi.Input[str] type: The Type of this CertificateAuthority.
|
374
|
+
:param pulumi.Input[str] type: The Type of this CertificateAuthority. > **Note:** For 'SUBORDINATE' Certificate Authorities, they need to be activated
|
383
375
|
before they can issue certificates. Default value: "SELF_SIGNED" Possible values: ["SELF_SIGNED", "SUBORDINATE"]
|
384
376
|
:param pulumi.Input[str] update_time: The time at which this CertificateAuthority was updated.
|
385
377
|
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine
|
@@ -489,10 +481,6 @@ class _AuthorityState:
|
|
489
481
|
@property
|
490
482
|
@pulumi.getter(name="deletionProtection")
|
491
483
|
def deletion_protection(self) -> Optional[pulumi.Input[bool]]:
|
492
|
-
"""
|
493
|
-
Whether or not to allow Terraform to destroy the CertificateAuthority. Unless this field is set to false in Terraform
|
494
|
-
state, a 'terraform destroy' or 'terraform apply' that would delete the instance will fail.
|
495
|
-
"""
|
496
484
|
return pulumi.get(self, "deletion_protection")
|
497
485
|
|
498
486
|
@deletion_protection.setter
|
@@ -724,7 +712,7 @@ class _AuthorityState:
|
|
724
712
|
@pulumi.getter
|
725
713
|
def type(self) -> Optional[pulumi.Input[str]]:
|
726
714
|
"""
|
727
|
-
The Type of this CertificateAuthority.
|
715
|
+
The Type of this CertificateAuthority. > **Note:** For 'SUBORDINATE' Certificate Authorities, they need to be activated
|
728
716
|
before they can issue certificates. Default value: "SELF_SIGNED" Possible values: ["SELF_SIGNED", "SUBORDINATE"]
|
729
717
|
"""
|
730
718
|
return pulumi.get(self, "type")
|
@@ -1017,8 +1005,6 @@ class Authority(pulumi.CustomResource):
|
|
1017
1005
|
:param pulumi.Input[str] certificate_authority_id: The user provided Resource ID for this Certificate Authority.
|
1018
1006
|
:param pulumi.Input[pulumi.InputType['AuthorityConfigArgs']] config: The config used to create a self-signed X.509 certificate or CSR.
|
1019
1007
|
Structure is documented below.
|
1020
|
-
:param pulumi.Input[bool] deletion_protection: Whether or not to allow Terraform to destroy the CertificateAuthority. Unless this field is set to false in Terraform
|
1021
|
-
state, a 'terraform destroy' or 'terraform apply' that would delete the instance will fail.
|
1022
1008
|
:param pulumi.Input[str] desired_state: Desired state of the CertificateAuthority. Set this field to 'STAGED' to create a 'STAGED' root CA.
|
1023
1009
|
:param pulumi.Input[str] gcs_bucket: The name of a Cloud Storage bucket where this CertificateAuthority will publish content, such as the CA certificate and
|
1024
1010
|
CRLs. This must be a bucket name, without any prefixes (such as 'gs://') or suffixes (such as '.googleapis.com'). For
|
@@ -1045,7 +1031,7 @@ class Authority(pulumi.CustomResource):
|
|
1045
1031
|
'false'.
|
1046
1032
|
:param pulumi.Input[pulumi.InputType['AuthoritySubordinateConfigArgs']] subordinate_config: If this is a subordinate CertificateAuthority, this field will be set with the subordinate configuration, which
|
1047
1033
|
describes its issuers.
|
1048
|
-
:param pulumi.Input[str] type: The Type of this CertificateAuthority.
|
1034
|
+
:param pulumi.Input[str] type: The Type of this CertificateAuthority. > **Note:** For 'SUBORDINATE' Certificate Authorities, they need to be activated
|
1049
1035
|
before they can issue certificates. Default value: "SELF_SIGNED" Possible values: ["SELF_SIGNED", "SUBORDINATE"]
|
1050
1036
|
"""
|
1051
1037
|
...
|
@@ -1421,8 +1407,6 @@ class Authority(pulumi.CustomResource):
|
|
1421
1407
|
:param pulumi.Input[str] create_time: The time at which this CertificateAuthority was created.
|
1422
1408
|
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine
|
1423
1409
|
fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".
|
1424
|
-
:param pulumi.Input[bool] deletion_protection: Whether or not to allow Terraform to destroy the CertificateAuthority. Unless this field is set to false in Terraform
|
1425
|
-
state, a 'terraform destroy' or 'terraform apply' that would delete the instance will fail.
|
1426
1410
|
:param pulumi.Input[str] desired_state: Desired state of the CertificateAuthority. Set this field to 'STAGED' to create a 'STAGED' root CA.
|
1427
1411
|
: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.
|
1428
1412
|
:param pulumi.Input[str] gcs_bucket: The name of a Cloud Storage bucket where this CertificateAuthority will publish content, such as the CA certificate and
|
@@ -1459,7 +1443,7 @@ class Authority(pulumi.CustomResource):
|
|
1459
1443
|
:param pulumi.Input[str] state: The State for this CertificateAuthority.
|
1460
1444
|
:param pulumi.Input[pulumi.InputType['AuthoritySubordinateConfigArgs']] subordinate_config: If this is a subordinate CertificateAuthority, this field will be set with the subordinate configuration, which
|
1461
1445
|
describes its issuers.
|
1462
|
-
:param pulumi.Input[str] type: The Type of this CertificateAuthority.
|
1446
|
+
:param pulumi.Input[str] type: The Type of this CertificateAuthority. > **Note:** For 'SUBORDINATE' Certificate Authorities, they need to be activated
|
1463
1447
|
before they can issue certificates. Default value: "SELF_SIGNED" Possible values: ["SELF_SIGNED", "SUBORDINATE"]
|
1464
1448
|
:param pulumi.Input[str] update_time: The time at which this CertificateAuthority was updated.
|
1465
1449
|
A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine
|
@@ -1534,10 +1518,6 @@ class Authority(pulumi.CustomResource):
|
|
1534
1518
|
@property
|
1535
1519
|
@pulumi.getter(name="deletionProtection")
|
1536
1520
|
def deletion_protection(self) -> pulumi.Output[Optional[bool]]:
|
1537
|
-
"""
|
1538
|
-
Whether or not to allow Terraform to destroy the CertificateAuthority. Unless this field is set to false in Terraform
|
1539
|
-
state, a 'terraform destroy' or 'terraform apply' that would delete the instance will fail.
|
1540
|
-
"""
|
1541
1521
|
return pulumi.get(self, "deletion_protection")
|
1542
1522
|
|
1543
1523
|
@property
|
@@ -1697,7 +1677,7 @@ class Authority(pulumi.CustomResource):
|
|
1697
1677
|
@pulumi.getter
|
1698
1678
|
def type(self) -> pulumi.Output[Optional[str]]:
|
1699
1679
|
"""
|
1700
|
-
The Type of this CertificateAuthority.
|
1680
|
+
The Type of this CertificateAuthority. > **Note:** For 'SUBORDINATE' Certificate Authorities, they need to be activated
|
1701
1681
|
before they can issue certificates. Default value: "SELF_SIGNED" Possible values: ["SELF_SIGNED", "SUBORDINATE"]
|
1702
1682
|
"""
|
1703
1683
|
return pulumi.get(self, "type")
|
@@ -166,8 +166,6 @@ class _WorkerPoolState:
|
|
166
166
|
:param pulumi.Input[str] create_time: Output only. Time at which the request to create the `WorkerPool` was received.
|
167
167
|
:param pulumi.Input[str] delete_time: Output only. Time at which the request to delete the `WorkerPool` was received.
|
168
168
|
:param pulumi.Input[str] display_name: A user-specified, human-readable name for the `WorkerPool`. If provided, this value must be 1-63 characters.
|
169
|
-
: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
|
170
|
-
Terraform, other clients and services.
|
171
169
|
:param pulumi.Input[str] location: The location for the resource
|
172
170
|
:param pulumi.Input[str] name: User-defined name of the `WorkerPool`.
|
173
171
|
|
@@ -260,10 +258,6 @@ class _WorkerPoolState:
|
|
260
258
|
@property
|
261
259
|
@pulumi.getter(name="effectiveAnnotations")
|
262
260
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
263
|
-
"""
|
264
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
265
|
-
Terraform, other clients and services.
|
266
|
-
"""
|
267
261
|
return pulumi.get(self, "effective_annotations")
|
268
262
|
|
269
263
|
@effective_annotations.setter
|
@@ -644,8 +638,6 @@ class WorkerPool(pulumi.CustomResource):
|
|
644
638
|
:param pulumi.Input[str] create_time: Output only. Time at which the request to create the `WorkerPool` was received.
|
645
639
|
:param pulumi.Input[str] delete_time: Output only. Time at which the request to delete the `WorkerPool` was received.
|
646
640
|
:param pulumi.Input[str] display_name: A user-specified, human-readable name for the `WorkerPool`. If provided, this value must be 1-63 characters.
|
647
|
-
: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
|
648
|
-
Terraform, other clients and services.
|
649
641
|
:param pulumi.Input[str] location: The location for the resource
|
650
642
|
:param pulumi.Input[str] name: User-defined name of the `WorkerPool`.
|
651
643
|
|
@@ -714,10 +706,6 @@ class WorkerPool(pulumi.CustomResource):
|
|
714
706
|
@property
|
715
707
|
@pulumi.getter(name="effectiveAnnotations")
|
716
708
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, Any]]:
|
717
|
-
"""
|
718
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
719
|
-
Terraform, other clients and services.
|
720
|
-
"""
|
721
709
|
return pulumi.get(self, "effective_annotations")
|
722
710
|
|
723
711
|
@property
|
@@ -190,8 +190,6 @@ class _ConnectionState:
|
|
190
190
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
191
191
|
:param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
|
192
192
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
193
|
-
: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
|
194
|
-
Terraform, other clients and services.
|
195
193
|
: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.
|
196
194
|
:param pulumi.Input['ConnectionGithubConfigArgs'] github_config: Configuration for connections to github.com.
|
197
195
|
Structure is documented below.
|
@@ -281,10 +279,6 @@ class _ConnectionState:
|
|
281
279
|
@property
|
282
280
|
@pulumi.getter(name="effectiveAnnotations")
|
283
281
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
284
|
-
"""
|
285
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
286
|
-
Terraform, other clients and services.
|
287
|
-
"""
|
288
282
|
return pulumi.get(self, "effective_annotations")
|
289
283
|
|
290
284
|
@effective_annotations.setter
|
@@ -814,8 +808,6 @@ class Connection(pulumi.CustomResource):
|
|
814
808
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
815
809
|
:param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
|
816
810
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
817
|
-
: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
|
818
|
-
Terraform, other clients and services.
|
819
811
|
: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.
|
820
812
|
:param pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']] github_config: Configuration for connections to github.com.
|
821
813
|
Structure is documented below.
|
@@ -884,10 +876,6 @@ class Connection(pulumi.CustomResource):
|
|
884
876
|
@property
|
885
877
|
@pulumi.getter(name="effectiveAnnotations")
|
886
878
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
887
|
-
"""
|
888
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
889
|
-
Terraform, other clients and services.
|
890
|
-
"""
|
891
879
|
return pulumi.get(self, "effective_annotations")
|
892
880
|
|
893
881
|
@property
|
@@ -144,8 +144,6 @@ class _RepositoryState:
|
|
144
144
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
145
145
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
146
146
|
:param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
|
147
|
-
: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
|
148
|
-
Terraform, other clients and services.
|
149
147
|
: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.
|
150
148
|
:param pulumi.Input[str] location: The location for the resource
|
151
149
|
:param pulumi.Input[str] name: Name of the repository.
|
@@ -208,10 +206,6 @@ class _RepositoryState:
|
|
208
206
|
@property
|
209
207
|
@pulumi.getter(name="effectiveAnnotations")
|
210
208
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
211
|
-
"""
|
212
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
213
|
-
Terraform, other clients and services.
|
214
|
-
"""
|
215
209
|
return pulumi.get(self, "effective_annotations")
|
216
210
|
|
217
211
|
@effective_annotations.setter
|
@@ -661,8 +655,6 @@ class Repository(pulumi.CustomResource):
|
|
661
655
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
662
656
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
663
657
|
:param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
|
664
|
-
: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
|
665
|
-
Terraform, other clients and services.
|
666
658
|
: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.
|
667
659
|
:param pulumi.Input[str] location: The location for the resource
|
668
660
|
:param pulumi.Input[str] name: Name of the repository.
|
@@ -712,10 +704,6 @@ class Repository(pulumi.CustomResource):
|
|
712
704
|
@property
|
713
705
|
@pulumi.getter(name="effectiveAnnotations")
|
714
706
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
715
|
-
"""
|
716
|
-
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
717
|
-
Terraform, other clients and services.
|
718
|
-
"""
|
719
707
|
return pulumi.get(self, "effective_annotations")
|
720
708
|
|
721
709
|
@property
|