pulumi-gcp 8.3.1a1727284265__py3-none-any.whl → 8.4.0a1727795436__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 +24 -0
- pulumi_gcp/apigee/nat_address.py +155 -2
- pulumi_gcp/bigquery/_inputs.py +102 -0
- pulumi_gcp/bigquery/outputs.py +83 -0
- pulumi_gcp/bigquery/table.py +47 -0
- pulumi_gcp/cloudrun/_inputs.py +26 -0
- pulumi_gcp/cloudrun/outputs.py +33 -0
- pulumi_gcp/cloudrun/service.py +76 -0
- pulumi_gcp/cloudrunv2/_inputs.py +65 -9
- pulumi_gcp/cloudrunv2/outputs.py +73 -8
- pulumi_gcp/cloudrunv2/service.py +64 -0
- pulumi_gcp/compute/__init__.py +3 -0
- pulumi_gcp/compute/_inputs.py +1941 -2
- pulumi_gcp/compute/get_region_instance_group_manager.py +438 -0
- pulumi_gcp/compute/get_router_nat.py +11 -1
- pulumi_gcp/compute/instance.py +7 -7
- pulumi_gcp/compute/instance_from_machine_image.py +7 -7
- pulumi_gcp/compute/instance_from_template.py +7 -7
- pulumi_gcp/compute/interconnect.py +76 -64
- pulumi_gcp/compute/outputs.py +4637 -2640
- pulumi_gcp/compute/region_commitment.py +47 -0
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +835 -0
- pulumi_gcp/compute/router_nat.py +56 -2
- pulumi_gcp/compute/router_nat_address.py +514 -0
- pulumi_gcp/compute/subnetwork.py +14 -14
- pulumi_gcp/container/_inputs.py +222 -0
- pulumi_gcp/container/outputs.py +279 -2
- pulumi_gcp/logging/__init__.py +1 -0
- pulumi_gcp/logging/log_scope.py +492 -0
- pulumi_gcp/looker/_inputs.py +157 -0
- pulumi_gcp/looker/instance.py +143 -0
- pulumi_gcp/looker/outputs.py +136 -0
- pulumi_gcp/networkconnectivity/_inputs.py +72 -3
- pulumi_gcp/networkconnectivity/outputs.py +51 -3
- pulumi_gcp/networkconnectivity/spoke.py +310 -0
- pulumi_gcp/networksecurity/security_profile.py +2 -2
- pulumi_gcp/privilegedaccessmanager/__init__.py +1 -0
- pulumi_gcp/privilegedaccessmanager/get_entitlement.py +219 -0
- pulumi_gcp/privilegedaccessmanager/outputs.py +312 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/__init__.py +2 -0
- pulumi_gcp/secretmanager/get_regional_secret_version.py +2 -2
- pulumi_gcp/secretmanager/get_regional_secret_version_access.py +188 -0
- pulumi_gcp/secretmanager/get_regional_secrets.py +156 -0
- pulumi_gcp/secretmanager/outputs.py +265 -0
- {pulumi_gcp-8.3.1a1727284265.dist-info → pulumi_gcp-8.4.0a1727795436.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.3.1a1727284265.dist-info → pulumi_gcp-8.4.0a1727795436.dist-info}/RECORD +49 -42
- {pulumi_gcp-8.3.1a1727284265.dist-info → pulumi_gcp-8.4.0a1727795436.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.3.1a1727284265.dist-info → pulumi_gcp-8.4.0a1727795436.dist-info}/top_level.txt +0 -0
pulumi_gcp/looker/instance.py
CHANGED
@@ -33,6 +33,8 @@ class InstanceArgs:
|
|
33
33
|
platform_edition: Optional[pulumi.Input[str]] = None,
|
34
34
|
private_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
35
35
|
project: Optional[pulumi.Input[str]] = None,
|
36
|
+
psc_config: Optional[pulumi.Input['InstancePscConfigArgs']] = None,
|
37
|
+
psc_enabled: Optional[pulumi.Input[bool]] = None,
|
36
38
|
public_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
37
39
|
region: Optional[pulumi.Input[str]] = None,
|
38
40
|
reserved_range: Optional[pulumi.Input[str]] = None,
|
@@ -75,6 +77,9 @@ class InstanceArgs:
|
|
75
77
|
:param pulumi.Input[bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
|
76
78
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
77
79
|
If it is not provided, the provider project is used.
|
80
|
+
:param pulumi.Input['InstancePscConfigArgs'] psc_config: Information for Private Service Connect (PSC) setup for a Looker instance.
|
81
|
+
Structure is documented below.
|
82
|
+
:param pulumi.Input[bool] psc_enabled: Whether Public Service Connect (PSC) is enabled on the Looker instance
|
78
83
|
:param pulumi.Input[bool] public_ip_enabled: Whether public IP is enabled on the Looker instance.
|
79
84
|
:param pulumi.Input[str] region: The name of the Looker region of the instance.
|
80
85
|
:param pulumi.Input[str] reserved_range: Name of a reserved IP address range within the consumer network, to be used for
|
@@ -112,6 +117,10 @@ class InstanceArgs:
|
|
112
117
|
pulumi.set(__self__, "private_ip_enabled", private_ip_enabled)
|
113
118
|
if project is not None:
|
114
119
|
pulumi.set(__self__, "project", project)
|
120
|
+
if psc_config is not None:
|
121
|
+
pulumi.set(__self__, "psc_config", psc_config)
|
122
|
+
if psc_enabled is not None:
|
123
|
+
pulumi.set(__self__, "psc_enabled", psc_enabled)
|
115
124
|
if public_ip_enabled is not None:
|
116
125
|
pulumi.set(__self__, "public_ip_enabled", public_ip_enabled)
|
117
126
|
if region is not None:
|
@@ -289,6 +298,31 @@ class InstanceArgs:
|
|
289
298
|
def project(self, value: Optional[pulumi.Input[str]]):
|
290
299
|
pulumi.set(self, "project", value)
|
291
300
|
|
301
|
+
@property
|
302
|
+
@pulumi.getter(name="pscConfig")
|
303
|
+
def psc_config(self) -> Optional[pulumi.Input['InstancePscConfigArgs']]:
|
304
|
+
"""
|
305
|
+
Information for Private Service Connect (PSC) setup for a Looker instance.
|
306
|
+
Structure is documented below.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "psc_config")
|
309
|
+
|
310
|
+
@psc_config.setter
|
311
|
+
def psc_config(self, value: Optional[pulumi.Input['InstancePscConfigArgs']]):
|
312
|
+
pulumi.set(self, "psc_config", value)
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter(name="pscEnabled")
|
316
|
+
def psc_enabled(self) -> Optional[pulumi.Input[bool]]:
|
317
|
+
"""
|
318
|
+
Whether Public Service Connect (PSC) is enabled on the Looker instance
|
319
|
+
"""
|
320
|
+
return pulumi.get(self, "psc_enabled")
|
321
|
+
|
322
|
+
@psc_enabled.setter
|
323
|
+
def psc_enabled(self, value: Optional[pulumi.Input[bool]]):
|
324
|
+
pulumi.set(self, "psc_enabled", value)
|
325
|
+
|
292
326
|
@property
|
293
327
|
@pulumi.getter(name="publicIpEnabled")
|
294
328
|
def public_ip_enabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -367,6 +401,8 @@ class _InstanceState:
|
|
367
401
|
platform_edition: Optional[pulumi.Input[str]] = None,
|
368
402
|
private_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
369
403
|
project: Optional[pulumi.Input[str]] = None,
|
404
|
+
psc_config: Optional[pulumi.Input['InstancePscConfigArgs']] = None,
|
405
|
+
psc_enabled: Optional[pulumi.Input[bool]] = None,
|
370
406
|
public_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
371
407
|
region: Optional[pulumi.Input[str]] = None,
|
372
408
|
reserved_range: Optional[pulumi.Input[str]] = None,
|
@@ -417,6 +453,9 @@ class _InstanceState:
|
|
417
453
|
:param pulumi.Input[bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
|
418
454
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
419
455
|
If it is not provided, the provider project is used.
|
456
|
+
:param pulumi.Input['InstancePscConfigArgs'] psc_config: Information for Private Service Connect (PSC) setup for a Looker instance.
|
457
|
+
Structure is documented below.
|
458
|
+
:param pulumi.Input[bool] psc_enabled: Whether Public Service Connect (PSC) is enabled on the Looker instance
|
420
459
|
:param pulumi.Input[bool] public_ip_enabled: Whether public IP is enabled on the Looker instance.
|
421
460
|
:param pulumi.Input[str] region: The name of the Looker region of the instance.
|
422
461
|
:param pulumi.Input[str] reserved_range: Name of a reserved IP address range within the consumer network, to be used for
|
@@ -468,6 +507,10 @@ class _InstanceState:
|
|
468
507
|
pulumi.set(__self__, "private_ip_enabled", private_ip_enabled)
|
469
508
|
if project is not None:
|
470
509
|
pulumi.set(__self__, "project", project)
|
510
|
+
if psc_config is not None:
|
511
|
+
pulumi.set(__self__, "psc_config", psc_config)
|
512
|
+
if psc_enabled is not None:
|
513
|
+
pulumi.set(__self__, "psc_enabled", psc_enabled)
|
471
514
|
if public_ip_enabled is not None:
|
472
515
|
pulumi.set(__self__, "public_ip_enabled", public_ip_enabled)
|
473
516
|
if region is not None:
|
@@ -720,6 +763,31 @@ class _InstanceState:
|
|
720
763
|
def project(self, value: Optional[pulumi.Input[str]]):
|
721
764
|
pulumi.set(self, "project", value)
|
722
765
|
|
766
|
+
@property
|
767
|
+
@pulumi.getter(name="pscConfig")
|
768
|
+
def psc_config(self) -> Optional[pulumi.Input['InstancePscConfigArgs']]:
|
769
|
+
"""
|
770
|
+
Information for Private Service Connect (PSC) setup for a Looker instance.
|
771
|
+
Structure is documented below.
|
772
|
+
"""
|
773
|
+
return pulumi.get(self, "psc_config")
|
774
|
+
|
775
|
+
@psc_config.setter
|
776
|
+
def psc_config(self, value: Optional[pulumi.Input['InstancePscConfigArgs']]):
|
777
|
+
pulumi.set(self, "psc_config", value)
|
778
|
+
|
779
|
+
@property
|
780
|
+
@pulumi.getter(name="pscEnabled")
|
781
|
+
def psc_enabled(self) -> Optional[pulumi.Input[bool]]:
|
782
|
+
"""
|
783
|
+
Whether Public Service Connect (PSC) is enabled on the Looker instance
|
784
|
+
"""
|
785
|
+
return pulumi.get(self, "psc_enabled")
|
786
|
+
|
787
|
+
@psc_enabled.setter
|
788
|
+
def psc_enabled(self, value: Optional[pulumi.Input[bool]]):
|
789
|
+
pulumi.set(self, "psc_enabled", value)
|
790
|
+
|
723
791
|
@property
|
724
792
|
@pulumi.getter(name="publicIpEnabled")
|
725
793
|
def public_ip_enabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -807,6 +875,8 @@ class Instance(pulumi.CustomResource):
|
|
807
875
|
platform_edition: Optional[pulumi.Input[str]] = None,
|
808
876
|
private_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
809
877
|
project: Optional[pulumi.Input[str]] = None,
|
878
|
+
psc_config: Optional[pulumi.Input[Union['InstancePscConfigArgs', 'InstancePscConfigArgsDict']]] = None,
|
879
|
+
psc_enabled: Optional[pulumi.Input[bool]] = None,
|
810
880
|
public_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
811
881
|
region: Optional[pulumi.Input[str]] = None,
|
812
882
|
reserved_range: Optional[pulumi.Input[str]] = None,
|
@@ -989,6 +1059,27 @@ class Instance(pulumi.CustomResource):
|
|
989
1059
|
"domain": "my-custom-domain.com",
|
990
1060
|
})
|
991
1061
|
```
|
1062
|
+
### Looker Instance Psc
|
1063
|
+
|
1064
|
+
```python
|
1065
|
+
import pulumi
|
1066
|
+
import pulumi_gcp as gcp
|
1067
|
+
|
1068
|
+
looker_instance = gcp.looker.Instance("looker-instance",
|
1069
|
+
name="my-instance",
|
1070
|
+
platform_edition="LOOKER_CORE_ENTERPRISE_ANNUAL",
|
1071
|
+
region="us-central1",
|
1072
|
+
private_ip_enabled=False,
|
1073
|
+
public_ip_enabled=False,
|
1074
|
+
psc_enabled=True,
|
1075
|
+
oauth_config={
|
1076
|
+
"client_id": "my-client-id",
|
1077
|
+
"client_secret": "my-client-secret",
|
1078
|
+
},
|
1079
|
+
psc_config={
|
1080
|
+
"allowed_vpcs": ["projects/test-project/global/networks/test"],
|
1081
|
+
})
|
1082
|
+
```
|
992
1083
|
|
993
1084
|
## Import
|
994
1085
|
|
@@ -1058,6 +1149,9 @@ class Instance(pulumi.CustomResource):
|
|
1058
1149
|
:param pulumi.Input[bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
|
1059
1150
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1060
1151
|
If it is not provided, the provider project is used.
|
1152
|
+
:param pulumi.Input[Union['InstancePscConfigArgs', 'InstancePscConfigArgsDict']] psc_config: Information for Private Service Connect (PSC) setup for a Looker instance.
|
1153
|
+
Structure is documented below.
|
1154
|
+
:param pulumi.Input[bool] psc_enabled: Whether Public Service Connect (PSC) is enabled on the Looker instance
|
1061
1155
|
:param pulumi.Input[bool] public_ip_enabled: Whether public IP is enabled on the Looker instance.
|
1062
1156
|
:param pulumi.Input[str] region: The name of the Looker region of the instance.
|
1063
1157
|
:param pulumi.Input[str] reserved_range: Name of a reserved IP address range within the consumer network, to be used for
|
@@ -1254,6 +1348,27 @@ class Instance(pulumi.CustomResource):
|
|
1254
1348
|
"domain": "my-custom-domain.com",
|
1255
1349
|
})
|
1256
1350
|
```
|
1351
|
+
### Looker Instance Psc
|
1352
|
+
|
1353
|
+
```python
|
1354
|
+
import pulumi
|
1355
|
+
import pulumi_gcp as gcp
|
1356
|
+
|
1357
|
+
looker_instance = gcp.looker.Instance("looker-instance",
|
1358
|
+
name="my-instance",
|
1359
|
+
platform_edition="LOOKER_CORE_ENTERPRISE_ANNUAL",
|
1360
|
+
region="us-central1",
|
1361
|
+
private_ip_enabled=False,
|
1362
|
+
public_ip_enabled=False,
|
1363
|
+
psc_enabled=True,
|
1364
|
+
oauth_config={
|
1365
|
+
"client_id": "my-client-id",
|
1366
|
+
"client_secret": "my-client-secret",
|
1367
|
+
},
|
1368
|
+
psc_config={
|
1369
|
+
"allowed_vpcs": ["projects/test-project/global/networks/test"],
|
1370
|
+
})
|
1371
|
+
```
|
1257
1372
|
|
1258
1373
|
## Import
|
1259
1374
|
|
@@ -1312,6 +1427,8 @@ class Instance(pulumi.CustomResource):
|
|
1312
1427
|
platform_edition: Optional[pulumi.Input[str]] = None,
|
1313
1428
|
private_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
1314
1429
|
project: Optional[pulumi.Input[str]] = None,
|
1430
|
+
psc_config: Optional[pulumi.Input[Union['InstancePscConfigArgs', 'InstancePscConfigArgsDict']]] = None,
|
1431
|
+
psc_enabled: Optional[pulumi.Input[bool]] = None,
|
1315
1432
|
public_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
1316
1433
|
region: Optional[pulumi.Input[str]] = None,
|
1317
1434
|
reserved_range: Optional[pulumi.Input[str]] = None,
|
@@ -1337,6 +1454,8 @@ class Instance(pulumi.CustomResource):
|
|
1337
1454
|
__props__.__dict__["platform_edition"] = platform_edition
|
1338
1455
|
__props__.__dict__["private_ip_enabled"] = private_ip_enabled
|
1339
1456
|
__props__.__dict__["project"] = project
|
1457
|
+
__props__.__dict__["psc_config"] = psc_config
|
1458
|
+
__props__.__dict__["psc_enabled"] = psc_enabled
|
1340
1459
|
__props__.__dict__["public_ip_enabled"] = public_ip_enabled
|
1341
1460
|
__props__.__dict__["region"] = region
|
1342
1461
|
__props__.__dict__["reserved_range"] = reserved_range
|
@@ -1376,6 +1495,8 @@ class Instance(pulumi.CustomResource):
|
|
1376
1495
|
platform_edition: Optional[pulumi.Input[str]] = None,
|
1377
1496
|
private_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
1378
1497
|
project: Optional[pulumi.Input[str]] = None,
|
1498
|
+
psc_config: Optional[pulumi.Input[Union['InstancePscConfigArgs', 'InstancePscConfigArgsDict']]] = None,
|
1499
|
+
psc_enabled: Optional[pulumi.Input[bool]] = None,
|
1379
1500
|
public_ip_enabled: Optional[pulumi.Input[bool]] = None,
|
1380
1501
|
region: Optional[pulumi.Input[str]] = None,
|
1381
1502
|
reserved_range: Optional[pulumi.Input[str]] = None,
|
@@ -1431,6 +1552,9 @@ class Instance(pulumi.CustomResource):
|
|
1431
1552
|
:param pulumi.Input[bool] private_ip_enabled: Whether private IP is enabled on the Looker instance.
|
1432
1553
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1433
1554
|
If it is not provided, the provider project is used.
|
1555
|
+
:param pulumi.Input[Union['InstancePscConfigArgs', 'InstancePscConfigArgsDict']] psc_config: Information for Private Service Connect (PSC) setup for a Looker instance.
|
1556
|
+
Structure is documented below.
|
1557
|
+
:param pulumi.Input[bool] psc_enabled: Whether Public Service Connect (PSC) is enabled on the Looker instance
|
1434
1558
|
:param pulumi.Input[bool] public_ip_enabled: Whether public IP is enabled on the Looker instance.
|
1435
1559
|
:param pulumi.Input[str] region: The name of the Looker region of the instance.
|
1436
1560
|
:param pulumi.Input[str] reserved_range: Name of a reserved IP address range within the consumer network, to be used for
|
@@ -1468,6 +1592,8 @@ class Instance(pulumi.CustomResource):
|
|
1468
1592
|
__props__.__dict__["platform_edition"] = platform_edition
|
1469
1593
|
__props__.__dict__["private_ip_enabled"] = private_ip_enabled
|
1470
1594
|
__props__.__dict__["project"] = project
|
1595
|
+
__props__.__dict__["psc_config"] = psc_config
|
1596
|
+
__props__.__dict__["psc_enabled"] = psc_enabled
|
1471
1597
|
__props__.__dict__["public_ip_enabled"] = public_ip_enabled
|
1472
1598
|
__props__.__dict__["region"] = region
|
1473
1599
|
__props__.__dict__["reserved_range"] = reserved_range
|
@@ -1644,6 +1770,23 @@ class Instance(pulumi.CustomResource):
|
|
1644
1770
|
"""
|
1645
1771
|
return pulumi.get(self, "project")
|
1646
1772
|
|
1773
|
+
@property
|
1774
|
+
@pulumi.getter(name="pscConfig")
|
1775
|
+
def psc_config(self) -> pulumi.Output[Optional['outputs.InstancePscConfig']]:
|
1776
|
+
"""
|
1777
|
+
Information for Private Service Connect (PSC) setup for a Looker instance.
|
1778
|
+
Structure is documented below.
|
1779
|
+
"""
|
1780
|
+
return pulumi.get(self, "psc_config")
|
1781
|
+
|
1782
|
+
@property
|
1783
|
+
@pulumi.getter(name="pscEnabled")
|
1784
|
+
def psc_enabled(self) -> pulumi.Output[Optional[bool]]:
|
1785
|
+
"""
|
1786
|
+
Whether Public Service Connect (PSC) is enabled on the Looker instance
|
1787
|
+
"""
|
1788
|
+
return pulumi.get(self, "psc_enabled")
|
1789
|
+
|
1647
1790
|
@property
|
1648
1791
|
@pulumi.getter(name="publicIpEnabled")
|
1649
1792
|
def public_ip_enabled(self) -> pulumi.Output[Optional[bool]]:
|
pulumi_gcp/looker/outputs.py
CHANGED
@@ -26,6 +26,8 @@ __all__ = [
|
|
26
26
|
'InstanceMaintenanceWindow',
|
27
27
|
'InstanceMaintenanceWindowStartTime',
|
28
28
|
'InstanceOauthConfig',
|
29
|
+
'InstancePscConfig',
|
30
|
+
'InstancePscConfigServiceAttachment',
|
29
31
|
'InstanceUserMetadata',
|
30
32
|
]
|
31
33
|
|
@@ -547,6 +549,140 @@ class InstanceOauthConfig(dict):
|
|
547
549
|
return pulumi.get(self, "client_secret")
|
548
550
|
|
549
551
|
|
552
|
+
@pulumi.output_type
|
553
|
+
class InstancePscConfig(dict):
|
554
|
+
@staticmethod
|
555
|
+
def __key_warning(key: str):
|
556
|
+
suggest = None
|
557
|
+
if key == "allowedVpcs":
|
558
|
+
suggest = "allowed_vpcs"
|
559
|
+
elif key == "lookerServiceAttachmentUri":
|
560
|
+
suggest = "looker_service_attachment_uri"
|
561
|
+
elif key == "serviceAttachments":
|
562
|
+
suggest = "service_attachments"
|
563
|
+
|
564
|
+
if suggest:
|
565
|
+
pulumi.log.warn(f"Key '{key}' not found in InstancePscConfig. Access the value via the '{suggest}' property getter instead.")
|
566
|
+
|
567
|
+
def __getitem__(self, key: str) -> Any:
|
568
|
+
InstancePscConfig.__key_warning(key)
|
569
|
+
return super().__getitem__(key)
|
570
|
+
|
571
|
+
def get(self, key: str, default = None) -> Any:
|
572
|
+
InstancePscConfig.__key_warning(key)
|
573
|
+
return super().get(key, default)
|
574
|
+
|
575
|
+
def __init__(__self__, *,
|
576
|
+
allowed_vpcs: Optional[Sequence[str]] = None,
|
577
|
+
looker_service_attachment_uri: Optional[str] = None,
|
578
|
+
service_attachments: Optional[Sequence['outputs.InstancePscConfigServiceAttachment']] = None):
|
579
|
+
"""
|
580
|
+
:param Sequence[str] allowed_vpcs: List of VPCs that are allowed ingress into the Looker instance.
|
581
|
+
:param str looker_service_attachment_uri: (Output)
|
582
|
+
URI of the Looker service attachment.
|
583
|
+
:param Sequence['InstancePscConfigServiceAttachmentArgs'] service_attachments: List of egress service attachment configurations.
|
584
|
+
Structure is documented below.
|
585
|
+
"""
|
586
|
+
if allowed_vpcs is not None:
|
587
|
+
pulumi.set(__self__, "allowed_vpcs", allowed_vpcs)
|
588
|
+
if looker_service_attachment_uri is not None:
|
589
|
+
pulumi.set(__self__, "looker_service_attachment_uri", looker_service_attachment_uri)
|
590
|
+
if service_attachments is not None:
|
591
|
+
pulumi.set(__self__, "service_attachments", service_attachments)
|
592
|
+
|
593
|
+
@property
|
594
|
+
@pulumi.getter(name="allowedVpcs")
|
595
|
+
def allowed_vpcs(self) -> Optional[Sequence[str]]:
|
596
|
+
"""
|
597
|
+
List of VPCs that are allowed ingress into the Looker instance.
|
598
|
+
"""
|
599
|
+
return pulumi.get(self, "allowed_vpcs")
|
600
|
+
|
601
|
+
@property
|
602
|
+
@pulumi.getter(name="lookerServiceAttachmentUri")
|
603
|
+
def looker_service_attachment_uri(self) -> Optional[str]:
|
604
|
+
"""
|
605
|
+
(Output)
|
606
|
+
URI of the Looker service attachment.
|
607
|
+
"""
|
608
|
+
return pulumi.get(self, "looker_service_attachment_uri")
|
609
|
+
|
610
|
+
@property
|
611
|
+
@pulumi.getter(name="serviceAttachments")
|
612
|
+
def service_attachments(self) -> Optional[Sequence['outputs.InstancePscConfigServiceAttachment']]:
|
613
|
+
"""
|
614
|
+
List of egress service attachment configurations.
|
615
|
+
Structure is documented below.
|
616
|
+
"""
|
617
|
+
return pulumi.get(self, "service_attachments")
|
618
|
+
|
619
|
+
|
620
|
+
@pulumi.output_type
|
621
|
+
class InstancePscConfigServiceAttachment(dict):
|
622
|
+
@staticmethod
|
623
|
+
def __key_warning(key: str):
|
624
|
+
suggest = None
|
625
|
+
if key == "connectionStatus":
|
626
|
+
suggest = "connection_status"
|
627
|
+
elif key == "localFqdn":
|
628
|
+
suggest = "local_fqdn"
|
629
|
+
elif key == "targetServiceAttachmentUri":
|
630
|
+
suggest = "target_service_attachment_uri"
|
631
|
+
|
632
|
+
if suggest:
|
633
|
+
pulumi.log.warn(f"Key '{key}' not found in InstancePscConfigServiceAttachment. Access the value via the '{suggest}' property getter instead.")
|
634
|
+
|
635
|
+
def __getitem__(self, key: str) -> Any:
|
636
|
+
InstancePscConfigServiceAttachment.__key_warning(key)
|
637
|
+
return super().__getitem__(key)
|
638
|
+
|
639
|
+
def get(self, key: str, default = None) -> Any:
|
640
|
+
InstancePscConfigServiceAttachment.__key_warning(key)
|
641
|
+
return super().get(key, default)
|
642
|
+
|
643
|
+
def __init__(__self__, *,
|
644
|
+
connection_status: Optional[str] = None,
|
645
|
+
local_fqdn: Optional[str] = None,
|
646
|
+
target_service_attachment_uri: Optional[str] = None):
|
647
|
+
"""
|
648
|
+
:param str connection_status: (Output)
|
649
|
+
Status of the service attachment connection.
|
650
|
+
:param str local_fqdn: Fully qualified domain name that will be used in the private DNS record created for the service attachment.
|
651
|
+
:param str target_service_attachment_uri: URI of the service attachment to connect to.
|
652
|
+
"""
|
653
|
+
if connection_status is not None:
|
654
|
+
pulumi.set(__self__, "connection_status", connection_status)
|
655
|
+
if local_fqdn is not None:
|
656
|
+
pulumi.set(__self__, "local_fqdn", local_fqdn)
|
657
|
+
if target_service_attachment_uri is not None:
|
658
|
+
pulumi.set(__self__, "target_service_attachment_uri", target_service_attachment_uri)
|
659
|
+
|
660
|
+
@property
|
661
|
+
@pulumi.getter(name="connectionStatus")
|
662
|
+
def connection_status(self) -> Optional[str]:
|
663
|
+
"""
|
664
|
+
(Output)
|
665
|
+
Status of the service attachment connection.
|
666
|
+
"""
|
667
|
+
return pulumi.get(self, "connection_status")
|
668
|
+
|
669
|
+
@property
|
670
|
+
@pulumi.getter(name="localFqdn")
|
671
|
+
def local_fqdn(self) -> Optional[str]:
|
672
|
+
"""
|
673
|
+
Fully qualified domain name that will be used in the private DNS record created for the service attachment.
|
674
|
+
"""
|
675
|
+
return pulumi.get(self, "local_fqdn")
|
676
|
+
|
677
|
+
@property
|
678
|
+
@pulumi.getter(name="targetServiceAttachmentUri")
|
679
|
+
def target_service_attachment_uri(self) -> Optional[str]:
|
680
|
+
"""
|
681
|
+
URI of the service attachment to connect to.
|
682
|
+
"""
|
683
|
+
return pulumi.get(self, "target_service_attachment_uri")
|
684
|
+
|
685
|
+
|
550
686
|
@pulumi.output_type
|
551
687
|
class InstanceUserMetadata(dict):
|
552
688
|
@staticmethod
|
@@ -737,6 +737,11 @@ if not MYPY:
|
|
737
737
|
"""
|
738
738
|
The URIs of linked interconnect attachment resources
|
739
739
|
"""
|
740
|
+
include_import_ranges: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
741
|
+
"""
|
742
|
+
IP ranges allowed to be included during import from hub (does not control transit connectivity).
|
743
|
+
The only allowed value for now is "ALL_IPV4_RANGES".
|
744
|
+
"""
|
740
745
|
elif False:
|
741
746
|
SpokeLinkedInterconnectAttachmentsArgsDict: TypeAlias = Mapping[str, Any]
|
742
747
|
|
@@ -744,13 +749,18 @@ elif False:
|
|
744
749
|
class SpokeLinkedInterconnectAttachmentsArgs:
|
745
750
|
def __init__(__self__, *,
|
746
751
|
site_to_site_data_transfer: pulumi.Input[bool],
|
747
|
-
uris: pulumi.Input[Sequence[pulumi.Input[str]]]
|
752
|
+
uris: pulumi.Input[Sequence[pulumi.Input[str]]],
|
753
|
+
include_import_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
748
754
|
"""
|
749
755
|
:param pulumi.Input[bool] site_to_site_data_transfer: A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations.
|
750
756
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: The URIs of linked interconnect attachment resources
|
757
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] include_import_ranges: IP ranges allowed to be included during import from hub (does not control transit connectivity).
|
758
|
+
The only allowed value for now is "ALL_IPV4_RANGES".
|
751
759
|
"""
|
752
760
|
pulumi.set(__self__, "site_to_site_data_transfer", site_to_site_data_transfer)
|
753
761
|
pulumi.set(__self__, "uris", uris)
|
762
|
+
if include_import_ranges is not None:
|
763
|
+
pulumi.set(__self__, "include_import_ranges", include_import_ranges)
|
754
764
|
|
755
765
|
@property
|
756
766
|
@pulumi.getter(name="siteToSiteDataTransfer")
|
@@ -776,6 +786,19 @@ class SpokeLinkedInterconnectAttachmentsArgs:
|
|
776
786
|
def uris(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
777
787
|
pulumi.set(self, "uris", value)
|
778
788
|
|
789
|
+
@property
|
790
|
+
@pulumi.getter(name="includeImportRanges")
|
791
|
+
def include_import_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
792
|
+
"""
|
793
|
+
IP ranges allowed to be included during import from hub (does not control transit connectivity).
|
794
|
+
The only allowed value for now is "ALL_IPV4_RANGES".
|
795
|
+
"""
|
796
|
+
return pulumi.get(self, "include_import_ranges")
|
797
|
+
|
798
|
+
@include_import_ranges.setter
|
799
|
+
def include_import_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
800
|
+
pulumi.set(self, "include_import_ranges", value)
|
801
|
+
|
779
802
|
|
780
803
|
if not MYPY:
|
781
804
|
class SpokeLinkedRouterApplianceInstancesArgsDict(TypedDict):
|
@@ -788,6 +811,11 @@ if not MYPY:
|
|
788
811
|
"""
|
789
812
|
A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations.
|
790
813
|
"""
|
814
|
+
include_import_ranges: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
815
|
+
"""
|
816
|
+
IP ranges allowed to be included during import from hub (does not control transit connectivity).
|
817
|
+
The only allowed value for now is "ALL_IPV4_RANGES".
|
818
|
+
"""
|
791
819
|
elif False:
|
792
820
|
SpokeLinkedRouterApplianceInstancesArgsDict: TypeAlias = Mapping[str, Any]
|
793
821
|
|
@@ -795,14 +823,19 @@ elif False:
|
|
795
823
|
class SpokeLinkedRouterApplianceInstancesArgs:
|
796
824
|
def __init__(__self__, *,
|
797
825
|
instances: pulumi.Input[Sequence[pulumi.Input['SpokeLinkedRouterApplianceInstancesInstanceArgs']]],
|
798
|
-
site_to_site_data_transfer: pulumi.Input[bool]
|
826
|
+
site_to_site_data_transfer: pulumi.Input[bool],
|
827
|
+
include_import_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
799
828
|
"""
|
800
829
|
:param pulumi.Input[Sequence[pulumi.Input['SpokeLinkedRouterApplianceInstancesInstanceArgs']]] instances: The list of router appliance instances
|
801
830
|
Structure is documented below.
|
802
831
|
:param pulumi.Input[bool] site_to_site_data_transfer: A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations.
|
832
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] include_import_ranges: IP ranges allowed to be included during import from hub (does not control transit connectivity).
|
833
|
+
The only allowed value for now is "ALL_IPV4_RANGES".
|
803
834
|
"""
|
804
835
|
pulumi.set(__self__, "instances", instances)
|
805
836
|
pulumi.set(__self__, "site_to_site_data_transfer", site_to_site_data_transfer)
|
837
|
+
if include_import_ranges is not None:
|
838
|
+
pulumi.set(__self__, "include_import_ranges", include_import_ranges)
|
806
839
|
|
807
840
|
@property
|
808
841
|
@pulumi.getter
|
@@ -829,6 +862,19 @@ class SpokeLinkedRouterApplianceInstancesArgs:
|
|
829
862
|
def site_to_site_data_transfer(self, value: pulumi.Input[bool]):
|
830
863
|
pulumi.set(self, "site_to_site_data_transfer", value)
|
831
864
|
|
865
|
+
@property
|
866
|
+
@pulumi.getter(name="includeImportRanges")
|
867
|
+
def include_import_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
868
|
+
"""
|
869
|
+
IP ranges allowed to be included during import from hub (does not control transit connectivity).
|
870
|
+
The only allowed value for now is "ALL_IPV4_RANGES".
|
871
|
+
"""
|
872
|
+
return pulumi.get(self, "include_import_ranges")
|
873
|
+
|
874
|
+
@include_import_ranges.setter
|
875
|
+
def include_import_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
876
|
+
pulumi.set(self, "include_import_ranges", value)
|
877
|
+
|
832
878
|
|
833
879
|
if not MYPY:
|
834
880
|
class SpokeLinkedRouterApplianceInstancesInstanceArgsDict(TypedDict):
|
@@ -963,6 +1009,11 @@ if not MYPY:
|
|
963
1009
|
"""
|
964
1010
|
The URIs of linked VPN tunnel resources.
|
965
1011
|
"""
|
1012
|
+
include_import_ranges: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1013
|
+
"""
|
1014
|
+
IP ranges allowed to be included during import from hub (does not control transit connectivity).
|
1015
|
+
The only allowed value for now is "ALL_IPV4_RANGES".
|
1016
|
+
"""
|
966
1017
|
elif False:
|
967
1018
|
SpokeLinkedVpnTunnelsArgsDict: TypeAlias = Mapping[str, Any]
|
968
1019
|
|
@@ -970,13 +1021,18 @@ elif False:
|
|
970
1021
|
class SpokeLinkedVpnTunnelsArgs:
|
971
1022
|
def __init__(__self__, *,
|
972
1023
|
site_to_site_data_transfer: pulumi.Input[bool],
|
973
|
-
uris: pulumi.Input[Sequence[pulumi.Input[str]]]
|
1024
|
+
uris: pulumi.Input[Sequence[pulumi.Input[str]]],
|
1025
|
+
include_import_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
974
1026
|
"""
|
975
1027
|
:param pulumi.Input[bool] site_to_site_data_transfer: A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations.
|
976
1028
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: The URIs of linked VPN tunnel resources.
|
1029
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] include_import_ranges: IP ranges allowed to be included during import from hub (does not control transit connectivity).
|
1030
|
+
The only allowed value for now is "ALL_IPV4_RANGES".
|
977
1031
|
"""
|
978
1032
|
pulumi.set(__self__, "site_to_site_data_transfer", site_to_site_data_transfer)
|
979
1033
|
pulumi.set(__self__, "uris", uris)
|
1034
|
+
if include_import_ranges is not None:
|
1035
|
+
pulumi.set(__self__, "include_import_ranges", include_import_ranges)
|
980
1036
|
|
981
1037
|
@property
|
982
1038
|
@pulumi.getter(name="siteToSiteDataTransfer")
|
@@ -1002,4 +1058,17 @@ class SpokeLinkedVpnTunnelsArgs:
|
|
1002
1058
|
def uris(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
1003
1059
|
pulumi.set(self, "uris", value)
|
1004
1060
|
|
1061
|
+
@property
|
1062
|
+
@pulumi.getter(name="includeImportRanges")
|
1063
|
+
def include_import_ranges(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1064
|
+
"""
|
1065
|
+
IP ranges allowed to be included during import from hub (does not control transit connectivity).
|
1066
|
+
The only allowed value for now is "ALL_IPV4_RANGES".
|
1067
|
+
"""
|
1068
|
+
return pulumi.get(self, "include_import_ranges")
|
1069
|
+
|
1070
|
+
@include_import_ranges.setter
|
1071
|
+
def include_import_ranges(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1072
|
+
pulumi.set(self, "include_import_ranges", value)
|
1073
|
+
|
1005
1074
|
|