pulumi-gcp 7.15.0__py3-none-any.whl → 7.15.0a1711023156__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.0a1711023156.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1711023156.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.0a1711023156.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.15.0.dist-info → pulumi_gcp-7.15.0a1711023156.dist-info}/top_level.txt +0 -0
pulumi_gcp/provider.py
CHANGED
@@ -25,7 +25,6 @@ class ProviderArgs:
|
|
25
25
|
apigee_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
26
26
|
apikeys_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
27
27
|
app_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
28
|
-
apphub_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
29
28
|
artifact_registry_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
30
29
|
assured_workloads_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
31
30
|
backup_dr_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -51,7 +50,6 @@ class ProviderArgs:
|
|
51
50
|
cloud_functions_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
52
51
|
cloud_identity_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
53
52
|
cloud_ids_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
54
|
-
cloud_quotas_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
55
53
|
cloud_resource_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
56
54
|
cloud_run_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
57
55
|
cloud_run_v2_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -204,8 +202,6 @@ class ProviderArgs:
|
|
204
202
|
pulumi.set(__self__, "apikeys_custom_endpoint", apikeys_custom_endpoint)
|
205
203
|
if app_engine_custom_endpoint is not None:
|
206
204
|
pulumi.set(__self__, "app_engine_custom_endpoint", app_engine_custom_endpoint)
|
207
|
-
if apphub_custom_endpoint is not None:
|
208
|
-
pulumi.set(__self__, "apphub_custom_endpoint", apphub_custom_endpoint)
|
209
205
|
if artifact_registry_custom_endpoint is not None:
|
210
206
|
pulumi.set(__self__, "artifact_registry_custom_endpoint", artifact_registry_custom_endpoint)
|
211
207
|
if assured_workloads_custom_endpoint is not None:
|
@@ -256,8 +252,6 @@ class ProviderArgs:
|
|
256
252
|
pulumi.set(__self__, "cloud_identity_custom_endpoint", cloud_identity_custom_endpoint)
|
257
253
|
if cloud_ids_custom_endpoint is not None:
|
258
254
|
pulumi.set(__self__, "cloud_ids_custom_endpoint", cloud_ids_custom_endpoint)
|
259
|
-
if cloud_quotas_custom_endpoint is not None:
|
260
|
-
pulumi.set(__self__, "cloud_quotas_custom_endpoint", cloud_quotas_custom_endpoint)
|
261
255
|
if cloud_resource_manager_custom_endpoint is not None:
|
262
256
|
pulumi.set(__self__, "cloud_resource_manager_custom_endpoint", cloud_resource_manager_custom_endpoint)
|
263
257
|
if cloud_run_custom_endpoint is not None:
|
@@ -613,15 +607,6 @@ class ProviderArgs:
|
|
613
607
|
def app_engine_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
|
614
608
|
pulumi.set(self, "app_engine_custom_endpoint", value)
|
615
609
|
|
616
|
-
@property
|
617
|
-
@pulumi.getter(name="apphubCustomEndpoint")
|
618
|
-
def apphub_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
|
619
|
-
return pulumi.get(self, "apphub_custom_endpoint")
|
620
|
-
|
621
|
-
@apphub_custom_endpoint.setter
|
622
|
-
def apphub_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
|
623
|
-
pulumi.set(self, "apphub_custom_endpoint", value)
|
624
|
-
|
625
610
|
@property
|
626
611
|
@pulumi.getter(name="artifactRegistryCustomEndpoint")
|
627
612
|
def artifact_registry_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
|
@@ -847,15 +832,6 @@ class ProviderArgs:
|
|
847
832
|
def cloud_ids_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
|
848
833
|
pulumi.set(self, "cloud_ids_custom_endpoint", value)
|
849
834
|
|
850
|
-
@property
|
851
|
-
@pulumi.getter(name="cloudQuotasCustomEndpoint")
|
852
|
-
def cloud_quotas_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
|
853
|
-
return pulumi.get(self, "cloud_quotas_custom_endpoint")
|
854
|
-
|
855
|
-
@cloud_quotas_custom_endpoint.setter
|
856
|
-
def cloud_quotas_custom_endpoint(self, value: Optional[pulumi.Input[str]]):
|
857
|
-
pulumi.set(self, "cloud_quotas_custom_endpoint", value)
|
858
|
-
|
859
835
|
@property
|
860
836
|
@pulumi.getter(name="cloudResourceManagerCustomEndpoint")
|
861
837
|
def cloud_resource_manager_custom_endpoint(self) -> Optional[pulumi.Input[str]]:
|
@@ -2033,7 +2009,6 @@ class Provider(pulumi.ProviderResource):
|
|
2033
2009
|
apigee_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2034
2010
|
apikeys_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2035
2011
|
app_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2036
|
-
apphub_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2037
2012
|
artifact_registry_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2038
2013
|
assured_workloads_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2039
2014
|
backup_dr_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -2059,7 +2034,6 @@ class Provider(pulumi.ProviderResource):
|
|
2059
2034
|
cloud_functions_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2060
2035
|
cloud_identity_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2061
2036
|
cloud_ids_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2062
|
-
cloud_quotas_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2063
2037
|
cloud_resource_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2064
2038
|
cloud_run_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2065
2039
|
cloud_run_v2_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -2236,7 +2210,6 @@ class Provider(pulumi.ProviderResource):
|
|
2236
2210
|
apigee_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2237
2211
|
apikeys_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2238
2212
|
app_engine_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2239
|
-
apphub_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2240
2213
|
artifact_registry_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2241
2214
|
assured_workloads_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2242
2215
|
backup_dr_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -2262,7 +2235,6 @@ class Provider(pulumi.ProviderResource):
|
|
2262
2235
|
cloud_functions_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2263
2236
|
cloud_identity_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2264
2237
|
cloud_ids_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2265
|
-
cloud_quotas_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2266
2238
|
cloud_resource_manager_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2267
2239
|
cloud_run_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
2268
2240
|
cloud_run_v2_custom_endpoint: Optional[pulumi.Input[str]] = None,
|
@@ -2411,7 +2383,6 @@ class Provider(pulumi.ProviderResource):
|
|
2411
2383
|
__props__.__dict__["apigee_custom_endpoint"] = apigee_custom_endpoint
|
2412
2384
|
__props__.__dict__["apikeys_custom_endpoint"] = apikeys_custom_endpoint
|
2413
2385
|
__props__.__dict__["app_engine_custom_endpoint"] = app_engine_custom_endpoint
|
2414
|
-
__props__.__dict__["apphub_custom_endpoint"] = apphub_custom_endpoint
|
2415
2386
|
__props__.__dict__["artifact_registry_custom_endpoint"] = artifact_registry_custom_endpoint
|
2416
2387
|
__props__.__dict__["assured_workloads_custom_endpoint"] = assured_workloads_custom_endpoint
|
2417
2388
|
__props__.__dict__["backup_dr_custom_endpoint"] = backup_dr_custom_endpoint
|
@@ -2437,7 +2408,6 @@ class Provider(pulumi.ProviderResource):
|
|
2437
2408
|
__props__.__dict__["cloud_functions_custom_endpoint"] = cloud_functions_custom_endpoint
|
2438
2409
|
__props__.__dict__["cloud_identity_custom_endpoint"] = cloud_identity_custom_endpoint
|
2439
2410
|
__props__.__dict__["cloud_ids_custom_endpoint"] = cloud_ids_custom_endpoint
|
2440
|
-
__props__.__dict__["cloud_quotas_custom_endpoint"] = cloud_quotas_custom_endpoint
|
2441
2411
|
__props__.__dict__["cloud_resource_manager_custom_endpoint"] = cloud_resource_manager_custom_endpoint
|
2442
2412
|
__props__.__dict__["cloud_run_custom_endpoint"] = cloud_run_custom_endpoint
|
2443
2413
|
__props__.__dict__["cloud_run_v2_custom_endpoint"] = cloud_run_v2_custom_endpoint
|
@@ -2624,11 +2594,6 @@ class Provider(pulumi.ProviderResource):
|
|
2624
2594
|
def app_engine_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
|
2625
2595
|
return pulumi.get(self, "app_engine_custom_endpoint")
|
2626
2596
|
|
2627
|
-
@property
|
2628
|
-
@pulumi.getter(name="apphubCustomEndpoint")
|
2629
|
-
def apphub_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
|
2630
|
-
return pulumi.get(self, "apphub_custom_endpoint")
|
2631
|
-
|
2632
2597
|
@property
|
2633
2598
|
@pulumi.getter(name="artifactRegistryCustomEndpoint")
|
2634
2599
|
def artifact_registry_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
|
@@ -2749,11 +2714,6 @@ class Provider(pulumi.ProviderResource):
|
|
2749
2714
|
def cloud_ids_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
|
2750
2715
|
return pulumi.get(self, "cloud_ids_custom_endpoint")
|
2751
2716
|
|
2752
|
-
@property
|
2753
|
-
@pulumi.getter(name="cloudQuotasCustomEndpoint")
|
2754
|
-
def cloud_quotas_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
|
2755
|
-
return pulumi.get(self, "cloud_quotas_custom_endpoint")
|
2756
|
-
|
2757
2717
|
@property
|
2758
2718
|
@pulumi.getter(name="cloudResourceManagerCustomEndpoint")
|
2759
2719
|
def cloud_resource_manager_custom_endpoint(self) -> pulumi.Output[Optional[str]]:
|
@@ -1051,7 +1051,7 @@ class Subscription(pulumi.CustomResource):
|
|
1051
1051
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1052
1052
|
bucket=example.name,
|
1053
1053
|
filename_prefix="pre-",
|
1054
|
-
filename_suffix="-
|
1054
|
+
filename_suffix="-_41819",
|
1055
1055
|
max_bytes=1000,
|
1056
1056
|
max_duration="300s",
|
1057
1057
|
))
|
@@ -1080,7 +1080,7 @@ class Subscription(pulumi.CustomResource):
|
|
1080
1080
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1081
1081
|
bucket=example.name,
|
1082
1082
|
filename_prefix="pre-",
|
1083
|
-
filename_suffix="-
|
1083
|
+
filename_suffix="-_75092",
|
1084
1084
|
max_bytes=1000,
|
1085
1085
|
max_duration="300s",
|
1086
1086
|
avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
|
@@ -1392,7 +1392,7 @@ class Subscription(pulumi.CustomResource):
|
|
1392
1392
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1393
1393
|
bucket=example.name,
|
1394
1394
|
filename_prefix="pre-",
|
1395
|
-
filename_suffix="-
|
1395
|
+
filename_suffix="-_41819",
|
1396
1396
|
max_bytes=1000,
|
1397
1397
|
max_duration="300s",
|
1398
1398
|
))
|
@@ -1421,7 +1421,7 @@ class Subscription(pulumi.CustomResource):
|
|
1421
1421
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1422
1422
|
bucket=example.name,
|
1423
1423
|
filename_prefix="pre-",
|
1424
|
-
filename_suffix="-
|
1424
|
+
filename_suffix="-_75092",
|
1425
1425
|
max_bytes=1000,
|
1426
1426
|
max_duration="300s",
|
1427
1427
|
avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
|
@@ -357,7 +357,7 @@ class Posture(pulumi.CustomResource):
|
|
357
357
|
import pulumi_gcp as gcp
|
358
358
|
|
359
359
|
posture1 = gcp.securityposture.Posture("posture1",
|
360
|
-
posture_id="
|
360
|
+
posture_id="posture_1",
|
361
361
|
parent="organizations/123456789",
|
362
362
|
location="global",
|
363
363
|
state="ACTIVE",
|
@@ -511,7 +511,7 @@ class Posture(pulumi.CustomResource):
|
|
511
511
|
import pulumi_gcp as gcp
|
512
512
|
|
513
513
|
posture1 = gcp.securityposture.Posture("posture1",
|
514
|
-
posture_id="
|
514
|
+
posture_id="posture_1",
|
515
515
|
parent="organizations/123456789",
|
516
516
|
location="global",
|
517
517
|
state="ACTIVE",
|
@@ -467,7 +467,7 @@ class PostureDeployment(pulumi.CustomResource):
|
|
467
467
|
import pulumi
|
468
468
|
import pulumi_gcp as gcp
|
469
469
|
|
470
|
-
posture1 = gcp.securityposture.Posture("
|
470
|
+
posture1 = gcp.securityposture.Posture("posture1",
|
471
471
|
posture_id="posture_1",
|
472
472
|
parent="organizations/123456789",
|
473
473
|
location="global",
|
@@ -555,7 +555,7 @@ class PostureDeployment(pulumi.CustomResource):
|
|
555
555
|
import pulumi
|
556
556
|
import pulumi_gcp as gcp
|
557
557
|
|
558
|
-
posture1 = gcp.securityposture.Posture("
|
558
|
+
posture1 = gcp.securityposture.Posture("posture1",
|
559
559
|
posture_id="posture_1",
|
560
560
|
parent="organizations/123456789",
|
561
561
|
location="global",
|
pulumi_gcp/storage/_inputs.py
CHANGED
@@ -1944,27 +1944,34 @@ class TransferJobTransferSpecAwsS3DataSourceAwsAccessKeyArgs:
|
|
1944
1944
|
@pulumi.input_type
|
1945
1945
|
class TransferJobTransferSpecAzureBlobStorageDataSourceArgs:
|
1946
1946
|
def __init__(__self__, *,
|
1947
|
+
azure_credentials: pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs'],
|
1947
1948
|
container: pulumi.Input[str],
|
1948
1949
|
storage_account: pulumi.Input[str],
|
1949
|
-
azure_credentials: Optional[pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs']] = None,
|
1950
|
-
credentials_secret: Optional[pulumi.Input[str]] = None,
|
1951
1950
|
path: Optional[pulumi.Input[str]] = None):
|
1952
1951
|
"""
|
1952
|
+
:param pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs'] azure_credentials: Credentials used to authenticate API requests to Azure block.
|
1953
1953
|
:param pulumi.Input[str] container: The container to transfer from the Azure Storage account.`
|
1954
1954
|
:param pulumi.Input[str] storage_account: The name of the Azure Storage account.
|
1955
|
-
:param pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs'] azure_credentials: Credentials used to authenticate API requests to Azure block.
|
1956
|
-
:param pulumi.Input[str] credentials_secret: Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin%!w(MISSING)ith%!a(MISSING)%27/%!-(MISSING),credentialsSecret,-string). Service Agent for Storage Transfer must have permissions to access secret. If credentials_secret is specified, do not specify azure_credentials.`,
|
1957
1955
|
:param pulumi.Input[str] path: Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.
|
1958
1956
|
"""
|
1957
|
+
pulumi.set(__self__, "azure_credentials", azure_credentials)
|
1959
1958
|
pulumi.set(__self__, "container", container)
|
1960
1959
|
pulumi.set(__self__, "storage_account", storage_account)
|
1961
|
-
if azure_credentials is not None:
|
1962
|
-
pulumi.set(__self__, "azure_credentials", azure_credentials)
|
1963
|
-
if credentials_secret is not None:
|
1964
|
-
pulumi.set(__self__, "credentials_secret", credentials_secret)
|
1965
1960
|
if path is not None:
|
1966
1961
|
pulumi.set(__self__, "path", path)
|
1967
1962
|
|
1963
|
+
@property
|
1964
|
+
@pulumi.getter(name="azureCredentials")
|
1965
|
+
def azure_credentials(self) -> pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs']:
|
1966
|
+
"""
|
1967
|
+
Credentials used to authenticate API requests to Azure block.
|
1968
|
+
"""
|
1969
|
+
return pulumi.get(self, "azure_credentials")
|
1970
|
+
|
1971
|
+
@azure_credentials.setter
|
1972
|
+
def azure_credentials(self, value: pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs']):
|
1973
|
+
pulumi.set(self, "azure_credentials", value)
|
1974
|
+
|
1968
1975
|
@property
|
1969
1976
|
@pulumi.getter
|
1970
1977
|
def container(self) -> pulumi.Input[str]:
|
@@ -1989,30 +1996,6 @@ class TransferJobTransferSpecAzureBlobStorageDataSourceArgs:
|
|
1989
1996
|
def storage_account(self, value: pulumi.Input[str]):
|
1990
1997
|
pulumi.set(self, "storage_account", value)
|
1991
1998
|
|
1992
|
-
@property
|
1993
|
-
@pulumi.getter(name="azureCredentials")
|
1994
|
-
def azure_credentials(self) -> Optional[pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs']]:
|
1995
|
-
"""
|
1996
|
-
Credentials used to authenticate API requests to Azure block.
|
1997
|
-
"""
|
1998
|
-
return pulumi.get(self, "azure_credentials")
|
1999
|
-
|
2000
|
-
@azure_credentials.setter
|
2001
|
-
def azure_credentials(self, value: Optional[pulumi.Input['TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs']]):
|
2002
|
-
pulumi.set(self, "azure_credentials", value)
|
2003
|
-
|
2004
|
-
@property
|
2005
|
-
@pulumi.getter(name="credentialsSecret")
|
2006
|
-
def credentials_secret(self) -> Optional[pulumi.Input[str]]:
|
2007
|
-
"""
|
2008
|
-
Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin%!w(MISSING)ith%!a(MISSING)%27/%!-(MISSING),credentialsSecret,-string). Service Agent for Storage Transfer must have permissions to access secret. If credentials_secret is specified, do not specify azure_credentials.`,
|
2009
|
-
"""
|
2010
|
-
return pulumi.get(self, "credentials_secret")
|
2011
|
-
|
2012
|
-
@credentials_secret.setter
|
2013
|
-
def credentials_secret(self, value: Optional[pulumi.Input[str]]):
|
2014
|
-
pulumi.set(self, "credentials_secret", value)
|
2015
|
-
|
2016
1999
|
@property
|
2017
2000
|
@pulumi.getter
|
2018
2001
|
def path(self) -> Optional[pulumi.Input[str]]:
|
pulumi_gcp/storage/outputs.py
CHANGED
@@ -2042,12 +2042,10 @@ class TransferJobTransferSpecAzureBlobStorageDataSource(dict):
|
|
2042
2042
|
@staticmethod
|
2043
2043
|
def __key_warning(key: str):
|
2044
2044
|
suggest = None
|
2045
|
-
if key == "
|
2046
|
-
suggest = "storage_account"
|
2047
|
-
elif key == "azureCredentials":
|
2045
|
+
if key == "azureCredentials":
|
2048
2046
|
suggest = "azure_credentials"
|
2049
|
-
elif key == "
|
2050
|
-
suggest = "
|
2047
|
+
elif key == "storageAccount":
|
2048
|
+
suggest = "storage_account"
|
2051
2049
|
|
2052
2050
|
if suggest:
|
2053
2051
|
pulumi.log.warn(f"Key '{key}' not found in TransferJobTransferSpecAzureBlobStorageDataSource. Access the value via the '{suggest}' property getter instead.")
|
@@ -2061,27 +2059,30 @@ class TransferJobTransferSpecAzureBlobStorageDataSource(dict):
|
|
2061
2059
|
return super().get(key, default)
|
2062
2060
|
|
2063
2061
|
def __init__(__self__, *,
|
2062
|
+
azure_credentials: 'outputs.TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentials',
|
2064
2063
|
container: str,
|
2065
2064
|
storage_account: str,
|
2066
|
-
azure_credentials: Optional['outputs.TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentials'] = None,
|
2067
|
-
credentials_secret: Optional[str] = None,
|
2068
2065
|
path: Optional[str] = None):
|
2069
2066
|
"""
|
2067
|
+
:param 'TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs' azure_credentials: Credentials used to authenticate API requests to Azure block.
|
2070
2068
|
:param str container: The container to transfer from the Azure Storage account.`
|
2071
2069
|
:param str storage_account: The name of the Azure Storage account.
|
2072
|
-
:param 'TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentialsArgs' azure_credentials: Credentials used to authenticate API requests to Azure block.
|
2073
|
-
:param str credentials_secret: Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin%!w(MISSING)ith%!a(MISSING)%27/%!-(MISSING),credentialsSecret,-string). Service Agent for Storage Transfer must have permissions to access secret. If credentials_secret is specified, do not specify azure_credentials.`,
|
2074
2070
|
:param str path: Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.
|
2075
2071
|
"""
|
2072
|
+
pulumi.set(__self__, "azure_credentials", azure_credentials)
|
2076
2073
|
pulumi.set(__self__, "container", container)
|
2077
2074
|
pulumi.set(__self__, "storage_account", storage_account)
|
2078
|
-
if azure_credentials is not None:
|
2079
|
-
pulumi.set(__self__, "azure_credentials", azure_credentials)
|
2080
|
-
if credentials_secret is not None:
|
2081
|
-
pulumi.set(__self__, "credentials_secret", credentials_secret)
|
2082
2075
|
if path is not None:
|
2083
2076
|
pulumi.set(__self__, "path", path)
|
2084
2077
|
|
2078
|
+
@property
|
2079
|
+
@pulumi.getter(name="azureCredentials")
|
2080
|
+
def azure_credentials(self) -> 'outputs.TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentials':
|
2081
|
+
"""
|
2082
|
+
Credentials used to authenticate API requests to Azure block.
|
2083
|
+
"""
|
2084
|
+
return pulumi.get(self, "azure_credentials")
|
2085
|
+
|
2085
2086
|
@property
|
2086
2087
|
@pulumi.getter
|
2087
2088
|
def container(self) -> str:
|
@@ -2098,22 +2099,6 @@ class TransferJobTransferSpecAzureBlobStorageDataSource(dict):
|
|
2098
2099
|
"""
|
2099
2100
|
return pulumi.get(self, "storage_account")
|
2100
2101
|
|
2101
|
-
@property
|
2102
|
-
@pulumi.getter(name="azureCredentials")
|
2103
|
-
def azure_credentials(self) -> Optional['outputs.TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentials']:
|
2104
|
-
"""
|
2105
|
-
Credentials used to authenticate API requests to Azure block.
|
2106
|
-
"""
|
2107
|
-
return pulumi.get(self, "azure_credentials")
|
2108
|
-
|
2109
|
-
@property
|
2110
|
-
@pulumi.getter(name="credentialsSecret")
|
2111
|
-
def credentials_secret(self) -> Optional[str]:
|
2112
|
-
"""
|
2113
|
-
Full Resource name of a secret in Secret Manager containing [SAS Credentials in JSON form](https://cloud.google.com/storage-transfer/docs/reference/rest/v1/TransferSpec#azureblobstoragedata:~:text=begin%!w(MISSING)ith%!a(MISSING)%27/%!-(MISSING),credentialsSecret,-string). Service Agent for Storage Transfer must have permissions to access secret. If credentials_secret is specified, do not specify azure_credentials.`,
|
2114
|
-
"""
|
2115
|
-
return pulumi.get(self, "credentials_secret")
|
2116
|
-
|
2117
2102
|
@property
|
2118
2103
|
@pulumi.getter
|
2119
2104
|
def path(self) -> Optional[str]:
|
@@ -16,8 +16,6 @@ __all__ = [
|
|
16
16
|
'WorkstationConfigConditionArgs',
|
17
17
|
'WorkstationConfigContainerArgs',
|
18
18
|
'WorkstationConfigEncryptionKeyArgs',
|
19
|
-
'WorkstationConfigEphemeralDirectoryArgs',
|
20
|
-
'WorkstationConfigEphemeralDirectoryGcePdArgs',
|
21
19
|
'WorkstationConfigHostArgs',
|
22
20
|
'WorkstationConfigHostGceInstanceArgs',
|
23
21
|
'WorkstationConfigHostGceInstanceAcceleratorArgs',
|
@@ -402,128 +400,6 @@ class WorkstationConfigEncryptionKeyArgs:
|
|
402
400
|
pulumi.set(self, "kms_key_service_account", value)
|
403
401
|
|
404
402
|
|
405
|
-
@pulumi.input_type
|
406
|
-
class WorkstationConfigEphemeralDirectoryArgs:
|
407
|
-
def __init__(__self__, *,
|
408
|
-
gce_pd: Optional[pulumi.Input['WorkstationConfigEphemeralDirectoryGcePdArgs']] = None,
|
409
|
-
mount_path: Optional[pulumi.Input[str]] = None):
|
410
|
-
"""
|
411
|
-
:param pulumi.Input['WorkstationConfigEphemeralDirectoryGcePdArgs'] gce_pd: An EphemeralDirectory backed by a Compute Engine persistent disk.
|
412
|
-
Structure is documented below.
|
413
|
-
:param pulumi.Input[str] mount_path: Location of this directory in the running workstation.
|
414
|
-
"""
|
415
|
-
if gce_pd is not None:
|
416
|
-
pulumi.set(__self__, "gce_pd", gce_pd)
|
417
|
-
if mount_path is not None:
|
418
|
-
pulumi.set(__self__, "mount_path", mount_path)
|
419
|
-
|
420
|
-
@property
|
421
|
-
@pulumi.getter(name="gcePd")
|
422
|
-
def gce_pd(self) -> Optional[pulumi.Input['WorkstationConfigEphemeralDirectoryGcePdArgs']]:
|
423
|
-
"""
|
424
|
-
An EphemeralDirectory backed by a Compute Engine persistent disk.
|
425
|
-
Structure is documented below.
|
426
|
-
"""
|
427
|
-
return pulumi.get(self, "gce_pd")
|
428
|
-
|
429
|
-
@gce_pd.setter
|
430
|
-
def gce_pd(self, value: Optional[pulumi.Input['WorkstationConfigEphemeralDirectoryGcePdArgs']]):
|
431
|
-
pulumi.set(self, "gce_pd", value)
|
432
|
-
|
433
|
-
@property
|
434
|
-
@pulumi.getter(name="mountPath")
|
435
|
-
def mount_path(self) -> Optional[pulumi.Input[str]]:
|
436
|
-
"""
|
437
|
-
Location of this directory in the running workstation.
|
438
|
-
"""
|
439
|
-
return pulumi.get(self, "mount_path")
|
440
|
-
|
441
|
-
@mount_path.setter
|
442
|
-
def mount_path(self, value: Optional[pulumi.Input[str]]):
|
443
|
-
pulumi.set(self, "mount_path", value)
|
444
|
-
|
445
|
-
|
446
|
-
@pulumi.input_type
|
447
|
-
class WorkstationConfigEphemeralDirectoryGcePdArgs:
|
448
|
-
def __init__(__self__, *,
|
449
|
-
disk_type: Optional[pulumi.Input[str]] = None,
|
450
|
-
read_only: Optional[pulumi.Input[bool]] = None,
|
451
|
-
source_image: Optional[pulumi.Input[str]] = None,
|
452
|
-
source_snapshot: Optional[pulumi.Input[str]] = None):
|
453
|
-
"""
|
454
|
-
:param pulumi.Input[str] disk_type: Type of the disk to use. Defaults to `"pd-standard"`.
|
455
|
-
:param pulumi.Input[bool] read_only: Whether the disk is read only. If true, the disk may be shared by multiple VMs and `sourceSnapshot` must be set.
|
456
|
-
:param pulumi.Input[str] source_image: Name of the disk image to use as the source for the disk.
|
457
|
-
Must be empty `sourceSnapshot` is set.
|
458
|
-
Updating `sourceImage` will update content in the ephemeral directory after the workstation is restarted.
|
459
|
-
:param pulumi.Input[str] source_snapshot: Name of the snapshot to use as the source for the disk.
|
460
|
-
Must be empty if `sourceImage` is set.
|
461
|
-
Must be empty if `read_only` is false.
|
462
|
-
Updating `source_snapshot` will update content in the ephemeral directory after the workstation is restarted.
|
463
|
-
"""
|
464
|
-
if disk_type is not None:
|
465
|
-
pulumi.set(__self__, "disk_type", disk_type)
|
466
|
-
if read_only is not None:
|
467
|
-
pulumi.set(__self__, "read_only", read_only)
|
468
|
-
if source_image is not None:
|
469
|
-
pulumi.set(__self__, "source_image", source_image)
|
470
|
-
if source_snapshot is not None:
|
471
|
-
pulumi.set(__self__, "source_snapshot", source_snapshot)
|
472
|
-
|
473
|
-
@property
|
474
|
-
@pulumi.getter(name="diskType")
|
475
|
-
def disk_type(self) -> Optional[pulumi.Input[str]]:
|
476
|
-
"""
|
477
|
-
Type of the disk to use. Defaults to `"pd-standard"`.
|
478
|
-
"""
|
479
|
-
return pulumi.get(self, "disk_type")
|
480
|
-
|
481
|
-
@disk_type.setter
|
482
|
-
def disk_type(self, value: Optional[pulumi.Input[str]]):
|
483
|
-
pulumi.set(self, "disk_type", value)
|
484
|
-
|
485
|
-
@property
|
486
|
-
@pulumi.getter(name="readOnly")
|
487
|
-
def read_only(self) -> Optional[pulumi.Input[bool]]:
|
488
|
-
"""
|
489
|
-
Whether the disk is read only. If true, the disk may be shared by multiple VMs and `sourceSnapshot` must be set.
|
490
|
-
"""
|
491
|
-
return pulumi.get(self, "read_only")
|
492
|
-
|
493
|
-
@read_only.setter
|
494
|
-
def read_only(self, value: Optional[pulumi.Input[bool]]):
|
495
|
-
pulumi.set(self, "read_only", value)
|
496
|
-
|
497
|
-
@property
|
498
|
-
@pulumi.getter(name="sourceImage")
|
499
|
-
def source_image(self) -> Optional[pulumi.Input[str]]:
|
500
|
-
"""
|
501
|
-
Name of the disk image to use as the source for the disk.
|
502
|
-
Must be empty `sourceSnapshot` is set.
|
503
|
-
Updating `sourceImage` will update content in the ephemeral directory after the workstation is restarted.
|
504
|
-
"""
|
505
|
-
return pulumi.get(self, "source_image")
|
506
|
-
|
507
|
-
@source_image.setter
|
508
|
-
def source_image(self, value: Optional[pulumi.Input[str]]):
|
509
|
-
pulumi.set(self, "source_image", value)
|
510
|
-
|
511
|
-
@property
|
512
|
-
@pulumi.getter(name="sourceSnapshot")
|
513
|
-
def source_snapshot(self) -> Optional[pulumi.Input[str]]:
|
514
|
-
"""
|
515
|
-
Name of the snapshot to use as the source for the disk.
|
516
|
-
Must be empty if `sourceImage` is set.
|
517
|
-
Must be empty if `read_only` is false.
|
518
|
-
Updating `source_snapshot` will update content in the ephemeral directory after the workstation is restarted.
|
519
|
-
"""
|
520
|
-
return pulumi.get(self, "source_snapshot")
|
521
|
-
|
522
|
-
@source_snapshot.setter
|
523
|
-
def source_snapshot(self, value: Optional[pulumi.Input[str]]):
|
524
|
-
pulumi.set(self, "source_snapshot", value)
|
525
|
-
|
526
|
-
|
527
403
|
@pulumi.input_type
|
528
404
|
class WorkstationConfigHostArgs:
|
529
405
|
def __init__(__self__, *,
|
@@ -999,16 +875,13 @@ class WorkstationConfigPersistentDirectoryGcePdArgs:
|
|
999
875
|
size_gb: Optional[pulumi.Input[int]] = None,
|
1000
876
|
source_snapshot: Optional[pulumi.Input[str]] = None):
|
1001
877
|
"""
|
1002
|
-
:param pulumi.Input[str] disk_type:
|
878
|
+
:param pulumi.Input[str] disk_type: The type of the persistent disk for the home directory. Defaults to `pd-standard`.
|
1003
879
|
:param pulumi.Input[str] fs_type: Type of file system that the disk should be formatted with. The workstation image must support this file system type. Must be empty if `sourceSnapshot` is set. Defaults to `ext4`.
|
1004
880
|
:param pulumi.Input[str] reclaim_policy: Whether the persistent disk should be deleted when the workstation is deleted. Valid values are `DELETE` and `RETAIN`. Defaults to `DELETE`.
|
1005
881
|
Possible values are: `DELETE`, `RETAIN`.
|
1006
882
|
:param pulumi.Input[int] size_gb: The GB capacity of a persistent home directory for each workstation created with this configuration. Must be empty if `sourceSnapshot` is set.
|
1007
883
|
Valid values are `10`, `50`, `100`, `200`, `500`, or `1000`. Defaults to `200`. If less than `200` GB, the `diskType` must be `pd-balanced` or `pd-ssd`.
|
1008
|
-
:param pulumi.Input[str] source_snapshot: Name of the snapshot to use as the source for the disk.
|
1009
|
-
Must be empty if `sourceImage` is set.
|
1010
|
-
Must be empty if `read_only` is false.
|
1011
|
-
Updating `source_snapshot` will update content in the ephemeral directory after the workstation is restarted.
|
884
|
+
:param pulumi.Input[str] source_snapshot: Name of the snapshot to use as the source for the disk. This can be the snapshot's `self_link`, `id`, or a string in the format of `projects/{project}/global/snapshots/{snapshot}`. If set, `sizeGb` and `fsType` must be empty. Can only be updated if it has an existing value.
|
1012
885
|
"""
|
1013
886
|
if disk_type is not None:
|
1014
887
|
pulumi.set(__self__, "disk_type", disk_type)
|
@@ -1025,7 +898,7 @@ class WorkstationConfigPersistentDirectoryGcePdArgs:
|
|
1025
898
|
@pulumi.getter(name="diskType")
|
1026
899
|
def disk_type(self) -> Optional[pulumi.Input[str]]:
|
1027
900
|
"""
|
1028
|
-
|
901
|
+
The type of the persistent disk for the home directory. Defaults to `pd-standard`.
|
1029
902
|
"""
|
1030
903
|
return pulumi.get(self, "disk_type")
|
1031
904
|
|
@@ -1075,10 +948,7 @@ class WorkstationConfigPersistentDirectoryGcePdArgs:
|
|
1075
948
|
@pulumi.getter(name="sourceSnapshot")
|
1076
949
|
def source_snapshot(self) -> Optional[pulumi.Input[str]]:
|
1077
950
|
"""
|
1078
|
-
Name of the snapshot to use as the source for the disk.
|
1079
|
-
Must be empty if `sourceImage` is set.
|
1080
|
-
Must be empty if `read_only` is false.
|
1081
|
-
Updating `source_snapshot` will update content in the ephemeral directory after the workstation is restarted.
|
951
|
+
Name of the snapshot to use as the source for the disk. This can be the snapshot's `self_link`, `id`, or a string in the format of `projects/{project}/global/snapshots/{snapshot}`. If set, `sizeGb` and `fsType` must be empty. Can only be updated if it has an existing value.
|
1082
952
|
"""
|
1083
953
|
return pulumi.get(self, "source_snapshot")
|
1084
954
|
|