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/compute/router_nat.py
CHANGED
@@ -29,6 +29,7 @@ class RouterNatArgs:
|
|
29
29
|
enable_endpoint_independent_mapping: Optional[pulumi.Input[bool]] = None,
|
30
30
|
endpoint_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
31
31
|
icmp_idle_timeout_sec: Optional[pulumi.Input[int]] = None,
|
32
|
+
initial_nat_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
32
33
|
log_config: Optional[pulumi.Input['RouterNatLogConfigArgs']] = None,
|
33
34
|
max_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
34
35
|
min_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
@@ -80,6 +81,8 @@ class RouterNatArgs:
|
|
80
81
|
`ENDPOINT_TYPE_VM`, `ENDPOINT_TYPE_SWG`,
|
81
82
|
`ENDPOINT_TYPE_MANAGED_PROXY_LB`.
|
82
83
|
:param pulumi.Input[int] icmp_idle_timeout_sec: Timeout (in seconds) for ICMP connections. Defaults to 30s if not set.
|
84
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] initial_nat_ips: Self-links of NAT IPs to be used as initial value for creation alongside a RouterNatAddress resource.
|
85
|
+
Conflicts with natIps and drainNatIps. Only valid if natIpAllocateOption is set to MANUAL_ONLY.
|
83
86
|
:param pulumi.Input['RouterNatLogConfigArgs'] log_config: Configuration for logging on NAT
|
84
87
|
Structure is documented below.
|
85
88
|
:param pulumi.Input[int] max_ports_per_vm: Maximum number of ports allocated to a VM from this NAT.
|
@@ -132,6 +135,8 @@ class RouterNatArgs:
|
|
132
135
|
pulumi.set(__self__, "endpoint_types", endpoint_types)
|
133
136
|
if icmp_idle_timeout_sec is not None:
|
134
137
|
pulumi.set(__self__, "icmp_idle_timeout_sec", icmp_idle_timeout_sec)
|
138
|
+
if initial_nat_ips is not None:
|
139
|
+
pulumi.set(__self__, "initial_nat_ips", initial_nat_ips)
|
135
140
|
if log_config is not None:
|
136
141
|
pulumi.set(__self__, "log_config", log_config)
|
137
142
|
if max_ports_per_vm is not None:
|
@@ -285,6 +290,19 @@ class RouterNatArgs:
|
|
285
290
|
def icmp_idle_timeout_sec(self, value: Optional[pulumi.Input[int]]):
|
286
291
|
pulumi.set(self, "icmp_idle_timeout_sec", value)
|
287
292
|
|
293
|
+
@property
|
294
|
+
@pulumi.getter(name="initialNatIps")
|
295
|
+
def initial_nat_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
296
|
+
"""
|
297
|
+
Self-links of NAT IPs to be used as initial value for creation alongside a RouterNatAddress resource.
|
298
|
+
Conflicts with natIps and drainNatIps. Only valid if natIpAllocateOption is set to MANUAL_ONLY.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "initial_nat_ips")
|
301
|
+
|
302
|
+
@initial_nat_ips.setter
|
303
|
+
def initial_nat_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
304
|
+
pulumi.set(self, "initial_nat_ips", value)
|
305
|
+
|
288
306
|
@property
|
289
307
|
@pulumi.getter(name="logConfig")
|
290
308
|
def log_config(self) -> Optional[pulumi.Input['RouterNatLogConfigArgs']]:
|
@@ -497,6 +515,7 @@ class _RouterNatState:
|
|
497
515
|
enable_endpoint_independent_mapping: Optional[pulumi.Input[bool]] = None,
|
498
516
|
endpoint_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
499
517
|
icmp_idle_timeout_sec: Optional[pulumi.Input[int]] = None,
|
518
|
+
initial_nat_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
500
519
|
log_config: Optional[pulumi.Input['RouterNatLogConfigArgs']] = None,
|
501
520
|
max_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
502
521
|
min_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
@@ -535,6 +554,8 @@ class _RouterNatState:
|
|
535
554
|
`ENDPOINT_TYPE_VM`, `ENDPOINT_TYPE_SWG`,
|
536
555
|
`ENDPOINT_TYPE_MANAGED_PROXY_LB`.
|
537
556
|
:param pulumi.Input[int] icmp_idle_timeout_sec: Timeout (in seconds) for ICMP connections. Defaults to 30s if not set.
|
557
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] initial_nat_ips: Self-links of NAT IPs to be used as initial value for creation alongside a RouterNatAddress resource.
|
558
|
+
Conflicts with natIps and drainNatIps. Only valid if natIpAllocateOption is set to MANUAL_ONLY.
|
538
559
|
:param pulumi.Input['RouterNatLogConfigArgs'] log_config: Configuration for logging on NAT
|
539
560
|
Structure is documented below.
|
540
561
|
:param pulumi.Input[int] max_ports_per_vm: Maximum number of ports allocated to a VM from this NAT.
|
@@ -600,6 +621,8 @@ class _RouterNatState:
|
|
600
621
|
pulumi.set(__self__, "endpoint_types", endpoint_types)
|
601
622
|
if icmp_idle_timeout_sec is not None:
|
602
623
|
pulumi.set(__self__, "icmp_idle_timeout_sec", icmp_idle_timeout_sec)
|
624
|
+
if initial_nat_ips is not None:
|
625
|
+
pulumi.set(__self__, "initial_nat_ips", initial_nat_ips)
|
603
626
|
if log_config is not None:
|
604
627
|
pulumi.set(__self__, "log_config", log_config)
|
605
628
|
if max_ports_per_vm is not None:
|
@@ -720,6 +743,19 @@ class _RouterNatState:
|
|
720
743
|
def icmp_idle_timeout_sec(self, value: Optional[pulumi.Input[int]]):
|
721
744
|
pulumi.set(self, "icmp_idle_timeout_sec", value)
|
722
745
|
|
746
|
+
@property
|
747
|
+
@pulumi.getter(name="initialNatIps")
|
748
|
+
def initial_nat_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
749
|
+
"""
|
750
|
+
Self-links of NAT IPs to be used as initial value for creation alongside a RouterNatAddress resource.
|
751
|
+
Conflicts with natIps and drainNatIps. Only valid if natIpAllocateOption is set to MANUAL_ONLY.
|
752
|
+
"""
|
753
|
+
return pulumi.get(self, "initial_nat_ips")
|
754
|
+
|
755
|
+
@initial_nat_ips.setter
|
756
|
+
def initial_nat_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
757
|
+
pulumi.set(self, "initial_nat_ips", value)
|
758
|
+
|
723
759
|
@property
|
724
760
|
@pulumi.getter(name="logConfig")
|
725
761
|
def log_config(self) -> Optional[pulumi.Input['RouterNatLogConfigArgs']]:
|
@@ -971,6 +1007,7 @@ class RouterNat(pulumi.CustomResource):
|
|
971
1007
|
enable_endpoint_independent_mapping: Optional[pulumi.Input[bool]] = None,
|
972
1008
|
endpoint_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
973
1009
|
icmp_idle_timeout_sec: Optional[pulumi.Input[int]] = None,
|
1010
|
+
initial_nat_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
974
1011
|
log_config: Optional[pulumi.Input[Union['RouterNatLogConfigArgs', 'RouterNatLogConfigArgsDict']]] = None,
|
975
1012
|
max_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
976
1013
|
min_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
@@ -1190,6 +1227,8 @@ class RouterNat(pulumi.CustomResource):
|
|
1190
1227
|
`ENDPOINT_TYPE_VM`, `ENDPOINT_TYPE_SWG`,
|
1191
1228
|
`ENDPOINT_TYPE_MANAGED_PROXY_LB`.
|
1192
1229
|
:param pulumi.Input[int] icmp_idle_timeout_sec: Timeout (in seconds) for ICMP connections. Defaults to 30s if not set.
|
1230
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] initial_nat_ips: Self-links of NAT IPs to be used as initial value for creation alongside a RouterNatAddress resource.
|
1231
|
+
Conflicts with natIps and drainNatIps. Only valid if natIpAllocateOption is set to MANUAL_ONLY.
|
1193
1232
|
:param pulumi.Input[Union['RouterNatLogConfigArgs', 'RouterNatLogConfigArgsDict']] log_config: Configuration for logging on NAT
|
1194
1233
|
Structure is documented below.
|
1195
1234
|
:param pulumi.Input[int] max_ports_per_vm: Maximum number of ports allocated to a VM from this NAT.
|
@@ -1450,6 +1489,7 @@ class RouterNat(pulumi.CustomResource):
|
|
1450
1489
|
enable_endpoint_independent_mapping: Optional[pulumi.Input[bool]] = None,
|
1451
1490
|
endpoint_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1452
1491
|
icmp_idle_timeout_sec: Optional[pulumi.Input[int]] = None,
|
1492
|
+
initial_nat_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1453
1493
|
log_config: Optional[pulumi.Input[Union['RouterNatLogConfigArgs', 'RouterNatLogConfigArgsDict']]] = None,
|
1454
1494
|
max_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
1455
1495
|
min_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
@@ -1482,6 +1522,7 @@ class RouterNat(pulumi.CustomResource):
|
|
1482
1522
|
__props__.__dict__["enable_endpoint_independent_mapping"] = enable_endpoint_independent_mapping
|
1483
1523
|
__props__.__dict__["endpoint_types"] = endpoint_types
|
1484
1524
|
__props__.__dict__["icmp_idle_timeout_sec"] = icmp_idle_timeout_sec
|
1525
|
+
__props__.__dict__["initial_nat_ips"] = initial_nat_ips
|
1485
1526
|
__props__.__dict__["log_config"] = log_config
|
1486
1527
|
__props__.__dict__["max_ports_per_vm"] = max_ports_per_vm
|
1487
1528
|
__props__.__dict__["min_ports_per_vm"] = min_ports_per_vm
|
@@ -1519,6 +1560,7 @@ class RouterNat(pulumi.CustomResource):
|
|
1519
1560
|
enable_endpoint_independent_mapping: Optional[pulumi.Input[bool]] = None,
|
1520
1561
|
endpoint_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1521
1562
|
icmp_idle_timeout_sec: Optional[pulumi.Input[int]] = None,
|
1563
|
+
initial_nat_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1522
1564
|
log_config: Optional[pulumi.Input[Union['RouterNatLogConfigArgs', 'RouterNatLogConfigArgsDict']]] = None,
|
1523
1565
|
max_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
1524
1566
|
min_ports_per_vm: Optional[pulumi.Input[int]] = None,
|
@@ -1562,6 +1604,8 @@ class RouterNat(pulumi.CustomResource):
|
|
1562
1604
|
`ENDPOINT_TYPE_VM`, `ENDPOINT_TYPE_SWG`,
|
1563
1605
|
`ENDPOINT_TYPE_MANAGED_PROXY_LB`.
|
1564
1606
|
:param pulumi.Input[int] icmp_idle_timeout_sec: Timeout (in seconds) for ICMP connections. Defaults to 30s if not set.
|
1607
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] initial_nat_ips: Self-links of NAT IPs to be used as initial value for creation alongside a RouterNatAddress resource.
|
1608
|
+
Conflicts with natIps and drainNatIps. Only valid if natIpAllocateOption is set to MANUAL_ONLY.
|
1565
1609
|
:param pulumi.Input[Union['RouterNatLogConfigArgs', 'RouterNatLogConfigArgsDict']] log_config: Configuration for logging on NAT
|
1566
1610
|
Structure is documented below.
|
1567
1611
|
:param pulumi.Input[int] max_ports_per_vm: Maximum number of ports allocated to a VM from this NAT.
|
@@ -1625,6 +1669,7 @@ class RouterNat(pulumi.CustomResource):
|
|
1625
1669
|
__props__.__dict__["enable_endpoint_independent_mapping"] = enable_endpoint_independent_mapping
|
1626
1670
|
__props__.__dict__["endpoint_types"] = endpoint_types
|
1627
1671
|
__props__.__dict__["icmp_idle_timeout_sec"] = icmp_idle_timeout_sec
|
1672
|
+
__props__.__dict__["initial_nat_ips"] = initial_nat_ips
|
1628
1673
|
__props__.__dict__["log_config"] = log_config
|
1629
1674
|
__props__.__dict__["max_ports_per_vm"] = max_ports_per_vm
|
1630
1675
|
__props__.__dict__["min_ports_per_vm"] = min_ports_per_vm
|
@@ -1657,7 +1702,7 @@ class RouterNat(pulumi.CustomResource):
|
|
1657
1702
|
|
1658
1703
|
@property
|
1659
1704
|
@pulumi.getter(name="drainNatIps")
|
1660
|
-
def drain_nat_ips(self) -> pulumi.Output[
|
1705
|
+
def drain_nat_ips(self) -> pulumi.Output[Sequence[str]]:
|
1661
1706
|
"""
|
1662
1707
|
A list of URLs of the IP resources to be drained. These IPs must be
|
1663
1708
|
valid static external IPs that have been assigned to the NAT.
|
@@ -1705,6 +1750,15 @@ class RouterNat(pulumi.CustomResource):
|
|
1705
1750
|
"""
|
1706
1751
|
return pulumi.get(self, "icmp_idle_timeout_sec")
|
1707
1752
|
|
1753
|
+
@property
|
1754
|
+
@pulumi.getter(name="initialNatIps")
|
1755
|
+
def initial_nat_ips(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1756
|
+
"""
|
1757
|
+
Self-links of NAT IPs to be used as initial value for creation alongside a RouterNatAddress resource.
|
1758
|
+
Conflicts with natIps and drainNatIps. Only valid if natIpAllocateOption is set to MANUAL_ONLY.
|
1759
|
+
"""
|
1760
|
+
return pulumi.get(self, "initial_nat_ips")
|
1761
|
+
|
1708
1762
|
@property
|
1709
1763
|
@pulumi.getter(name="logConfig")
|
1710
1764
|
def log_config(self) -> pulumi.Output[Optional['outputs.RouterNatLogConfig']]:
|
@@ -1753,7 +1807,7 @@ class RouterNat(pulumi.CustomResource):
|
|
1753
1807
|
|
1754
1808
|
@property
|
1755
1809
|
@pulumi.getter(name="natIps")
|
1756
|
-
def nat_ips(self) -> pulumi.Output[
|
1810
|
+
def nat_ips(self) -> pulumi.Output[Sequence[str]]:
|
1757
1811
|
"""
|
1758
1812
|
Self-links of NAT IPs. Only valid if natIpAllocateOption
|
1759
1813
|
is set to MANUAL_ONLY.
|