pulumi-gcp 7.28.0__py3-none-any.whl → 7.28.0a1718431623__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 -59
- pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
- pulumi_gcp/accesscontextmanager/access_levels.py +20 -0
- pulumi_gcp/accesscontextmanager/outputs.py +74 -58
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/bigtable/_inputs.py +0 -40
- pulumi_gcp/bigtable/outputs.py +0 -49
- pulumi_gcp/bigtable/table.py +0 -54
- pulumi_gcp/cloudbuildv2/_inputs.py +0 -383
- pulumi_gcp/cloudbuildv2/connection.py +2 -110
- pulumi_gcp/cloudbuildv2/outputs.py +0 -421
- pulumi_gcp/composer/__init__.py +0 -3
- pulumi_gcp/compute/_inputs.py +2 -4
- pulumi_gcp/compute/backend_service.py +48 -28
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -10
- pulumi_gcp/compute/region_backend_service.py +48 -35
- pulumi_gcp/compute/region_network_endpoint.py +0 -187
- pulumi_gcp/compute/region_network_endpoint_group.py +9 -49
- pulumi_gcp/compute/region_target_https_proxy.py +14 -7
- pulumi_gcp/compute/target_https_proxy.py +14 -28
- pulumi_gcp/config/__init__.pyi +0 -2
- pulumi_gcp/config/vars.py +0 -4
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +0 -227
- pulumi_gcp/discoveryengine/data_store.py +0 -108
- pulumi_gcp/discoveryengine/outputs.py +0 -280
- pulumi_gcp/edgecontainer/_inputs.py +1 -107
- pulumi_gcp/edgecontainer/outputs.py +1 -123
- pulumi_gcp/gkehub/_inputs.py +0 -16
- pulumi_gcp/gkehub/outputs.py +1 -15
- pulumi_gcp/kms/crypto_key.py +6 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/netapp/__init__.py +0 -1
- pulumi_gcp/netapp/active_directory.py +0 -55
- pulumi_gcp/provider.py +0 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +0 -3
- pulumi_gcp/securitycenter/_inputs.py +0 -1105
- pulumi_gcp/securitycenter/outputs.py +0 -1048
- pulumi_gcp/vertex/ai_feature_online_store.py +8 -37
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/RECORD +47 -59
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/WHEEL +1 -1
- pulumi_gcp/composer/get_user_workloads_config_map.py +0 -190
- pulumi_gcp/composer/get_user_workloads_secret.py +0 -188
- pulumi_gcp/composer/user_workloads_config_map.py +0 -475
- pulumi_gcp/managedkafka/__init__.py +0 -11
- pulumi_gcp/managedkafka/_inputs.py +0 -169
- pulumi_gcp/managedkafka/cluster.py +0 -807
- pulumi_gcp/managedkafka/outputs.py +0 -197
- pulumi_gcp/managedkafka/topic.py +0 -599
- pulumi_gcp/netapp/backup.py +0 -903
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +0 -725
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +0 -713
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +0 -706
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/top_level.txt +0 -0
@@ -1668,8 +1668,8 @@ class ServicePerimeterEgressPolicyEgressFrom(dict):
|
|
1668
1668
|
sources: Optional[Sequence['outputs.ServicePerimeterEgressPolicyEgressFromSource']] = None):
|
1669
1669
|
"""
|
1670
1670
|
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
1671
|
-
Should be in the format of email address. The email address should
|
1672
|
-
represent individual user
|
1671
|
+
Should be in the format of an email address. The email address should
|
1672
|
+
represent an individual user, service account, or Google group.
|
1673
1673
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
1674
1674
|
perimeter. If left unspecified, then members of `identities` field will
|
1675
1675
|
be allowed access.
|
@@ -1693,8 +1693,8 @@ class ServicePerimeterEgressPolicyEgressFrom(dict):
|
|
1693
1693
|
def identities(self) -> Optional[Sequence[str]]:
|
1694
1694
|
"""
|
1695
1695
|
A list of identities that are allowed access through this `EgressPolicy`.
|
1696
|
-
Should be in the format of email address. The email address should
|
1697
|
-
represent individual user
|
1696
|
+
Should be in the format of an email address. The email address should
|
1697
|
+
represent an individual user, service account, or Google group.
|
1698
1698
|
"""
|
1699
1699
|
return pulumi.get(self, "identities")
|
1700
1700
|
|
@@ -1963,9 +1963,9 @@ class ServicePerimeterIngressPolicyIngressFrom(dict):
|
|
1963
1963
|
identity_type: Optional[str] = None,
|
1964
1964
|
sources: Optional[Sequence['outputs.ServicePerimeterIngressPolicyIngressFromSource']] = None):
|
1965
1965
|
"""
|
1966
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
1967
|
-
Should be in the format of email address. The email address should represent
|
1968
|
-
individual user
|
1966
|
+
:param Sequence[str] identities: A list of identities that are allowed access through this `IngressPolicy`.
|
1967
|
+
Should be in the format of an email address. The email address should represent
|
1968
|
+
an individual user, service account, or Google group.
|
1969
1969
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
1970
1970
|
perimeter. If left unspecified, then members of `identities` field will be
|
1971
1971
|
allowed access.
|
@@ -1984,9 +1984,9 @@ class ServicePerimeterIngressPolicyIngressFrom(dict):
|
|
1984
1984
|
@pulumi.getter
|
1985
1985
|
def identities(self) -> Optional[Sequence[str]]:
|
1986
1986
|
"""
|
1987
|
-
A list of identities that are allowed access through this
|
1988
|
-
Should be in the format of email address. The email address should represent
|
1989
|
-
individual user
|
1987
|
+
A list of identities that are allowed access through this `IngressPolicy`.
|
1988
|
+
Should be in the format of an email address. The email address should represent
|
1989
|
+
an individual user, service account, or Google group.
|
1990
1990
|
"""
|
1991
1991
|
return pulumi.get(self, "identities")
|
1992
1992
|
|
@@ -2466,9 +2466,10 @@ class ServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
2466
2466
|
source_restriction: Optional[str] = None,
|
2467
2467
|
sources: Optional[Sequence['outputs.ServicePerimeterSpecEgressPolicyEgressFromSource']] = None):
|
2468
2468
|
"""
|
2469
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
2470
|
-
|
2471
|
-
|
2469
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `EgressPolicy`.
|
2470
|
+
To specify an identity or identity group, use the IAM v1
|
2471
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
2472
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2472
2473
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
2473
2474
|
perimeter. If left unspecified, then members of `identities` field will
|
2474
2475
|
be allowed access.
|
@@ -2491,9 +2492,10 @@ class ServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
2491
2492
|
@pulumi.getter
|
2492
2493
|
def identities(self) -> Optional[Sequence[str]]:
|
2493
2494
|
"""
|
2494
|
-
A list of identities that are allowed access through this `EgressPolicy`.
|
2495
|
-
|
2496
|
-
|
2495
|
+
'A list of identities that are allowed access through this `EgressPolicy`.
|
2496
|
+
To specify an identity or identity group, use the IAM v1
|
2497
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
2498
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2497
2499
|
"""
|
2498
2500
|
return pulumi.get(self, "identities")
|
2499
2501
|
|
@@ -2820,9 +2822,10 @@ class ServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
2820
2822
|
identity_type: Optional[str] = None,
|
2821
2823
|
sources: Optional[Sequence['outputs.ServicePerimeterSpecIngressPolicyIngressFromSource']] = None):
|
2822
2824
|
"""
|
2823
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
2824
|
-
|
2825
|
-
|
2825
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `IngressPolicy`.
|
2826
|
+
To specify an identity or identity group, use the IAM v1
|
2827
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
2828
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2826
2829
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
2827
2830
|
perimeter. If left unspecified, then members of `identities` field will be
|
2828
2831
|
allowed access.
|
@@ -2841,9 +2844,10 @@ class ServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
2841
2844
|
@pulumi.getter
|
2842
2845
|
def identities(self) -> Optional[Sequence[str]]:
|
2843
2846
|
"""
|
2844
|
-
A list of identities that are allowed access through this
|
2845
|
-
|
2846
|
-
|
2847
|
+
'A list of identities that are allowed access through this `IngressPolicy`.
|
2848
|
+
To specify an identity or identity group, use the IAM v1
|
2849
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
2850
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
2847
2851
|
"""
|
2848
2852
|
return pulumi.get(self, "identities")
|
2849
2853
|
|
@@ -3363,9 +3367,10 @@ class ServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
3363
3367
|
source_restriction: Optional[str] = None,
|
3364
3368
|
sources: Optional[Sequence['outputs.ServicePerimeterStatusEgressPolicyEgressFromSource']] = None):
|
3365
3369
|
"""
|
3366
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
3367
|
-
|
3368
|
-
|
3370
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `EgressPolicy`.
|
3371
|
+
To specify an identity or identity group, use the IAM v1
|
3372
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
3373
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3369
3374
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
3370
3375
|
perimeter. If left unspecified, then members of `identities` field will
|
3371
3376
|
be allowed access.
|
@@ -3388,9 +3393,10 @@ class ServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
3388
3393
|
@pulumi.getter
|
3389
3394
|
def identities(self) -> Optional[Sequence[str]]:
|
3390
3395
|
"""
|
3391
|
-
A list of identities that are allowed access through this `EgressPolicy`.
|
3392
|
-
|
3393
|
-
|
3396
|
+
'A list of identities that are allowed access through this `EgressPolicy`.
|
3397
|
+
To specify an identity or identity group, use the IAM v1
|
3398
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
3399
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3394
3400
|
"""
|
3395
3401
|
return pulumi.get(self, "identities")
|
3396
3402
|
|
@@ -3717,9 +3723,10 @@ class ServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
3717
3723
|
identity_type: Optional[str] = None,
|
3718
3724
|
sources: Optional[Sequence['outputs.ServicePerimeterStatusIngressPolicyIngressFromSource']] = None):
|
3719
3725
|
"""
|
3720
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
3721
|
-
|
3722
|
-
|
3726
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `IngressPolicy`.
|
3727
|
+
To specify an identity or identity group, use the IAM v1
|
3728
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
3729
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3723
3730
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
3724
3731
|
perimeter. If left unspecified, then members of `identities` field will be
|
3725
3732
|
allowed access.
|
@@ -3738,9 +3745,10 @@ class ServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
3738
3745
|
@pulumi.getter
|
3739
3746
|
def identities(self) -> Optional[Sequence[str]]:
|
3740
3747
|
"""
|
3741
|
-
A list of identities that are allowed access through this
|
3742
|
-
|
3743
|
-
|
3748
|
+
'A list of identities that are allowed access through this `IngressPolicy`.
|
3749
|
+
To specify an identity or identity group, use the IAM v1
|
3750
|
+
format specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
3751
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
3744
3752
|
"""
|
3745
3753
|
return pulumi.get(self, "identities")
|
3746
3754
|
|
@@ -4466,9 +4474,10 @@ class ServicePerimetersServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
4466
4474
|
source_restriction: Optional[str] = None,
|
4467
4475
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterSpecEgressPolicyEgressFromSource']] = None):
|
4468
4476
|
"""
|
4469
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
4470
|
-
|
4471
|
-
|
4477
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `EgressPolicy`.
|
4478
|
+
To specify an identity or identity group, use the IAM v1 format
|
4479
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
4480
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4472
4481
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
4473
4482
|
perimeter. If left unspecified, then members of `identities` field will
|
4474
4483
|
be allowed access.
|
@@ -4491,9 +4500,10 @@ class ServicePerimetersServicePerimeterSpecEgressPolicyEgressFrom(dict):
|
|
4491
4500
|
@pulumi.getter
|
4492
4501
|
def identities(self) -> Optional[Sequence[str]]:
|
4493
4502
|
"""
|
4494
|
-
A list of identities that are allowed access through this `EgressPolicy`.
|
4495
|
-
|
4496
|
-
|
4503
|
+
'A list of identities that are allowed access through this `EgressPolicy`.
|
4504
|
+
To specify an identity or identity group, use the IAM v1 format
|
4505
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
4506
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4497
4507
|
"""
|
4498
4508
|
return pulumi.get(self, "identities")
|
4499
4509
|
|
@@ -4820,9 +4830,10 @@ class ServicePerimetersServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
4820
4830
|
identity_type: Optional[str] = None,
|
4821
4831
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterSpecIngressPolicyIngressFromSource']] = None):
|
4822
4832
|
"""
|
4823
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
4824
|
-
|
4825
|
-
|
4833
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `IngressPolicy`.
|
4834
|
+
To specify an identity or identity group, use the IAM v1 format
|
4835
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
4836
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4826
4837
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
4827
4838
|
perimeter. If left unspecified, then members of `identities` field will be
|
4828
4839
|
allowed access.
|
@@ -4841,9 +4852,10 @@ class ServicePerimetersServicePerimeterSpecIngressPolicyIngressFrom(dict):
|
|
4841
4852
|
@pulumi.getter
|
4842
4853
|
def identities(self) -> Optional[Sequence[str]]:
|
4843
4854
|
"""
|
4844
|
-
A list of identities that are allowed access through this
|
4845
|
-
|
4846
|
-
|
4855
|
+
'A list of identities that are allowed access through this `IngressPolicy`.
|
4856
|
+
To specify an identity or identity group, use the IAM v1 format
|
4857
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
4858
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
4847
4859
|
"""
|
4848
4860
|
return pulumi.get(self, "identities")
|
4849
4861
|
|
@@ -5363,9 +5375,10 @@ class ServicePerimetersServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
5363
5375
|
source_restriction: Optional[str] = None,
|
5364
5376
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterStatusEgressPolicyEgressFromSource']] = None):
|
5365
5377
|
"""
|
5366
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this `EgressPolicy`.
|
5367
|
-
|
5368
|
-
|
5378
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `EgressPolicy`.
|
5379
|
+
To specify an identity or identity group, use the IAM v1 format
|
5380
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
5381
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5369
5382
|
:param str identity_type: Specifies the type of identities that are allowed access to outside the
|
5370
5383
|
perimeter. If left unspecified, then members of `identities` field will
|
5371
5384
|
be allowed access.
|
@@ -5388,9 +5401,10 @@ class ServicePerimetersServicePerimeterStatusEgressPolicyEgressFrom(dict):
|
|
5388
5401
|
@pulumi.getter
|
5389
5402
|
def identities(self) -> Optional[Sequence[str]]:
|
5390
5403
|
"""
|
5391
|
-
A list of identities that are allowed access through this `EgressPolicy`.
|
5392
|
-
|
5393
|
-
|
5404
|
+
'A list of identities that are allowed access through this `EgressPolicy`.
|
5405
|
+
To specify an identity or identity group, use the IAM v1 format
|
5406
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
5407
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5394
5408
|
"""
|
5395
5409
|
return pulumi.get(self, "identities")
|
5396
5410
|
|
@@ -5717,9 +5731,10 @@ class ServicePerimetersServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
5717
5731
|
identity_type: Optional[str] = None,
|
5718
5732
|
sources: Optional[Sequence['outputs.ServicePerimetersServicePerimeterStatusIngressPolicyIngressFromSource']] = None):
|
5719
5733
|
"""
|
5720
|
-
:param Sequence[str] identities: A list of identities that are allowed access through this
|
5721
|
-
|
5722
|
-
|
5734
|
+
:param Sequence[str] identities: 'A list of identities that are allowed access through this `IngressPolicy`.
|
5735
|
+
To specify an identity or identity group, use the IAM v1 format
|
5736
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
5737
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5723
5738
|
:param str identity_type: Specifies the type of identities that are allowed access from outside the
|
5724
5739
|
perimeter. If left unspecified, then members of `identities` field will be
|
5725
5740
|
allowed access.
|
@@ -5738,9 +5753,10 @@ class ServicePerimetersServicePerimeterStatusIngressPolicyIngressFrom(dict):
|
|
5738
5753
|
@pulumi.getter
|
5739
5754
|
def identities(self) -> Optional[Sequence[str]]:
|
5740
5755
|
"""
|
5741
|
-
A list of identities that are allowed access through this
|
5742
|
-
|
5743
|
-
|
5756
|
+
'A list of identities that are allowed access through this `IngressPolicy`.
|
5757
|
+
To specify an identity or identity group, use the IAM v1 format
|
5758
|
+
specified [here](https://cloud.google.com/iam/docs/principal-identifiers.md#v1).
|
5759
|
+
The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
|
5744
5760
|
"""
|
5745
5761
|
return pulumi.get(self, "identities")
|
5746
5762
|
|
@@ -667,7 +667,6 @@ class ServicePerimeter(pulumi.CustomResource):
|
|
667
667
|
),
|
668
668
|
use_explicit_dry_run_spec=True)
|
669
669
|
```
|
670
|
-
|
671
670
|
## Import
|
672
671
|
|
673
672
|
ServicePerimeter can be imported using any of these accepted formats:
|
@@ -924,7 +923,6 @@ class ServicePerimeter(pulumi.CustomResource):
|
|
924
923
|
),
|
925
924
|
use_explicit_dry_run_spec=True)
|
926
925
|
```
|
927
|
-
|
928
926
|
## Import
|
929
927
|
|
930
928
|
ServicePerimeter can be imported using any of these accepted formats:
|
pulumi_gcp/bigtable/_inputs.py
CHANGED
@@ -18,7 +18,6 @@ __all__ = [
|
|
18
18
|
'InstanceClusterAutoscalingConfigArgs',
|
19
19
|
'InstanceIamBindingConditionArgs',
|
20
20
|
'InstanceIamMemberConditionArgs',
|
21
|
-
'TableAutomatedBackupPolicyArgs',
|
22
21
|
'TableColumnFamilyArgs',
|
23
22
|
'TableIamBindingConditionArgs',
|
24
23
|
'TableIamMemberConditionArgs',
|
@@ -494,45 +493,6 @@ class InstanceIamMemberConditionArgs:
|
|
494
493
|
pulumi.set(self, "description", value)
|
495
494
|
|
496
495
|
|
497
|
-
@pulumi.input_type
|
498
|
-
class TableAutomatedBackupPolicyArgs:
|
499
|
-
def __init__(__self__, *,
|
500
|
-
frequency: Optional[pulumi.Input[str]] = None,
|
501
|
-
retention_period: Optional[pulumi.Input[str]] = None):
|
502
|
-
"""
|
503
|
-
:param pulumi.Input[str] frequency: How frequently automated backups should occur.
|
504
|
-
:param pulumi.Input[str] retention_period: How long the automated backups should be retained.
|
505
|
-
"""
|
506
|
-
if frequency is not None:
|
507
|
-
pulumi.set(__self__, "frequency", frequency)
|
508
|
-
if retention_period is not None:
|
509
|
-
pulumi.set(__self__, "retention_period", retention_period)
|
510
|
-
|
511
|
-
@property
|
512
|
-
@pulumi.getter
|
513
|
-
def frequency(self) -> Optional[pulumi.Input[str]]:
|
514
|
-
"""
|
515
|
-
How frequently automated backups should occur.
|
516
|
-
"""
|
517
|
-
return pulumi.get(self, "frequency")
|
518
|
-
|
519
|
-
@frequency.setter
|
520
|
-
def frequency(self, value: Optional[pulumi.Input[str]]):
|
521
|
-
pulumi.set(self, "frequency", value)
|
522
|
-
|
523
|
-
@property
|
524
|
-
@pulumi.getter(name="retentionPeriod")
|
525
|
-
def retention_period(self) -> Optional[pulumi.Input[str]]:
|
526
|
-
"""
|
527
|
-
How long the automated backups should be retained.
|
528
|
-
"""
|
529
|
-
return pulumi.get(self, "retention_period")
|
530
|
-
|
531
|
-
@retention_period.setter
|
532
|
-
def retention_period(self, value: Optional[pulumi.Input[str]]):
|
533
|
-
pulumi.set(self, "retention_period", value)
|
534
|
-
|
535
|
-
|
536
496
|
@pulumi.input_type
|
537
497
|
class TableColumnFamilyArgs:
|
538
498
|
def __init__(__self__, *,
|
pulumi_gcp/bigtable/outputs.py
CHANGED
@@ -19,7 +19,6 @@ __all__ = [
|
|
19
19
|
'InstanceClusterAutoscalingConfig',
|
20
20
|
'InstanceIamBindingCondition',
|
21
21
|
'InstanceIamMemberCondition',
|
22
|
-
'TableAutomatedBackupPolicy',
|
23
22
|
'TableColumnFamily',
|
24
23
|
'TableIamBindingCondition',
|
25
24
|
'TableIamMemberCondition',
|
@@ -478,54 +477,6 @@ class InstanceIamMemberCondition(dict):
|
|
478
477
|
return pulumi.get(self, "description")
|
479
478
|
|
480
479
|
|
481
|
-
@pulumi.output_type
|
482
|
-
class TableAutomatedBackupPolicy(dict):
|
483
|
-
@staticmethod
|
484
|
-
def __key_warning(key: str):
|
485
|
-
suggest = None
|
486
|
-
if key == "retentionPeriod":
|
487
|
-
suggest = "retention_period"
|
488
|
-
|
489
|
-
if suggest:
|
490
|
-
pulumi.log.warn(f"Key '{key}' not found in TableAutomatedBackupPolicy. Access the value via the '{suggest}' property getter instead.")
|
491
|
-
|
492
|
-
def __getitem__(self, key: str) -> Any:
|
493
|
-
TableAutomatedBackupPolicy.__key_warning(key)
|
494
|
-
return super().__getitem__(key)
|
495
|
-
|
496
|
-
def get(self, key: str, default = None) -> Any:
|
497
|
-
TableAutomatedBackupPolicy.__key_warning(key)
|
498
|
-
return super().get(key, default)
|
499
|
-
|
500
|
-
def __init__(__self__, *,
|
501
|
-
frequency: Optional[str] = None,
|
502
|
-
retention_period: Optional[str] = None):
|
503
|
-
"""
|
504
|
-
:param str frequency: How frequently automated backups should occur.
|
505
|
-
:param str retention_period: How long the automated backups should be retained.
|
506
|
-
"""
|
507
|
-
if frequency is not None:
|
508
|
-
pulumi.set(__self__, "frequency", frequency)
|
509
|
-
if retention_period is not None:
|
510
|
-
pulumi.set(__self__, "retention_period", retention_period)
|
511
|
-
|
512
|
-
@property
|
513
|
-
@pulumi.getter
|
514
|
-
def frequency(self) -> Optional[str]:
|
515
|
-
"""
|
516
|
-
How frequently automated backups should occur.
|
517
|
-
"""
|
518
|
-
return pulumi.get(self, "frequency")
|
519
|
-
|
520
|
-
@property
|
521
|
-
@pulumi.getter(name="retentionPeriod")
|
522
|
-
def retention_period(self) -> Optional[str]:
|
523
|
-
"""
|
524
|
-
How long the automated backups should be retained.
|
525
|
-
"""
|
526
|
-
return pulumi.get(self, "retention_period")
|
527
|
-
|
528
|
-
|
529
480
|
@pulumi.output_type
|
530
481
|
class TableColumnFamily(dict):
|
531
482
|
def __init__(__self__, *,
|
pulumi_gcp/bigtable/table.py
CHANGED
@@ -17,7 +17,6 @@ __all__ = ['TableArgs', 'Table']
|
|
17
17
|
class TableArgs:
|
18
18
|
def __init__(__self__, *,
|
19
19
|
instance_name: pulumi.Input[str],
|
20
|
-
automated_backup_policy: Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']] = None,
|
21
20
|
change_stream_retention: Optional[pulumi.Input[str]] = None,
|
22
21
|
column_families: Optional[pulumi.Input[Sequence[pulumi.Input['TableColumnFamilyArgs']]]] = None,
|
23
22
|
deletion_protection: Optional[pulumi.Input[str]] = None,
|
@@ -27,8 +26,6 @@ class TableArgs:
|
|
27
26
|
"""
|
28
27
|
The set of arguments for constructing a Table resource.
|
29
28
|
:param pulumi.Input[str] instance_name: The name of the Bigtable instance.
|
30
|
-
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both
|
31
|
-
Retention Period and Frequency to 0.
|
32
29
|
:param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
33
30
|
|
34
31
|
-----
|
@@ -42,8 +39,6 @@ class TableArgs:
|
|
42
39
|
to delete/recreate the entire `bigtable.Table` resource.
|
43
40
|
"""
|
44
41
|
pulumi.set(__self__, "instance_name", instance_name)
|
45
|
-
if automated_backup_policy is not None:
|
46
|
-
pulumi.set(__self__, "automated_backup_policy", automated_backup_policy)
|
47
42
|
if change_stream_retention is not None:
|
48
43
|
pulumi.set(__self__, "change_stream_retention", change_stream_retention)
|
49
44
|
if column_families is not None:
|
@@ -69,19 +64,6 @@ class TableArgs:
|
|
69
64
|
def instance_name(self, value: pulumi.Input[str]):
|
70
65
|
pulumi.set(self, "instance_name", value)
|
71
66
|
|
72
|
-
@property
|
73
|
-
@pulumi.getter(name="automatedBackupPolicy")
|
74
|
-
def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
|
75
|
-
"""
|
76
|
-
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both
|
77
|
-
Retention Period and Frequency to 0.
|
78
|
-
"""
|
79
|
-
return pulumi.get(self, "automated_backup_policy")
|
80
|
-
|
81
|
-
@automated_backup_policy.setter
|
82
|
-
def automated_backup_policy(self, value: Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]):
|
83
|
-
pulumi.set(self, "automated_backup_policy", value)
|
84
|
-
|
85
67
|
@property
|
86
68
|
@pulumi.getter(name="changeStreamRetention")
|
87
69
|
def change_stream_retention(self) -> Optional[pulumi.Input[str]]:
|
@@ -163,7 +145,6 @@ class TableArgs:
|
|
163
145
|
@pulumi.input_type
|
164
146
|
class _TableState:
|
165
147
|
def __init__(__self__, *,
|
166
|
-
automated_backup_policy: Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']] = None,
|
167
148
|
change_stream_retention: Optional[pulumi.Input[str]] = None,
|
168
149
|
column_families: Optional[pulumi.Input[Sequence[pulumi.Input['TableColumnFamilyArgs']]]] = None,
|
169
150
|
deletion_protection: Optional[pulumi.Input[str]] = None,
|
@@ -173,8 +154,6 @@ class _TableState:
|
|
173
154
|
split_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
174
155
|
"""
|
175
156
|
Input properties used for looking up and filtering Table resources.
|
176
|
-
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both
|
177
|
-
Retention Period and Frequency to 0.
|
178
157
|
:param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
179
158
|
|
180
159
|
-----
|
@@ -188,8 +167,6 @@ class _TableState:
|
|
188
167
|
!> **Warning:** Modifying the `split_keys` of an existing table will cause the provider
|
189
168
|
to delete/recreate the entire `bigtable.Table` resource.
|
190
169
|
"""
|
191
|
-
if automated_backup_policy is not None:
|
192
|
-
pulumi.set(__self__, "automated_backup_policy", automated_backup_policy)
|
193
170
|
if change_stream_retention is not None:
|
194
171
|
pulumi.set(__self__, "change_stream_retention", change_stream_retention)
|
195
172
|
if column_families is not None:
|
@@ -205,19 +182,6 @@ class _TableState:
|
|
205
182
|
if split_keys is not None:
|
206
183
|
pulumi.set(__self__, "split_keys", split_keys)
|
207
184
|
|
208
|
-
@property
|
209
|
-
@pulumi.getter(name="automatedBackupPolicy")
|
210
|
-
def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
|
211
|
-
"""
|
212
|
-
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both
|
213
|
-
Retention Period and Frequency to 0.
|
214
|
-
"""
|
215
|
-
return pulumi.get(self, "automated_backup_policy")
|
216
|
-
|
217
|
-
@automated_backup_policy.setter
|
218
|
-
def automated_backup_policy(self, value: Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]):
|
219
|
-
pulumi.set(self, "automated_backup_policy", value)
|
220
|
-
|
221
185
|
@property
|
222
186
|
@pulumi.getter(name="changeStreamRetention")
|
223
187
|
def change_stream_retention(self) -> Optional[pulumi.Input[str]]:
|
@@ -313,7 +277,6 @@ class Table(pulumi.CustomResource):
|
|
313
277
|
def __init__(__self__,
|
314
278
|
resource_name: str,
|
315
279
|
opts: Optional[pulumi.ResourceOptions] = None,
|
316
|
-
automated_backup_policy: Optional[pulumi.Input[pulumi.InputType['TableAutomatedBackupPolicyArgs']]] = None,
|
317
280
|
change_stream_retention: Optional[pulumi.Input[str]] = None,
|
318
281
|
column_families: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TableColumnFamilyArgs']]]]] = None,
|
319
282
|
deletion_protection: Optional[pulumi.Input[str]] = None,
|
@@ -388,8 +351,6 @@ class Table(pulumi.CustomResource):
|
|
388
351
|
|
389
352
|
:param str resource_name: The name of the resource.
|
390
353
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
391
|
-
:param pulumi.Input[pulumi.InputType['TableAutomatedBackupPolicyArgs']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both
|
392
|
-
Retention Period and Frequency to 0.
|
393
354
|
:param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
394
355
|
|
395
356
|
-----
|
@@ -488,7 +449,6 @@ class Table(pulumi.CustomResource):
|
|
488
449
|
def _internal_init(__self__,
|
489
450
|
resource_name: str,
|
490
451
|
opts: Optional[pulumi.ResourceOptions] = None,
|
491
|
-
automated_backup_policy: Optional[pulumi.Input[pulumi.InputType['TableAutomatedBackupPolicyArgs']]] = None,
|
492
452
|
change_stream_retention: Optional[pulumi.Input[str]] = None,
|
493
453
|
column_families: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TableColumnFamilyArgs']]]]] = None,
|
494
454
|
deletion_protection: Optional[pulumi.Input[str]] = None,
|
@@ -505,7 +465,6 @@ class Table(pulumi.CustomResource):
|
|
505
465
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
506
466
|
__props__ = TableArgs.__new__(TableArgs)
|
507
467
|
|
508
|
-
__props__.__dict__["automated_backup_policy"] = automated_backup_policy
|
509
468
|
__props__.__dict__["change_stream_retention"] = change_stream_retention
|
510
469
|
__props__.__dict__["column_families"] = column_families
|
511
470
|
__props__.__dict__["deletion_protection"] = deletion_protection
|
@@ -525,7 +484,6 @@ class Table(pulumi.CustomResource):
|
|
525
484
|
def get(resource_name: str,
|
526
485
|
id: pulumi.Input[str],
|
527
486
|
opts: Optional[pulumi.ResourceOptions] = None,
|
528
|
-
automated_backup_policy: Optional[pulumi.Input[pulumi.InputType['TableAutomatedBackupPolicyArgs']]] = None,
|
529
487
|
change_stream_retention: Optional[pulumi.Input[str]] = None,
|
530
488
|
column_families: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['TableColumnFamilyArgs']]]]] = None,
|
531
489
|
deletion_protection: Optional[pulumi.Input[str]] = None,
|
@@ -540,8 +498,6 @@ class Table(pulumi.CustomResource):
|
|
540
498
|
:param str resource_name: The unique name of the resulting resource.
|
541
499
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
542
500
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
543
|
-
:param pulumi.Input[pulumi.InputType['TableAutomatedBackupPolicyArgs']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both
|
544
|
-
Retention Period and Frequency to 0.
|
545
501
|
:param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
546
502
|
|
547
503
|
-----
|
@@ -559,7 +515,6 @@ class Table(pulumi.CustomResource):
|
|
559
515
|
|
560
516
|
__props__ = _TableState.__new__(_TableState)
|
561
517
|
|
562
|
-
__props__.__dict__["automated_backup_policy"] = automated_backup_policy
|
563
518
|
__props__.__dict__["change_stream_retention"] = change_stream_retention
|
564
519
|
__props__.__dict__["column_families"] = column_families
|
565
520
|
__props__.__dict__["deletion_protection"] = deletion_protection
|
@@ -569,15 +524,6 @@ class Table(pulumi.CustomResource):
|
|
569
524
|
__props__.__dict__["split_keys"] = split_keys
|
570
525
|
return Table(resource_name, opts=opts, __props__=__props__)
|
571
526
|
|
572
|
-
@property
|
573
|
-
@pulumi.getter(name="automatedBackupPolicy")
|
574
|
-
def automated_backup_policy(self) -> pulumi.Output[Optional['outputs.TableAutomatedBackupPolicy']]:
|
575
|
-
"""
|
576
|
-
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both
|
577
|
-
Retention Period and Frequency to 0.
|
578
|
-
"""
|
579
|
-
return pulumi.get(self, "automated_backup_policy")
|
580
|
-
|
581
527
|
@property
|
582
528
|
@pulumi.getter(name="changeStreamRetention")
|
583
529
|
def change_stream_retention(self) -> pulumi.Output[str]:
|