pulumi-gcp 7.23.0a1715695885__py3-none-any.whl → 7.23.0a1715808346__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 +24 -0
- pulumi_gcp/bigquery/table.py +47 -0
- pulumi_gcp/bigtable/__init__.py +1 -0
- pulumi_gcp/bigtable/_inputs.py +101 -0
- pulumi_gcp/bigtable/authorized_view.py +440 -0
- pulumi_gcp/bigtable/outputs.py +119 -0
- pulumi_gcp/certificateauthority/certificate_template.py +70 -0
- pulumi_gcp/cloudbuildv2/repository.py +2 -2
- pulumi_gcp/clouddeploy/_inputs.py +96 -0
- pulumi_gcp/clouddeploy/custom_target_type.py +46 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +7 -7
- pulumi_gcp/clouddeploy/outputs.py +96 -1
- pulumi_gcp/clouddeploy/target.py +54 -7
- pulumi_gcp/compute/_inputs.py +689 -0
- pulumi_gcp/compute/firewall_policy_rule.py +125 -10
- pulumi_gcp/compute/network_firewall_policy_rule.py +125 -10
- pulumi_gcp/compute/outputs.py +684 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +125 -10
- pulumi_gcp/compute/region_security_policy_rule.py +230 -1
- pulumi_gcp/container/_inputs.py +67 -3
- pulumi_gcp/container/outputs.py +93 -4
- pulumi_gcp/dataflow/flex_template_job.py +7 -7
- pulumi_gcp/dataflow/job.py +7 -7
- pulumi_gcp/iam/_inputs.py +191 -2
- pulumi_gcp/iam/outputs.py +197 -2
- pulumi_gcp/iam/workforce_pool_provider.py +245 -0
- pulumi_gcp/integrationconnectors/__init__.py +1 -0
- pulumi_gcp/integrationconnectors/managed_zone.py +753 -0
- pulumi_gcp/networkconnectivity/__init__.py +1 -0
- pulumi_gcp/networkconnectivity/regional_endpoint.py +946 -0
- pulumi_gcp/networksecurity/firewall_endpoint.py +34 -0
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +24 -0
- pulumi_gcp/networksecurity/security_profile.py +16 -0
- pulumi_gcp/networksecurity/security_profile_group.py +18 -0
- pulumi_gcp/networksecurity/tls_inspection_policy.py +16 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/subscription.py +4 -4
- pulumi_gcp/pulumi-plugin.json +1 -1
- {pulumi_gcp-7.23.0a1715695885.dist-info → pulumi_gcp-7.23.0a1715808346.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.23.0a1715695885.dist-info → pulumi_gcp-7.23.0a1715808346.dist-info}/RECORD +42 -39
- {pulumi_gcp-7.23.0a1715695885.dist-info → pulumi_gcp-7.23.0a1715808346.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.23.0a1715695885.dist-info → pulumi_gcp-7.23.0a1715808346.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -1316,6 +1316,14 @@ _utilities.register(
|
|
1316
1316
|
"gcp:bigquerydatapolicy/dataPolicyIamPolicy:DataPolicyIamPolicy": "DataPolicyIamPolicy"
|
1317
1317
|
}
|
1318
1318
|
},
|
1319
|
+
{
|
1320
|
+
"pkg": "gcp",
|
1321
|
+
"mod": "bigtable/authorizedView",
|
1322
|
+
"fqn": "pulumi_gcp.bigtable",
|
1323
|
+
"classes": {
|
1324
|
+
"gcp:bigtable/authorizedView:AuthorizedView": "AuthorizedView"
|
1325
|
+
}
|
1326
|
+
},
|
1319
1327
|
{
|
1320
1328
|
"pkg": "gcp",
|
1321
1329
|
"mod": "bigtable/gCPolicy",
|
@@ -5404,6 +5412,14 @@ _utilities.register(
|
|
5404
5412
|
"gcp:integrationconnectors/endpointAttachment:EndpointAttachment": "EndpointAttachment"
|
5405
5413
|
}
|
5406
5414
|
},
|
5415
|
+
{
|
5416
|
+
"pkg": "gcp",
|
5417
|
+
"mod": "integrationconnectors/managedZone",
|
5418
|
+
"fqn": "pulumi_gcp.integrationconnectors",
|
5419
|
+
"classes": {
|
5420
|
+
"gcp:integrationconnectors/managedZone:ManagedZone": "ManagedZone"
|
5421
|
+
}
|
5422
|
+
},
|
5407
5423
|
{
|
5408
5424
|
"pkg": "gcp",
|
5409
5425
|
"mod": "kms/cryptoKey",
|
@@ -5844,6 +5860,14 @@ _utilities.register(
|
|
5844
5860
|
"gcp:networkconnectivity/policyBasedRoute:PolicyBasedRoute": "PolicyBasedRoute"
|
5845
5861
|
}
|
5846
5862
|
},
|
5863
|
+
{
|
5864
|
+
"pkg": "gcp",
|
5865
|
+
"mod": "networkconnectivity/regionalEndpoint",
|
5866
|
+
"fqn": "pulumi_gcp.networkconnectivity",
|
5867
|
+
"classes": {
|
5868
|
+
"gcp:networkconnectivity/regionalEndpoint:RegionalEndpoint": "RegionalEndpoint"
|
5869
|
+
}
|
5870
|
+
},
|
5847
5871
|
{
|
5848
5872
|
"pkg": "gcp",
|
5849
5873
|
"mod": "networkconnectivity/serviceConnectionPolicy",
|
pulumi_gcp/bigquery/table.py
CHANGED
@@ -18,6 +18,7 @@ class TableArgs:
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
dataset_id: pulumi.Input[str],
|
20
20
|
table_id: pulumi.Input[str],
|
21
|
+
allow_resource_tags_on_deletion: Optional[pulumi.Input[bool]] = None,
|
21
22
|
clusterings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
22
23
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
23
24
|
description: Optional[pulumi.Input[str]] = None,
|
@@ -43,6 +44,7 @@ class TableArgs:
|
|
43
44
|
Changing this forces a new resource to be created.
|
44
45
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
45
46
|
Changing this forces a new resource to be created.
|
47
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: Whether or not to allow table deletion when there are still resource tags attached.
|
46
48
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
47
49
|
Up to four top-level columns are allowed, and should be specified in
|
48
50
|
descending priority order.
|
@@ -92,6 +94,8 @@ class TableArgs:
|
|
92
94
|
"""
|
93
95
|
pulumi.set(__self__, "dataset_id", dataset_id)
|
94
96
|
pulumi.set(__self__, "table_id", table_id)
|
97
|
+
if allow_resource_tags_on_deletion is not None:
|
98
|
+
pulumi.set(__self__, "allow_resource_tags_on_deletion", allow_resource_tags_on_deletion)
|
95
99
|
if clusterings is not None:
|
96
100
|
pulumi.set(__self__, "clusterings", clusterings)
|
97
101
|
if deletion_protection is not None:
|
@@ -157,6 +161,18 @@ class TableArgs:
|
|
157
161
|
def table_id(self, value: pulumi.Input[str]):
|
158
162
|
pulumi.set(self, "table_id", value)
|
159
163
|
|
164
|
+
@property
|
165
|
+
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
166
|
+
def allow_resource_tags_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
167
|
+
"""
|
168
|
+
Whether or not to allow table deletion when there are still resource tags attached.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
171
|
+
|
172
|
+
@allow_resource_tags_on_deletion.setter
|
173
|
+
def allow_resource_tags_on_deletion(self, value: Optional[pulumi.Input[bool]]):
|
174
|
+
pulumi.set(self, "allow_resource_tags_on_deletion", value)
|
175
|
+
|
160
176
|
@property
|
161
177
|
@pulumi.getter
|
162
178
|
def clusterings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -416,6 +432,7 @@ class TableArgs:
|
|
416
432
|
@pulumi.input_type
|
417
433
|
class _TableState:
|
418
434
|
def __init__(__self__, *,
|
435
|
+
allow_resource_tags_on_deletion: Optional[pulumi.Input[bool]] = None,
|
419
436
|
clusterings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
420
437
|
creation_time: Optional[pulumi.Input[int]] = None,
|
421
438
|
dataset_id: Optional[pulumi.Input[str]] = None,
|
@@ -450,6 +467,7 @@ class _TableState:
|
|
450
467
|
view: Optional[pulumi.Input['TableViewArgs']] = None):
|
451
468
|
"""
|
452
469
|
Input properties used for looking up and filtering Table resources.
|
470
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: Whether or not to allow table deletion when there are still resource tags attached.
|
453
471
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
454
472
|
Up to four top-level columns are allowed, and should be specified in
|
455
473
|
descending priority order.
|
@@ -527,6 +545,8 @@ class _TableState:
|
|
527
545
|
:param pulumi.Input['TableViewArgs'] view: If specified, configures this table as a view.
|
528
546
|
Structure is documented below.
|
529
547
|
"""
|
548
|
+
if allow_resource_tags_on_deletion is not None:
|
549
|
+
pulumi.set(__self__, "allow_resource_tags_on_deletion", allow_resource_tags_on_deletion)
|
530
550
|
if clusterings is not None:
|
531
551
|
pulumi.set(__self__, "clusterings", clusterings)
|
532
552
|
if creation_time is not None:
|
@@ -592,6 +612,18 @@ class _TableState:
|
|
592
612
|
if view is not None:
|
593
613
|
pulumi.set(__self__, "view", view)
|
594
614
|
|
615
|
+
@property
|
616
|
+
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
617
|
+
def allow_resource_tags_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
618
|
+
"""
|
619
|
+
Whether or not to allow table deletion when there are still resource tags attached.
|
620
|
+
"""
|
621
|
+
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
622
|
+
|
623
|
+
@allow_resource_tags_on_deletion.setter
|
624
|
+
def allow_resource_tags_on_deletion(self, value: Optional[pulumi.Input[bool]]):
|
625
|
+
pulumi.set(self, "allow_resource_tags_on_deletion", value)
|
626
|
+
|
595
627
|
@property
|
596
628
|
@pulumi.getter
|
597
629
|
def clusterings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -1026,6 +1058,7 @@ class Table(pulumi.CustomResource):
|
|
1026
1058
|
def __init__(__self__,
|
1027
1059
|
resource_name: str,
|
1028
1060
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1061
|
+
allow_resource_tags_on_deletion: Optional[pulumi.Input[bool]] = None,
|
1029
1062
|
clusterings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1030
1063
|
dataset_id: Optional[pulumi.Input[str]] = None,
|
1031
1064
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
@@ -1135,6 +1168,7 @@ class Table(pulumi.CustomResource):
|
|
1135
1168
|
|
1136
1169
|
:param str resource_name: The name of the resource.
|
1137
1170
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1171
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: Whether or not to allow table deletion when there are still resource tags attached.
|
1138
1172
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
1139
1173
|
Up to four top-level columns are allowed, and should be specified in
|
1140
1174
|
descending priority order.
|
@@ -1292,6 +1326,7 @@ class Table(pulumi.CustomResource):
|
|
1292
1326
|
def _internal_init(__self__,
|
1293
1327
|
resource_name: str,
|
1294
1328
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1329
|
+
allow_resource_tags_on_deletion: Optional[pulumi.Input[bool]] = None,
|
1295
1330
|
clusterings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1296
1331
|
dataset_id: Optional[pulumi.Input[str]] = None,
|
1297
1332
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
@@ -1322,6 +1357,7 @@ class Table(pulumi.CustomResource):
|
|
1322
1357
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
1323
1358
|
__props__ = TableArgs.__new__(TableArgs)
|
1324
1359
|
|
1360
|
+
__props__.__dict__["allow_resource_tags_on_deletion"] = allow_resource_tags_on_deletion
|
1325
1361
|
__props__.__dict__["clusterings"] = clusterings
|
1326
1362
|
if dataset_id is None and not opts.urn:
|
1327
1363
|
raise TypeError("Missing required property 'dataset_id'")
|
@@ -1370,6 +1406,7 @@ class Table(pulumi.CustomResource):
|
|
1370
1406
|
def get(resource_name: str,
|
1371
1407
|
id: pulumi.Input[str],
|
1372
1408
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1409
|
+
allow_resource_tags_on_deletion: Optional[pulumi.Input[bool]] = None,
|
1373
1410
|
clusterings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1374
1411
|
creation_time: Optional[pulumi.Input[int]] = None,
|
1375
1412
|
dataset_id: Optional[pulumi.Input[str]] = None,
|
@@ -1409,6 +1446,7 @@ class Table(pulumi.CustomResource):
|
|
1409
1446
|
:param str resource_name: The unique name of the resulting resource.
|
1410
1447
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1411
1448
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1449
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: Whether or not to allow table deletion when there are still resource tags attached.
|
1412
1450
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
1413
1451
|
Up to four top-level columns are allowed, and should be specified in
|
1414
1452
|
descending priority order.
|
@@ -1490,6 +1528,7 @@ class Table(pulumi.CustomResource):
|
|
1490
1528
|
|
1491
1529
|
__props__ = _TableState.__new__(_TableState)
|
1492
1530
|
|
1531
|
+
__props__.__dict__["allow_resource_tags_on_deletion"] = allow_resource_tags_on_deletion
|
1493
1532
|
__props__.__dict__["clusterings"] = clusterings
|
1494
1533
|
__props__.__dict__["creation_time"] = creation_time
|
1495
1534
|
__props__.__dict__["dataset_id"] = dataset_id
|
@@ -1524,6 +1563,14 @@ class Table(pulumi.CustomResource):
|
|
1524
1563
|
__props__.__dict__["view"] = view
|
1525
1564
|
return Table(resource_name, opts=opts, __props__=__props__)
|
1526
1565
|
|
1566
|
+
@property
|
1567
|
+
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
1568
|
+
def allow_resource_tags_on_deletion(self) -> pulumi.Output[Optional[bool]]:
|
1569
|
+
"""
|
1570
|
+
Whether or not to allow table deletion when there are still resource tags attached.
|
1571
|
+
"""
|
1572
|
+
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
1573
|
+
|
1527
1574
|
@property
|
1528
1575
|
@pulumi.getter
|
1529
1576
|
def clusterings(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
pulumi_gcp/bigtable/__init__.py
CHANGED
pulumi_gcp/bigtable/_inputs.py
CHANGED
@@ -10,6 +10,8 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
10
|
from .. import _utilities
|
11
11
|
|
12
12
|
__all__ = [
|
13
|
+
'AuthorizedViewSubsetViewArgs',
|
14
|
+
'AuthorizedViewSubsetViewFamilySubsetArgs',
|
13
15
|
'GCPolicyMaxAgeArgs',
|
14
16
|
'GCPolicyMaxVersionArgs',
|
15
17
|
'InstanceClusterArgs',
|
@@ -21,6 +23,105 @@ __all__ = [
|
|
21
23
|
'TableIamMemberConditionArgs',
|
22
24
|
]
|
23
25
|
|
26
|
+
@pulumi.input_type
|
27
|
+
class AuthorizedViewSubsetViewArgs:
|
28
|
+
def __init__(__self__, *,
|
29
|
+
family_subsets: Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizedViewSubsetViewFamilySubsetArgs']]]] = None,
|
30
|
+
row_prefixes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
31
|
+
"""
|
32
|
+
:param pulumi.Input[Sequence[pulumi.Input['AuthorizedViewSubsetViewFamilySubsetArgs']]] family_subsets: A group of column family subsets to be included in the authorized view. This can be specified multiple times. Structure is documented below.
|
33
|
+
|
34
|
+
-----
|
35
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] row_prefixes: A list of Base64-encoded row prefixes to be included in the authorized view. To provide access to all rows, include the empty string as a prefix ("").
|
36
|
+
"""
|
37
|
+
if family_subsets is not None:
|
38
|
+
pulumi.set(__self__, "family_subsets", family_subsets)
|
39
|
+
if row_prefixes is not None:
|
40
|
+
pulumi.set(__self__, "row_prefixes", row_prefixes)
|
41
|
+
|
42
|
+
@property
|
43
|
+
@pulumi.getter(name="familySubsets")
|
44
|
+
def family_subsets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizedViewSubsetViewFamilySubsetArgs']]]]:
|
45
|
+
"""
|
46
|
+
A group of column family subsets to be included in the authorized view. This can be specified multiple times. Structure is documented below.
|
47
|
+
|
48
|
+
-----
|
49
|
+
"""
|
50
|
+
return pulumi.get(self, "family_subsets")
|
51
|
+
|
52
|
+
@family_subsets.setter
|
53
|
+
def family_subsets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AuthorizedViewSubsetViewFamilySubsetArgs']]]]):
|
54
|
+
pulumi.set(self, "family_subsets", value)
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="rowPrefixes")
|
58
|
+
def row_prefixes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
59
|
+
"""
|
60
|
+
A list of Base64-encoded row prefixes to be included in the authorized view. To provide access to all rows, include the empty string as a prefix ("").
|
61
|
+
"""
|
62
|
+
return pulumi.get(self, "row_prefixes")
|
63
|
+
|
64
|
+
@row_prefixes.setter
|
65
|
+
def row_prefixes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
66
|
+
pulumi.set(self, "row_prefixes", value)
|
67
|
+
|
68
|
+
|
69
|
+
@pulumi.input_type
|
70
|
+
class AuthorizedViewSubsetViewFamilySubsetArgs:
|
71
|
+
def __init__(__self__, *,
|
72
|
+
family_name: pulumi.Input[str],
|
73
|
+
qualifier_prefixes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
74
|
+
qualifiers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
75
|
+
"""
|
76
|
+
:param pulumi.Input[str] family_name: Name of the column family to be included in the authorized view. The specified column family must exist in the parent table of this authorized view.
|
77
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] qualifier_prefixes: A list of Base64-encoded prefixes for qualifiers of the column family to be included in the authorized view.
|
78
|
+
Every qualifier starting with one of these prefixes is included in the authorized view. To provide access to all qualifiers, include the empty string as a prefix ("").
|
79
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] qualifiers: A list of Base64-encoded individual exact column qualifiers of the column family to be included in the authorized view.
|
80
|
+
"""
|
81
|
+
pulumi.set(__self__, "family_name", family_name)
|
82
|
+
if qualifier_prefixes is not None:
|
83
|
+
pulumi.set(__self__, "qualifier_prefixes", qualifier_prefixes)
|
84
|
+
if qualifiers is not None:
|
85
|
+
pulumi.set(__self__, "qualifiers", qualifiers)
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="familyName")
|
89
|
+
def family_name(self) -> pulumi.Input[str]:
|
90
|
+
"""
|
91
|
+
Name of the column family to be included in the authorized view. The specified column family must exist in the parent table of this authorized view.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "family_name")
|
94
|
+
|
95
|
+
@family_name.setter
|
96
|
+
def family_name(self, value: pulumi.Input[str]):
|
97
|
+
pulumi.set(self, "family_name", value)
|
98
|
+
|
99
|
+
@property
|
100
|
+
@pulumi.getter(name="qualifierPrefixes")
|
101
|
+
def qualifier_prefixes(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
102
|
+
"""
|
103
|
+
A list of Base64-encoded prefixes for qualifiers of the column family to be included in the authorized view.
|
104
|
+
Every qualifier starting with one of these prefixes is included in the authorized view. To provide access to all qualifiers, include the empty string as a prefix ("").
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "qualifier_prefixes")
|
107
|
+
|
108
|
+
@qualifier_prefixes.setter
|
109
|
+
def qualifier_prefixes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
110
|
+
pulumi.set(self, "qualifier_prefixes", value)
|
111
|
+
|
112
|
+
@property
|
113
|
+
@pulumi.getter
|
114
|
+
def qualifiers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
115
|
+
"""
|
116
|
+
A list of Base64-encoded individual exact column qualifiers of the column family to be included in the authorized view.
|
117
|
+
"""
|
118
|
+
return pulumi.get(self, "qualifiers")
|
119
|
+
|
120
|
+
@qualifiers.setter
|
121
|
+
def qualifiers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
122
|
+
pulumi.set(self, "qualifiers", value)
|
123
|
+
|
124
|
+
|
24
125
|
@pulumi.input_type
|
25
126
|
class GCPolicyMaxAgeArgs:
|
26
127
|
def __init__(__self__, *,
|