pulumi-gcp 7.15.0__py3-none-any.whl → 7.15.0a1710918905__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 -94
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/cloudrunv2/_inputs.py +2 -26
- pulumi_gcp/cloudrunv2/get_service.py +1 -11
- pulumi_gcp/cloudrunv2/outputs.py +2 -58
- pulumi_gcp/cloudrunv2/service.py +0 -54
- pulumi_gcp/compute/_inputs.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -4
- pulumi_gcp/compute/region_network_endpoint_group.py +0 -30
- pulumi_gcp/config/__init__.pyi +0 -4
- pulumi_gcp/config/vars.py +0 -8
- pulumi_gcp/firebase/__init__.py +0 -1
- pulumi_gcp/firestore/_inputs.py +0 -69
- pulumi_gcp/firestore/database.py +0 -206
- pulumi_gcp/firestore/outputs.py +0 -80
- pulumi_gcp/gkeonprem/_inputs.py +3 -1
- pulumi_gcp/gkeonprem/outputs.py +3 -1
- pulumi_gcp/gkeonprem/v_mware_cluster.py +0 -2
- pulumi_gcp/iap/__init__.py +0 -5
- pulumi_gcp/iap/_inputs.py +0 -100
- pulumi_gcp/iap/outputs.py +0 -76
- pulumi_gcp/kms/__init__.py +0 -1
- pulumi_gcp/kms/_inputs.py +0 -246
- pulumi_gcp/kms/outputs.py +0 -242
- pulumi_gcp/networksecurity/__init__.py +0 -1
- pulumi_gcp/notebooks/instance.py +0 -8
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +0 -40
- pulumi_gcp/pubsub/subscription.py +4 -4
- pulumi_gcp/securityposture/posture.py +2 -2
- pulumi_gcp/securityposture/posture_deployment.py +2 -2
- pulumi_gcp/storage/_inputs.py +15 -32
- pulumi_gcp/storage/outputs.py +14 -29
- pulumi_gcp/workstations/_inputs.py +4 -134
- pulumi_gcp/workstations/outputs.py +4 -152
- pulumi_gcp/workstations/workstation_config.py +0 -54
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/RECORD +42 -62
- pulumi_gcp/apphub/__init__.py +0 -15
- pulumi_gcp/apphub/_inputs.py +0 -1016
- pulumi_gcp/apphub/application.py +0 -775
- pulumi_gcp/apphub/get_discovered_service.py +0 -180
- pulumi_gcp/apphub/get_discovered_workload.py +0 -180
- pulumi_gcp/apphub/outputs.py +0 -1206
- pulumi_gcp/apphub/service.py +0 -1121
- pulumi_gcp/apphub/service_project_attachment.py +0 -516
- pulumi_gcp/apphub/workload.py +0 -1197
- pulumi_gcp/cloudquota/__init__.py +0 -9
- pulumi_gcp/cloudquota/get_s_quota_info.py +0 -322
- pulumi_gcp/cloudquota/outputs.py +0 -105
- pulumi_gcp/firebase/app_check_device_check_config.py +0 -572
- pulumi_gcp/iap/get_tunnel_dest_group_iam_policy.py +0 -172
- pulumi_gcp/iap/tunnel_dest_group.py +0 -524
- pulumi_gcp/iap/tunnel_dest_group_iam_binding.py +0 -858
- pulumi_gcp/iap/tunnel_dest_group_iam_member.py +0 -858
- pulumi_gcp/iap/tunnel_dest_group_iam_policy.py +0 -760
- pulumi_gcp/kms/ekm_connection.py +0 -610
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +0 -753
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1710918905.dist-info}/top_level.txt +0 -0
pulumi_gcp/firestore/database.py
CHANGED
@@ -8,8 +8,6 @@ import pulumi
|
|
8
8
|
import pulumi.runtime
|
9
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from .. import _utilities
|
11
|
-
from . import outputs
|
12
|
-
from ._inputs import *
|
13
11
|
|
14
12
|
__all__ = ['DatabaseArgs', 'Database']
|
15
13
|
|
@@ -19,7 +17,6 @@ class DatabaseArgs:
|
|
19
17
|
location_id: pulumi.Input[str],
|
20
18
|
type: pulumi.Input[str],
|
21
19
|
app_engine_integration_mode: Optional[pulumi.Input[str]] = None,
|
22
|
-
cmek_config: Optional[pulumi.Input['DatabaseCmekConfigArgs']] = None,
|
23
20
|
concurrency_mode: Optional[pulumi.Input[str]] = None,
|
24
21
|
delete_protection_state: Optional[pulumi.Input[str]] = None,
|
25
22
|
deletion_policy: Optional[pulumi.Input[str]] = None,
|
@@ -39,10 +36,6 @@ class DatabaseArgs:
|
|
39
36
|
- - -
|
40
37
|
:param pulumi.Input[str] app_engine_integration_mode: The App Engine integration mode to use for this database.
|
41
38
|
Possible values are: `ENABLED`, `DISABLED`.
|
42
|
-
:param pulumi.Input['DatabaseCmekConfigArgs'] cmek_config: The CMEK (Customer Managed Encryption Key) configuration for a Firestore
|
43
|
-
database. If not present, the database is secured by the default Google
|
44
|
-
encryption key.
|
45
|
-
Structure is documented below.
|
46
39
|
:param pulumi.Input[str] concurrency_mode: The concurrency control mode to use for this database.
|
47
40
|
Possible values are: `OPTIMISTIC`, `PESSIMISTIC`, `OPTIMISTIC_WITH_ENTITY_GROUPS`.
|
48
41
|
:param pulumi.Input[str] delete_protection_state: State of delete protection for the database. When delete protection is enabled, this database cannot be deleted. The
|
@@ -73,8 +66,6 @@ class DatabaseArgs:
|
|
73
66
|
pulumi.set(__self__, "type", type)
|
74
67
|
if app_engine_integration_mode is not None:
|
75
68
|
pulumi.set(__self__, "app_engine_integration_mode", app_engine_integration_mode)
|
76
|
-
if cmek_config is not None:
|
77
|
-
pulumi.set(__self__, "cmek_config", cmek_config)
|
78
69
|
if concurrency_mode is not None:
|
79
70
|
pulumi.set(__self__, "concurrency_mode", concurrency_mode)
|
80
71
|
if delete_protection_state is not None:
|
@@ -132,21 +123,6 @@ class DatabaseArgs:
|
|
132
123
|
def app_engine_integration_mode(self, value: Optional[pulumi.Input[str]]):
|
133
124
|
pulumi.set(self, "app_engine_integration_mode", value)
|
134
125
|
|
135
|
-
@property
|
136
|
-
@pulumi.getter(name="cmekConfig")
|
137
|
-
def cmek_config(self) -> Optional[pulumi.Input['DatabaseCmekConfigArgs']]:
|
138
|
-
"""
|
139
|
-
The CMEK (Customer Managed Encryption Key) configuration for a Firestore
|
140
|
-
database. If not present, the database is secured by the default Google
|
141
|
-
encryption key.
|
142
|
-
Structure is documented below.
|
143
|
-
"""
|
144
|
-
return pulumi.get(self, "cmek_config")
|
145
|
-
|
146
|
-
@cmek_config.setter
|
147
|
-
def cmek_config(self, value: Optional[pulumi.Input['DatabaseCmekConfigArgs']]):
|
148
|
-
pulumi.set(self, "cmek_config", value)
|
149
|
-
|
150
126
|
@property
|
151
127
|
@pulumi.getter(name="concurrencyMode")
|
152
128
|
def concurrency_mode(self) -> Optional[pulumi.Input[str]]:
|
@@ -243,7 +219,6 @@ class DatabaseArgs:
|
|
243
219
|
class _DatabaseState:
|
244
220
|
def __init__(__self__, *,
|
245
221
|
app_engine_integration_mode: Optional[pulumi.Input[str]] = None,
|
246
|
-
cmek_config: Optional[pulumi.Input['DatabaseCmekConfigArgs']] = None,
|
247
222
|
concurrency_mode: Optional[pulumi.Input[str]] = None,
|
248
223
|
create_time: Optional[pulumi.Input[str]] = None,
|
249
224
|
delete_protection_state: Optional[pulumi.Input[str]] = None,
|
@@ -263,10 +238,6 @@ class _DatabaseState:
|
|
263
238
|
Input properties used for looking up and filtering Database resources.
|
264
239
|
:param pulumi.Input[str] app_engine_integration_mode: The App Engine integration mode to use for this database.
|
265
240
|
Possible values are: `ENABLED`, `DISABLED`.
|
266
|
-
:param pulumi.Input['DatabaseCmekConfigArgs'] cmek_config: The CMEK (Customer Managed Encryption Key) configuration for a Firestore
|
267
|
-
database. If not present, the database is secured by the default Google
|
268
|
-
encryption key.
|
269
|
-
Structure is documented below.
|
270
241
|
:param pulumi.Input[str] concurrency_mode: The concurrency control mode to use for this database.
|
271
242
|
Possible values are: `OPTIMISTIC`, `PESSIMISTIC`, `OPTIMISTIC_WITH_ENTITY_GROUPS`.
|
272
243
|
:param pulumi.Input[str] create_time: Output only. The timestamp at which this database was created.
|
@@ -321,8 +292,6 @@ class _DatabaseState:
|
|
321
292
|
"""
|
322
293
|
if app_engine_integration_mode is not None:
|
323
294
|
pulumi.set(__self__, "app_engine_integration_mode", app_engine_integration_mode)
|
324
|
-
if cmek_config is not None:
|
325
|
-
pulumi.set(__self__, "cmek_config", cmek_config)
|
326
295
|
if concurrency_mode is not None:
|
327
296
|
pulumi.set(__self__, "concurrency_mode", concurrency_mode)
|
328
297
|
if create_time is not None:
|
@@ -367,21 +336,6 @@ class _DatabaseState:
|
|
367
336
|
def app_engine_integration_mode(self, value: Optional[pulumi.Input[str]]):
|
368
337
|
pulumi.set(self, "app_engine_integration_mode", value)
|
369
338
|
|
370
|
-
@property
|
371
|
-
@pulumi.getter(name="cmekConfig")
|
372
|
-
def cmek_config(self) -> Optional[pulumi.Input['DatabaseCmekConfigArgs']]:
|
373
|
-
"""
|
374
|
-
The CMEK (Customer Managed Encryption Key) configuration for a Firestore
|
375
|
-
database. If not present, the database is secured by the default Google
|
376
|
-
encryption key.
|
377
|
-
Structure is documented below.
|
378
|
-
"""
|
379
|
-
return pulumi.get(self, "cmek_config")
|
380
|
-
|
381
|
-
@cmek_config.setter
|
382
|
-
def cmek_config(self, value: Optional[pulumi.Input['DatabaseCmekConfigArgs']]):
|
383
|
-
pulumi.set(self, "cmek_config", value)
|
384
|
-
|
385
339
|
@property
|
386
340
|
@pulumi.getter(name="concurrencyMode")
|
387
341
|
def concurrency_mode(self) -> Optional[pulumi.Input[str]]:
|
@@ -605,7 +559,6 @@ class Database(pulumi.CustomResource):
|
|
605
559
|
resource_name: str,
|
606
560
|
opts: Optional[pulumi.ResourceOptions] = None,
|
607
561
|
app_engine_integration_mode: Optional[pulumi.Input[str]] = None,
|
608
|
-
cmek_config: Optional[pulumi.Input[pulumi.InputType['DatabaseCmekConfigArgs']]] = None,
|
609
562
|
concurrency_mode: Optional[pulumi.Input[str]] = None,
|
610
563
|
delete_protection_state: Optional[pulumi.Input[str]] = None,
|
611
564
|
deletion_policy: Optional[pulumi.Input[str]] = None,
|
@@ -665,40 +618,6 @@ class Database(pulumi.CustomResource):
|
|
665
618
|
deletion_policy="DELETE")
|
666
619
|
```
|
667
620
|
<!--End PulumiCodeChooser -->
|
668
|
-
### Firestore Cmek Database
|
669
|
-
|
670
|
-
<!--Start PulumiCodeChooser -->
|
671
|
-
```python
|
672
|
-
import pulumi
|
673
|
-
import pulumi_gcp as gcp
|
674
|
-
|
675
|
-
project = gcp.organizations.get_project()
|
676
|
-
key_ring = gcp.kms.KeyRing("key_ring",
|
677
|
-
name="kms-key-ring",
|
678
|
-
location="us")
|
679
|
-
crypto_key = gcp.kms.CryptoKey("crypto_key",
|
680
|
-
name="kms-key",
|
681
|
-
key_ring=key_ring.id,
|
682
|
-
purpose="ENCRYPT_DECRYPT")
|
683
|
-
database = gcp.firestore.Database("database",
|
684
|
-
project="my-project-name",
|
685
|
-
name="cmek-database-id",
|
686
|
-
location_id="nam5",
|
687
|
-
type="FIRESTORE_NATIVE",
|
688
|
-
concurrency_mode="OPTIMISTIC",
|
689
|
-
app_engine_integration_mode="DISABLED",
|
690
|
-
point_in_time_recovery_enablement="POINT_IN_TIME_RECOVERY_ENABLED",
|
691
|
-
delete_protection_state="DELETE_PROTECTION_ENABLED",
|
692
|
-
deletion_policy="DELETE",
|
693
|
-
cmek_config=gcp.firestore.DatabaseCmekConfigArgs(
|
694
|
-
kms_key_name=crypto_key.id,
|
695
|
-
))
|
696
|
-
firestore_cmek_keyuser = gcp.kms.CryptoKeyIAMBinding("firestore_cmek_keyuser",
|
697
|
-
crypto_key_id=crypto_key.id,
|
698
|
-
role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
|
699
|
-
members=[f"serviceAccount:service-{project.number}@gcp-sa-firestore.iam.gserviceaccount.com"])
|
700
|
-
```
|
701
|
-
<!--End PulumiCodeChooser -->
|
702
621
|
### Firestore Default Database In Datastore Mode
|
703
622
|
|
704
623
|
<!--Start PulumiCodeChooser -->
|
@@ -732,40 +651,6 @@ class Database(pulumi.CustomResource):
|
|
732
651
|
deletion_policy="DELETE")
|
733
652
|
```
|
734
653
|
<!--End PulumiCodeChooser -->
|
735
|
-
### Firestore Cmek Database In Datastore Mode
|
736
|
-
|
737
|
-
<!--Start PulumiCodeChooser -->
|
738
|
-
```python
|
739
|
-
import pulumi
|
740
|
-
import pulumi_gcp as gcp
|
741
|
-
|
742
|
-
project = gcp.organizations.get_project()
|
743
|
-
key_ring = gcp.kms.KeyRing("key_ring",
|
744
|
-
name="kms-key-ring",
|
745
|
-
location="us")
|
746
|
-
crypto_key = gcp.kms.CryptoKey("crypto_key",
|
747
|
-
name="kms-key",
|
748
|
-
key_ring=key_ring.id,
|
749
|
-
purpose="ENCRYPT_DECRYPT")
|
750
|
-
database = gcp.firestore.Database("database",
|
751
|
-
project="my-project-name",
|
752
|
-
name="cmek-database-id",
|
753
|
-
location_id="nam5",
|
754
|
-
type="DATASTORE_MODE",
|
755
|
-
concurrency_mode="OPTIMISTIC",
|
756
|
-
app_engine_integration_mode="DISABLED",
|
757
|
-
point_in_time_recovery_enablement="POINT_IN_TIME_RECOVERY_ENABLED",
|
758
|
-
delete_protection_state="DELETE_PROTECTION_ENABLED",
|
759
|
-
deletion_policy="DELETE",
|
760
|
-
cmek_config=gcp.firestore.DatabaseCmekConfigArgs(
|
761
|
-
kms_key_name=crypto_key.id,
|
762
|
-
))
|
763
|
-
firestore_cmek_keyuser = gcp.kms.CryptoKeyIAMBinding("firestore_cmek_keyuser",
|
764
|
-
crypto_key_id=crypto_key.id,
|
765
|
-
role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
|
766
|
-
members=[f"serviceAccount:service-{project.number}@gcp-sa-firestore.iam.gserviceaccount.com"])
|
767
|
-
```
|
768
|
-
<!--End PulumiCodeChooser -->
|
769
654
|
|
770
655
|
## Import
|
771
656
|
|
@@ -795,10 +680,6 @@ class Database(pulumi.CustomResource):
|
|
795
680
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
796
681
|
:param pulumi.Input[str] app_engine_integration_mode: The App Engine integration mode to use for this database.
|
797
682
|
Possible values are: `ENABLED`, `DISABLED`.
|
798
|
-
:param pulumi.Input[pulumi.InputType['DatabaseCmekConfigArgs']] cmek_config: The CMEK (Customer Managed Encryption Key) configuration for a Firestore
|
799
|
-
database. If not present, the database is secured by the default Google
|
800
|
-
encryption key.
|
801
|
-
Structure is documented below.
|
802
683
|
:param pulumi.Input[str] concurrency_mode: The concurrency control mode to use for this database.
|
803
684
|
Possible values are: `OPTIMISTIC`, `PESSIMISTIC`, `OPTIMISTIC_WITH_ENTITY_GROUPS`.
|
804
685
|
:param pulumi.Input[str] delete_protection_state: State of delete protection for the database. When delete protection is enabled, this database cannot be deleted. The
|
@@ -890,40 +771,6 @@ class Database(pulumi.CustomResource):
|
|
890
771
|
deletion_policy="DELETE")
|
891
772
|
```
|
892
773
|
<!--End PulumiCodeChooser -->
|
893
|
-
### Firestore Cmek Database
|
894
|
-
|
895
|
-
<!--Start PulumiCodeChooser -->
|
896
|
-
```python
|
897
|
-
import pulumi
|
898
|
-
import pulumi_gcp as gcp
|
899
|
-
|
900
|
-
project = gcp.organizations.get_project()
|
901
|
-
key_ring = gcp.kms.KeyRing("key_ring",
|
902
|
-
name="kms-key-ring",
|
903
|
-
location="us")
|
904
|
-
crypto_key = gcp.kms.CryptoKey("crypto_key",
|
905
|
-
name="kms-key",
|
906
|
-
key_ring=key_ring.id,
|
907
|
-
purpose="ENCRYPT_DECRYPT")
|
908
|
-
database = gcp.firestore.Database("database",
|
909
|
-
project="my-project-name",
|
910
|
-
name="cmek-database-id",
|
911
|
-
location_id="nam5",
|
912
|
-
type="FIRESTORE_NATIVE",
|
913
|
-
concurrency_mode="OPTIMISTIC",
|
914
|
-
app_engine_integration_mode="DISABLED",
|
915
|
-
point_in_time_recovery_enablement="POINT_IN_TIME_RECOVERY_ENABLED",
|
916
|
-
delete_protection_state="DELETE_PROTECTION_ENABLED",
|
917
|
-
deletion_policy="DELETE",
|
918
|
-
cmek_config=gcp.firestore.DatabaseCmekConfigArgs(
|
919
|
-
kms_key_name=crypto_key.id,
|
920
|
-
))
|
921
|
-
firestore_cmek_keyuser = gcp.kms.CryptoKeyIAMBinding("firestore_cmek_keyuser",
|
922
|
-
crypto_key_id=crypto_key.id,
|
923
|
-
role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
|
924
|
-
members=[f"serviceAccount:service-{project.number}@gcp-sa-firestore.iam.gserviceaccount.com"])
|
925
|
-
```
|
926
|
-
<!--End PulumiCodeChooser -->
|
927
774
|
### Firestore Default Database In Datastore Mode
|
928
775
|
|
929
776
|
<!--Start PulumiCodeChooser -->
|
@@ -957,40 +804,6 @@ class Database(pulumi.CustomResource):
|
|
957
804
|
deletion_policy="DELETE")
|
958
805
|
```
|
959
806
|
<!--End PulumiCodeChooser -->
|
960
|
-
### Firestore Cmek Database In Datastore Mode
|
961
|
-
|
962
|
-
<!--Start PulumiCodeChooser -->
|
963
|
-
```python
|
964
|
-
import pulumi
|
965
|
-
import pulumi_gcp as gcp
|
966
|
-
|
967
|
-
project = gcp.organizations.get_project()
|
968
|
-
key_ring = gcp.kms.KeyRing("key_ring",
|
969
|
-
name="kms-key-ring",
|
970
|
-
location="us")
|
971
|
-
crypto_key = gcp.kms.CryptoKey("crypto_key",
|
972
|
-
name="kms-key",
|
973
|
-
key_ring=key_ring.id,
|
974
|
-
purpose="ENCRYPT_DECRYPT")
|
975
|
-
database = gcp.firestore.Database("database",
|
976
|
-
project="my-project-name",
|
977
|
-
name="cmek-database-id",
|
978
|
-
location_id="nam5",
|
979
|
-
type="DATASTORE_MODE",
|
980
|
-
concurrency_mode="OPTIMISTIC",
|
981
|
-
app_engine_integration_mode="DISABLED",
|
982
|
-
point_in_time_recovery_enablement="POINT_IN_TIME_RECOVERY_ENABLED",
|
983
|
-
delete_protection_state="DELETE_PROTECTION_ENABLED",
|
984
|
-
deletion_policy="DELETE",
|
985
|
-
cmek_config=gcp.firestore.DatabaseCmekConfigArgs(
|
986
|
-
kms_key_name=crypto_key.id,
|
987
|
-
))
|
988
|
-
firestore_cmek_keyuser = gcp.kms.CryptoKeyIAMBinding("firestore_cmek_keyuser",
|
989
|
-
crypto_key_id=crypto_key.id,
|
990
|
-
role="roles/cloudkms.cryptoKeyEncrypterDecrypter",
|
991
|
-
members=[f"serviceAccount:service-{project.number}@gcp-sa-firestore.iam.gserviceaccount.com"])
|
992
|
-
```
|
993
|
-
<!--End PulumiCodeChooser -->
|
994
807
|
|
995
808
|
## Import
|
996
809
|
|
@@ -1032,7 +845,6 @@ class Database(pulumi.CustomResource):
|
|
1032
845
|
resource_name: str,
|
1033
846
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1034
847
|
app_engine_integration_mode: Optional[pulumi.Input[str]] = None,
|
1035
|
-
cmek_config: Optional[pulumi.Input[pulumi.InputType['DatabaseCmekConfigArgs']]] = None,
|
1036
848
|
concurrency_mode: Optional[pulumi.Input[str]] = None,
|
1037
849
|
delete_protection_state: Optional[pulumi.Input[str]] = None,
|
1038
850
|
deletion_policy: Optional[pulumi.Input[str]] = None,
|
@@ -1051,7 +863,6 @@ class Database(pulumi.CustomResource):
|
|
1051
863
|
__props__ = DatabaseArgs.__new__(DatabaseArgs)
|
1052
864
|
|
1053
865
|
__props__.__dict__["app_engine_integration_mode"] = app_engine_integration_mode
|
1054
|
-
__props__.__dict__["cmek_config"] = cmek_config
|
1055
866
|
__props__.__dict__["concurrency_mode"] = concurrency_mode
|
1056
867
|
__props__.__dict__["delete_protection_state"] = delete_protection_state
|
1057
868
|
__props__.__dict__["deletion_policy"] = deletion_policy
|
@@ -1082,7 +893,6 @@ class Database(pulumi.CustomResource):
|
|
1082
893
|
id: pulumi.Input[str],
|
1083
894
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1084
895
|
app_engine_integration_mode: Optional[pulumi.Input[str]] = None,
|
1085
|
-
cmek_config: Optional[pulumi.Input[pulumi.InputType['DatabaseCmekConfigArgs']]] = None,
|
1086
896
|
concurrency_mode: Optional[pulumi.Input[str]] = None,
|
1087
897
|
create_time: Optional[pulumi.Input[str]] = None,
|
1088
898
|
delete_protection_state: Optional[pulumi.Input[str]] = None,
|
@@ -1107,10 +917,6 @@ class Database(pulumi.CustomResource):
|
|
1107
917
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1108
918
|
:param pulumi.Input[str] app_engine_integration_mode: The App Engine integration mode to use for this database.
|
1109
919
|
Possible values are: `ENABLED`, `DISABLED`.
|
1110
|
-
:param pulumi.Input[pulumi.InputType['DatabaseCmekConfigArgs']] cmek_config: The CMEK (Customer Managed Encryption Key) configuration for a Firestore
|
1111
|
-
database. If not present, the database is secured by the default Google
|
1112
|
-
encryption key.
|
1113
|
-
Structure is documented below.
|
1114
920
|
:param pulumi.Input[str] concurrency_mode: The concurrency control mode to use for this database.
|
1115
921
|
Possible values are: `OPTIMISTIC`, `PESSIMISTIC`, `OPTIMISTIC_WITH_ENTITY_GROUPS`.
|
1116
922
|
:param pulumi.Input[str] create_time: Output only. The timestamp at which this database was created.
|
@@ -1168,7 +974,6 @@ class Database(pulumi.CustomResource):
|
|
1168
974
|
__props__ = _DatabaseState.__new__(_DatabaseState)
|
1169
975
|
|
1170
976
|
__props__.__dict__["app_engine_integration_mode"] = app_engine_integration_mode
|
1171
|
-
__props__.__dict__["cmek_config"] = cmek_config
|
1172
977
|
__props__.__dict__["concurrency_mode"] = concurrency_mode
|
1173
978
|
__props__.__dict__["create_time"] = create_time
|
1174
979
|
__props__.__dict__["delete_protection_state"] = delete_protection_state
|
@@ -1195,17 +1000,6 @@ class Database(pulumi.CustomResource):
|
|
1195
1000
|
"""
|
1196
1001
|
return pulumi.get(self, "app_engine_integration_mode")
|
1197
1002
|
|
1198
|
-
@property
|
1199
|
-
@pulumi.getter(name="cmekConfig")
|
1200
|
-
def cmek_config(self) -> pulumi.Output[Optional['outputs.DatabaseCmekConfig']]:
|
1201
|
-
"""
|
1202
|
-
The CMEK (Customer Managed Encryption Key) configuration for a Firestore
|
1203
|
-
database. If not present, the database is secured by the default Google
|
1204
|
-
encryption key.
|
1205
|
-
Structure is documented below.
|
1206
|
-
"""
|
1207
|
-
return pulumi.get(self, "cmek_config")
|
1208
|
-
|
1209
1003
|
@property
|
1210
1004
|
@pulumi.getter(name="concurrencyMode")
|
1211
1005
|
def concurrency_mode(self) -> pulumi.Output[str]:
|
pulumi_gcp/firestore/outputs.py
CHANGED
@@ -13,7 +13,6 @@ from . import outputs
|
|
13
13
|
__all__ = [
|
14
14
|
'BackupScheduleDailyRecurrence',
|
15
15
|
'BackupScheduleWeeklyRecurrence',
|
16
|
-
'DatabaseCmekConfig',
|
17
16
|
'FieldIndexConfig',
|
18
17
|
'FieldIndexConfigIndex',
|
19
18
|
'FieldTtlConfig',
|
@@ -47,85 +46,6 @@ class BackupScheduleWeeklyRecurrence(dict):
|
|
47
46
|
return pulumi.get(self, "day")
|
48
47
|
|
49
48
|
|
50
|
-
@pulumi.output_type
|
51
|
-
class DatabaseCmekConfig(dict):
|
52
|
-
@staticmethod
|
53
|
-
def __key_warning(key: str):
|
54
|
-
suggest = None
|
55
|
-
if key == "kmsKeyName":
|
56
|
-
suggest = "kms_key_name"
|
57
|
-
elif key == "activeKeyVersions":
|
58
|
-
suggest = "active_key_versions"
|
59
|
-
|
60
|
-
if suggest:
|
61
|
-
pulumi.log.warn(f"Key '{key}' not found in DatabaseCmekConfig. Access the value via the '{suggest}' property getter instead.")
|
62
|
-
|
63
|
-
def __getitem__(self, key: str) -> Any:
|
64
|
-
DatabaseCmekConfig.__key_warning(key)
|
65
|
-
return super().__getitem__(key)
|
66
|
-
|
67
|
-
def get(self, key: str, default = None) -> Any:
|
68
|
-
DatabaseCmekConfig.__key_warning(key)
|
69
|
-
return super().get(key, default)
|
70
|
-
|
71
|
-
def __init__(__self__, *,
|
72
|
-
kms_key_name: str,
|
73
|
-
active_key_versions: Optional[Sequence[str]] = None):
|
74
|
-
"""
|
75
|
-
:param str kms_key_name: The resource ID of a Cloud KMS key. If set, the database created will
|
76
|
-
be a Customer-managed Encryption Key (CMEK) database encrypted with
|
77
|
-
this key. This feature is allowlist only in initial launch.
|
78
|
-
Only keys in the same location as this database are allowed to be used
|
79
|
-
for encryption. For Firestore's nam5 multi-region, this corresponds to Cloud KMS
|
80
|
-
multi-region us. For Firestore's eur3 multi-region, this corresponds to
|
81
|
-
Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/locations.
|
82
|
-
This value should be the KMS key resource ID in the format of
|
83
|
-
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
84
|
-
How to retrive this resource ID is listed at
|
85
|
-
https://cloud.google.com/kms/docs/getting-resource-ids#getting_the_id_for_a_key_and_version.
|
86
|
-
:param Sequence[str] active_key_versions: (Output)
|
87
|
-
Currently in-use KMS key versions (https://cloud.google.com/kms/docs/resource-hierarchy#key_versions).
|
88
|
-
During key rotation (https://cloud.google.com/kms/docs/key-rotation), there can be
|
89
|
-
multiple in-use key versions.
|
90
|
-
The expected format is
|
91
|
-
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{key_version}`.
|
92
|
-
"""
|
93
|
-
pulumi.set(__self__, "kms_key_name", kms_key_name)
|
94
|
-
if active_key_versions is not None:
|
95
|
-
pulumi.set(__self__, "active_key_versions", active_key_versions)
|
96
|
-
|
97
|
-
@property
|
98
|
-
@pulumi.getter(name="kmsKeyName")
|
99
|
-
def kms_key_name(self) -> str:
|
100
|
-
"""
|
101
|
-
The resource ID of a Cloud KMS key. If set, the database created will
|
102
|
-
be a Customer-managed Encryption Key (CMEK) database encrypted with
|
103
|
-
this key. This feature is allowlist only in initial launch.
|
104
|
-
Only keys in the same location as this database are allowed to be used
|
105
|
-
for encryption. For Firestore's nam5 multi-region, this corresponds to Cloud KMS
|
106
|
-
multi-region us. For Firestore's eur3 multi-region, this corresponds to
|
107
|
-
Cloud KMS multi-region europe. See https://cloud.google.com/kms/docs/locations.
|
108
|
-
This value should be the KMS key resource ID in the format of
|
109
|
-
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`.
|
110
|
-
How to retrive this resource ID is listed at
|
111
|
-
https://cloud.google.com/kms/docs/getting-resource-ids#getting_the_id_for_a_key_and_version.
|
112
|
-
"""
|
113
|
-
return pulumi.get(self, "kms_key_name")
|
114
|
-
|
115
|
-
@property
|
116
|
-
@pulumi.getter(name="activeKeyVersions")
|
117
|
-
def active_key_versions(self) -> Optional[Sequence[str]]:
|
118
|
-
"""
|
119
|
-
(Output)
|
120
|
-
Currently in-use KMS key versions (https://cloud.google.com/kms/docs/resource-hierarchy#key_versions).
|
121
|
-
During key rotation (https://cloud.google.com/kms/docs/key-rotation), there can be
|
122
|
-
multiple in-use key versions.
|
123
|
-
The expected format is
|
124
|
-
`projects/{project_id}/locations/{kms_location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{key_version}`.
|
125
|
-
"""
|
126
|
-
return pulumi.get(self, "active_key_versions")
|
127
|
-
|
128
|
-
|
129
49
|
@pulumi.output_type
|
130
50
|
class FieldIndexConfig(dict):
|
131
51
|
def __init__(__self__, *,
|
pulumi_gcp/gkeonprem/_inputs.py
CHANGED
@@ -4904,7 +4904,8 @@ class VMwareClusterNetworkConfigArgs:
|
|
4904
4904
|
Structure is documented below.
|
4905
4905
|
:param pulumi.Input['VMwareClusterNetworkConfigStaticIpConfigArgs'] static_ip_config: Configuration settings for a static IP configuration.
|
4906
4906
|
Structure is documented below.
|
4907
|
-
:param pulumi.Input[str] vcenter_network:
|
4907
|
+
:param pulumi.Input[str] vcenter_network: (Output)
|
4908
|
+
vcenter_network specifies vCenter network name. Inherited from the admin cluster.
|
4908
4909
|
"""
|
4909
4910
|
pulumi.set(__self__, "pod_address_cidr_blocks", pod_address_cidr_blocks)
|
4910
4911
|
pulumi.set(__self__, "service_address_cidr_blocks", service_address_cidr_blocks)
|
@@ -5002,6 +5003,7 @@ class VMwareClusterNetworkConfigArgs:
|
|
5002
5003
|
@pulumi.getter(name="vcenterNetwork")
|
5003
5004
|
def vcenter_network(self) -> Optional[pulumi.Input[str]]:
|
5004
5005
|
"""
|
5006
|
+
(Output)
|
5005
5007
|
vcenter_network specifies vCenter network name. Inherited from the admin cluster.
|
5006
5008
|
"""
|
5007
5009
|
return pulumi.get(self, "vcenter_network")
|
pulumi_gcp/gkeonprem/outputs.py
CHANGED
@@ -5361,7 +5361,8 @@ class VMwareClusterNetworkConfig(dict):
|
|
5361
5361
|
Structure is documented below.
|
5362
5362
|
:param 'VMwareClusterNetworkConfigStaticIpConfigArgs' static_ip_config: Configuration settings for a static IP configuration.
|
5363
5363
|
Structure is documented below.
|
5364
|
-
:param str vcenter_network:
|
5364
|
+
:param str vcenter_network: (Output)
|
5365
|
+
vcenter_network specifies vCenter network name. Inherited from the admin cluster.
|
5365
5366
|
"""
|
5366
5367
|
pulumi.set(__self__, "pod_address_cidr_blocks", pod_address_cidr_blocks)
|
5367
5368
|
pulumi.set(__self__, "service_address_cidr_blocks", service_address_cidr_blocks)
|
@@ -5435,6 +5436,7 @@ class VMwareClusterNetworkConfig(dict):
|
|
5435
5436
|
@pulumi.getter(name="vcenterNetwork")
|
5436
5437
|
def vcenter_network(self) -> Optional[str]:
|
5437
5438
|
"""
|
5439
|
+
(Output)
|
5438
5440
|
vcenter_network specifies vCenter network name. Inherited from the admin cluster.
|
5439
5441
|
"""
|
5440
5442
|
return pulumi.get(self, "vcenter_network")
|
@@ -1093,7 +1093,6 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1093
1093
|
gateway="test-gateway",
|
1094
1094
|
),
|
1095
1095
|
),
|
1096
|
-
vcenter_network="test-vcenter-network",
|
1097
1096
|
),
|
1098
1097
|
control_plane_node=gcp.gkeonprem.VMwareClusterControlPlaneNodeArgs(
|
1099
1098
|
cpus=4,
|
@@ -1400,7 +1399,6 @@ class VMwareCluster(pulumi.CustomResource):
|
|
1400
1399
|
gateway="test-gateway",
|
1401
1400
|
),
|
1402
1401
|
),
|
1403
|
-
vcenter_network="test-vcenter-network",
|
1404
1402
|
),
|
1405
1403
|
control_plane_node=gcp.gkeonprem.VMwareClusterControlPlaneNodeArgs(
|
1406
1404
|
cpus=4,
|
pulumi_gcp/iap/__init__.py
CHANGED
@@ -16,7 +16,6 @@ from .client import *
|
|
16
16
|
from .get_app_engine_service_iam_policy import *
|
17
17
|
from .get_app_engine_version_iam_policy import *
|
18
18
|
from .get_client import *
|
19
|
-
from .get_tunnel_dest_group_iam_policy import *
|
20
19
|
from .get_tunnel_iam_policy import *
|
21
20
|
from .get_tunnel_instance_iam_policy import *
|
22
21
|
from .get_web_backend_service_iam_policy import *
|
@@ -24,10 +23,6 @@ from .get_web_iam_policy import *
|
|
24
23
|
from .get_web_region_backend_service_iam_policy import *
|
25
24
|
from .get_web_type_app_engine_iam_policy import *
|
26
25
|
from .get_web_type_compute_iam_policy import *
|
27
|
-
from .tunnel_dest_group import *
|
28
|
-
from .tunnel_dest_group_iam_binding import *
|
29
|
-
from .tunnel_dest_group_iam_member import *
|
30
|
-
from .tunnel_dest_group_iam_policy import *
|
31
26
|
from .tunnel_iam_binding import *
|
32
27
|
from .tunnel_iam_member import *
|
33
28
|
from .tunnel_iam_policy import *
|
pulumi_gcp/iap/_inputs.py
CHANGED
@@ -14,8 +14,6 @@ __all__ = [
|
|
14
14
|
'AppEngineServiceIamMemberConditionArgs',
|
15
15
|
'AppEngineVersionIamBindingConditionArgs',
|
16
16
|
'AppEngineVersionIamMemberConditionArgs',
|
17
|
-
'TunnelDestGroupIamBindingConditionArgs',
|
18
|
-
'TunnelDestGroupIamMemberConditionArgs',
|
19
17
|
'TunnelIamBindingConditionArgs',
|
20
18
|
'TunnelIamMemberConditionArgs',
|
21
19
|
'TunnelInstanceIAMBindingConditionArgs',
|
@@ -276,104 +274,6 @@ class AppEngineVersionIamMemberConditionArgs:
|
|
276
274
|
pulumi.set(self, "description", value)
|
277
275
|
|
278
276
|
|
279
|
-
@pulumi.input_type
|
280
|
-
class TunnelDestGroupIamBindingConditionArgs:
|
281
|
-
def __init__(__self__, *,
|
282
|
-
expression: pulumi.Input[str],
|
283
|
-
title: pulumi.Input[str],
|
284
|
-
description: Optional[pulumi.Input[str]] = None):
|
285
|
-
"""
|
286
|
-
:param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
|
287
|
-
:param pulumi.Input[str] title: A title for the expression, i.e. a short string describing its purpose.
|
288
|
-
"""
|
289
|
-
pulumi.set(__self__, "expression", expression)
|
290
|
-
pulumi.set(__self__, "title", title)
|
291
|
-
if description is not None:
|
292
|
-
pulumi.set(__self__, "description", description)
|
293
|
-
|
294
|
-
@property
|
295
|
-
@pulumi.getter
|
296
|
-
def expression(self) -> pulumi.Input[str]:
|
297
|
-
"""
|
298
|
-
Textual representation of an expression in Common Expression Language syntax.
|
299
|
-
"""
|
300
|
-
return pulumi.get(self, "expression")
|
301
|
-
|
302
|
-
@expression.setter
|
303
|
-
def expression(self, value: pulumi.Input[str]):
|
304
|
-
pulumi.set(self, "expression", value)
|
305
|
-
|
306
|
-
@property
|
307
|
-
@pulumi.getter
|
308
|
-
def title(self) -> pulumi.Input[str]:
|
309
|
-
"""
|
310
|
-
A title for the expression, i.e. a short string describing its purpose.
|
311
|
-
"""
|
312
|
-
return pulumi.get(self, "title")
|
313
|
-
|
314
|
-
@title.setter
|
315
|
-
def title(self, value: pulumi.Input[str]):
|
316
|
-
pulumi.set(self, "title", value)
|
317
|
-
|
318
|
-
@property
|
319
|
-
@pulumi.getter
|
320
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
321
|
-
return pulumi.get(self, "description")
|
322
|
-
|
323
|
-
@description.setter
|
324
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
325
|
-
pulumi.set(self, "description", value)
|
326
|
-
|
327
|
-
|
328
|
-
@pulumi.input_type
|
329
|
-
class TunnelDestGroupIamMemberConditionArgs:
|
330
|
-
def __init__(__self__, *,
|
331
|
-
expression: pulumi.Input[str],
|
332
|
-
title: pulumi.Input[str],
|
333
|
-
description: Optional[pulumi.Input[str]] = None):
|
334
|
-
"""
|
335
|
-
:param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
|
336
|
-
:param pulumi.Input[str] title: A title for the expression, i.e. a short string describing its purpose.
|
337
|
-
"""
|
338
|
-
pulumi.set(__self__, "expression", expression)
|
339
|
-
pulumi.set(__self__, "title", title)
|
340
|
-
if description is not None:
|
341
|
-
pulumi.set(__self__, "description", description)
|
342
|
-
|
343
|
-
@property
|
344
|
-
@pulumi.getter
|
345
|
-
def expression(self) -> pulumi.Input[str]:
|
346
|
-
"""
|
347
|
-
Textual representation of an expression in Common Expression Language syntax.
|
348
|
-
"""
|
349
|
-
return pulumi.get(self, "expression")
|
350
|
-
|
351
|
-
@expression.setter
|
352
|
-
def expression(self, value: pulumi.Input[str]):
|
353
|
-
pulumi.set(self, "expression", value)
|
354
|
-
|
355
|
-
@property
|
356
|
-
@pulumi.getter
|
357
|
-
def title(self) -> pulumi.Input[str]:
|
358
|
-
"""
|
359
|
-
A title for the expression, i.e. a short string describing its purpose.
|
360
|
-
"""
|
361
|
-
return pulumi.get(self, "title")
|
362
|
-
|
363
|
-
@title.setter
|
364
|
-
def title(self, value: pulumi.Input[str]):
|
365
|
-
pulumi.set(self, "title", value)
|
366
|
-
|
367
|
-
@property
|
368
|
-
@pulumi.getter
|
369
|
-
def description(self) -> Optional[pulumi.Input[str]]:
|
370
|
-
return pulumi.get(self, "description")
|
371
|
-
|
372
|
-
@description.setter
|
373
|
-
def description(self, value: Optional[pulumi.Input[str]]):
|
374
|
-
pulumi.set(self, "description", value)
|
375
|
-
|
376
|
-
|
377
277
|
@pulumi.input_type
|
378
278
|
class TunnelIamBindingConditionArgs:
|
379
279
|
def __init__(__self__, *,
|