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
@@ -968,94 +968,6 @@ class Certificate(pulumi.CustomResource):
|
|
968
968
|
),
|
969
969
|
))
|
970
970
|
```
|
971
|
-
### Privateca Certificate Custom Ski
|
972
|
-
|
973
|
-
```python
|
974
|
-
import pulumi
|
975
|
-
import pulumi_gcp as gcp
|
976
|
-
import pulumi_std as std
|
977
|
-
|
978
|
-
default = gcp.certificateauthority.CaPool("default",
|
979
|
-
location="us-central1",
|
980
|
-
name="my-pool",
|
981
|
-
tier="ENTERPRISE")
|
982
|
-
default_authority = gcp.certificateauthority.Authority("default",
|
983
|
-
location="us-central1",
|
984
|
-
pool=default.name,
|
985
|
-
certificate_authority_id="my-authority",
|
986
|
-
config=gcp.certificateauthority.AuthorityConfigArgs(
|
987
|
-
subject_config=gcp.certificateauthority.AuthorityConfigSubjectConfigArgs(
|
988
|
-
subject=gcp.certificateauthority.AuthorityConfigSubjectConfigSubjectArgs(
|
989
|
-
organization="HashiCorp",
|
990
|
-
common_name="my-certificate-authority",
|
991
|
-
),
|
992
|
-
subject_alt_name=gcp.certificateauthority.AuthorityConfigSubjectConfigSubjectAltNameArgs(
|
993
|
-
dns_names=["hashicorp.com"],
|
994
|
-
),
|
995
|
-
),
|
996
|
-
x509_config=gcp.certificateauthority.AuthorityConfigX509ConfigArgs(
|
997
|
-
ca_options=gcp.certificateauthority.AuthorityConfigX509ConfigCaOptionsArgs(
|
998
|
-
is_ca=True,
|
999
|
-
),
|
1000
|
-
key_usage=gcp.certificateauthority.AuthorityConfigX509ConfigKeyUsageArgs(
|
1001
|
-
base_key_usage=gcp.certificateauthority.AuthorityConfigX509ConfigKeyUsageBaseKeyUsageArgs(
|
1002
|
-
digital_signature=True,
|
1003
|
-
cert_sign=True,
|
1004
|
-
crl_sign=True,
|
1005
|
-
),
|
1006
|
-
extended_key_usage=gcp.certificateauthority.AuthorityConfigX509ConfigKeyUsageExtendedKeyUsageArgs(
|
1007
|
-
server_auth=True,
|
1008
|
-
),
|
1009
|
-
),
|
1010
|
-
),
|
1011
|
-
),
|
1012
|
-
lifetime="86400s",
|
1013
|
-
key_spec=gcp.certificateauthority.AuthorityKeySpecArgs(
|
1014
|
-
algorithm="RSA_PKCS1_4096_SHA256",
|
1015
|
-
),
|
1016
|
-
deletion_protection=False,
|
1017
|
-
skip_grace_period=True,
|
1018
|
-
ignore_active_certificates_on_deletion=True)
|
1019
|
-
default_certificate = gcp.certificateauthority.Certificate("default",
|
1020
|
-
location="us-central1",
|
1021
|
-
pool=default.name,
|
1022
|
-
name="my-certificate",
|
1023
|
-
lifetime="860s",
|
1024
|
-
config=gcp.certificateauthority.CertificateConfigArgs(
|
1025
|
-
subject_config=gcp.certificateauthority.CertificateConfigSubjectConfigArgs(
|
1026
|
-
subject=gcp.certificateauthority.CertificateConfigSubjectConfigSubjectArgs(
|
1027
|
-
common_name="san1.example.com",
|
1028
|
-
country_code="us",
|
1029
|
-
organization="google",
|
1030
|
-
organizational_unit="enterprise",
|
1031
|
-
locality="mountain view",
|
1032
|
-
province="california",
|
1033
|
-
street_address="1600 amphitheatre parkway",
|
1034
|
-
postal_code="94109",
|
1035
|
-
),
|
1036
|
-
),
|
1037
|
-
subject_key_id=gcp.certificateauthority.CertificateConfigSubjectKeyIdArgs(
|
1038
|
-
key_id="4cf3372289b1d411b999dbb9ebcd44744b6b2fca",
|
1039
|
-
),
|
1040
|
-
x509_config=gcp.certificateauthority.CertificateConfigX509ConfigArgs(
|
1041
|
-
ca_options=gcp.certificateauthority.CertificateConfigX509ConfigCaOptionsArgs(
|
1042
|
-
is_ca=False,
|
1043
|
-
),
|
1044
|
-
key_usage=gcp.certificateauthority.CertificateConfigX509ConfigKeyUsageArgs(
|
1045
|
-
base_key_usage=gcp.certificateauthority.CertificateConfigX509ConfigKeyUsageBaseKeyUsageArgs(
|
1046
|
-
crl_sign=True,
|
1047
|
-
),
|
1048
|
-
extended_key_usage=gcp.certificateauthority.CertificateConfigX509ConfigKeyUsageExtendedKeyUsageArgs(
|
1049
|
-
server_auth=True,
|
1050
|
-
),
|
1051
|
-
),
|
1052
|
-
),
|
1053
|
-
public_key=gcp.certificateauthority.CertificateConfigPublicKeyArgs(
|
1054
|
-
format="PEM",
|
1055
|
-
key=std.filebase64(input="test-fixtures/rsa_public.pem").result,
|
1056
|
-
),
|
1057
|
-
))
|
1058
|
-
```
|
1059
971
|
|
1060
972
|
## Import
|
1061
973
|
|
@@ -1495,94 +1407,6 @@ class Certificate(pulumi.CustomResource):
|
|
1495
1407
|
),
|
1496
1408
|
))
|
1497
1409
|
```
|
1498
|
-
### Privateca Certificate Custom Ski
|
1499
|
-
|
1500
|
-
```python
|
1501
|
-
import pulumi
|
1502
|
-
import pulumi_gcp as gcp
|
1503
|
-
import pulumi_std as std
|
1504
|
-
|
1505
|
-
default = gcp.certificateauthority.CaPool("default",
|
1506
|
-
location="us-central1",
|
1507
|
-
name="my-pool",
|
1508
|
-
tier="ENTERPRISE")
|
1509
|
-
default_authority = gcp.certificateauthority.Authority("default",
|
1510
|
-
location="us-central1",
|
1511
|
-
pool=default.name,
|
1512
|
-
certificate_authority_id="my-authority",
|
1513
|
-
config=gcp.certificateauthority.AuthorityConfigArgs(
|
1514
|
-
subject_config=gcp.certificateauthority.AuthorityConfigSubjectConfigArgs(
|
1515
|
-
subject=gcp.certificateauthority.AuthorityConfigSubjectConfigSubjectArgs(
|
1516
|
-
organization="HashiCorp",
|
1517
|
-
common_name="my-certificate-authority",
|
1518
|
-
),
|
1519
|
-
subject_alt_name=gcp.certificateauthority.AuthorityConfigSubjectConfigSubjectAltNameArgs(
|
1520
|
-
dns_names=["hashicorp.com"],
|
1521
|
-
),
|
1522
|
-
),
|
1523
|
-
x509_config=gcp.certificateauthority.AuthorityConfigX509ConfigArgs(
|
1524
|
-
ca_options=gcp.certificateauthority.AuthorityConfigX509ConfigCaOptionsArgs(
|
1525
|
-
is_ca=True,
|
1526
|
-
),
|
1527
|
-
key_usage=gcp.certificateauthority.AuthorityConfigX509ConfigKeyUsageArgs(
|
1528
|
-
base_key_usage=gcp.certificateauthority.AuthorityConfigX509ConfigKeyUsageBaseKeyUsageArgs(
|
1529
|
-
digital_signature=True,
|
1530
|
-
cert_sign=True,
|
1531
|
-
crl_sign=True,
|
1532
|
-
),
|
1533
|
-
extended_key_usage=gcp.certificateauthority.AuthorityConfigX509ConfigKeyUsageExtendedKeyUsageArgs(
|
1534
|
-
server_auth=True,
|
1535
|
-
),
|
1536
|
-
),
|
1537
|
-
),
|
1538
|
-
),
|
1539
|
-
lifetime="86400s",
|
1540
|
-
key_spec=gcp.certificateauthority.AuthorityKeySpecArgs(
|
1541
|
-
algorithm="RSA_PKCS1_4096_SHA256",
|
1542
|
-
),
|
1543
|
-
deletion_protection=False,
|
1544
|
-
skip_grace_period=True,
|
1545
|
-
ignore_active_certificates_on_deletion=True)
|
1546
|
-
default_certificate = gcp.certificateauthority.Certificate("default",
|
1547
|
-
location="us-central1",
|
1548
|
-
pool=default.name,
|
1549
|
-
name="my-certificate",
|
1550
|
-
lifetime="860s",
|
1551
|
-
config=gcp.certificateauthority.CertificateConfigArgs(
|
1552
|
-
subject_config=gcp.certificateauthority.CertificateConfigSubjectConfigArgs(
|
1553
|
-
subject=gcp.certificateauthority.CertificateConfigSubjectConfigSubjectArgs(
|
1554
|
-
common_name="san1.example.com",
|
1555
|
-
country_code="us",
|
1556
|
-
organization="google",
|
1557
|
-
organizational_unit="enterprise",
|
1558
|
-
locality="mountain view",
|
1559
|
-
province="california",
|
1560
|
-
street_address="1600 amphitheatre parkway",
|
1561
|
-
postal_code="94109",
|
1562
|
-
),
|
1563
|
-
),
|
1564
|
-
subject_key_id=gcp.certificateauthority.CertificateConfigSubjectKeyIdArgs(
|
1565
|
-
key_id="4cf3372289b1d411b999dbb9ebcd44744b6b2fca",
|
1566
|
-
),
|
1567
|
-
x509_config=gcp.certificateauthority.CertificateConfigX509ConfigArgs(
|
1568
|
-
ca_options=gcp.certificateauthority.CertificateConfigX509ConfigCaOptionsArgs(
|
1569
|
-
is_ca=False,
|
1570
|
-
),
|
1571
|
-
key_usage=gcp.certificateauthority.CertificateConfigX509ConfigKeyUsageArgs(
|
1572
|
-
base_key_usage=gcp.certificateauthority.CertificateConfigX509ConfigKeyUsageBaseKeyUsageArgs(
|
1573
|
-
crl_sign=True,
|
1574
|
-
),
|
1575
|
-
extended_key_usage=gcp.certificateauthority.CertificateConfigX509ConfigKeyUsageExtendedKeyUsageArgs(
|
1576
|
-
server_auth=True,
|
1577
|
-
),
|
1578
|
-
),
|
1579
|
-
),
|
1580
|
-
public_key=gcp.certificateauthority.CertificateConfigPublicKeyArgs(
|
1581
|
-
format="PEM",
|
1582
|
-
key=std.filebase64(input="test-fixtures/rsa_public.pem").result,
|
1583
|
-
),
|
1584
|
-
))
|
1585
|
-
```
|
1586
1410
|
|
1587
1411
|
## Import
|
1588
1412
|
|
@@ -16,7 +16,6 @@ __all__ = [
|
|
16
16
|
'AuthorityConfigSubjectConfig',
|
17
17
|
'AuthorityConfigSubjectConfigSubject',
|
18
18
|
'AuthorityConfigSubjectConfigSubjectAltName',
|
19
|
-
'AuthorityConfigSubjectKeyId',
|
20
19
|
'AuthorityConfigX509Config',
|
21
20
|
'AuthorityConfigX509ConfigAdditionalExtension',
|
22
21
|
'AuthorityConfigX509ConfigAdditionalExtensionObjectId',
|
@@ -75,7 +74,6 @@ __all__ = [
|
|
75
74
|
'CertificateConfigSubjectConfig',
|
76
75
|
'CertificateConfigSubjectConfigSubject',
|
77
76
|
'CertificateConfigSubjectConfigSubjectAltName',
|
78
|
-
'CertificateConfigSubjectKeyId',
|
79
77
|
'CertificateConfigX509Config',
|
80
78
|
'CertificateConfigX509ConfigAdditionalExtension',
|
81
79
|
'CertificateConfigX509ConfigAdditionalExtensionObjectId',
|
@@ -107,7 +105,6 @@ __all__ = [
|
|
107
105
|
'GetAuthorityConfigSubjectConfigResult',
|
108
106
|
'GetAuthorityConfigSubjectConfigSubjectResult',
|
109
107
|
'GetAuthorityConfigSubjectConfigSubjectAltNameResult',
|
110
|
-
'GetAuthorityConfigSubjectKeyIdResult',
|
111
108
|
'GetAuthorityConfigX509ConfigResult',
|
112
109
|
'GetAuthorityConfigX509ConfigAdditionalExtensionResult',
|
113
110
|
'GetAuthorityConfigX509ConfigAdditionalExtensionObjectIdResult',
|
@@ -190,8 +187,6 @@ class AuthorityConfig(dict):
|
|
190
187
|
suggest = "subject_config"
|
191
188
|
elif key == "x509Config":
|
192
189
|
suggest = "x509_config"
|
193
|
-
elif key == "subjectKeyId":
|
194
|
-
suggest = "subject_key_id"
|
195
190
|
|
196
191
|
if suggest:
|
197
192
|
pulumi.log.warn(f"Key '{key}' not found in AuthorityConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -206,20 +201,18 @@ class AuthorityConfig(dict):
|
|
206
201
|
|
207
202
|
def __init__(__self__, *,
|
208
203
|
subject_config: 'outputs.AuthorityConfigSubjectConfig',
|
209
|
-
x509_config: 'outputs.AuthorityConfigX509Config'
|
210
|
-
subject_key_id: Optional['outputs.AuthorityConfigSubjectKeyId'] = None):
|
204
|
+
x509_config: 'outputs.AuthorityConfigX509Config'):
|
211
205
|
"""
|
212
206
|
:param 'AuthorityConfigSubjectConfigArgs' subject_config: Specifies some of the values in a certificate that are related to the subject.
|
213
207
|
Structure is documented below.
|
208
|
+
|
209
|
+
|
210
|
+
<a name="nested_x509_config"></a>The `x509_config` block supports:
|
214
211
|
:param 'AuthorityConfigX509ConfigArgs' x509_config: Describes how some of the technical X.509 fields in a certificate should be populated.
|
215
212
|
Structure is documented below.
|
216
|
-
:param 'AuthorityConfigSubjectKeyIdArgs' subject_key_id: When specified this provides a custom SKI to be used in the certificate. This should only be used to maintain a SKI of an existing CA originally created outside CA service, which was not generated using method (1) described in RFC 5280 section 4.2.1.2..
|
217
|
-
Structure is documented below.
|
218
213
|
"""
|
219
214
|
pulumi.set(__self__, "subject_config", subject_config)
|
220
215
|
pulumi.set(__self__, "x509_config", x509_config)
|
221
|
-
if subject_key_id is not None:
|
222
|
-
pulumi.set(__self__, "subject_key_id", subject_key_id)
|
223
216
|
|
224
217
|
@property
|
225
218
|
@pulumi.getter(name="subjectConfig")
|
@@ -227,6 +220,9 @@ class AuthorityConfig(dict):
|
|
227
220
|
"""
|
228
221
|
Specifies some of the values in a certificate that are related to the subject.
|
229
222
|
Structure is documented below.
|
223
|
+
|
224
|
+
|
225
|
+
<a name="nested_x509_config"></a>The `x509_config` block supports:
|
230
226
|
"""
|
231
227
|
return pulumi.get(self, "subject_config")
|
232
228
|
|
@@ -239,15 +235,6 @@ class AuthorityConfig(dict):
|
|
239
235
|
"""
|
240
236
|
return pulumi.get(self, "x509_config")
|
241
237
|
|
242
|
-
@property
|
243
|
-
@pulumi.getter(name="subjectKeyId")
|
244
|
-
def subject_key_id(self) -> Optional['outputs.AuthorityConfigSubjectKeyId']:
|
245
|
-
"""
|
246
|
-
When specified this provides a custom SKI to be used in the certificate. This should only be used to maintain a SKI of an existing CA originally created outside CA service, which was not generated using method (1) described in RFC 5280 section 4.2.1.2..
|
247
|
-
Structure is documented below.
|
248
|
-
"""
|
249
|
-
return pulumi.get(self, "subject_key_id")
|
250
|
-
|
251
238
|
|
252
239
|
@pulumi.output_type
|
253
240
|
class AuthorityConfigSubjectConfig(dict):
|
@@ -502,46 +489,6 @@ class AuthorityConfigSubjectConfigSubjectAltName(dict):
|
|
502
489
|
return pulumi.get(self, "uris")
|
503
490
|
|
504
491
|
|
505
|
-
@pulumi.output_type
|
506
|
-
class AuthorityConfigSubjectKeyId(dict):
|
507
|
-
@staticmethod
|
508
|
-
def __key_warning(key: str):
|
509
|
-
suggest = None
|
510
|
-
if key == "keyId":
|
511
|
-
suggest = "key_id"
|
512
|
-
|
513
|
-
if suggest:
|
514
|
-
pulumi.log.warn(f"Key '{key}' not found in AuthorityConfigSubjectKeyId. Access the value via the '{suggest}' property getter instead.")
|
515
|
-
|
516
|
-
def __getitem__(self, key: str) -> Any:
|
517
|
-
AuthorityConfigSubjectKeyId.__key_warning(key)
|
518
|
-
return super().__getitem__(key)
|
519
|
-
|
520
|
-
def get(self, key: str, default = None) -> Any:
|
521
|
-
AuthorityConfigSubjectKeyId.__key_warning(key)
|
522
|
-
return super().get(key, default)
|
523
|
-
|
524
|
-
def __init__(__self__, *,
|
525
|
-
key_id: Optional[str] = None):
|
526
|
-
"""
|
527
|
-
:param str key_id: The value of the KeyId in lowercase hexidecimal.
|
528
|
-
|
529
|
-
<a name="nested_x509_config"></a>The `x509_config` block supports:
|
530
|
-
"""
|
531
|
-
if key_id is not None:
|
532
|
-
pulumi.set(__self__, "key_id", key_id)
|
533
|
-
|
534
|
-
@property
|
535
|
-
@pulumi.getter(name="keyId")
|
536
|
-
def key_id(self) -> Optional[str]:
|
537
|
-
"""
|
538
|
-
The value of the KeyId in lowercase hexidecimal.
|
539
|
-
|
540
|
-
<a name="nested_x509_config"></a>The `x509_config` block supports:
|
541
|
-
"""
|
542
|
-
return pulumi.get(self, "key_id")
|
543
|
-
|
544
|
-
|
545
492
|
@pulumi.output_type
|
546
493
|
class AuthorityConfigX509Config(dict):
|
547
494
|
@staticmethod
|
@@ -3773,7 +3720,8 @@ class CertificateCertificateDescriptionSubjectKeyId(dict):
|
|
3773
3720
|
def __init__(__self__, *,
|
3774
3721
|
key_id: Optional[str] = None):
|
3775
3722
|
"""
|
3776
|
-
:param str key_id:
|
3723
|
+
:param str key_id: (Output)
|
3724
|
+
Optional. The value of this KeyId encoded in lowercase hexadecimal. This is most likely the 160 bit SHA-1 hash of the public key.
|
3777
3725
|
"""
|
3778
3726
|
if key_id is not None:
|
3779
3727
|
pulumi.set(__self__, "key_id", key_id)
|
@@ -3782,7 +3730,8 @@ class CertificateCertificateDescriptionSubjectKeyId(dict):
|
|
3782
3730
|
@pulumi.getter(name="keyId")
|
3783
3731
|
def key_id(self) -> Optional[str]:
|
3784
3732
|
"""
|
3785
|
-
|
3733
|
+
(Output)
|
3734
|
+
Optional. The value of this KeyId encoded in lowercase hexadecimal. This is most likely the 160 bit SHA-1 hash of the public key.
|
3786
3735
|
"""
|
3787
3736
|
return pulumi.get(self, "key_id")
|
3788
3737
|
|
@@ -4670,8 +4619,6 @@ class CertificateConfig(dict):
|
|
4670
4619
|
suggest = "subject_config"
|
4671
4620
|
elif key == "x509Config":
|
4672
4621
|
suggest = "x509_config"
|
4673
|
-
elif key == "subjectKeyId":
|
4674
|
-
suggest = "subject_key_id"
|
4675
4622
|
|
4676
4623
|
if suggest:
|
4677
4624
|
pulumi.log.warn(f"Key '{key}' not found in CertificateConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -4687,8 +4634,7 @@ class CertificateConfig(dict):
|
|
4687
4634
|
def __init__(__self__, *,
|
4688
4635
|
public_key: 'outputs.CertificateConfigPublicKey',
|
4689
4636
|
subject_config: 'outputs.CertificateConfigSubjectConfig',
|
4690
|
-
x509_config: 'outputs.CertificateConfigX509Config'
|
4691
|
-
subject_key_id: Optional['outputs.CertificateConfigSubjectKeyId'] = None):
|
4637
|
+
x509_config: 'outputs.CertificateConfigX509Config'):
|
4692
4638
|
"""
|
4693
4639
|
:param 'CertificateConfigPublicKeyArgs' public_key: A PublicKey describes a public key.
|
4694
4640
|
Structure is documented below.
|
@@ -4699,14 +4645,10 @@ class CertificateConfig(dict):
|
|
4699
4645
|
Structure is documented below.
|
4700
4646
|
:param 'CertificateConfigX509ConfigArgs' x509_config: Describes how some of the technical X.509 fields in a certificate should be populated.
|
4701
4647
|
Structure is documented below.
|
4702
|
-
:param 'CertificateConfigSubjectKeyIdArgs' subject_key_id: When specified this provides a custom SKI to be used in the certificate. This should only be used to maintain a SKI of an existing CA originally created outside CA service, which was not generated using method (1) described in RFC 5280 section 4.2.1.2..
|
4703
|
-
Structure is documented below.
|
4704
4648
|
"""
|
4705
4649
|
pulumi.set(__self__, "public_key", public_key)
|
4706
4650
|
pulumi.set(__self__, "subject_config", subject_config)
|
4707
4651
|
pulumi.set(__self__, "x509_config", x509_config)
|
4708
|
-
if subject_key_id is not None:
|
4709
|
-
pulumi.set(__self__, "subject_key_id", subject_key_id)
|
4710
4652
|
|
4711
4653
|
@property
|
4712
4654
|
@pulumi.getter(name="publicKey")
|
@@ -4738,15 +4680,6 @@ class CertificateConfig(dict):
|
|
4738
4680
|
"""
|
4739
4681
|
return pulumi.get(self, "x509_config")
|
4740
4682
|
|
4741
|
-
@property
|
4742
|
-
@pulumi.getter(name="subjectKeyId")
|
4743
|
-
def subject_key_id(self) -> Optional['outputs.CertificateConfigSubjectKeyId']:
|
4744
|
-
"""
|
4745
|
-
When specified this provides a custom SKI to be used in the certificate. This should only be used to maintain a SKI of an existing CA originally created outside CA service, which was not generated using method (1) described in RFC 5280 section 4.2.1.2..
|
4746
|
-
Structure is documented below.
|
4747
|
-
"""
|
4748
|
-
return pulumi.get(self, "subject_key_id")
|
4749
|
-
|
4750
4683
|
|
4751
4684
|
@pulumi.output_type
|
4752
4685
|
class CertificateConfigPublicKey(dict):
|
@@ -5033,42 +4966,6 @@ class CertificateConfigSubjectConfigSubjectAltName(dict):
|
|
5033
4966
|
return pulumi.get(self, "uris")
|
5034
4967
|
|
5035
4968
|
|
5036
|
-
@pulumi.output_type
|
5037
|
-
class CertificateConfigSubjectKeyId(dict):
|
5038
|
-
@staticmethod
|
5039
|
-
def __key_warning(key: str):
|
5040
|
-
suggest = None
|
5041
|
-
if key == "keyId":
|
5042
|
-
suggest = "key_id"
|
5043
|
-
|
5044
|
-
if suggest:
|
5045
|
-
pulumi.log.warn(f"Key '{key}' not found in CertificateConfigSubjectKeyId. Access the value via the '{suggest}' property getter instead.")
|
5046
|
-
|
5047
|
-
def __getitem__(self, key: str) -> Any:
|
5048
|
-
CertificateConfigSubjectKeyId.__key_warning(key)
|
5049
|
-
return super().__getitem__(key)
|
5050
|
-
|
5051
|
-
def get(self, key: str, default = None) -> Any:
|
5052
|
-
CertificateConfigSubjectKeyId.__key_warning(key)
|
5053
|
-
return super().get(key, default)
|
5054
|
-
|
5055
|
-
def __init__(__self__, *,
|
5056
|
-
key_id: Optional[str] = None):
|
5057
|
-
"""
|
5058
|
-
:param str key_id: The value of the KeyId in lowercase hexidecimal.
|
5059
|
-
"""
|
5060
|
-
if key_id is not None:
|
5061
|
-
pulumi.set(__self__, "key_id", key_id)
|
5062
|
-
|
5063
|
-
@property
|
5064
|
-
@pulumi.getter(name="keyId")
|
5065
|
-
def key_id(self) -> Optional[str]:
|
5066
|
-
"""
|
5067
|
-
The value of the KeyId in lowercase hexidecimal.
|
5068
|
-
"""
|
5069
|
-
return pulumi.get(self, "key_id")
|
5070
|
-
|
5071
|
-
|
5072
4969
|
@pulumi.output_type
|
5073
4970
|
class CertificateConfigX509Config(dict):
|
5074
4971
|
@staticmethod
|
@@ -6959,15 +6856,12 @@ class GetAuthorityAccessUrlResult(dict):
|
|
6959
6856
|
class GetAuthorityConfigResult(dict):
|
6960
6857
|
def __init__(__self__, *,
|
6961
6858
|
subject_configs: Sequence['outputs.GetAuthorityConfigSubjectConfigResult'],
|
6962
|
-
subject_key_ids: Sequence['outputs.GetAuthorityConfigSubjectKeyIdResult'],
|
6963
6859
|
x509_configs: Sequence['outputs.GetAuthorityConfigX509ConfigResult']):
|
6964
6860
|
"""
|
6965
6861
|
:param Sequence['GetAuthorityConfigSubjectConfigArgs'] subject_configs: Specifies some of the values in a certificate that are related to the subject.
|
6966
|
-
:param Sequence['GetAuthorityConfigSubjectKeyIdArgs'] subject_key_ids: When specified this provides a custom SKI to be used in the certificate. This should only be used to maintain a SKI of an existing CA originally created outside CA service, which was not generated using method (1) described in RFC 5280 section 4.2.1.2..
|
6967
6862
|
:param Sequence['GetAuthorityConfigX509ConfigArgs'] x509_configs: Describes how some of the technical X.509 fields in a certificate should be populated.
|
6968
6863
|
"""
|
6969
6864
|
pulumi.set(__self__, "subject_configs", subject_configs)
|
6970
|
-
pulumi.set(__self__, "subject_key_ids", subject_key_ids)
|
6971
6865
|
pulumi.set(__self__, "x509_configs", x509_configs)
|
6972
6866
|
|
6973
6867
|
@property
|
@@ -6978,14 +6872,6 @@ class GetAuthorityConfigResult(dict):
|
|
6978
6872
|
"""
|
6979
6873
|
return pulumi.get(self, "subject_configs")
|
6980
6874
|
|
6981
|
-
@property
|
6982
|
-
@pulumi.getter(name="subjectKeyIds")
|
6983
|
-
def subject_key_ids(self) -> Sequence['outputs.GetAuthorityConfigSubjectKeyIdResult']:
|
6984
|
-
"""
|
6985
|
-
When specified this provides a custom SKI to be used in the certificate. This should only be used to maintain a SKI of an existing CA originally created outside CA service, which was not generated using method (1) described in RFC 5280 section 4.2.1.2..
|
6986
|
-
"""
|
6987
|
-
return pulumi.get(self, "subject_key_ids")
|
6988
|
-
|
6989
6875
|
@property
|
6990
6876
|
@pulumi.getter(name="x509Configs")
|
6991
6877
|
def x509_configs(self) -> Sequence['outputs.GetAuthorityConfigX509ConfigResult']:
|
@@ -7170,24 +7056,6 @@ class GetAuthorityConfigSubjectConfigSubjectAltNameResult(dict):
|
|
7170
7056
|
return pulumi.get(self, "uris")
|
7171
7057
|
|
7172
7058
|
|
7173
|
-
@pulumi.output_type
|
7174
|
-
class GetAuthorityConfigSubjectKeyIdResult(dict):
|
7175
|
-
def __init__(__self__, *,
|
7176
|
-
key_id: str):
|
7177
|
-
"""
|
7178
|
-
:param str key_id: The value of the KeyId in lowercase hexidecimal.
|
7179
|
-
"""
|
7180
|
-
pulumi.set(__self__, "key_id", key_id)
|
7181
|
-
|
7182
|
-
@property
|
7183
|
-
@pulumi.getter(name="keyId")
|
7184
|
-
def key_id(self) -> str:
|
7185
|
-
"""
|
7186
|
-
The value of the KeyId in lowercase hexidecimal.
|
7187
|
-
"""
|
7188
|
-
return pulumi.get(self, "key_id")
|
7189
|
-
|
7190
|
-
|
7191
7059
|
@pulumi.output_type
|
7192
7060
|
class GetAuthorityConfigX509ConfigResult(dict):
|
7193
7061
|
def __init__(__self__, *,
|
@@ -166,6 +166,8 @@ 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.
|
169
171
|
:param pulumi.Input[str] location: The location for the resource
|
170
172
|
:param pulumi.Input[str] name: User-defined name of the `WorkerPool`.
|
171
173
|
|
@@ -258,6 +260,10 @@ class _WorkerPoolState:
|
|
258
260
|
@property
|
259
261
|
@pulumi.getter(name="effectiveAnnotations")
|
260
262
|
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
|
+
"""
|
261
267
|
return pulumi.get(self, "effective_annotations")
|
262
268
|
|
263
269
|
@effective_annotations.setter
|
@@ -638,6 +644,8 @@ class WorkerPool(pulumi.CustomResource):
|
|
638
644
|
:param pulumi.Input[str] create_time: Output only. Time at which the request to create the `WorkerPool` was received.
|
639
645
|
:param pulumi.Input[str] delete_time: Output only. Time at which the request to delete the `WorkerPool` was received.
|
640
646
|
: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.
|
641
649
|
:param pulumi.Input[str] location: The location for the resource
|
642
650
|
:param pulumi.Input[str] name: User-defined name of the `WorkerPool`.
|
643
651
|
|
@@ -706,6 +714,10 @@ class WorkerPool(pulumi.CustomResource):
|
|
706
714
|
@property
|
707
715
|
@pulumi.getter(name="effectiveAnnotations")
|
708
716
|
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
|
+
"""
|
709
721
|
return pulumi.get(self, "effective_annotations")
|
710
722
|
|
711
723
|
@property
|
@@ -190,6 +190,8 @@ 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.
|
193
195
|
: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.
|
194
196
|
:param pulumi.Input['ConnectionGithubConfigArgs'] github_config: Configuration for connections to github.com.
|
195
197
|
Structure is documented below.
|
@@ -279,6 +281,10 @@ class _ConnectionState:
|
|
279
281
|
@property
|
280
282
|
@pulumi.getter(name="effectiveAnnotations")
|
281
283
|
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
|
+
"""
|
282
288
|
return pulumi.get(self, "effective_annotations")
|
283
289
|
|
284
290
|
@effective_annotations.setter
|
@@ -808,6 +814,8 @@ class Connection(pulumi.CustomResource):
|
|
808
814
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
809
815
|
:param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
|
810
816
|
: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.
|
811
819
|
: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.
|
812
820
|
:param pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']] github_config: Configuration for connections to github.com.
|
813
821
|
Structure is documented below.
|
@@ -876,6 +884,10 @@ class Connection(pulumi.CustomResource):
|
|
876
884
|
@property
|
877
885
|
@pulumi.getter(name="effectiveAnnotations")
|
878
886
|
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
|
+
"""
|
879
891
|
return pulumi.get(self, "effective_annotations")
|
880
892
|
|
881
893
|
@property
|
@@ -144,6 +144,8 @@ 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.
|
147
149
|
: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.
|
148
150
|
:param pulumi.Input[str] location: The location for the resource
|
149
151
|
:param pulumi.Input[str] name: Name of the repository.
|
@@ -206,6 +208,10 @@ class _RepositoryState:
|
|
206
208
|
@property
|
207
209
|
@pulumi.getter(name="effectiveAnnotations")
|
208
210
|
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
|
+
"""
|
209
215
|
return pulumi.get(self, "effective_annotations")
|
210
216
|
|
211
217
|
@effective_annotations.setter
|
@@ -655,6 +661,8 @@ class Repository(pulumi.CustomResource):
|
|
655
661
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
656
662
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
657
663
|
: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.
|
658
666
|
: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.
|
659
667
|
:param pulumi.Input[str] location: The location for the resource
|
660
668
|
:param pulumi.Input[str] name: Name of the repository.
|
@@ -704,6 +712,10 @@ class Repository(pulumi.CustomResource):
|
|
704
712
|
@property
|
705
713
|
@pulumi.getter(name="effectiveAnnotations")
|
706
714
|
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
|
+
"""
|
707
719
|
return pulumi.get(self, "effective_annotations")
|
708
720
|
|
709
721
|
@property
|
@@ -255,6 +255,8 @@ class _AutomationState:
|
|
255
255
|
:param pulumi.Input[str] create_time: Output only. Time at which the automation was created.
|
256
256
|
:param pulumi.Input[str] delivery_pipeline: The delivery_pipeline for the resource
|
257
257
|
:param pulumi.Input[str] description: Optional. Description of the 'Automation'. Max length is 255 characters.
|
258
|
+
: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
|
259
|
+
Terraform, other clients and services.
|
258
260
|
: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.
|
259
261
|
:param pulumi.Input[str] etag: Optional. The weak etag of the `Automation` 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.
|
260
262
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the
|
@@ -373,6 +375,10 @@ class _AutomationState:
|
|
373
375
|
@property
|
374
376
|
@pulumi.getter(name="effectiveAnnotations")
|
375
377
|
def effective_annotations(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
378
|
+
"""
|
379
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
380
|
+
Terraform, other clients and services.
|
381
|
+
"""
|
376
382
|
return pulumi.get(self, "effective_annotations")
|
377
383
|
|
378
384
|
@effective_annotations.setter
|
@@ -956,6 +962,8 @@ class Automation(pulumi.CustomResource):
|
|
956
962
|
:param pulumi.Input[str] create_time: Output only. Time at which the automation was created.
|
957
963
|
:param pulumi.Input[str] delivery_pipeline: The delivery_pipeline for the resource
|
958
964
|
:param pulumi.Input[str] description: Optional. Description of the 'Automation'. Max length is 255 characters.
|
965
|
+
: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
|
966
|
+
Terraform, other clients and services.
|
959
967
|
: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.
|
960
968
|
:param pulumi.Input[str] etag: Optional. The weak etag of the `Automation` 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.
|
961
969
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Optional. Labels are attributes that can be set and used by both the user and by Cloud Deploy. Labels must meet the
|
@@ -1045,6 +1053,10 @@ class Automation(pulumi.CustomResource):
|
|
1045
1053
|
@property
|
1046
1054
|
@pulumi.getter(name="effectiveAnnotations")
|
1047
1055
|
def effective_annotations(self) -> pulumi.Output[Mapping[str, str]]:
|
1056
|
+
"""
|
1057
|
+
All of annotations (key/value pairs) present on the resource in GCP, including the annotations configured through
|
1058
|
+
Terraform, other clients and services.
|
1059
|
+
"""
|
1048
1060
|
return pulumi.get(self, "effective_annotations")
|
1049
1061
|
|
1050
1062
|
@property
|