pulumi-gcp 7.27.0a1718103841__py3-none-any.whl → 7.27.0a1718279079__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 +32 -0
- pulumi_gcp/appengine/_inputs.py +40 -0
- pulumi_gcp/appengine/flexible_app_version.py +47 -0
- pulumi_gcp/appengine/outputs.py +51 -0
- pulumi_gcp/bigtable/instance.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +16 -0
- pulumi_gcp/clouddeploy/outputs.py +12 -0
- pulumi_gcp/compute/__init__.py +2 -0
- pulumi_gcp/compute/_inputs.py +84 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/disk.py +68 -0
- pulumi_gcp/compute/get_backend_service.py +11 -1
- pulumi_gcp/compute/get_disk.py +11 -1
- pulumi_gcp/compute/get_instance.py +11 -1
- pulumi_gcp/compute/get_instance_group_manager.py +31 -1
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_security_policy.py +214 -0
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +47 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/instance_group_manager.py +185 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/outputs.py +1039 -0
- pulumi_gcp/compute/project_cloud_armor_tier.py +336 -0
- pulumi_gcp/compute/region_instance_group_manager.py +185 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +33 -4
- pulumi_gcp/container/cluster.py +61 -0
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +48 -4
- pulumi_gcp/dataloss/_inputs.py +185 -19
- pulumi_gcp/dataloss/outputs.py +206 -17
- pulumi_gcp/dataloss/prevention_inspect_template.py +54 -0
- pulumi_gcp/gkebackup/_inputs.py +282 -7
- pulumi_gcp/gkebackup/backup_plan.py +100 -0
- pulumi_gcp/gkebackup/outputs.py +312 -7
- pulumi_gcp/gkebackup/restore_plan.py +326 -0
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +326 -0
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +326 -0
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +326 -0
- pulumi_gcp/healthcare/_inputs.py +17 -1
- pulumi_gcp/healthcare/dicom_store.py +2 -0
- pulumi_gcp/healthcare/fhir_store.py +44 -60
- pulumi_gcp/healthcare/outputs.py +15 -1
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +47 -0
- pulumi_gcp/kms/crypto_key.py +14 -7
- pulumi_gcp/netapp/_inputs.py +58 -0
- pulumi_gcp/netapp/outputs.py +67 -0
- pulumi_gcp/netapp/volume.py +54 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/_inputs.py +47 -0
- pulumi_gcp/networkservices/outputs.py +56 -0
- pulumi_gcp/networkservices/service_lb_policies.py +782 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +44 -0
- pulumi_gcp/redis/cluster.py +128 -3
- pulumi_gcp/redis/outputs.py +36 -0
- pulumi_gcp/secretmanager/_inputs.py +20 -0
- pulumi_gcp/secretmanager/outputs.py +20 -0
- pulumi_gcp/secretmanager/secret_iam_binding.py +244 -0
- pulumi_gcp/secretmanager/secret_iam_member.py +244 -0
- pulumi_gcp/secretmanager/secret_iam_policy.py +224 -0
- pulumi_gcp/securitycenter/__init__.py +1 -0
- pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py +568 -0
- pulumi_gcp/spanner/__init__.py +1 -0
- pulumi_gcp/spanner/_inputs.py +68 -0
- pulumi_gcp/spanner/instance_config.py +569 -0
- pulumi_gcp/spanner/outputs.py +73 -0
- pulumi_gcp/sql/_inputs.py +8 -2
- pulumi_gcp/sql/outputs.py +9 -6
- pulumi_gcp/workstations/_inputs.py +51 -1
- pulumi_gcp/workstations/outputs.py +46 -2
- pulumi_gcp/workstations/workstation_config.py +10 -4
- {pulumi_gcp-7.27.0a1718103841.dist-info → pulumi_gcp-7.27.0a1718279079.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.27.0a1718103841.dist-info → pulumi_gcp-7.27.0a1718279079.dist-info}/RECORD +81 -76
- {pulumi_gcp-7.27.0a1718103841.dist-info → pulumi_gcp-7.27.0a1718279079.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.27.0a1718103841.dist-info → pulumi_gcp-7.27.0a1718279079.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -2684,6 +2684,14 @@ _utilities.register(
|
|
2684
2684
|
"gcp:compute/perInstanceConfig:PerInstanceConfig": "PerInstanceConfig"
|
2685
2685
|
}
|
2686
2686
|
},
|
2687
|
+
{
|
2688
|
+
"pkg": "gcp",
|
2689
|
+
"mod": "compute/projectCloudArmorTier",
|
2690
|
+
"fqn": "pulumi_gcp.compute",
|
2691
|
+
"classes": {
|
2692
|
+
"gcp:compute/projectCloudArmorTier:ProjectCloudArmorTier": "ProjectCloudArmorTier"
|
2693
|
+
}
|
2694
|
+
},
|
2687
2695
|
{
|
2688
2696
|
"pkg": "gcp",
|
2689
2697
|
"mod": "compute/projectDefaultNetworkTier",
|
@@ -6244,6 +6252,14 @@ _utilities.register(
|
|
6244
6252
|
"gcp:networkservices/serviceBinding:ServiceBinding": "ServiceBinding"
|
6245
6253
|
}
|
6246
6254
|
},
|
6255
|
+
{
|
6256
|
+
"pkg": "gcp",
|
6257
|
+
"mod": "networkservices/serviceLbPolicies",
|
6258
|
+
"fqn": "pulumi_gcp.networkservices",
|
6259
|
+
"classes": {
|
6260
|
+
"gcp:networkservices/serviceLbPolicies:ServiceLbPolicies": "ServiceLbPolicies"
|
6261
|
+
}
|
6262
|
+
},
|
6247
6263
|
{
|
6248
6264
|
"pkg": "gcp",
|
6249
6265
|
"mod": "networkservices/tcpRoute",
|
@@ -6884,6 +6900,14 @@ _utilities.register(
|
|
6884
6900
|
"gcp:securitycenter/instanceIamPolicy:InstanceIamPolicy": "InstanceIamPolicy"
|
6885
6901
|
}
|
6886
6902
|
},
|
6903
|
+
{
|
6904
|
+
"pkg": "gcp",
|
6905
|
+
"mod": "securitycenter/managementOrganizationEventThreatDetectionCustomModule",
|
6906
|
+
"fqn": "pulumi_gcp.securitycenter",
|
6907
|
+
"classes": {
|
6908
|
+
"gcp:securitycenter/managementOrganizationEventThreatDetectionCustomModule:ManagementOrganizationEventThreatDetectionCustomModule": "ManagementOrganizationEventThreatDetectionCustomModule"
|
6909
|
+
}
|
6910
|
+
},
|
6887
6911
|
{
|
6888
6912
|
"pkg": "gcp",
|
6889
6913
|
"mod": "securitycenter/muteConfig",
|
@@ -7172,6 +7196,14 @@ _utilities.register(
|
|
7172
7196
|
"gcp:spanner/instance:Instance": "Instance"
|
7173
7197
|
}
|
7174
7198
|
},
|
7199
|
+
{
|
7200
|
+
"pkg": "gcp",
|
7201
|
+
"mod": "spanner/instanceConfig",
|
7202
|
+
"fqn": "pulumi_gcp.spanner",
|
7203
|
+
"classes": {
|
7204
|
+
"gcp:spanner/instanceConfig:InstanceConfig": "InstanceConfig"
|
7205
|
+
}
|
7206
|
+
},
|
7175
7207
|
{
|
7176
7208
|
"pkg": "gcp",
|
7177
7209
|
"mod": "spanner/instanceIAMBinding",
|
pulumi_gcp/appengine/_inputs.py
CHANGED
@@ -30,6 +30,7 @@ __all__ = [
|
|
30
30
|
'FlexibleAppVersionDeploymentZipArgs',
|
31
31
|
'FlexibleAppVersionEndpointsApiServiceArgs',
|
32
32
|
'FlexibleAppVersionEntrypointArgs',
|
33
|
+
'FlexibleAppVersionFlexibleRuntimeSettingsArgs',
|
33
34
|
'FlexibleAppVersionHandlerArgs',
|
34
35
|
'FlexibleAppVersionHandlerScriptArgs',
|
35
36
|
'FlexibleAppVersionHandlerStaticFilesArgs',
|
@@ -1307,6 +1308,45 @@ class FlexibleAppVersionEntrypointArgs:
|
|
1307
1308
|
pulumi.set(self, "shell", value)
|
1308
1309
|
|
1309
1310
|
|
1311
|
+
@pulumi.input_type
|
1312
|
+
class FlexibleAppVersionFlexibleRuntimeSettingsArgs:
|
1313
|
+
def __init__(__self__, *,
|
1314
|
+
operating_system: Optional[pulumi.Input[str]] = None,
|
1315
|
+
runtime_version: Optional[pulumi.Input[str]] = None):
|
1316
|
+
"""
|
1317
|
+
:param pulumi.Input[str] operating_system: Operating System of the application runtime.
|
1318
|
+
:param pulumi.Input[str] runtime_version: The runtime version of an App Engine flexible application.
|
1319
|
+
"""
|
1320
|
+
if operating_system is not None:
|
1321
|
+
pulumi.set(__self__, "operating_system", operating_system)
|
1322
|
+
if runtime_version is not None:
|
1323
|
+
pulumi.set(__self__, "runtime_version", runtime_version)
|
1324
|
+
|
1325
|
+
@property
|
1326
|
+
@pulumi.getter(name="operatingSystem")
|
1327
|
+
def operating_system(self) -> Optional[pulumi.Input[str]]:
|
1328
|
+
"""
|
1329
|
+
Operating System of the application runtime.
|
1330
|
+
"""
|
1331
|
+
return pulumi.get(self, "operating_system")
|
1332
|
+
|
1333
|
+
@operating_system.setter
|
1334
|
+
def operating_system(self, value: Optional[pulumi.Input[str]]):
|
1335
|
+
pulumi.set(self, "operating_system", value)
|
1336
|
+
|
1337
|
+
@property
|
1338
|
+
@pulumi.getter(name="runtimeVersion")
|
1339
|
+
def runtime_version(self) -> Optional[pulumi.Input[str]]:
|
1340
|
+
"""
|
1341
|
+
The runtime version of an App Engine flexible application.
|
1342
|
+
"""
|
1343
|
+
return pulumi.get(self, "runtime_version")
|
1344
|
+
|
1345
|
+
@runtime_version.setter
|
1346
|
+
def runtime_version(self, value: Optional[pulumi.Input[str]]):
|
1347
|
+
pulumi.set(self, "runtime_version", value)
|
1348
|
+
|
1349
|
+
|
1310
1350
|
@pulumi.input_type
|
1311
1351
|
class FlexibleAppVersionHandlerArgs:
|
1312
1352
|
def __init__(__self__, *,
|
@@ -29,6 +29,7 @@ class FlexibleAppVersionArgs:
|
|
29
29
|
endpoints_api_service: Optional[pulumi.Input['FlexibleAppVersionEndpointsApiServiceArgs']] = None,
|
30
30
|
entrypoint: Optional[pulumi.Input['FlexibleAppVersionEntrypointArgs']] = None,
|
31
31
|
env_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
|
+
flexible_runtime_settings: Optional[pulumi.Input['FlexibleAppVersionFlexibleRuntimeSettingsArgs']] = None,
|
32
33
|
handlers: Optional[pulumi.Input[Sequence[pulumi.Input['FlexibleAppVersionHandlerArgs']]]] = None,
|
33
34
|
inbound_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
34
35
|
instance_class: Optional[pulumi.Input[str]] = None,
|
@@ -62,6 +63,7 @@ class FlexibleAppVersionArgs:
|
|
62
63
|
:param pulumi.Input['FlexibleAppVersionDeploymentArgs'] deployment: Code and application artifacts that make up this version.
|
63
64
|
:param pulumi.Input['FlexibleAppVersionEndpointsApiServiceArgs'] endpoints_api_service: Code and application artifacts that make up this version.
|
64
65
|
:param pulumi.Input['FlexibleAppVersionEntrypointArgs'] entrypoint: The entrypoint for the application.
|
66
|
+
:param pulumi.Input['FlexibleAppVersionFlexibleRuntimeSettingsArgs'] flexible_runtime_settings: Runtime settings for App Engine flexible environment.
|
65
67
|
:param pulumi.Input[Sequence[pulumi.Input['FlexibleAppVersionHandlerArgs']]] handlers: An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the
|
66
68
|
request and other request handlers are not attempted.
|
67
69
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_services: A list of the types of messages that this application is able to receive. Possible values: ["INBOUND_SERVICE_MAIL",
|
@@ -111,6 +113,8 @@ class FlexibleAppVersionArgs:
|
|
111
113
|
pulumi.set(__self__, "entrypoint", entrypoint)
|
112
114
|
if env_variables is not None:
|
113
115
|
pulumi.set(__self__, "env_variables", env_variables)
|
116
|
+
if flexible_runtime_settings is not None:
|
117
|
+
pulumi.set(__self__, "flexible_runtime_settings", flexible_runtime_settings)
|
114
118
|
if handlers is not None:
|
115
119
|
pulumi.set(__self__, "handlers", handlers)
|
116
120
|
if inbound_services is not None:
|
@@ -300,6 +304,18 @@ class FlexibleAppVersionArgs:
|
|
300
304
|
def env_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
301
305
|
pulumi.set(self, "env_variables", value)
|
302
306
|
|
307
|
+
@property
|
308
|
+
@pulumi.getter(name="flexibleRuntimeSettings")
|
309
|
+
def flexible_runtime_settings(self) -> Optional[pulumi.Input['FlexibleAppVersionFlexibleRuntimeSettingsArgs']]:
|
310
|
+
"""
|
311
|
+
Runtime settings for App Engine flexible environment.
|
312
|
+
"""
|
313
|
+
return pulumi.get(self, "flexible_runtime_settings")
|
314
|
+
|
315
|
+
@flexible_runtime_settings.setter
|
316
|
+
def flexible_runtime_settings(self, value: Optional[pulumi.Input['FlexibleAppVersionFlexibleRuntimeSettingsArgs']]):
|
317
|
+
pulumi.set(self, "flexible_runtime_settings", value)
|
318
|
+
|
303
319
|
@property
|
304
320
|
@pulumi.getter
|
305
321
|
def handlers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlexibleAppVersionHandlerArgs']]]]:
|
@@ -513,6 +529,7 @@ class _FlexibleAppVersionState:
|
|
513
529
|
endpoints_api_service: Optional[pulumi.Input['FlexibleAppVersionEndpointsApiServiceArgs']] = None,
|
514
530
|
entrypoint: Optional[pulumi.Input['FlexibleAppVersionEntrypointArgs']] = None,
|
515
531
|
env_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
532
|
+
flexible_runtime_settings: Optional[pulumi.Input['FlexibleAppVersionFlexibleRuntimeSettingsArgs']] = None,
|
516
533
|
handlers: Optional[pulumi.Input[Sequence[pulumi.Input['FlexibleAppVersionHandlerArgs']]]] = None,
|
517
534
|
inbound_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
518
535
|
instance_class: Optional[pulumi.Input[str]] = None,
|
@@ -545,6 +562,7 @@ class _FlexibleAppVersionState:
|
|
545
562
|
:param pulumi.Input['FlexibleAppVersionDeploymentArgs'] deployment: Code and application artifacts that make up this version.
|
546
563
|
:param pulumi.Input['FlexibleAppVersionEndpointsApiServiceArgs'] endpoints_api_service: Code and application artifacts that make up this version.
|
547
564
|
:param pulumi.Input['FlexibleAppVersionEntrypointArgs'] entrypoint: The entrypoint for the application.
|
565
|
+
:param pulumi.Input['FlexibleAppVersionFlexibleRuntimeSettingsArgs'] flexible_runtime_settings: Runtime settings for App Engine flexible environment.
|
548
566
|
:param pulumi.Input[Sequence[pulumi.Input['FlexibleAppVersionHandlerArgs']]] handlers: An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the
|
549
567
|
request and other request handlers are not attempted.
|
550
568
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_services: A list of the types of messages that this application is able to receive. Possible values: ["INBOUND_SERVICE_MAIL",
|
@@ -597,6 +615,8 @@ class _FlexibleAppVersionState:
|
|
597
615
|
pulumi.set(__self__, "entrypoint", entrypoint)
|
598
616
|
if env_variables is not None:
|
599
617
|
pulumi.set(__self__, "env_variables", env_variables)
|
618
|
+
if flexible_runtime_settings is not None:
|
619
|
+
pulumi.set(__self__, "flexible_runtime_settings", flexible_runtime_settings)
|
600
620
|
if handlers is not None:
|
601
621
|
pulumi.set(__self__, "handlers", handlers)
|
602
622
|
if inbound_services is not None:
|
@@ -746,6 +766,18 @@ class _FlexibleAppVersionState:
|
|
746
766
|
def env_variables(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
747
767
|
pulumi.set(self, "env_variables", value)
|
748
768
|
|
769
|
+
@property
|
770
|
+
@pulumi.getter(name="flexibleRuntimeSettings")
|
771
|
+
def flexible_runtime_settings(self) -> Optional[pulumi.Input['FlexibleAppVersionFlexibleRuntimeSettingsArgs']]:
|
772
|
+
"""
|
773
|
+
Runtime settings for App Engine flexible environment.
|
774
|
+
"""
|
775
|
+
return pulumi.get(self, "flexible_runtime_settings")
|
776
|
+
|
777
|
+
@flexible_runtime_settings.setter
|
778
|
+
def flexible_runtime_settings(self, value: Optional[pulumi.Input['FlexibleAppVersionFlexibleRuntimeSettingsArgs']]):
|
779
|
+
pulumi.set(self, "flexible_runtime_settings", value)
|
780
|
+
|
749
781
|
@property
|
750
782
|
@pulumi.getter
|
751
783
|
def handlers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlexibleAppVersionHandlerArgs']]]]:
|
@@ -1023,6 +1055,7 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1023
1055
|
endpoints_api_service: Optional[pulumi.Input[pulumi.InputType['FlexibleAppVersionEndpointsApiServiceArgs']]] = None,
|
1024
1056
|
entrypoint: Optional[pulumi.Input[pulumi.InputType['FlexibleAppVersionEntrypointArgs']]] = None,
|
1025
1057
|
env_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1058
|
+
flexible_runtime_settings: Optional[pulumi.Input[pulumi.InputType['FlexibleAppVersionFlexibleRuntimeSettingsArgs']]] = None,
|
1026
1059
|
handlers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlexibleAppVersionHandlerArgs']]]]] = None,
|
1027
1060
|
inbound_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1028
1061
|
instance_class: Optional[pulumi.Input[str]] = None,
|
@@ -1180,6 +1213,7 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1180
1213
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionDeploymentArgs']] deployment: Code and application artifacts that make up this version.
|
1181
1214
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEndpointsApiServiceArgs']] endpoints_api_service: Code and application artifacts that make up this version.
|
1182
1215
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEntrypointArgs']] entrypoint: The entrypoint for the application.
|
1216
|
+
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionFlexibleRuntimeSettingsArgs']] flexible_runtime_settings: Runtime settings for App Engine flexible environment.
|
1183
1217
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlexibleAppVersionHandlerArgs']]]] handlers: An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the
|
1184
1218
|
request and other request handlers are not attempted.
|
1185
1219
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_services: A list of the types of messages that this application is able to receive. Possible values: ["INBOUND_SERVICE_MAIL",
|
@@ -1368,6 +1402,7 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1368
1402
|
endpoints_api_service: Optional[pulumi.Input[pulumi.InputType['FlexibleAppVersionEndpointsApiServiceArgs']]] = None,
|
1369
1403
|
entrypoint: Optional[pulumi.Input[pulumi.InputType['FlexibleAppVersionEntrypointArgs']]] = None,
|
1370
1404
|
env_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1405
|
+
flexible_runtime_settings: Optional[pulumi.Input[pulumi.InputType['FlexibleAppVersionFlexibleRuntimeSettingsArgs']]] = None,
|
1371
1406
|
handlers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlexibleAppVersionHandlerArgs']]]]] = None,
|
1372
1407
|
inbound_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1373
1408
|
instance_class: Optional[pulumi.Input[str]] = None,
|
@@ -1406,6 +1441,7 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1406
1441
|
__props__.__dict__["endpoints_api_service"] = endpoints_api_service
|
1407
1442
|
__props__.__dict__["entrypoint"] = entrypoint
|
1408
1443
|
__props__.__dict__["env_variables"] = env_variables
|
1444
|
+
__props__.__dict__["flexible_runtime_settings"] = flexible_runtime_settings
|
1409
1445
|
__props__.__dict__["handlers"] = handlers
|
1410
1446
|
__props__.__dict__["inbound_services"] = inbound_services
|
1411
1447
|
__props__.__dict__["instance_class"] = instance_class
|
@@ -1454,6 +1490,7 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1454
1490
|
endpoints_api_service: Optional[pulumi.Input[pulumi.InputType['FlexibleAppVersionEndpointsApiServiceArgs']]] = None,
|
1455
1491
|
entrypoint: Optional[pulumi.Input[pulumi.InputType['FlexibleAppVersionEntrypointArgs']]] = None,
|
1456
1492
|
env_variables: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1493
|
+
flexible_runtime_settings: Optional[pulumi.Input[pulumi.InputType['FlexibleAppVersionFlexibleRuntimeSettingsArgs']]] = None,
|
1457
1494
|
handlers: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlexibleAppVersionHandlerArgs']]]]] = None,
|
1458
1495
|
inbound_services: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1459
1496
|
instance_class: Optional[pulumi.Input[str]] = None,
|
@@ -1491,6 +1528,7 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1491
1528
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionDeploymentArgs']] deployment: Code and application artifacts that make up this version.
|
1492
1529
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEndpointsApiServiceArgs']] endpoints_api_service: Code and application artifacts that make up this version.
|
1493
1530
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEntrypointArgs']] entrypoint: The entrypoint for the application.
|
1531
|
+
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionFlexibleRuntimeSettingsArgs']] flexible_runtime_settings: Runtime settings for App Engine flexible environment.
|
1494
1532
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlexibleAppVersionHandlerArgs']]]] handlers: An ordered list of URL-matching patterns that should be applied to incoming requests. The first matching URL handles the
|
1495
1533
|
request and other request handlers are not attempted.
|
1496
1534
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] inbound_services: A list of the types of messages that this application is able to receive. Possible values: ["INBOUND_SERVICE_MAIL",
|
@@ -1538,6 +1576,7 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1538
1576
|
__props__.__dict__["endpoints_api_service"] = endpoints_api_service
|
1539
1577
|
__props__.__dict__["entrypoint"] = entrypoint
|
1540
1578
|
__props__.__dict__["env_variables"] = env_variables
|
1579
|
+
__props__.__dict__["flexible_runtime_settings"] = flexible_runtime_settings
|
1541
1580
|
__props__.__dict__["handlers"] = handlers
|
1542
1581
|
__props__.__dict__["inbound_services"] = inbound_services
|
1543
1582
|
__props__.__dict__["instance_class"] = instance_class
|
@@ -1631,6 +1670,14 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1631
1670
|
def env_variables(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1632
1671
|
return pulumi.get(self, "env_variables")
|
1633
1672
|
|
1673
|
+
@property
|
1674
|
+
@pulumi.getter(name="flexibleRuntimeSettings")
|
1675
|
+
def flexible_runtime_settings(self) -> pulumi.Output[Optional['outputs.FlexibleAppVersionFlexibleRuntimeSettings']]:
|
1676
|
+
"""
|
1677
|
+
Runtime settings for App Engine flexible environment.
|
1678
|
+
"""
|
1679
|
+
return pulumi.get(self, "flexible_runtime_settings")
|
1680
|
+
|
1634
1681
|
@property
|
1635
1682
|
@pulumi.getter
|
1636
1683
|
def handlers(self) -> pulumi.Output[Sequence['outputs.FlexibleAppVersionHandler']]:
|
pulumi_gcp/appengine/outputs.py
CHANGED
@@ -31,6 +31,7 @@ __all__ = [
|
|
31
31
|
'FlexibleAppVersionDeploymentZip',
|
32
32
|
'FlexibleAppVersionEndpointsApiService',
|
33
33
|
'FlexibleAppVersionEntrypoint',
|
34
|
+
'FlexibleAppVersionFlexibleRuntimeSettings',
|
34
35
|
'FlexibleAppVersionHandler',
|
35
36
|
'FlexibleAppVersionHandlerScript',
|
36
37
|
'FlexibleAppVersionHandlerStaticFiles',
|
@@ -1361,6 +1362,56 @@ class FlexibleAppVersionEntrypoint(dict):
|
|
1361
1362
|
return pulumi.get(self, "shell")
|
1362
1363
|
|
1363
1364
|
|
1365
|
+
@pulumi.output_type
|
1366
|
+
class FlexibleAppVersionFlexibleRuntimeSettings(dict):
|
1367
|
+
@staticmethod
|
1368
|
+
def __key_warning(key: str):
|
1369
|
+
suggest = None
|
1370
|
+
if key == "operatingSystem":
|
1371
|
+
suggest = "operating_system"
|
1372
|
+
elif key == "runtimeVersion":
|
1373
|
+
suggest = "runtime_version"
|
1374
|
+
|
1375
|
+
if suggest:
|
1376
|
+
pulumi.log.warn(f"Key '{key}' not found in FlexibleAppVersionFlexibleRuntimeSettings. Access the value via the '{suggest}' property getter instead.")
|
1377
|
+
|
1378
|
+
def __getitem__(self, key: str) -> Any:
|
1379
|
+
FlexibleAppVersionFlexibleRuntimeSettings.__key_warning(key)
|
1380
|
+
return super().__getitem__(key)
|
1381
|
+
|
1382
|
+
def get(self, key: str, default = None) -> Any:
|
1383
|
+
FlexibleAppVersionFlexibleRuntimeSettings.__key_warning(key)
|
1384
|
+
return super().get(key, default)
|
1385
|
+
|
1386
|
+
def __init__(__self__, *,
|
1387
|
+
operating_system: Optional[str] = None,
|
1388
|
+
runtime_version: Optional[str] = None):
|
1389
|
+
"""
|
1390
|
+
:param str operating_system: Operating System of the application runtime.
|
1391
|
+
:param str runtime_version: The runtime version of an App Engine flexible application.
|
1392
|
+
"""
|
1393
|
+
if operating_system is not None:
|
1394
|
+
pulumi.set(__self__, "operating_system", operating_system)
|
1395
|
+
if runtime_version is not None:
|
1396
|
+
pulumi.set(__self__, "runtime_version", runtime_version)
|
1397
|
+
|
1398
|
+
@property
|
1399
|
+
@pulumi.getter(name="operatingSystem")
|
1400
|
+
def operating_system(self) -> Optional[str]:
|
1401
|
+
"""
|
1402
|
+
Operating System of the application runtime.
|
1403
|
+
"""
|
1404
|
+
return pulumi.get(self, "operating_system")
|
1405
|
+
|
1406
|
+
@property
|
1407
|
+
@pulumi.getter(name="runtimeVersion")
|
1408
|
+
def runtime_version(self) -> Optional[str]:
|
1409
|
+
"""
|
1410
|
+
The runtime version of an App Engine flexible application.
|
1411
|
+
"""
|
1412
|
+
return pulumi.get(self, "runtime_version")
|
1413
|
+
|
1414
|
+
|
1364
1415
|
@pulumi.output_type
|
1365
1416
|
class FlexibleAppVersionHandler(dict):
|
1366
1417
|
@staticmethod
|
pulumi_gcp/bigtable/instance.py
CHANGED
@@ -19,6 +19,7 @@ class InstanceArgs:
|
|
19
19
|
clusters: Optional[pulumi.Input[Sequence[pulumi.Input['InstanceClusterArgs']]]] = None,
|
20
20
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
21
21
|
display_name: Optional[pulumi.Input[str]] = None,
|
22
|
+
force_destroy: Optional[pulumi.Input[bool]] = None,
|
22
23
|
instance_type: Optional[pulumi.Input[str]] = None,
|
23
24
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
24
25
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -33,6 +34,7 @@ class InstanceArgs:
|
|
33
34
|
:param pulumi.Input[bool] deletion_protection: Whether or not to allow this provider to destroy the instance. Unless this field is set to false
|
34
35
|
in the statefile, a `pulumi destroy` or `pulumi up` that would delete the instance will fail.
|
35
36
|
:param pulumi.Input[str] display_name: The human-readable display name of the Bigtable instance. Defaults to the instance `name`.
|
37
|
+
:param pulumi.Input[bool] force_destroy: Deleting a BigTable instance can be blocked if any backups are present in the instance. When `force_destroy` is set to true, the Provider will delete all backups found in the BigTable instance before attempting to delete the instance itself. Defaults to false.
|
36
38
|
:param pulumi.Input[str] instance_type: The instance type to create. One of `"DEVELOPMENT"` or `"PRODUCTION"`. Defaults to `"PRODUCTION"`.
|
37
39
|
It is recommended to leave this field unspecified since the distinction between `"DEVELOPMENT"` and `"PRODUCTION"` instances is going away,
|
38
40
|
and all instances will become `"PRODUCTION"` instances. This means that new and existing `"DEVELOPMENT"` instances will be converted to
|
@@ -52,6 +54,8 @@ class InstanceArgs:
|
|
52
54
|
pulumi.set(__self__, "deletion_protection", deletion_protection)
|
53
55
|
if display_name is not None:
|
54
56
|
pulumi.set(__self__, "display_name", display_name)
|
57
|
+
if force_destroy is not None:
|
58
|
+
pulumi.set(__self__, "force_destroy", force_destroy)
|
55
59
|
if instance_type is not None:
|
56
60
|
warnings.warn("""It is recommended to leave this field unspecified since the distinction between \"DEVELOPMENT\" and \"PRODUCTION\" instances is going away, and all instances will become \"PRODUCTION\" instances. This means that new and existing \"DEVELOPMENT\" instances will be converted to \"PRODUCTION\" instances. It is recommended for users to use \"PRODUCTION\" instances in any case, since a 1-node \"PRODUCTION\" instance is functionally identical to a \"DEVELOPMENT\" instance, but without the accompanying restrictions.""", DeprecationWarning)
|
57
61
|
pulumi.log.warn("""instance_type is deprecated: It is recommended to leave this field unspecified since the distinction between \"DEVELOPMENT\" and \"PRODUCTION\" instances is going away, and all instances will become \"PRODUCTION\" instances. This means that new and existing \"DEVELOPMENT\" instances will be converted to \"PRODUCTION\" instances. It is recommended for users to use \"PRODUCTION\" instances in any case, since a 1-node \"PRODUCTION\" instance is functionally identical to a \"DEVELOPMENT\" instance, but without the accompanying restrictions.""")
|
@@ -105,6 +109,18 @@ class InstanceArgs:
|
|
105
109
|
def display_name(self, value: Optional[pulumi.Input[str]]):
|
106
110
|
pulumi.set(self, "display_name", value)
|
107
111
|
|
112
|
+
@property
|
113
|
+
@pulumi.getter(name="forceDestroy")
|
114
|
+
def force_destroy(self) -> Optional[pulumi.Input[bool]]:
|
115
|
+
"""
|
116
|
+
Deleting a BigTable instance can be blocked if any backups are present in the instance. When `force_destroy` is set to true, the Provider will delete all backups found in the BigTable instance before attempting to delete the instance itself. Defaults to false.
|
117
|
+
"""
|
118
|
+
return pulumi.get(self, "force_destroy")
|
119
|
+
|
120
|
+
@force_destroy.setter
|
121
|
+
def force_destroy(self, value: Optional[pulumi.Input[bool]]):
|
122
|
+
pulumi.set(self, "force_destroy", value)
|
123
|
+
|
108
124
|
@property
|
109
125
|
@pulumi.getter(name="instanceType")
|
110
126
|
def instance_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -172,6 +188,7 @@ class _InstanceState:
|
|
172
188
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
173
189
|
display_name: Optional[pulumi.Input[str]] = None,
|
174
190
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
191
|
+
force_destroy: Optional[pulumi.Input[bool]] = None,
|
175
192
|
instance_type: Optional[pulumi.Input[str]] = None,
|
176
193
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
177
194
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -190,6 +207,7 @@ class _InstanceState:
|
|
190
207
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
191
208
|
|
192
209
|
-----
|
210
|
+
:param pulumi.Input[bool] force_destroy: Deleting a BigTable instance can be blocked if any backups are present in the instance. When `force_destroy` is set to true, the Provider will delete all backups found in the BigTable instance before attempting to delete the instance itself. Defaults to false.
|
193
211
|
:param pulumi.Input[str] instance_type: The instance type to create. One of `"DEVELOPMENT"` or `"PRODUCTION"`. Defaults to `"PRODUCTION"`.
|
194
212
|
It is recommended to leave this field unspecified since the distinction between `"DEVELOPMENT"` and `"PRODUCTION"` instances is going away,
|
195
213
|
and all instances will become `"PRODUCTION"` instances. This means that new and existing `"DEVELOPMENT"` instances will be converted to
|
@@ -212,6 +230,8 @@ class _InstanceState:
|
|
212
230
|
pulumi.set(__self__, "display_name", display_name)
|
213
231
|
if effective_labels is not None:
|
214
232
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
233
|
+
if force_destroy is not None:
|
234
|
+
pulumi.set(__self__, "force_destroy", force_destroy)
|
215
235
|
if instance_type is not None:
|
216
236
|
warnings.warn("""It is recommended to leave this field unspecified since the distinction between \"DEVELOPMENT\" and \"PRODUCTION\" instances is going away, and all instances will become \"PRODUCTION\" instances. This means that new and existing \"DEVELOPMENT\" instances will be converted to \"PRODUCTION\" instances. It is recommended for users to use \"PRODUCTION\" instances in any case, since a 1-node \"PRODUCTION\" instance is functionally identical to a \"DEVELOPMENT\" instance, but without the accompanying restrictions.""", DeprecationWarning)
|
217
237
|
pulumi.log.warn("""instance_type is deprecated: It is recommended to leave this field unspecified since the distinction between \"DEVELOPMENT\" and \"PRODUCTION\" instances is going away, and all instances will become \"PRODUCTION\" instances. This means that new and existing \"DEVELOPMENT\" instances will be converted to \"PRODUCTION\" instances. It is recommended for users to use \"PRODUCTION\" instances in any case, since a 1-node \"PRODUCTION\" instance is functionally identical to a \"DEVELOPMENT\" instance, but without the accompanying restrictions.""")
|
@@ -281,6 +301,18 @@ class _InstanceState:
|
|
281
301
|
def effective_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
282
302
|
pulumi.set(self, "effective_labels", value)
|
283
303
|
|
304
|
+
@property
|
305
|
+
@pulumi.getter(name="forceDestroy")
|
306
|
+
def force_destroy(self) -> Optional[pulumi.Input[bool]]:
|
307
|
+
"""
|
308
|
+
Deleting a BigTable instance can be blocked if any backups are present in the instance. When `force_destroy` is set to true, the Provider will delete all backups found in the BigTable instance before attempting to delete the instance itself. Defaults to false.
|
309
|
+
"""
|
310
|
+
return pulumi.get(self, "force_destroy")
|
311
|
+
|
312
|
+
@force_destroy.setter
|
313
|
+
def force_destroy(self, value: Optional[pulumi.Input[bool]]):
|
314
|
+
pulumi.set(self, "force_destroy", value)
|
315
|
+
|
284
316
|
@property
|
285
317
|
@pulumi.getter(name="instanceType")
|
286
318
|
def instance_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -361,6 +393,7 @@ class Instance(pulumi.CustomResource):
|
|
361
393
|
clusters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceClusterArgs']]]]] = None,
|
362
394
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
363
395
|
display_name: Optional[pulumi.Input[str]] = None,
|
396
|
+
force_destroy: Optional[pulumi.Input[bool]] = None,
|
364
397
|
instance_type: Optional[pulumi.Input[str]] = None,
|
365
398
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
366
399
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -467,6 +500,7 @@ class Instance(pulumi.CustomResource):
|
|
467
500
|
:param pulumi.Input[bool] deletion_protection: Whether or not to allow this provider to destroy the instance. Unless this field is set to false
|
468
501
|
in the statefile, a `pulumi destroy` or `pulumi up` that would delete the instance will fail.
|
469
502
|
:param pulumi.Input[str] display_name: The human-readable display name of the Bigtable instance. Defaults to the instance `name`.
|
503
|
+
:param pulumi.Input[bool] force_destroy: Deleting a BigTable instance can be blocked if any backups are present in the instance. When `force_destroy` is set to true, the Provider will delete all backups found in the BigTable instance before attempting to delete the instance itself. Defaults to false.
|
470
504
|
:param pulumi.Input[str] instance_type: The instance type to create. One of `"DEVELOPMENT"` or `"PRODUCTION"`. Defaults to `"PRODUCTION"`.
|
471
505
|
It is recommended to leave this field unspecified since the distinction between `"DEVELOPMENT"` and `"PRODUCTION"` instances is going away,
|
472
506
|
and all instances will become `"PRODUCTION"` instances. This means that new and existing `"DEVELOPMENT"` instances will be converted to
|
@@ -595,6 +629,7 @@ class Instance(pulumi.CustomResource):
|
|
595
629
|
clusters: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InstanceClusterArgs']]]]] = None,
|
596
630
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
597
631
|
display_name: Optional[pulumi.Input[str]] = None,
|
632
|
+
force_destroy: Optional[pulumi.Input[bool]] = None,
|
598
633
|
instance_type: Optional[pulumi.Input[str]] = None,
|
599
634
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
600
635
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -611,6 +646,7 @@ class Instance(pulumi.CustomResource):
|
|
611
646
|
__props__.__dict__["clusters"] = clusters
|
612
647
|
__props__.__dict__["deletion_protection"] = deletion_protection
|
613
648
|
__props__.__dict__["display_name"] = display_name
|
649
|
+
__props__.__dict__["force_destroy"] = force_destroy
|
614
650
|
__props__.__dict__["instance_type"] = instance_type
|
615
651
|
__props__.__dict__["labels"] = labels
|
616
652
|
__props__.__dict__["name"] = name
|
@@ -633,6 +669,7 @@ class Instance(pulumi.CustomResource):
|
|
633
669
|
deletion_protection: Optional[pulumi.Input[bool]] = None,
|
634
670
|
display_name: Optional[pulumi.Input[str]] = None,
|
635
671
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
672
|
+
force_destroy: Optional[pulumi.Input[bool]] = None,
|
636
673
|
instance_type: Optional[pulumi.Input[str]] = None,
|
637
674
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
638
675
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -656,6 +693,7 @@ class Instance(pulumi.CustomResource):
|
|
656
693
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
657
694
|
|
658
695
|
-----
|
696
|
+
:param pulumi.Input[bool] force_destroy: Deleting a BigTable instance can be blocked if any backups are present in the instance. When `force_destroy` is set to true, the Provider will delete all backups found in the BigTable instance before attempting to delete the instance itself. Defaults to false.
|
659
697
|
:param pulumi.Input[str] instance_type: The instance type to create. One of `"DEVELOPMENT"` or `"PRODUCTION"`. Defaults to `"PRODUCTION"`.
|
660
698
|
It is recommended to leave this field unspecified since the distinction between `"DEVELOPMENT"` and `"PRODUCTION"` instances is going away,
|
661
699
|
and all instances will become `"PRODUCTION"` instances. This means that new and existing `"DEVELOPMENT"` instances will be converted to
|
@@ -678,6 +716,7 @@ class Instance(pulumi.CustomResource):
|
|
678
716
|
__props__.__dict__["deletion_protection"] = deletion_protection
|
679
717
|
__props__.__dict__["display_name"] = display_name
|
680
718
|
__props__.__dict__["effective_labels"] = effective_labels
|
719
|
+
__props__.__dict__["force_destroy"] = force_destroy
|
681
720
|
__props__.__dict__["instance_type"] = instance_type
|
682
721
|
__props__.__dict__["labels"] = labels
|
683
722
|
__props__.__dict__["name"] = name
|
@@ -724,6 +763,14 @@ class Instance(pulumi.CustomResource):
|
|
724
763
|
"""
|
725
764
|
return pulumi.get(self, "effective_labels")
|
726
765
|
|
766
|
+
@property
|
767
|
+
@pulumi.getter(name="forceDestroy")
|
768
|
+
def force_destroy(self) -> pulumi.Output[Optional[bool]]:
|
769
|
+
"""
|
770
|
+
Deleting a BigTable instance can be blocked if any backups are present in the instance. When `force_destroy` is set to true, the Provider will delete all backups found in the BigTable instance before attempting to delete the instance itself. Defaults to false.
|
771
|
+
"""
|
772
|
+
return pulumi.get(self, "force_destroy")
|
773
|
+
|
727
774
|
@property
|
728
775
|
@pulumi.getter(name="instanceType")
|
729
776
|
def instance_type(self) -> pulumi.Output[Optional[str]]:
|
@@ -1869,12 +1869,14 @@ class TargetExecutionConfigArgs:
|
|
1869
1869
|
artifact_storage: Optional[pulumi.Input[str]] = None,
|
1870
1870
|
execution_timeout: Optional[pulumi.Input[str]] = None,
|
1871
1871
|
service_account: Optional[pulumi.Input[str]] = None,
|
1872
|
+
verbose: Optional[pulumi.Input[bool]] = None,
|
1872
1873
|
worker_pool: Optional[pulumi.Input[str]] = None):
|
1873
1874
|
"""
|
1874
1875
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] usages: Required. Usages when this configuration should be applied.
|
1875
1876
|
:param pulumi.Input[str] artifact_storage: Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
|
1876
1877
|
:param pulumi.Input[str] execution_timeout: Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
|
1877
1878
|
:param pulumi.Input[str] service_account: Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
|
1879
|
+
:param pulumi.Input[bool] verbose: Optional. If true, additional logging will be enabled when running builds in this execution environment.
|
1878
1880
|
:param pulumi.Input[str] worker_pool: Optional. The resource name of the `WorkerPool`, with the format `projects/{project}/locations/{location}/workerPools/{worker_pool}`. If this optional field is unspecified, the default Cloud Build pool will be used.
|
1879
1881
|
"""
|
1880
1882
|
pulumi.set(__self__, "usages", usages)
|
@@ -1884,6 +1886,8 @@ class TargetExecutionConfigArgs:
|
|
1884
1886
|
pulumi.set(__self__, "execution_timeout", execution_timeout)
|
1885
1887
|
if service_account is not None:
|
1886
1888
|
pulumi.set(__self__, "service_account", service_account)
|
1889
|
+
if verbose is not None:
|
1890
|
+
pulumi.set(__self__, "verbose", verbose)
|
1887
1891
|
if worker_pool is not None:
|
1888
1892
|
pulumi.set(__self__, "worker_pool", worker_pool)
|
1889
1893
|
|
@@ -1935,6 +1939,18 @@ class TargetExecutionConfigArgs:
|
|
1935
1939
|
def service_account(self, value: Optional[pulumi.Input[str]]):
|
1936
1940
|
pulumi.set(self, "service_account", value)
|
1937
1941
|
|
1942
|
+
@property
|
1943
|
+
@pulumi.getter
|
1944
|
+
def verbose(self) -> Optional[pulumi.Input[bool]]:
|
1945
|
+
"""
|
1946
|
+
Optional. If true, additional logging will be enabled when running builds in this execution environment.
|
1947
|
+
"""
|
1948
|
+
return pulumi.get(self, "verbose")
|
1949
|
+
|
1950
|
+
@verbose.setter
|
1951
|
+
def verbose(self, value: Optional[pulumi.Input[bool]]):
|
1952
|
+
pulumi.set(self, "verbose", value)
|
1953
|
+
|
1938
1954
|
@property
|
1939
1955
|
@pulumi.getter(name="workerPool")
|
1940
1956
|
def worker_pool(self) -> Optional[pulumi.Input[str]]:
|
@@ -1871,12 +1871,14 @@ class TargetExecutionConfig(dict):
|
|
1871
1871
|
artifact_storage: Optional[str] = None,
|
1872
1872
|
execution_timeout: Optional[str] = None,
|
1873
1873
|
service_account: Optional[str] = None,
|
1874
|
+
verbose: Optional[bool] = None,
|
1874
1875
|
worker_pool: Optional[str] = None):
|
1875
1876
|
"""
|
1876
1877
|
:param Sequence[str] usages: Required. Usages when this configuration should be applied.
|
1877
1878
|
:param str artifact_storage: Optional. Cloud Storage location in which to store execution outputs. This can either be a bucket ("gs://my-bucket") or a path within a bucket ("gs://my-bucket/my-dir"). If unspecified, a default bucket located in the same region will be used.
|
1878
1879
|
:param str execution_timeout: Optional. Execution timeout for a Cloud Build Execution. This must be between 10m and 24h in seconds format. If unspecified, a default timeout of 1h is used.
|
1879
1880
|
:param str service_account: Optional. Google service account to use for execution. If unspecified, the project execution service account (-compute@developer.gserviceaccount.com) is used.
|
1881
|
+
:param bool verbose: Optional. If true, additional logging will be enabled when running builds in this execution environment.
|
1880
1882
|
:param str worker_pool: Optional. The resource name of the `WorkerPool`, with the format `projects/{project}/locations/{location}/workerPools/{worker_pool}`. If this optional field is unspecified, the default Cloud Build pool will be used.
|
1881
1883
|
"""
|
1882
1884
|
pulumi.set(__self__, "usages", usages)
|
@@ -1886,6 +1888,8 @@ class TargetExecutionConfig(dict):
|
|
1886
1888
|
pulumi.set(__self__, "execution_timeout", execution_timeout)
|
1887
1889
|
if service_account is not None:
|
1888
1890
|
pulumi.set(__self__, "service_account", service_account)
|
1891
|
+
if verbose is not None:
|
1892
|
+
pulumi.set(__self__, "verbose", verbose)
|
1889
1893
|
if worker_pool is not None:
|
1890
1894
|
pulumi.set(__self__, "worker_pool", worker_pool)
|
1891
1895
|
|
@@ -1921,6 +1925,14 @@ class TargetExecutionConfig(dict):
|
|
1921
1925
|
"""
|
1922
1926
|
return pulumi.get(self, "service_account")
|
1923
1927
|
|
1928
|
+
@property
|
1929
|
+
@pulumi.getter
|
1930
|
+
def verbose(self) -> Optional[bool]:
|
1931
|
+
"""
|
1932
|
+
Optional. If true, additional logging will be enabled when running builds in this execution environment.
|
1933
|
+
"""
|
1934
|
+
return pulumi.get(self, "verbose")
|
1935
|
+
|
1924
1936
|
@property
|
1925
1937
|
@pulumi.getter(name="workerPool")
|
1926
1938
|
def worker_pool(self) -> Optional[str]:
|
pulumi_gcp/compute/__init__.py
CHANGED
@@ -77,6 +77,7 @@ from .get_resource_policy import *
|
|
77
77
|
from .get_router import *
|
78
78
|
from .get_router_nat import *
|
79
79
|
from .get_router_status import *
|
80
|
+
from .get_security_policy import *
|
80
81
|
from .get_snapshot import *
|
81
82
|
from .get_snapshot_iam_policy import *
|
82
83
|
from .get_ssl_policy import *
|
@@ -135,6 +136,7 @@ from .organization_security_policy_association import *
|
|
135
136
|
from .organization_security_policy_rule import *
|
136
137
|
from .packet_mirroring import *
|
137
138
|
from .per_instance_config import *
|
139
|
+
from .project_cloud_armor_tier import *
|
138
140
|
from .project_default_network_tier import *
|
139
141
|
from .project_metadata import *
|
140
142
|
from .project_metadata_item import *
|