pulumi-gcp 7.21.0__py3-none-any.whl → 7.21.0a1714002516__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 -40
- pulumi_gcp/alloydb/_inputs.py +0 -74
- pulumi_gcp/alloydb/backup.py +12 -0
- pulumi_gcp/alloydb/cluster.py +12 -0
- pulumi_gcp/alloydb/instance.py +81 -90
- pulumi_gcp/alloydb/outputs.py +0 -98
- pulumi_gcp/apigee/environment.py +0 -47
- pulumi_gcp/apigee/sharedflow.py +20 -0
- pulumi_gcp/appengine/flexible_app_version.py +20 -0
- pulumi_gcp/applicationintegration/__init__.py +0 -1
- pulumi_gcp/applicationintegration/_inputs.py +0 -843
- pulumi_gcp/applicationintegration/outputs.py +0 -891
- pulumi_gcp/bigquerydatapolicy/_inputs.py +4 -21
- pulumi_gcp/bigquerydatapolicy/data_policy.py +0 -78
- pulumi_gcp/bigquerydatapolicy/outputs.py +3 -16
- pulumi_gcp/certificateauthority/_inputs.py +12 -92
- pulumi_gcp/certificateauthority/authority.py +27 -117
- pulumi_gcp/certificateauthority/certificate.py +0 -176
- pulumi_gcp/certificateauthority/outputs.py +12 -144
- pulumi_gcp/cloudbuild/worker_pool.py +12 -0
- pulumi_gcp/cloudbuildv2/connection.py +12 -0
- pulumi_gcp/cloudbuildv2/repository.py +12 -0
- pulumi_gcp/clouddeploy/automation.py +12 -0
- pulumi_gcp/clouddeploy/custom_target_type.py +12 -0
- pulumi_gcp/clouddeploy/delivery_pipeline.py +12 -0
- pulumi_gcp/clouddeploy/target.py +12 -0
- pulumi_gcp/cloudrunv2/job.py +12 -0
- pulumi_gcp/cloudrunv2/service.py +12 -0
- pulumi_gcp/composer/__init__.py +0 -1
- pulumi_gcp/composer/environment.py +47 -35
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +58 -121
- pulumi_gcp/compute/forwarding_rule.py +13 -0
- pulumi_gcp/compute/global_address.py +12 -0
- pulumi_gcp/compute/global_forwarding_rule.py +282 -0
- pulumi_gcp/compute/instance_from_machine_image.py +46 -14
- pulumi_gcp/compute/instance_from_template.py +46 -14
- pulumi_gcp/compute/outputs.py +65 -120
- pulumi_gcp/compute/region_instance_template.py +13 -0
- pulumi_gcp/compute/region_target_https_proxy.py +0 -257
- pulumi_gcp/compute/region_url_map.py +470 -0
- pulumi_gcp/container/attached_cluster.py +12 -0
- pulumi_gcp/container/aws_cluster.py +12 -0
- pulumi_gcp/container/aws_node_pool.py +12 -0
- pulumi_gcp/container/azure_cluster.py +12 -0
- pulumi_gcp/container/azure_node_pool.py +12 -0
- pulumi_gcp/container/cluster.py +20 -0
- pulumi_gcp/dataflow/flex_template_job.py +39 -0
- pulumi_gcp/dataloss/__init__.py +0 -1
- pulumi_gcp/dataloss/_inputs.py +0 -1040
- pulumi_gcp/dataloss/outputs.py +0 -1123
- pulumi_gcp/dataproc/cluster.py +20 -0
- pulumi_gcp/dataproc/workflow_template.py +26 -21
- pulumi_gcp/deploymentmanager/deployment.py +34 -0
- pulumi_gcp/dns/_inputs.py +2 -2
- pulumi_gcp/dns/outputs.py +2 -2
- pulumi_gcp/dns/record_set.py +36 -2
- pulumi_gcp/filestore/get_instance.py +1 -11
- pulumi_gcp/filestore/instance.py +0 -101
- pulumi_gcp/firebase/_inputs.py +0 -16
- pulumi_gcp/firebase/android_app.py +27 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +0 -20
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +0 -10
- pulumi_gcp/firebase/app_check_service_config.py +125 -0
- pulumi_gcp/firebase/apple_app.py +27 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +27 -0
- pulumi_gcp/firebase/hosting_version.py +0 -44
- pulumi_gcp/firebase/outputs.py +0 -12
- pulumi_gcp/firebase/web_app.py +20 -0
- pulumi_gcp/firestore/database.py +68 -0
- pulumi_gcp/gkeonprem/bare_metal_admin_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_cluster.py +12 -0
- pulumi_gcp/gkeonprem/bare_metal_node_pool.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_cluster.py +12 -0
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +12 -0
- pulumi_gcp/logging/folder_sink.py +0 -54
- pulumi_gcp/logging/organization_sink.py +0 -54
- pulumi_gcp/monitoring/_inputs.py +2 -46
- pulumi_gcp/monitoring/outputs.py +2 -40
- pulumi_gcp/monitoring/uptime_check_config.py +0 -6
- pulumi_gcp/netapp/active_directory.py +20 -0
- pulumi_gcp/netapp/volume_replication.py +68 -0
- pulumi_gcp/networkconnectivity/__init__.py +0 -1
- pulumi_gcp/provider.py +1 -3
- pulumi_gcp/secretmanager/get_secret.py +3 -13
- pulumi_gcp/secretmanager/outputs.py +1 -20
- pulumi_gcp/secretmanager/secret.py +15 -90
- pulumi_gcp/servicenetworking/connection.py +20 -0
- pulumi_gcp/spanner/database.py +41 -0
- pulumi_gcp/spanner/instance.py +40 -0
- pulumi_gcp/storage/__init__.py +0 -1
- pulumi_gcp/storage/bucket.py +12 -0
- pulumi_gcp/storage/outputs.py +0 -63
- pulumi_gcp/workstations/workstation.py +12 -0
- pulumi_gcp/workstations/workstation_cluster.py +12 -0
- pulumi_gcp/workstations/workstation_config.py +12 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/RECORD +100 -106
- pulumi_gcp/applicationintegration/auth_config.py +0 -998
- pulumi_gcp/composer/user_workloads_secret.py +0 -441
- pulumi_gcp/compute/security_policy_rule.py +0 -850
- pulumi_gcp/dataloss/prevention_discovery_config.py +0 -737
- pulumi_gcp/networkconnectivity/internal_range.py +0 -1024
- pulumi_gcp/storage/get_bucket_objects.py +0 -153
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.21.0.dist-info → pulumi_gcp-7.21.0a1714002516.dist-info}/top_level.txt +0 -0
pulumi_gcp/alloydb/outputs.py
CHANGED
@@ -36,8 +36,6 @@ __all__ = [
|
|
36
36
|
'InstanceClientConnectionConfig',
|
37
37
|
'InstanceClientConnectionConfigSslConfig',
|
38
38
|
'InstanceMachineConfig',
|
39
|
-
'InstanceNetworkConfig',
|
40
|
-
'InstanceNetworkConfigAuthorizedExternalNetwork',
|
41
39
|
'InstanceQueryInsightsConfig',
|
42
40
|
'InstanceReadPoolConfig',
|
43
41
|
'GetLocationsLocationResult',
|
@@ -1291,102 +1289,6 @@ class InstanceMachineConfig(dict):
|
|
1291
1289
|
return pulumi.get(self, "cpu_count")
|
1292
1290
|
|
1293
1291
|
|
1294
|
-
@pulumi.output_type
|
1295
|
-
class InstanceNetworkConfig(dict):
|
1296
|
-
@staticmethod
|
1297
|
-
def __key_warning(key: str):
|
1298
|
-
suggest = None
|
1299
|
-
if key == "authorizedExternalNetworks":
|
1300
|
-
suggest = "authorized_external_networks"
|
1301
|
-
elif key == "enablePublicIp":
|
1302
|
-
suggest = "enable_public_ip"
|
1303
|
-
|
1304
|
-
if suggest:
|
1305
|
-
pulumi.log.warn(f"Key '{key}' not found in InstanceNetworkConfig. Access the value via the '{suggest}' property getter instead.")
|
1306
|
-
|
1307
|
-
def __getitem__(self, key: str) -> Any:
|
1308
|
-
InstanceNetworkConfig.__key_warning(key)
|
1309
|
-
return super().__getitem__(key)
|
1310
|
-
|
1311
|
-
def get(self, key: str, default = None) -> Any:
|
1312
|
-
InstanceNetworkConfig.__key_warning(key)
|
1313
|
-
return super().get(key, default)
|
1314
|
-
|
1315
|
-
def __init__(__self__, *,
|
1316
|
-
authorized_external_networks: Optional[Sequence['outputs.InstanceNetworkConfigAuthorizedExternalNetwork']] = None,
|
1317
|
-
enable_public_ip: Optional[bool] = None):
|
1318
|
-
"""
|
1319
|
-
:param Sequence['InstanceNetworkConfigAuthorizedExternalNetworkArgs'] authorized_external_networks: A list of external networks authorized to access this instance. This
|
1320
|
-
field is only allowed to be set when `enable_public_ip` is set to
|
1321
|
-
true.
|
1322
|
-
Structure is documented below.
|
1323
|
-
:param bool enable_public_ip: Enabling public ip for the instance. If a user wishes to disable this,
|
1324
|
-
please also clear the list of the authorized external networks set on
|
1325
|
-
the same instance.
|
1326
|
-
"""
|
1327
|
-
if authorized_external_networks is not None:
|
1328
|
-
pulumi.set(__self__, "authorized_external_networks", authorized_external_networks)
|
1329
|
-
if enable_public_ip is not None:
|
1330
|
-
pulumi.set(__self__, "enable_public_ip", enable_public_ip)
|
1331
|
-
|
1332
|
-
@property
|
1333
|
-
@pulumi.getter(name="authorizedExternalNetworks")
|
1334
|
-
def authorized_external_networks(self) -> Optional[Sequence['outputs.InstanceNetworkConfigAuthorizedExternalNetwork']]:
|
1335
|
-
"""
|
1336
|
-
A list of external networks authorized to access this instance. This
|
1337
|
-
field is only allowed to be set when `enable_public_ip` is set to
|
1338
|
-
true.
|
1339
|
-
Structure is documented below.
|
1340
|
-
"""
|
1341
|
-
return pulumi.get(self, "authorized_external_networks")
|
1342
|
-
|
1343
|
-
@property
|
1344
|
-
@pulumi.getter(name="enablePublicIp")
|
1345
|
-
def enable_public_ip(self) -> Optional[bool]:
|
1346
|
-
"""
|
1347
|
-
Enabling public ip for the instance. If a user wishes to disable this,
|
1348
|
-
please also clear the list of the authorized external networks set on
|
1349
|
-
the same instance.
|
1350
|
-
"""
|
1351
|
-
return pulumi.get(self, "enable_public_ip")
|
1352
|
-
|
1353
|
-
|
1354
|
-
@pulumi.output_type
|
1355
|
-
class InstanceNetworkConfigAuthorizedExternalNetwork(dict):
|
1356
|
-
@staticmethod
|
1357
|
-
def __key_warning(key: str):
|
1358
|
-
suggest = None
|
1359
|
-
if key == "cidrRange":
|
1360
|
-
suggest = "cidr_range"
|
1361
|
-
|
1362
|
-
if suggest:
|
1363
|
-
pulumi.log.warn(f"Key '{key}' not found in InstanceNetworkConfigAuthorizedExternalNetwork. Access the value via the '{suggest}' property getter instead.")
|
1364
|
-
|
1365
|
-
def __getitem__(self, key: str) -> Any:
|
1366
|
-
InstanceNetworkConfigAuthorizedExternalNetwork.__key_warning(key)
|
1367
|
-
return super().__getitem__(key)
|
1368
|
-
|
1369
|
-
def get(self, key: str, default = None) -> Any:
|
1370
|
-
InstanceNetworkConfigAuthorizedExternalNetwork.__key_warning(key)
|
1371
|
-
return super().get(key, default)
|
1372
|
-
|
1373
|
-
def __init__(__self__, *,
|
1374
|
-
cidr_range: Optional[str] = None):
|
1375
|
-
"""
|
1376
|
-
:param str cidr_range: CIDR range for one authorized network of the instance.
|
1377
|
-
"""
|
1378
|
-
if cidr_range is not None:
|
1379
|
-
pulumi.set(__self__, "cidr_range", cidr_range)
|
1380
|
-
|
1381
|
-
@property
|
1382
|
-
@pulumi.getter(name="cidrRange")
|
1383
|
-
def cidr_range(self) -> Optional[str]:
|
1384
|
-
"""
|
1385
|
-
CIDR range for one authorized network of the instance.
|
1386
|
-
"""
|
1387
|
-
return pulumi.get(self, "cidr_range")
|
1388
|
-
|
1389
|
-
|
1390
1292
|
@pulumi.output_type
|
1391
1293
|
class InstanceQueryInsightsConfig(dict):
|
1392
1294
|
@staticmethod
|
pulumi_gcp/apigee/environment.py
CHANGED
@@ -21,7 +21,6 @@ class EnvironmentArgs:
|
|
21
21
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
22
22
|
description: Optional[pulumi.Input[str]] = None,
|
23
23
|
display_name: Optional[pulumi.Input[str]] = None,
|
24
|
-
forward_proxy_uri: Optional[pulumi.Input[str]] = None,
|
25
24
|
name: Optional[pulumi.Input[str]] = None,
|
26
25
|
node_config: Optional[pulumi.Input['EnvironmentNodeConfigArgs']] = None,
|
27
26
|
type: Optional[pulumi.Input[str]] = None):
|
@@ -45,7 +44,6 @@ class EnvironmentArgs:
|
|
45
44
|
Possible values are: `DEPLOYMENT_TYPE_UNSPECIFIED`, `PROXY`, `ARCHIVE`.
|
46
45
|
:param pulumi.Input[str] description: Description of the environment.
|
47
46
|
:param pulumi.Input[str] display_name: Display name of the environment.
|
48
|
-
:param pulumi.Input[str] forward_proxy_uri: Optional. URI of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that the scheme must be one of "http" or "https", and the port must be supplied.
|
49
47
|
:param pulumi.Input[str] name: The resource ID of the environment.
|
50
48
|
:param pulumi.Input['EnvironmentNodeConfigArgs'] node_config: NodeConfig for setting the min/max number of nodes associated with the environment.
|
51
49
|
Structure is documented below.
|
@@ -64,8 +62,6 @@ class EnvironmentArgs:
|
|
64
62
|
pulumi.set(__self__, "description", description)
|
65
63
|
if display_name is not None:
|
66
64
|
pulumi.set(__self__, "display_name", display_name)
|
67
|
-
if forward_proxy_uri is not None:
|
68
|
-
pulumi.set(__self__, "forward_proxy_uri", forward_proxy_uri)
|
69
65
|
if name is not None:
|
70
66
|
pulumi.set(__self__, "name", name)
|
71
67
|
if node_config is not None:
|
@@ -146,18 +142,6 @@ class EnvironmentArgs:
|
|
146
142
|
def display_name(self, value: Optional[pulumi.Input[str]]):
|
147
143
|
pulumi.set(self, "display_name", value)
|
148
144
|
|
149
|
-
@property
|
150
|
-
@pulumi.getter(name="forwardProxyUri")
|
151
|
-
def forward_proxy_uri(self) -> Optional[pulumi.Input[str]]:
|
152
|
-
"""
|
153
|
-
Optional. URI of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that the scheme must be one of "http" or "https", and the port must be supplied.
|
154
|
-
"""
|
155
|
-
return pulumi.get(self, "forward_proxy_uri")
|
156
|
-
|
157
|
-
@forward_proxy_uri.setter
|
158
|
-
def forward_proxy_uri(self, value: Optional[pulumi.Input[str]]):
|
159
|
-
pulumi.set(self, "forward_proxy_uri", value)
|
160
|
-
|
161
145
|
@property
|
162
146
|
@pulumi.getter
|
163
147
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -207,7 +191,6 @@ class _EnvironmentState:
|
|
207
191
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
208
192
|
description: Optional[pulumi.Input[str]] = None,
|
209
193
|
display_name: Optional[pulumi.Input[str]] = None,
|
210
|
-
forward_proxy_uri: Optional[pulumi.Input[str]] = None,
|
211
194
|
name: Optional[pulumi.Input[str]] = None,
|
212
195
|
node_config: Optional[pulumi.Input['EnvironmentNodeConfigArgs']] = None,
|
213
196
|
org_id: Optional[pulumi.Input[str]] = None,
|
@@ -227,7 +210,6 @@ class _EnvironmentState:
|
|
227
210
|
Possible values are: `DEPLOYMENT_TYPE_UNSPECIFIED`, `PROXY`, `ARCHIVE`.
|
228
211
|
:param pulumi.Input[str] description: Description of the environment.
|
229
212
|
:param pulumi.Input[str] display_name: Display name of the environment.
|
230
|
-
:param pulumi.Input[str] forward_proxy_uri: Optional. URI of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that the scheme must be one of "http" or "https", and the port must be supplied.
|
231
213
|
:param pulumi.Input[str] name: The resource ID of the environment.
|
232
214
|
:param pulumi.Input['EnvironmentNodeConfigArgs'] node_config: NodeConfig for setting the min/max number of nodes associated with the environment.
|
233
215
|
Structure is documented below.
|
@@ -250,8 +232,6 @@ class _EnvironmentState:
|
|
250
232
|
pulumi.set(__self__, "description", description)
|
251
233
|
if display_name is not None:
|
252
234
|
pulumi.set(__self__, "display_name", display_name)
|
253
|
-
if forward_proxy_uri is not None:
|
254
|
-
pulumi.set(__self__, "forward_proxy_uri", forward_proxy_uri)
|
255
235
|
if name is not None:
|
256
236
|
pulumi.set(__self__, "name", name)
|
257
237
|
if node_config is not None:
|
@@ -318,18 +298,6 @@ class _EnvironmentState:
|
|
318
298
|
def display_name(self, value: Optional[pulumi.Input[str]]):
|
319
299
|
pulumi.set(self, "display_name", value)
|
320
300
|
|
321
|
-
@property
|
322
|
-
@pulumi.getter(name="forwardProxyUri")
|
323
|
-
def forward_proxy_uri(self) -> Optional[pulumi.Input[str]]:
|
324
|
-
"""
|
325
|
-
Optional. URI of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that the scheme must be one of "http" or "https", and the port must be supplied.
|
326
|
-
"""
|
327
|
-
return pulumi.get(self, "forward_proxy_uri")
|
328
|
-
|
329
|
-
@forward_proxy_uri.setter
|
330
|
-
def forward_proxy_uri(self, value: Optional[pulumi.Input[str]]):
|
331
|
-
pulumi.set(self, "forward_proxy_uri", value)
|
332
|
-
|
333
301
|
@property
|
334
302
|
@pulumi.getter
|
335
303
|
def name(self) -> Optional[pulumi.Input[str]]:
|
@@ -397,7 +365,6 @@ class Environment(pulumi.CustomResource):
|
|
397
365
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
398
366
|
description: Optional[pulumi.Input[str]] = None,
|
399
367
|
display_name: Optional[pulumi.Input[str]] = None,
|
400
|
-
forward_proxy_uri: Optional[pulumi.Input[str]] = None,
|
401
368
|
name: Optional[pulumi.Input[str]] = None,
|
402
369
|
node_config: Optional[pulumi.Input[pulumi.InputType['EnvironmentNodeConfigArgs']]] = None,
|
403
370
|
org_id: Optional[pulumi.Input[str]] = None,
|
@@ -476,7 +443,6 @@ class Environment(pulumi.CustomResource):
|
|
476
443
|
Possible values are: `DEPLOYMENT_TYPE_UNSPECIFIED`, `PROXY`, `ARCHIVE`.
|
477
444
|
:param pulumi.Input[str] description: Description of the environment.
|
478
445
|
:param pulumi.Input[str] display_name: Display name of the environment.
|
479
|
-
:param pulumi.Input[str] forward_proxy_uri: Optional. URI of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that the scheme must be one of "http" or "https", and the port must be supplied.
|
480
446
|
:param pulumi.Input[str] name: The resource ID of the environment.
|
481
447
|
:param pulumi.Input[pulumi.InputType['EnvironmentNodeConfigArgs']] node_config: NodeConfig for setting the min/max number of nodes associated with the environment.
|
482
448
|
Structure is documented below.
|
@@ -574,7 +540,6 @@ class Environment(pulumi.CustomResource):
|
|
574
540
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
575
541
|
description: Optional[pulumi.Input[str]] = None,
|
576
542
|
display_name: Optional[pulumi.Input[str]] = None,
|
577
|
-
forward_proxy_uri: Optional[pulumi.Input[str]] = None,
|
578
543
|
name: Optional[pulumi.Input[str]] = None,
|
579
544
|
node_config: Optional[pulumi.Input[pulumi.InputType['EnvironmentNodeConfigArgs']]] = None,
|
580
545
|
org_id: Optional[pulumi.Input[str]] = None,
|
@@ -592,7 +557,6 @@ class Environment(pulumi.CustomResource):
|
|
592
557
|
__props__.__dict__["deployment_type"] = deployment_type
|
593
558
|
__props__.__dict__["description"] = description
|
594
559
|
__props__.__dict__["display_name"] = display_name
|
595
|
-
__props__.__dict__["forward_proxy_uri"] = forward_proxy_uri
|
596
560
|
__props__.__dict__["name"] = name
|
597
561
|
__props__.__dict__["node_config"] = node_config
|
598
562
|
if org_id is None and not opts.urn:
|
@@ -613,7 +577,6 @@ class Environment(pulumi.CustomResource):
|
|
613
577
|
deployment_type: Optional[pulumi.Input[str]] = None,
|
614
578
|
description: Optional[pulumi.Input[str]] = None,
|
615
579
|
display_name: Optional[pulumi.Input[str]] = None,
|
616
|
-
forward_proxy_uri: Optional[pulumi.Input[str]] = None,
|
617
580
|
name: Optional[pulumi.Input[str]] = None,
|
618
581
|
node_config: Optional[pulumi.Input[pulumi.InputType['EnvironmentNodeConfigArgs']]] = None,
|
619
582
|
org_id: Optional[pulumi.Input[str]] = None,
|
@@ -638,7 +601,6 @@ class Environment(pulumi.CustomResource):
|
|
638
601
|
Possible values are: `DEPLOYMENT_TYPE_UNSPECIFIED`, `PROXY`, `ARCHIVE`.
|
639
602
|
:param pulumi.Input[str] description: Description of the environment.
|
640
603
|
:param pulumi.Input[str] display_name: Display name of the environment.
|
641
|
-
:param pulumi.Input[str] forward_proxy_uri: Optional. URI of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that the scheme must be one of "http" or "https", and the port must be supplied.
|
642
604
|
:param pulumi.Input[str] name: The resource ID of the environment.
|
643
605
|
:param pulumi.Input[pulumi.InputType['EnvironmentNodeConfigArgs']] node_config: NodeConfig for setting the min/max number of nodes associated with the environment.
|
644
606
|
Structure is documented below.
|
@@ -661,7 +623,6 @@ class Environment(pulumi.CustomResource):
|
|
661
623
|
__props__.__dict__["deployment_type"] = deployment_type
|
662
624
|
__props__.__dict__["description"] = description
|
663
625
|
__props__.__dict__["display_name"] = display_name
|
664
|
-
__props__.__dict__["forward_proxy_uri"] = forward_proxy_uri
|
665
626
|
__props__.__dict__["name"] = name
|
666
627
|
__props__.__dict__["node_config"] = node_config
|
667
628
|
__props__.__dict__["org_id"] = org_id
|
@@ -709,14 +670,6 @@ class Environment(pulumi.CustomResource):
|
|
709
670
|
"""
|
710
671
|
return pulumi.get(self, "display_name")
|
711
672
|
|
712
|
-
@property
|
713
|
-
@pulumi.getter(name="forwardProxyUri")
|
714
|
-
def forward_proxy_uri(self) -> pulumi.Output[Optional[str]]:
|
715
|
-
"""
|
716
|
-
Optional. URI of the forward proxy to be applied to the runtime instances in this environment. Must be in the format of {scheme}://{hostname}:{port}. Note that the scheme must be one of "http" or "https", and the port must be supplied.
|
717
|
-
"""
|
718
|
-
return pulumi.get(self, "forward_proxy_uri")
|
719
|
-
|
720
673
|
@property
|
721
674
|
@pulumi.getter
|
722
675
|
def name(self) -> pulumi.Output[str]:
|
pulumi_gcp/apigee/sharedflow.py
CHANGED
@@ -26,6 +26,8 @@ class SharedflowArgs:
|
|
26
26
|
|
27
27
|
- - -
|
28
28
|
:param pulumi.Input[str] org_id: The Apigee Organization name associated with the Apigee instance.
|
29
|
+
:param pulumi.Input[str] detect_md5hash: A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
30
|
+
will trigger an update.
|
29
31
|
:param pulumi.Input[str] name: The ID of the shared flow.
|
30
32
|
"""
|
31
33
|
pulumi.set(__self__, "config_bundle", config_bundle)
|
@@ -64,6 +66,10 @@ class SharedflowArgs:
|
|
64
66
|
@property
|
65
67
|
@pulumi.getter(name="detectMd5hash")
|
66
68
|
def detect_md5hash(self) -> Optional[pulumi.Input[str]]:
|
69
|
+
"""
|
70
|
+
A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
71
|
+
will trigger an update.
|
72
|
+
"""
|
67
73
|
return pulumi.get(self, "detect_md5hash")
|
68
74
|
|
69
75
|
@detect_md5hash.setter
|
@@ -99,6 +105,8 @@ class _SharedflowState:
|
|
99
105
|
:param pulumi.Input[str] config_bundle: Path to the config zip bundle.
|
100
106
|
|
101
107
|
- - -
|
108
|
+
:param pulumi.Input[str] detect_md5hash: A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
109
|
+
will trigger an update.
|
102
110
|
:param pulumi.Input[str] latest_revision_id: The id of the most recently created revision for this shared flow.
|
103
111
|
:param pulumi.Input[str] md5hash: (Computed) Base 64 MD5 hash of the uploaded data. It is speculative as remote does not return hash of the bundle. Remote changes are detected using returned last_modified timestamp.
|
104
112
|
:param pulumi.Input[Sequence[pulumi.Input['SharedflowMetaDataArgs']]] meta_datas: Metadata describing the shared flow.
|
@@ -141,6 +149,10 @@ class _SharedflowState:
|
|
141
149
|
@property
|
142
150
|
@pulumi.getter(name="detectMd5hash")
|
143
151
|
def detect_md5hash(self) -> Optional[pulumi.Input[str]]:
|
152
|
+
"""
|
153
|
+
A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
154
|
+
will trigger an update.
|
155
|
+
"""
|
144
156
|
return pulumi.get(self, "detect_md5hash")
|
145
157
|
|
146
158
|
@detect_md5hash.setter
|
@@ -263,6 +275,8 @@ class Sharedflow(pulumi.CustomResource):
|
|
263
275
|
:param pulumi.Input[str] config_bundle: Path to the config zip bundle.
|
264
276
|
|
265
277
|
- - -
|
278
|
+
:param pulumi.Input[str] detect_md5hash: A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
279
|
+
will trigger an update.
|
266
280
|
:param pulumi.Input[str] name: The ID of the shared flow.
|
267
281
|
:param pulumi.Input[str] org_id: The Apigee Organization name associated with the Apigee instance.
|
268
282
|
"""
|
@@ -367,6 +381,8 @@ class Sharedflow(pulumi.CustomResource):
|
|
367
381
|
:param pulumi.Input[str] config_bundle: Path to the config zip bundle.
|
368
382
|
|
369
383
|
- - -
|
384
|
+
:param pulumi.Input[str] detect_md5hash: A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
385
|
+
will trigger an update.
|
370
386
|
:param pulumi.Input[str] latest_revision_id: The id of the most recently created revision for this shared flow.
|
371
387
|
:param pulumi.Input[str] md5hash: (Computed) Base 64 MD5 hash of the uploaded data. It is speculative as remote does not return hash of the bundle. Remote changes are detected using returned last_modified timestamp.
|
372
388
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['SharedflowMetaDataArgs']]]] meta_datas: Metadata describing the shared flow.
|
@@ -402,6 +418,10 @@ class Sharedflow(pulumi.CustomResource):
|
|
402
418
|
@property
|
403
419
|
@pulumi.getter(name="detectMd5hash")
|
404
420
|
def detect_md5hash(self) -> pulumi.Output[Optional[str]]:
|
421
|
+
"""
|
422
|
+
A hash of local config bundle in string, user needs to use a Terraform Hash function of their choice. A change in hash
|
423
|
+
will trigger an update.
|
424
|
+
"""
|
405
425
|
return pulumi.get(self, "detect_md5hash")
|
406
426
|
|
407
427
|
@property
|
@@ -62,6 +62,8 @@ class FlexibleAppVersionArgs:
|
|
62
62
|
:param pulumi.Input['FlexibleAppVersionDeploymentArgs'] deployment: Code and application artifacts that make up this version.
|
63
63
|
:param pulumi.Input['FlexibleAppVersionEndpointsApiServiceArgs'] endpoints_api_service: Code and application artifacts that make up this version.
|
64
64
|
:param pulumi.Input['FlexibleAppVersionEntrypointArgs'] entrypoint: The entrypoint for the application.
|
65
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] env_variables: Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
66
|
+
detect any changes made outside of the Terraform config.
|
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",
|
@@ -294,6 +296,10 @@ class FlexibleAppVersionArgs:
|
|
294
296
|
@property
|
295
297
|
@pulumi.getter(name="envVariables")
|
296
298
|
def env_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
299
|
+
"""
|
300
|
+
Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
301
|
+
detect any changes made outside of the Terraform config.
|
302
|
+
"""
|
297
303
|
return pulumi.get(self, "env_variables")
|
298
304
|
|
299
305
|
@env_variables.setter
|
@@ -545,6 +551,8 @@ class _FlexibleAppVersionState:
|
|
545
551
|
:param pulumi.Input['FlexibleAppVersionDeploymentArgs'] deployment: Code and application artifacts that make up this version.
|
546
552
|
:param pulumi.Input['FlexibleAppVersionEndpointsApiServiceArgs'] endpoints_api_service: Code and application artifacts that make up this version.
|
547
553
|
:param pulumi.Input['FlexibleAppVersionEntrypointArgs'] entrypoint: The entrypoint for the application.
|
554
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] env_variables: Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
555
|
+
detect any changes made outside of the Terraform config.
|
548
556
|
: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
557
|
request and other request handlers are not attempted.
|
550
558
|
: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",
|
@@ -740,6 +748,10 @@ class _FlexibleAppVersionState:
|
|
740
748
|
@property
|
741
749
|
@pulumi.getter(name="envVariables")
|
742
750
|
def env_variables(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
751
|
+
"""
|
752
|
+
Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
753
|
+
detect any changes made outside of the Terraform config.
|
754
|
+
"""
|
743
755
|
return pulumi.get(self, "env_variables")
|
744
756
|
|
745
757
|
@env_variables.setter
|
@@ -1180,6 +1192,8 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1180
1192
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionDeploymentArgs']] deployment: Code and application artifacts that make up this version.
|
1181
1193
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEndpointsApiServiceArgs']] endpoints_api_service: Code and application artifacts that make up this version.
|
1182
1194
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEntrypointArgs']] entrypoint: The entrypoint for the application.
|
1195
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] env_variables: Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
1196
|
+
detect any changes made outside of the Terraform config.
|
1183
1197
|
: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
1198
|
request and other request handlers are not attempted.
|
1185
1199
|
: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",
|
@@ -1491,6 +1505,8 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1491
1505
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionDeploymentArgs']] deployment: Code and application artifacts that make up this version.
|
1492
1506
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEndpointsApiServiceArgs']] endpoints_api_service: Code and application artifacts that make up this version.
|
1493
1507
|
:param pulumi.Input[pulumi.InputType['FlexibleAppVersionEntrypointArgs']] entrypoint: The entrypoint for the application.
|
1508
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] env_variables: Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
1509
|
+
detect any changes made outside of the Terraform config.
|
1494
1510
|
: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
1511
|
request and other request handlers are not attempted.
|
1496
1512
|
: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",
|
@@ -1629,6 +1645,10 @@ class FlexibleAppVersion(pulumi.CustomResource):
|
|
1629
1645
|
@property
|
1630
1646
|
@pulumi.getter(name="envVariables")
|
1631
1647
|
def env_variables(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1648
|
+
"""
|
1649
|
+
Environment variables available to the application. As these are not returned in the API request, Terraform will not
|
1650
|
+
detect any changes made outside of the Terraform config.
|
1651
|
+
"""
|
1632
1652
|
return pulumi.get(self, "env_variables")
|
1633
1653
|
|
1634
1654
|
@property
|