pulumi-gcp 7.38.0a1724479203__py3-none-any.whl → 7.39.0a1724911478__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/flexible_app_version.py +8 -0
- pulumi_gcp/applicationintegration/client.py +2 -2
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/get_locations.py +167 -0
- pulumi_gcp/bigquery/connection.py +12 -0
- pulumi_gcp/clouddeploy/_inputs.py +41 -1
- pulumi_gcp/clouddeploy/outputs.py +29 -1
- pulumi_gcp/cloudfunctionsv2/function.py +2 -0
- pulumi_gcp/cloudidentity/__init__.py +1 -0
- pulumi_gcp/cloudidentity/get_group_memberships.py +12 -0
- pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +93 -0
- pulumi_gcp/cloudidentity/outputs.py +131 -0
- pulumi_gcp/compute/_inputs.py +36 -30
- pulumi_gcp/compute/outputs.py +48 -38
- pulumi_gcp/compute/region_network_endpoint_group.py +8 -0
- pulumi_gcp/compute/subnetwork.py +82 -0
- pulumi_gcp/container/_inputs.py +15 -18
- pulumi_gcp/container/attached_cluster.py +14 -7
- pulumi_gcp/container/outputs.py +10 -12
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/schema.py +524 -0
- pulumi_gcp/dns/_inputs.py +80 -76
- pulumi_gcp/dns/outputs.py +56 -52
- pulumi_gcp/managedkafka/_inputs.py +6 -6
- pulumi_gcp/managedkafka/cluster.py +7 -7
- pulumi_gcp/managedkafka/outputs.py +4 -4
- pulumi_gcp/managedkafka/topic.py +7 -7
- pulumi_gcp/parallelstore/instance.py +215 -15
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/_inputs.py +186 -0
- pulumi_gcp/securitycenter/folder_notification_config.py +486 -0
- pulumi_gcp/securitycenter/outputs.py +118 -0
- pulumi_gcp/securitycenter/v2_folder_notification_config.py +575 -0
- pulumi_gcp/servicenetworking/connection.py +50 -3
- pulumi_gcp/sql/_inputs.py +20 -0
- pulumi_gcp/sql/outputs.py +36 -0
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +438 -0
- pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +1170 -0
- pulumi_gcp/vertex/outputs.py +393 -0
- {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/RECORD +46 -40
- {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.38.0a1724479203.dist-info → pulumi_gcp-7.39.0a1724911478.dist-info}/top_level.txt +0 -0
pulumi_gcp/dns/_inputs.py
CHANGED
@@ -1164,10 +1164,6 @@ if not MYPY:
|
|
1164
1164
|
"""
|
1165
1165
|
The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1166
1166
|
"""
|
1167
|
-
load_balancer_type: pulumi.Input[str]
|
1168
|
-
"""
|
1169
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1170
|
-
"""
|
1171
1167
|
network_url: pulumi.Input[str]
|
1172
1168
|
"""
|
1173
1169
|
The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
@@ -1180,6 +1176,10 @@ if not MYPY:
|
|
1180
1176
|
"""
|
1181
1177
|
The ID of the project in which the load balancer belongs.
|
1182
1178
|
"""
|
1179
|
+
load_balancer_type: NotRequired[pulumi.Input[str]]
|
1180
|
+
"""
|
1181
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1182
|
+
"""
|
1183
1183
|
region: NotRequired[pulumi.Input[str]]
|
1184
1184
|
"""
|
1185
1185
|
The region of the load balancer. Only needed for regional load balancers.
|
@@ -1192,26 +1192,27 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancerArgs:
|
|
1192
1192
|
def __init__(__self__, *,
|
1193
1193
|
ip_address: pulumi.Input[str],
|
1194
1194
|
ip_protocol: pulumi.Input[str],
|
1195
|
-
load_balancer_type: pulumi.Input[str],
|
1196
1195
|
network_url: pulumi.Input[str],
|
1197
1196
|
port: pulumi.Input[str],
|
1198
1197
|
project: pulumi.Input[str],
|
1198
|
+
load_balancer_type: Optional[pulumi.Input[str]] = None,
|
1199
1199
|
region: Optional[pulumi.Input[str]] = None):
|
1200
1200
|
"""
|
1201
1201
|
:param pulumi.Input[str] ip_address: The frontend IP address of the load balancer.
|
1202
1202
|
:param pulumi.Input[str] ip_protocol: The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1203
|
-
:param pulumi.Input[str] load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1204
1203
|
:param pulumi.Input[str] network_url: The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
1205
1204
|
:param pulumi.Input[str] port: The configured port of the load balancer.
|
1206
1205
|
:param pulumi.Input[str] project: The ID of the project in which the load balancer belongs.
|
1206
|
+
:param pulumi.Input[str] load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1207
1207
|
:param pulumi.Input[str] region: The region of the load balancer. Only needed for regional load balancers.
|
1208
1208
|
"""
|
1209
1209
|
pulumi.set(__self__, "ip_address", ip_address)
|
1210
1210
|
pulumi.set(__self__, "ip_protocol", ip_protocol)
|
1211
|
-
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1212
1211
|
pulumi.set(__self__, "network_url", network_url)
|
1213
1212
|
pulumi.set(__self__, "port", port)
|
1214
1213
|
pulumi.set(__self__, "project", project)
|
1214
|
+
if load_balancer_type is not None:
|
1215
|
+
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1215
1216
|
if region is not None:
|
1216
1217
|
pulumi.set(__self__, "region", region)
|
1217
1218
|
|
@@ -1239,18 +1240,6 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancerArgs:
|
|
1239
1240
|
def ip_protocol(self, value: pulumi.Input[str]):
|
1240
1241
|
pulumi.set(self, "ip_protocol", value)
|
1241
1242
|
|
1242
|
-
@property
|
1243
|
-
@pulumi.getter(name="loadBalancerType")
|
1244
|
-
def load_balancer_type(self) -> pulumi.Input[str]:
|
1245
|
-
"""
|
1246
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1247
|
-
"""
|
1248
|
-
return pulumi.get(self, "load_balancer_type")
|
1249
|
-
|
1250
|
-
@load_balancer_type.setter
|
1251
|
-
def load_balancer_type(self, value: pulumi.Input[str]):
|
1252
|
-
pulumi.set(self, "load_balancer_type", value)
|
1253
|
-
|
1254
1243
|
@property
|
1255
1244
|
@pulumi.getter(name="networkUrl")
|
1256
1245
|
def network_url(self) -> pulumi.Input[str]:
|
@@ -1287,6 +1276,18 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancerArgs:
|
|
1287
1276
|
def project(self, value: pulumi.Input[str]):
|
1288
1277
|
pulumi.set(self, "project", value)
|
1289
1278
|
|
1279
|
+
@property
|
1280
|
+
@pulumi.getter(name="loadBalancerType")
|
1281
|
+
def load_balancer_type(self) -> Optional[pulumi.Input[str]]:
|
1282
|
+
"""
|
1283
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1284
|
+
"""
|
1285
|
+
return pulumi.get(self, "load_balancer_type")
|
1286
|
+
|
1287
|
+
@load_balancer_type.setter
|
1288
|
+
def load_balancer_type(self, value: Optional[pulumi.Input[str]]):
|
1289
|
+
pulumi.set(self, "load_balancer_type", value)
|
1290
|
+
|
1290
1291
|
@property
|
1291
1292
|
@pulumi.getter
|
1292
1293
|
def region(self) -> Optional[pulumi.Input[str]]:
|
@@ -1504,10 +1505,6 @@ if not MYPY:
|
|
1504
1505
|
"""
|
1505
1506
|
The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1506
1507
|
"""
|
1507
|
-
load_balancer_type: pulumi.Input[str]
|
1508
|
-
"""
|
1509
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1510
|
-
"""
|
1511
1508
|
network_url: pulumi.Input[str]
|
1512
1509
|
"""
|
1513
1510
|
The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
@@ -1520,6 +1517,10 @@ if not MYPY:
|
|
1520
1517
|
"""
|
1521
1518
|
The ID of the project in which the load balancer belongs.
|
1522
1519
|
"""
|
1520
|
+
load_balancer_type: NotRequired[pulumi.Input[str]]
|
1521
|
+
"""
|
1522
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1523
|
+
"""
|
1523
1524
|
region: NotRequired[pulumi.Input[str]]
|
1524
1525
|
"""
|
1525
1526
|
The region of the load balancer. Only needed for regional load balancers.
|
@@ -1532,26 +1533,27 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLo
|
|
1532
1533
|
def __init__(__self__, *,
|
1533
1534
|
ip_address: pulumi.Input[str],
|
1534
1535
|
ip_protocol: pulumi.Input[str],
|
1535
|
-
load_balancer_type: pulumi.Input[str],
|
1536
1536
|
network_url: pulumi.Input[str],
|
1537
1537
|
port: pulumi.Input[str],
|
1538
1538
|
project: pulumi.Input[str],
|
1539
|
+
load_balancer_type: Optional[pulumi.Input[str]] = None,
|
1539
1540
|
region: Optional[pulumi.Input[str]] = None):
|
1540
1541
|
"""
|
1541
1542
|
:param pulumi.Input[str] ip_address: The frontend IP address of the load balancer.
|
1542
1543
|
:param pulumi.Input[str] ip_protocol: The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1543
|
-
:param pulumi.Input[str] load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1544
1544
|
:param pulumi.Input[str] network_url: The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
1545
1545
|
:param pulumi.Input[str] port: The configured port of the load balancer.
|
1546
1546
|
:param pulumi.Input[str] project: The ID of the project in which the load balancer belongs.
|
1547
|
+
:param pulumi.Input[str] load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1547
1548
|
:param pulumi.Input[str] region: The region of the load balancer. Only needed for regional load balancers.
|
1548
1549
|
"""
|
1549
1550
|
pulumi.set(__self__, "ip_address", ip_address)
|
1550
1551
|
pulumi.set(__self__, "ip_protocol", ip_protocol)
|
1551
|
-
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1552
1552
|
pulumi.set(__self__, "network_url", network_url)
|
1553
1553
|
pulumi.set(__self__, "port", port)
|
1554
1554
|
pulumi.set(__self__, "project", project)
|
1555
|
+
if load_balancer_type is not None:
|
1556
|
+
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1555
1557
|
if region is not None:
|
1556
1558
|
pulumi.set(__self__, "region", region)
|
1557
1559
|
|
@@ -1579,18 +1581,6 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLo
|
|
1579
1581
|
def ip_protocol(self, value: pulumi.Input[str]):
|
1580
1582
|
pulumi.set(self, "ip_protocol", value)
|
1581
1583
|
|
1582
|
-
@property
|
1583
|
-
@pulumi.getter(name="loadBalancerType")
|
1584
|
-
def load_balancer_type(self) -> pulumi.Input[str]:
|
1585
|
-
"""
|
1586
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1587
|
-
"""
|
1588
|
-
return pulumi.get(self, "load_balancer_type")
|
1589
|
-
|
1590
|
-
@load_balancer_type.setter
|
1591
|
-
def load_balancer_type(self, value: pulumi.Input[str]):
|
1592
|
-
pulumi.set(self, "load_balancer_type", value)
|
1593
|
-
|
1594
1584
|
@property
|
1595
1585
|
@pulumi.getter(name="networkUrl")
|
1596
1586
|
def network_url(self) -> pulumi.Input[str]:
|
@@ -1627,6 +1617,18 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLo
|
|
1627
1617
|
def project(self, value: pulumi.Input[str]):
|
1628
1618
|
pulumi.set(self, "project", value)
|
1629
1619
|
|
1620
|
+
@property
|
1621
|
+
@pulumi.getter(name="loadBalancerType")
|
1622
|
+
def load_balancer_type(self) -> Optional[pulumi.Input[str]]:
|
1623
|
+
"""
|
1624
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1625
|
+
"""
|
1626
|
+
return pulumi.get(self, "load_balancer_type")
|
1627
|
+
|
1628
|
+
@load_balancer_type.setter
|
1629
|
+
def load_balancer_type(self, value: Optional[pulumi.Input[str]]):
|
1630
|
+
pulumi.set(self, "load_balancer_type", value)
|
1631
|
+
|
1630
1632
|
@property
|
1631
1633
|
@pulumi.getter
|
1632
1634
|
def region(self) -> Optional[pulumi.Input[str]]:
|
@@ -1681,10 +1683,6 @@ if not MYPY:
|
|
1681
1683
|
"""
|
1682
1684
|
The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1683
1685
|
"""
|
1684
|
-
load_balancer_type: pulumi.Input[str]
|
1685
|
-
"""
|
1686
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1687
|
-
"""
|
1688
1686
|
network_url: pulumi.Input[str]
|
1689
1687
|
"""
|
1690
1688
|
The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
@@ -1697,6 +1695,10 @@ if not MYPY:
|
|
1697
1695
|
"""
|
1698
1696
|
The ID of the project in which the load balancer belongs.
|
1699
1697
|
"""
|
1698
|
+
load_balancer_type: NotRequired[pulumi.Input[str]]
|
1699
|
+
"""
|
1700
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1701
|
+
"""
|
1700
1702
|
region: NotRequired[pulumi.Input[str]]
|
1701
1703
|
"""
|
1702
1704
|
The region of the load balancer. Only needed for regional load balancers.
|
@@ -1709,26 +1711,27 @@ class RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancerArgs:
|
|
1709
1711
|
def __init__(__self__, *,
|
1710
1712
|
ip_address: pulumi.Input[str],
|
1711
1713
|
ip_protocol: pulumi.Input[str],
|
1712
|
-
load_balancer_type: pulumi.Input[str],
|
1713
1714
|
network_url: pulumi.Input[str],
|
1714
1715
|
port: pulumi.Input[str],
|
1715
1716
|
project: pulumi.Input[str],
|
1717
|
+
load_balancer_type: Optional[pulumi.Input[str]] = None,
|
1716
1718
|
region: Optional[pulumi.Input[str]] = None):
|
1717
1719
|
"""
|
1718
1720
|
:param pulumi.Input[str] ip_address: The frontend IP address of the load balancer.
|
1719
1721
|
:param pulumi.Input[str] ip_protocol: The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1720
|
-
:param pulumi.Input[str] load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1721
1722
|
:param pulumi.Input[str] network_url: The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
1722
1723
|
:param pulumi.Input[str] port: The configured port of the load balancer.
|
1723
1724
|
:param pulumi.Input[str] project: The ID of the project in which the load balancer belongs.
|
1725
|
+
:param pulumi.Input[str] load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1724
1726
|
:param pulumi.Input[str] region: The region of the load balancer. Only needed for regional load balancers.
|
1725
1727
|
"""
|
1726
1728
|
pulumi.set(__self__, "ip_address", ip_address)
|
1727
1729
|
pulumi.set(__self__, "ip_protocol", ip_protocol)
|
1728
|
-
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1729
1730
|
pulumi.set(__self__, "network_url", network_url)
|
1730
1731
|
pulumi.set(__self__, "port", port)
|
1731
1732
|
pulumi.set(__self__, "project", project)
|
1733
|
+
if load_balancer_type is not None:
|
1734
|
+
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1732
1735
|
if region is not None:
|
1733
1736
|
pulumi.set(__self__, "region", region)
|
1734
1737
|
|
@@ -1756,18 +1759,6 @@ class RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancerArgs:
|
|
1756
1759
|
def ip_protocol(self, value: pulumi.Input[str]):
|
1757
1760
|
pulumi.set(self, "ip_protocol", value)
|
1758
1761
|
|
1759
|
-
@property
|
1760
|
-
@pulumi.getter(name="loadBalancerType")
|
1761
|
-
def load_balancer_type(self) -> pulumi.Input[str]:
|
1762
|
-
"""
|
1763
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1764
|
-
"""
|
1765
|
-
return pulumi.get(self, "load_balancer_type")
|
1766
|
-
|
1767
|
-
@load_balancer_type.setter
|
1768
|
-
def load_balancer_type(self, value: pulumi.Input[str]):
|
1769
|
-
pulumi.set(self, "load_balancer_type", value)
|
1770
|
-
|
1771
1762
|
@property
|
1772
1763
|
@pulumi.getter(name="networkUrl")
|
1773
1764
|
def network_url(self) -> pulumi.Input[str]:
|
@@ -1804,6 +1795,18 @@ class RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancerArgs:
|
|
1804
1795
|
def project(self, value: pulumi.Input[str]):
|
1805
1796
|
pulumi.set(self, "project", value)
|
1806
1797
|
|
1798
|
+
@property
|
1799
|
+
@pulumi.getter(name="loadBalancerType")
|
1800
|
+
def load_balancer_type(self) -> Optional[pulumi.Input[str]]:
|
1801
|
+
"""
|
1802
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1803
|
+
"""
|
1804
|
+
return pulumi.get(self, "load_balancer_type")
|
1805
|
+
|
1806
|
+
@load_balancer_type.setter
|
1807
|
+
def load_balancer_type(self, value: Optional[pulumi.Input[str]]):
|
1808
|
+
pulumi.set(self, "load_balancer_type", value)
|
1809
|
+
|
1807
1810
|
@property
|
1808
1811
|
@pulumi.getter
|
1809
1812
|
def region(self) -> Optional[pulumi.Input[str]]:
|
@@ -1935,10 +1938,6 @@ if not MYPY:
|
|
1935
1938
|
"""
|
1936
1939
|
The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1937
1940
|
"""
|
1938
|
-
load_balancer_type: pulumi.Input[str]
|
1939
|
-
"""
|
1940
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1941
|
-
"""
|
1942
1941
|
network_url: pulumi.Input[str]
|
1943
1942
|
"""
|
1944
1943
|
The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
@@ -1951,6 +1950,10 @@ if not MYPY:
|
|
1951
1950
|
"""
|
1952
1951
|
The ID of the project in which the load balancer belongs.
|
1953
1952
|
"""
|
1953
|
+
load_balancer_type: NotRequired[pulumi.Input[str]]
|
1954
|
+
"""
|
1955
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1956
|
+
"""
|
1954
1957
|
region: NotRequired[pulumi.Input[str]]
|
1955
1958
|
"""
|
1956
1959
|
The region of the load balancer. Only needed for regional load balancers.
|
@@ -1963,26 +1966,27 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancerArgs:
|
|
1963
1966
|
def __init__(__self__, *,
|
1964
1967
|
ip_address: pulumi.Input[str],
|
1965
1968
|
ip_protocol: pulumi.Input[str],
|
1966
|
-
load_balancer_type: pulumi.Input[str],
|
1967
1969
|
network_url: pulumi.Input[str],
|
1968
1970
|
port: pulumi.Input[str],
|
1969
1971
|
project: pulumi.Input[str],
|
1972
|
+
load_balancer_type: Optional[pulumi.Input[str]] = None,
|
1970
1973
|
region: Optional[pulumi.Input[str]] = None):
|
1971
1974
|
"""
|
1972
1975
|
:param pulumi.Input[str] ip_address: The frontend IP address of the load balancer.
|
1973
1976
|
:param pulumi.Input[str] ip_protocol: The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1974
|
-
:param pulumi.Input[str] load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1975
1977
|
:param pulumi.Input[str] network_url: The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
1976
1978
|
:param pulumi.Input[str] port: The configured port of the load balancer.
|
1977
1979
|
:param pulumi.Input[str] project: The ID of the project in which the load balancer belongs.
|
1980
|
+
:param pulumi.Input[str] load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1978
1981
|
:param pulumi.Input[str] region: The region of the load balancer. Only needed for regional load balancers.
|
1979
1982
|
"""
|
1980
1983
|
pulumi.set(__self__, "ip_address", ip_address)
|
1981
1984
|
pulumi.set(__self__, "ip_protocol", ip_protocol)
|
1982
|
-
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1983
1985
|
pulumi.set(__self__, "network_url", network_url)
|
1984
1986
|
pulumi.set(__self__, "port", port)
|
1985
1987
|
pulumi.set(__self__, "project", project)
|
1988
|
+
if load_balancer_type is not None:
|
1989
|
+
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1986
1990
|
if region is not None:
|
1987
1991
|
pulumi.set(__self__, "region", region)
|
1988
1992
|
|
@@ -2010,18 +2014,6 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancerArgs:
|
|
2010
2014
|
def ip_protocol(self, value: pulumi.Input[str]):
|
2011
2015
|
pulumi.set(self, "ip_protocol", value)
|
2012
2016
|
|
2013
|
-
@property
|
2014
|
-
@pulumi.getter(name="loadBalancerType")
|
2015
|
-
def load_balancer_type(self) -> pulumi.Input[str]:
|
2016
|
-
"""
|
2017
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
2018
|
-
"""
|
2019
|
-
return pulumi.get(self, "load_balancer_type")
|
2020
|
-
|
2021
|
-
@load_balancer_type.setter
|
2022
|
-
def load_balancer_type(self, value: pulumi.Input[str]):
|
2023
|
-
pulumi.set(self, "load_balancer_type", value)
|
2024
|
-
|
2025
2017
|
@property
|
2026
2018
|
@pulumi.getter(name="networkUrl")
|
2027
2019
|
def network_url(self) -> pulumi.Input[str]:
|
@@ -2058,6 +2050,18 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancerArgs:
|
|
2058
2050
|
def project(self, value: pulumi.Input[str]):
|
2059
2051
|
pulumi.set(self, "project", value)
|
2060
2052
|
|
2053
|
+
@property
|
2054
|
+
@pulumi.getter(name="loadBalancerType")
|
2055
|
+
def load_balancer_type(self) -> Optional[pulumi.Input[str]]:
|
2056
|
+
"""
|
2057
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
2058
|
+
"""
|
2059
|
+
return pulumi.get(self, "load_balancer_type")
|
2060
|
+
|
2061
|
+
@load_balancer_type.setter
|
2062
|
+
def load_balancer_type(self, value: Optional[pulumi.Input[str]]):
|
2063
|
+
pulumi.set(self, "load_balancer_type", value)
|
2064
|
+
|
2061
2065
|
@property
|
2062
2066
|
@pulumi.getter
|
2063
2067
|
def region(self) -> Optional[pulumi.Input[str]]:
|
pulumi_gcp/dns/outputs.py
CHANGED
@@ -1003,10 +1003,10 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancer(dict):
|
|
1003
1003
|
suggest = "ip_address"
|
1004
1004
|
elif key == "ipProtocol":
|
1005
1005
|
suggest = "ip_protocol"
|
1006
|
-
elif key == "loadBalancerType":
|
1007
|
-
suggest = "load_balancer_type"
|
1008
1006
|
elif key == "networkUrl":
|
1009
1007
|
suggest = "network_url"
|
1008
|
+
elif key == "loadBalancerType":
|
1009
|
+
suggest = "load_balancer_type"
|
1010
1010
|
|
1011
1011
|
if suggest:
|
1012
1012
|
pulumi.log.warn(f"Key '{key}' not found in RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancer. Access the value via the '{suggest}' property getter instead.")
|
@@ -1022,26 +1022,27 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancer(dict):
|
|
1022
1022
|
def __init__(__self__, *,
|
1023
1023
|
ip_address: str,
|
1024
1024
|
ip_protocol: str,
|
1025
|
-
load_balancer_type: str,
|
1026
1025
|
network_url: str,
|
1027
1026
|
port: str,
|
1028
1027
|
project: str,
|
1028
|
+
load_balancer_type: Optional[str] = None,
|
1029
1029
|
region: Optional[str] = None):
|
1030
1030
|
"""
|
1031
1031
|
:param str ip_address: The frontend IP address of the load balancer.
|
1032
1032
|
:param str ip_protocol: The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1033
|
-
:param str load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1034
1033
|
:param str network_url: The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
1035
1034
|
:param str port: The configured port of the load balancer.
|
1036
1035
|
:param str project: The ID of the project in which the load balancer belongs.
|
1036
|
+
:param str load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1037
1037
|
:param str region: The region of the load balancer. Only needed for regional load balancers.
|
1038
1038
|
"""
|
1039
1039
|
pulumi.set(__self__, "ip_address", ip_address)
|
1040
1040
|
pulumi.set(__self__, "ip_protocol", ip_protocol)
|
1041
|
-
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1042
1041
|
pulumi.set(__self__, "network_url", network_url)
|
1043
1042
|
pulumi.set(__self__, "port", port)
|
1044
1043
|
pulumi.set(__self__, "project", project)
|
1044
|
+
if load_balancer_type is not None:
|
1045
|
+
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1045
1046
|
if region is not None:
|
1046
1047
|
pulumi.set(__self__, "region", region)
|
1047
1048
|
|
@@ -1061,14 +1062,6 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancer(dict):
|
|
1061
1062
|
"""
|
1062
1063
|
return pulumi.get(self, "ip_protocol")
|
1063
1064
|
|
1064
|
-
@property
|
1065
|
-
@pulumi.getter(name="loadBalancerType")
|
1066
|
-
def load_balancer_type(self) -> str:
|
1067
|
-
"""
|
1068
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1069
|
-
"""
|
1070
|
-
return pulumi.get(self, "load_balancer_type")
|
1071
|
-
|
1072
1065
|
@property
|
1073
1066
|
@pulumi.getter(name="networkUrl")
|
1074
1067
|
def network_url(self) -> str:
|
@@ -1093,6 +1086,14 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancer(dict):
|
|
1093
1086
|
"""
|
1094
1087
|
return pulumi.get(self, "project")
|
1095
1088
|
|
1089
|
+
@property
|
1090
|
+
@pulumi.getter(name="loadBalancerType")
|
1091
|
+
def load_balancer_type(self) -> Optional[str]:
|
1092
|
+
"""
|
1093
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1094
|
+
"""
|
1095
|
+
return pulumi.get(self, "load_balancer_type")
|
1096
|
+
|
1096
1097
|
@property
|
1097
1098
|
@pulumi.getter
|
1098
1099
|
def region(self) -> Optional[str]:
|
@@ -1281,10 +1282,10 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLo
|
|
1281
1282
|
suggest = "ip_address"
|
1282
1283
|
elif key == "ipProtocol":
|
1283
1284
|
suggest = "ip_protocol"
|
1284
|
-
elif key == "loadBalancerType":
|
1285
|
-
suggest = "load_balancer_type"
|
1286
1285
|
elif key == "networkUrl":
|
1287
1286
|
suggest = "network_url"
|
1287
|
+
elif key == "loadBalancerType":
|
1288
|
+
suggest = "load_balancer_type"
|
1288
1289
|
|
1289
1290
|
if suggest:
|
1290
1291
|
pulumi.log.warn(f"Key '{key}' not found in RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLoadBalancer. Access the value via the '{suggest}' property getter instead.")
|
@@ -1300,26 +1301,27 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLo
|
|
1300
1301
|
def __init__(__self__, *,
|
1301
1302
|
ip_address: str,
|
1302
1303
|
ip_protocol: str,
|
1303
|
-
load_balancer_type: str,
|
1304
1304
|
network_url: str,
|
1305
1305
|
port: str,
|
1306
1306
|
project: str,
|
1307
|
+
load_balancer_type: Optional[str] = None,
|
1307
1308
|
region: Optional[str] = None):
|
1308
1309
|
"""
|
1309
1310
|
:param str ip_address: The frontend IP address of the load balancer.
|
1310
1311
|
:param str ip_protocol: The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1311
|
-
:param str load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1312
1312
|
:param str network_url: The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
1313
1313
|
:param str port: The configured port of the load balancer.
|
1314
1314
|
:param str project: The ID of the project in which the load balancer belongs.
|
1315
|
+
:param str load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1315
1316
|
:param str region: The region of the load balancer. Only needed for regional load balancers.
|
1316
1317
|
"""
|
1317
1318
|
pulumi.set(__self__, "ip_address", ip_address)
|
1318
1319
|
pulumi.set(__self__, "ip_protocol", ip_protocol)
|
1319
|
-
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1320
1320
|
pulumi.set(__self__, "network_url", network_url)
|
1321
1321
|
pulumi.set(__self__, "port", port)
|
1322
1322
|
pulumi.set(__self__, "project", project)
|
1323
|
+
if load_balancer_type is not None:
|
1324
|
+
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1323
1325
|
if region is not None:
|
1324
1326
|
pulumi.set(__self__, "region", region)
|
1325
1327
|
|
@@ -1339,14 +1341,6 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLo
|
|
1339
1341
|
"""
|
1340
1342
|
return pulumi.get(self, "ip_protocol")
|
1341
1343
|
|
1342
|
-
@property
|
1343
|
-
@pulumi.getter(name="loadBalancerType")
|
1344
|
-
def load_balancer_type(self) -> str:
|
1345
|
-
"""
|
1346
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1347
|
-
"""
|
1348
|
-
return pulumi.get(self, "load_balancer_type")
|
1349
|
-
|
1350
1344
|
@property
|
1351
1345
|
@pulumi.getter(name="networkUrl")
|
1352
1346
|
def network_url(self) -> str:
|
@@ -1371,6 +1365,14 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLo
|
|
1371
1365
|
"""
|
1372
1366
|
return pulumi.get(self, "project")
|
1373
1367
|
|
1368
|
+
@property
|
1369
|
+
@pulumi.getter(name="loadBalancerType")
|
1370
|
+
def load_balancer_type(self) -> Optional[str]:
|
1371
|
+
"""
|
1372
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1373
|
+
"""
|
1374
|
+
return pulumi.get(self, "load_balancer_type")
|
1375
|
+
|
1374
1376
|
@property
|
1375
1377
|
@pulumi.getter
|
1376
1378
|
def region(self) -> Optional[str]:
|
@@ -1424,10 +1426,10 @@ class RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancer(dict):
|
|
1424
1426
|
suggest = "ip_address"
|
1425
1427
|
elif key == "ipProtocol":
|
1426
1428
|
suggest = "ip_protocol"
|
1427
|
-
elif key == "loadBalancerType":
|
1428
|
-
suggest = "load_balancer_type"
|
1429
1429
|
elif key == "networkUrl":
|
1430
1430
|
suggest = "network_url"
|
1431
|
+
elif key == "loadBalancerType":
|
1432
|
+
suggest = "load_balancer_type"
|
1431
1433
|
|
1432
1434
|
if suggest:
|
1433
1435
|
pulumi.log.warn(f"Key '{key}' not found in RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancer. Access the value via the '{suggest}' property getter instead.")
|
@@ -1443,26 +1445,27 @@ class RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancer(dict):
|
|
1443
1445
|
def __init__(__self__, *,
|
1444
1446
|
ip_address: str,
|
1445
1447
|
ip_protocol: str,
|
1446
|
-
load_balancer_type: str,
|
1447
1448
|
network_url: str,
|
1448
1449
|
port: str,
|
1449
1450
|
project: str,
|
1451
|
+
load_balancer_type: Optional[str] = None,
|
1450
1452
|
region: Optional[str] = None):
|
1451
1453
|
"""
|
1452
1454
|
:param str ip_address: The frontend IP address of the load balancer.
|
1453
1455
|
:param str ip_protocol: The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1454
|
-
:param str load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1455
1456
|
:param str network_url: The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
1456
1457
|
:param str port: The configured port of the load balancer.
|
1457
1458
|
:param str project: The ID of the project in which the load balancer belongs.
|
1459
|
+
:param str load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1458
1460
|
:param str region: The region of the load balancer. Only needed for regional load balancers.
|
1459
1461
|
"""
|
1460
1462
|
pulumi.set(__self__, "ip_address", ip_address)
|
1461
1463
|
pulumi.set(__self__, "ip_protocol", ip_protocol)
|
1462
|
-
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1463
1464
|
pulumi.set(__self__, "network_url", network_url)
|
1464
1465
|
pulumi.set(__self__, "port", port)
|
1465
1466
|
pulumi.set(__self__, "project", project)
|
1467
|
+
if load_balancer_type is not None:
|
1468
|
+
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1466
1469
|
if region is not None:
|
1467
1470
|
pulumi.set(__self__, "region", region)
|
1468
1471
|
|
@@ -1482,14 +1485,6 @@ class RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancer(dict):
|
|
1482
1485
|
"""
|
1483
1486
|
return pulumi.get(self, "ip_protocol")
|
1484
1487
|
|
1485
|
-
@property
|
1486
|
-
@pulumi.getter(name="loadBalancerType")
|
1487
|
-
def load_balancer_type(self) -> str:
|
1488
|
-
"""
|
1489
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1490
|
-
"""
|
1491
|
-
return pulumi.get(self, "load_balancer_type")
|
1492
|
-
|
1493
1488
|
@property
|
1494
1489
|
@pulumi.getter(name="networkUrl")
|
1495
1490
|
def network_url(self) -> str:
|
@@ -1514,6 +1509,14 @@ class RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancer(dict):
|
|
1514
1509
|
"""
|
1515
1510
|
return pulumi.get(self, "project")
|
1516
1511
|
|
1512
|
+
@property
|
1513
|
+
@pulumi.getter(name="loadBalancerType")
|
1514
|
+
def load_balancer_type(self) -> Optional[str]:
|
1515
|
+
"""
|
1516
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1517
|
+
"""
|
1518
|
+
return pulumi.get(self, "load_balancer_type")
|
1519
|
+
|
1517
1520
|
@property
|
1518
1521
|
@pulumi.getter
|
1519
1522
|
def region(self) -> Optional[str]:
|
@@ -1630,10 +1633,10 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancer(dict):
|
|
1630
1633
|
suggest = "ip_address"
|
1631
1634
|
elif key == "ipProtocol":
|
1632
1635
|
suggest = "ip_protocol"
|
1633
|
-
elif key == "loadBalancerType":
|
1634
|
-
suggest = "load_balancer_type"
|
1635
1636
|
elif key == "networkUrl":
|
1636
1637
|
suggest = "network_url"
|
1638
|
+
elif key == "loadBalancerType":
|
1639
|
+
suggest = "load_balancer_type"
|
1637
1640
|
|
1638
1641
|
if suggest:
|
1639
1642
|
pulumi.log.warn(f"Key '{key}' not found in RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancer. Access the value via the '{suggest}' property getter instead.")
|
@@ -1649,26 +1652,27 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancer(dict):
|
|
1649
1652
|
def __init__(__self__, *,
|
1650
1653
|
ip_address: str,
|
1651
1654
|
ip_protocol: str,
|
1652
|
-
load_balancer_type: str,
|
1653
1655
|
network_url: str,
|
1654
1656
|
port: str,
|
1655
1657
|
project: str,
|
1658
|
+
load_balancer_type: Optional[str] = None,
|
1656
1659
|
region: Optional[str] = None):
|
1657
1660
|
"""
|
1658
1661
|
:param str ip_address: The frontend IP address of the load balancer.
|
1659
1662
|
:param str ip_protocol: The configured IP protocol of the load balancer. This value is case-sensitive. Possible values: ["tcp", "udp"]
|
1660
|
-
:param str load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1661
1663
|
:param str network_url: The fully qualified url of the network in which the load balancer belongs. This should be formatted like `projects/{project}/global/networks/{network}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network}`.
|
1662
1664
|
:param str port: The configured port of the load balancer.
|
1663
1665
|
:param str project: The ID of the project in which the load balancer belongs.
|
1666
|
+
:param str load_balancer_type: The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1664
1667
|
:param str region: The region of the load balancer. Only needed for regional load balancers.
|
1665
1668
|
"""
|
1666
1669
|
pulumi.set(__self__, "ip_address", ip_address)
|
1667
1670
|
pulumi.set(__self__, "ip_protocol", ip_protocol)
|
1668
|
-
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1669
1671
|
pulumi.set(__self__, "network_url", network_url)
|
1670
1672
|
pulumi.set(__self__, "port", port)
|
1671
1673
|
pulumi.set(__self__, "project", project)
|
1674
|
+
if load_balancer_type is not None:
|
1675
|
+
pulumi.set(__self__, "load_balancer_type", load_balancer_type)
|
1672
1676
|
if region is not None:
|
1673
1677
|
pulumi.set(__self__, "region", region)
|
1674
1678
|
|
@@ -1688,14 +1692,6 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancer(dict):
|
|
1688
1692
|
"""
|
1689
1693
|
return pulumi.get(self, "ip_protocol")
|
1690
1694
|
|
1691
|
-
@property
|
1692
|
-
@pulumi.getter(name="loadBalancerType")
|
1693
|
-
def load_balancer_type(self) -> str:
|
1694
|
-
"""
|
1695
|
-
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1696
|
-
"""
|
1697
|
-
return pulumi.get(self, "load_balancer_type")
|
1698
|
-
|
1699
1695
|
@property
|
1700
1696
|
@pulumi.getter(name="networkUrl")
|
1701
1697
|
def network_url(self) -> str:
|
@@ -1720,6 +1716,14 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancer(dict):
|
|
1720
1716
|
"""
|
1721
1717
|
return pulumi.get(self, "project")
|
1722
1718
|
|
1719
|
+
@property
|
1720
|
+
@pulumi.getter(name="loadBalancerType")
|
1721
|
+
def load_balancer_type(self) -> Optional[str]:
|
1722
|
+
"""
|
1723
|
+
The type of load balancer. This value is case-sensitive. Possible values: ["regionalL4ilb", "regionalL7ilb", "globalL7ilb"]
|
1724
|
+
"""
|
1725
|
+
return pulumi.get(self, "load_balancer_type")
|
1726
|
+
|
1723
1727
|
@property
|
1724
1728
|
@pulumi.getter
|
1725
1729
|
def region(self) -> Optional[str]:
|