pulumi-gcp 8.22.0a1741329280__py3-none-any.whl → 8.22.0a1741888019__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/alloydb/_inputs.py +66 -0
- pulumi_gcp/alloydb/outputs.py +95 -0
- pulumi_gcp/backupdisasterrecovery/_inputs.py +3 -3
- pulumi_gcp/backupdisasterrecovery/outputs.py +4 -4
- pulumi_gcp/certificatemanager/certificate.py +53 -7
- pulumi_gcp/certificatemanager/outputs.py +8 -2
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +600 -17
- pulumi_gcp/compute/backend_service.py +195 -7
- pulumi_gcp/compute/disk.py +108 -0
- pulumi_gcp/compute/firewall_policy_association.py +28 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_disk.py +23 -1
- pulumi_gcp/compute/get_region_disk.py +23 -1
- pulumi_gcp/compute/get_region_ssl_policy.py +203 -0
- pulumi_gcp/compute/outputs.py +623 -23
- pulumi_gcp/compute/region_backend_service.py +193 -7
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/shared_vpc_service_project.py +0 -4
- pulumi_gcp/compute/subnetwork.py +147 -0
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/datastream/_inputs.py +273 -0
- pulumi_gcp/datastream/connection_profile.py +54 -2
- pulumi_gcp/datastream/outputs.py +224 -0
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/_inputs.py +40 -0
- pulumi_gcp/eventarc/channel.py +85 -93
- pulumi_gcp/eventarc/google_api_source.py +997 -0
- pulumi_gcp/eventarc/outputs.py +41 -0
- pulumi_gcp/firebase/data_connect_service.py +40 -2
- pulumi_gcp/iam/__init__.py +2 -0
- pulumi_gcp/iam/_inputs.py +51 -18
- pulumi_gcp/iam/folders_policy_binding.py +10 -26
- pulumi_gcp/iam/oauth_client.py +979 -0
- pulumi_gcp/iam/oauth_client_credential.py +641 -0
- pulumi_gcp/iam/organizations_policy_binding.py +8 -24
- pulumi_gcp/iam/outputs.py +34 -12
- pulumi_gcp/iam/principal_access_boundary_policy.py +58 -22
- pulumi_gcp/iam/projects_policy_binding.py +8 -24
- pulumi_gcp/kms/crypto_key_version.py +14 -7
- pulumi_gcp/monitoring/_inputs.py +15 -18
- pulumi_gcp/monitoring/alert_policy.py +46 -0
- pulumi_gcp/monitoring/outputs.py +10 -12
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/_inputs.py +30 -18
- pulumi_gcp/networksecurity/backend_authentication_config.py +847 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +178 -94
- pulumi_gcp/networksecurity/intercept_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +161 -66
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +137 -80
- pulumi_gcp/networksecurity/mirroring_deployment.py +178 -94
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +161 -80
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +137 -105
- pulumi_gcp/networksecurity/outputs.py +20 -12
- pulumi_gcp/networkservices/endpoint_policy.py +12 -0
- pulumi_gcp/networkservices/grpc_route.py +12 -0
- pulumi_gcp/networkservices/http_route.py +16 -0
- pulumi_gcp/networkservices/mesh.py +16 -0
- pulumi_gcp/networkservices/service_binding.py +14 -0
- pulumi_gcp/networkservices/tcp_route.py +16 -0
- pulumi_gcp/networkservices/tls_route.py +12 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/tpu/_inputs.py +21 -1
- pulumi_gcp/tpu/outputs.py +13 -1
- pulumi_gcp/tpu/v2_vm.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +6 -0
- pulumi_gcp/vmwareengine/outputs.py +8 -0
- pulumi_gcp/workstations/workstation_cluster.py +137 -1
- {pulumi_gcp-8.22.0a1741329280.dist-info → pulumi_gcp-8.22.0a1741888019.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.22.0a1741329280.dist-info → pulumi_gcp-8.22.0a1741888019.dist-info}/RECORD +75 -70
- {pulumi_gcp-8.22.0a1741329280.dist-info → pulumi_gcp-8.22.0a1741888019.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.22.0a1741329280.dist-info → pulumi_gcp-8.22.0a1741888019.dist-info}/top_level.txt +0 -0
@@ -145,8 +145,6 @@ class SharedVPCServiceProject(pulumi.CustomResource):
|
|
145
145
|
[the Project API documentation](https://cloud.google.com/compute/docs/reference/latest/projects),
|
146
146
|
where the Shared VPC feature is referred to by its former name "XPN".
|
147
147
|
|
148
|
-
> **Note:** If Shared VPC Admin role is set at the folder level, use the google-beta provider. The google provider only supports this permission at project or organizational level currently. [[0]](https://cloud.google.com/vpc/docs/provisioning-shared-vpc#enable-shared-vpc-host)
|
149
|
-
|
150
148
|
## Example Usage
|
151
149
|
|
152
150
|
```python
|
@@ -195,8 +193,6 @@ class SharedVPCServiceProject(pulumi.CustomResource):
|
|
195
193
|
[the Project API documentation](https://cloud.google.com/compute/docs/reference/latest/projects),
|
196
194
|
where the Shared VPC feature is referred to by its former name "XPN".
|
197
195
|
|
198
|
-
> **Note:** If Shared VPC Admin role is set at the folder level, use the google-beta provider. The google provider only supports this permission at project or organizational level currently. [[0]](https://cloud.google.com/vpc/docs/provisioning-shared-vpc#enable-shared-vpc-host)
|
199
|
-
|
200
196
|
## Example Usage
|
201
197
|
|
202
198
|
```python
|
pulumi_gcp/compute/subnetwork.py
CHANGED
@@ -26,6 +26,7 @@ class SubnetworkArgs:
|
|
26
26
|
description: Optional[pulumi.Input[str]] = None,
|
27
27
|
external_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
28
28
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
29
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
29
30
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
30
31
|
log_config: Optional[pulumi.Input['SubnetworkLogConfigArgs']] = None,
|
31
32
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -59,6 +60,15 @@ class SubnetworkArgs:
|
|
59
60
|
10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
|
60
61
|
non-overlapping within a network. Only IPv4 is supported.
|
61
62
|
Field is optional when `reserved_internal_range` is defined, otherwise required.
|
63
|
+
:param pulumi.Input[str] ip_collection: Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
64
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
65
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
66
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
67
|
+
Full resource URL, as in:
|
68
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
69
|
+
Partial URL, as in:
|
70
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
71
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
62
72
|
:param pulumi.Input[str] ipv6_access_type: The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation
|
63
73
|
or the first time the subnet is updated into IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet
|
64
74
|
cannot enable direct path.
|
@@ -121,6 +131,8 @@ class SubnetworkArgs:
|
|
121
131
|
pulumi.set(__self__, "external_ipv6_prefix", external_ipv6_prefix)
|
122
132
|
if ip_cidr_range is not None:
|
123
133
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
134
|
+
if ip_collection is not None:
|
135
|
+
pulumi.set(__self__, "ip_collection", ip_collection)
|
124
136
|
if ipv6_access_type is not None:
|
125
137
|
pulumi.set(__self__, "ipv6_access_type", ipv6_access_type)
|
126
138
|
if log_config is not None:
|
@@ -221,6 +233,26 @@ class SubnetworkArgs:
|
|
221
233
|
def ip_cidr_range(self, value: Optional[pulumi.Input[str]]):
|
222
234
|
pulumi.set(self, "ip_cidr_range", value)
|
223
235
|
|
236
|
+
@property
|
237
|
+
@pulumi.getter(name="ipCollection")
|
238
|
+
def ip_collection(self) -> Optional[pulumi.Input[str]]:
|
239
|
+
"""
|
240
|
+
Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
241
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
242
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
243
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
244
|
+
Full resource URL, as in:
|
245
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
246
|
+
Partial URL, as in:
|
247
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
248
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "ip_collection")
|
251
|
+
|
252
|
+
@ip_collection.setter
|
253
|
+
def ip_collection(self, value: Optional[pulumi.Input[str]]):
|
254
|
+
pulumi.set(self, "ip_collection", value)
|
255
|
+
|
224
256
|
@property
|
225
257
|
@pulumi.getter(name="ipv6AccessType")
|
226
258
|
def ipv6_access_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -428,8 +460,10 @@ class _SubnetworkState:
|
|
428
460
|
gateway_address: Optional[pulumi.Input[str]] = None,
|
429
461
|
internal_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
430
462
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
463
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
431
464
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
432
465
|
ipv6_cidr_range: Optional[pulumi.Input[str]] = None,
|
466
|
+
ipv6_gce_endpoint: Optional[pulumi.Input[str]] = None,
|
433
467
|
log_config: Optional[pulumi.Input['SubnetworkLogConfigArgs']] = None,
|
434
468
|
name: Optional[pulumi.Input[str]] = None,
|
435
469
|
network: Optional[pulumi.Input[str]] = None,
|
@@ -465,11 +499,25 @@ class _SubnetworkState:
|
|
465
499
|
10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
|
466
500
|
non-overlapping within a network. Only IPv4 is supported.
|
467
501
|
Field is optional when `reserved_internal_range` is defined, otherwise required.
|
502
|
+
:param pulumi.Input[str] ip_collection: Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
503
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
504
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
505
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
506
|
+
Full resource URL, as in:
|
507
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
508
|
+
Partial URL, as in:
|
509
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
510
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
468
511
|
:param pulumi.Input[str] ipv6_access_type: The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation
|
469
512
|
or the first time the subnet is updated into IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet
|
470
513
|
cannot enable direct path.
|
471
514
|
Possible values are: `EXTERNAL`, `INTERNAL`.
|
472
515
|
:param pulumi.Input[str] ipv6_cidr_range: The range of internal IPv6 addresses that are owned by this subnetwork.
|
516
|
+
:param pulumi.Input[str] ipv6_gce_endpoint: Possible endpoints of this subnetwork. It can be one of the following:
|
517
|
+
* VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork
|
518
|
+
gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb.
|
519
|
+
* VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve
|
520
|
+
IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
|
473
521
|
:param pulumi.Input['SubnetworkLogConfigArgs'] log_config: This field denotes the VPC flow logging options for this subnetwork. If
|
474
522
|
logging is enabled, logs are exported to Cloud Logging. Flow logging
|
475
523
|
isn't supported if the subnet `purpose` field is set to subnetwork is
|
@@ -545,10 +593,14 @@ class _SubnetworkState:
|
|
545
593
|
pulumi.set(__self__, "internal_ipv6_prefix", internal_ipv6_prefix)
|
546
594
|
if ip_cidr_range is not None:
|
547
595
|
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
596
|
+
if ip_collection is not None:
|
597
|
+
pulumi.set(__self__, "ip_collection", ip_collection)
|
548
598
|
if ipv6_access_type is not None:
|
549
599
|
pulumi.set(__self__, "ipv6_access_type", ipv6_access_type)
|
550
600
|
if ipv6_cidr_range is not None:
|
551
601
|
pulumi.set(__self__, "ipv6_cidr_range", ipv6_cidr_range)
|
602
|
+
if ipv6_gce_endpoint is not None:
|
603
|
+
pulumi.set(__self__, "ipv6_gce_endpoint", ipv6_gce_endpoint)
|
552
604
|
if log_config is not None:
|
553
605
|
pulumi.set(__self__, "log_config", log_config)
|
554
606
|
if name is not None:
|
@@ -687,6 +739,26 @@ class _SubnetworkState:
|
|
687
739
|
def ip_cidr_range(self, value: Optional[pulumi.Input[str]]):
|
688
740
|
pulumi.set(self, "ip_cidr_range", value)
|
689
741
|
|
742
|
+
@property
|
743
|
+
@pulumi.getter(name="ipCollection")
|
744
|
+
def ip_collection(self) -> Optional[pulumi.Input[str]]:
|
745
|
+
"""
|
746
|
+
Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
747
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
748
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
749
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
750
|
+
Full resource URL, as in:
|
751
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
752
|
+
Partial URL, as in:
|
753
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
754
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
755
|
+
"""
|
756
|
+
return pulumi.get(self, "ip_collection")
|
757
|
+
|
758
|
+
@ip_collection.setter
|
759
|
+
def ip_collection(self, value: Optional[pulumi.Input[str]]):
|
760
|
+
pulumi.set(self, "ip_collection", value)
|
761
|
+
|
690
762
|
@property
|
691
763
|
@pulumi.getter(name="ipv6AccessType")
|
692
764
|
def ipv6_access_type(self) -> Optional[pulumi.Input[str]]:
|
@@ -714,6 +786,22 @@ class _SubnetworkState:
|
|
714
786
|
def ipv6_cidr_range(self, value: Optional[pulumi.Input[str]]):
|
715
787
|
pulumi.set(self, "ipv6_cidr_range", value)
|
716
788
|
|
789
|
+
@property
|
790
|
+
@pulumi.getter(name="ipv6GceEndpoint")
|
791
|
+
def ipv6_gce_endpoint(self) -> Optional[pulumi.Input[str]]:
|
792
|
+
"""
|
793
|
+
Possible endpoints of this subnetwork. It can be one of the following:
|
794
|
+
* VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork
|
795
|
+
gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb.
|
796
|
+
* VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve
|
797
|
+
IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
|
798
|
+
"""
|
799
|
+
return pulumi.get(self, "ipv6_gce_endpoint")
|
800
|
+
|
801
|
+
@ipv6_gce_endpoint.setter
|
802
|
+
def ipv6_gce_endpoint(self, value: Optional[pulumi.Input[str]]):
|
803
|
+
pulumi.set(self, "ipv6_gce_endpoint", value)
|
804
|
+
|
717
805
|
@property
|
718
806
|
@pulumi.getter(name="logConfig")
|
719
807
|
def log_config(self) -> Optional[pulumi.Input['SubnetworkLogConfigArgs']]:
|
@@ -944,6 +1032,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
944
1032
|
description: Optional[pulumi.Input[str]] = None,
|
945
1033
|
external_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
946
1034
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
1035
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
947
1036
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
948
1037
|
log_config: Optional[pulumi.Input[Union['SubnetworkLogConfigArgs', 'SubnetworkLogConfigArgsDict']]] = None,
|
949
1038
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -1216,6 +1305,15 @@ class Subnetwork(pulumi.CustomResource):
|
|
1216
1305
|
10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
|
1217
1306
|
non-overlapping within a network. Only IPv4 is supported.
|
1218
1307
|
Field is optional when `reserved_internal_range` is defined, otherwise required.
|
1308
|
+
:param pulumi.Input[str] ip_collection: Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
1309
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
1310
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
1311
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
1312
|
+
Full resource URL, as in:
|
1313
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1314
|
+
Partial URL, as in:
|
1315
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1316
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1219
1317
|
:param pulumi.Input[str] ipv6_access_type: The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation
|
1220
1318
|
or the first time the subnet is updated into IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet
|
1221
1319
|
cannot enable direct path.
|
@@ -1541,6 +1639,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
1541
1639
|
description: Optional[pulumi.Input[str]] = None,
|
1542
1640
|
external_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
1543
1641
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
1642
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
1544
1643
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
1545
1644
|
log_config: Optional[pulumi.Input[Union['SubnetworkLogConfigArgs', 'SubnetworkLogConfigArgsDict']]] = None,
|
1546
1645
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -1568,6 +1667,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
1568
1667
|
__props__.__dict__["description"] = description
|
1569
1668
|
__props__.__dict__["external_ipv6_prefix"] = external_ipv6_prefix
|
1570
1669
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
1670
|
+
__props__.__dict__["ip_collection"] = ip_collection
|
1571
1671
|
__props__.__dict__["ipv6_access_type"] = ipv6_access_type
|
1572
1672
|
__props__.__dict__["log_config"] = log_config
|
1573
1673
|
__props__.__dict__["name"] = name
|
@@ -1589,6 +1689,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
1589
1689
|
__props__.__dict__["gateway_address"] = None
|
1590
1690
|
__props__.__dict__["internal_ipv6_prefix"] = None
|
1591
1691
|
__props__.__dict__["ipv6_cidr_range"] = None
|
1692
|
+
__props__.__dict__["ipv6_gce_endpoint"] = None
|
1592
1693
|
__props__.__dict__["self_link"] = None
|
1593
1694
|
__props__.__dict__["subnetwork_id"] = None
|
1594
1695
|
super(Subnetwork, __self__).__init__(
|
@@ -1609,8 +1710,10 @@ class Subnetwork(pulumi.CustomResource):
|
|
1609
1710
|
gateway_address: Optional[pulumi.Input[str]] = None,
|
1610
1711
|
internal_ipv6_prefix: Optional[pulumi.Input[str]] = None,
|
1611
1712
|
ip_cidr_range: Optional[pulumi.Input[str]] = None,
|
1713
|
+
ip_collection: Optional[pulumi.Input[str]] = None,
|
1612
1714
|
ipv6_access_type: Optional[pulumi.Input[str]] = None,
|
1613
1715
|
ipv6_cidr_range: Optional[pulumi.Input[str]] = None,
|
1716
|
+
ipv6_gce_endpoint: Optional[pulumi.Input[str]] = None,
|
1614
1717
|
log_config: Optional[pulumi.Input[Union['SubnetworkLogConfigArgs', 'SubnetworkLogConfigArgsDict']]] = None,
|
1615
1718
|
name: Optional[pulumi.Input[str]] = None,
|
1616
1719
|
network: Optional[pulumi.Input[str]] = None,
|
@@ -1651,11 +1754,25 @@ class Subnetwork(pulumi.CustomResource):
|
|
1651
1754
|
10.0.0.0/8 or 192.168.0.0/16. Ranges must be unique and
|
1652
1755
|
non-overlapping within a network. Only IPv4 is supported.
|
1653
1756
|
Field is optional when `reserved_internal_range` is defined, otherwise required.
|
1757
|
+
:param pulumi.Input[str] ip_collection: Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
1758
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
1759
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
1760
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
1761
|
+
Full resource URL, as in:
|
1762
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1763
|
+
Partial URL, as in:
|
1764
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1765
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1654
1766
|
:param pulumi.Input[str] ipv6_access_type: The access type of IPv6 address this subnet holds. It's immutable and can only be specified during creation
|
1655
1767
|
or the first time the subnet is updated into IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet
|
1656
1768
|
cannot enable direct path.
|
1657
1769
|
Possible values are: `EXTERNAL`, `INTERNAL`.
|
1658
1770
|
:param pulumi.Input[str] ipv6_cidr_range: The range of internal IPv6 addresses that are owned by this subnetwork.
|
1771
|
+
:param pulumi.Input[str] ipv6_gce_endpoint: Possible endpoints of this subnetwork. It can be one of the following:
|
1772
|
+
* VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork
|
1773
|
+
gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb.
|
1774
|
+
* VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve
|
1775
|
+
IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
|
1659
1776
|
:param pulumi.Input[Union['SubnetworkLogConfigArgs', 'SubnetworkLogConfigArgsDict']] log_config: This field denotes the VPC flow logging options for this subnetwork. If
|
1660
1777
|
logging is enabled, logs are exported to Cloud Logging. Flow logging
|
1661
1778
|
isn't supported if the subnet `purpose` field is set to subnetwork is
|
@@ -1724,8 +1841,10 @@ class Subnetwork(pulumi.CustomResource):
|
|
1724
1841
|
__props__.__dict__["gateway_address"] = gateway_address
|
1725
1842
|
__props__.__dict__["internal_ipv6_prefix"] = internal_ipv6_prefix
|
1726
1843
|
__props__.__dict__["ip_cidr_range"] = ip_cidr_range
|
1844
|
+
__props__.__dict__["ip_collection"] = ip_collection
|
1727
1845
|
__props__.__dict__["ipv6_access_type"] = ipv6_access_type
|
1728
1846
|
__props__.__dict__["ipv6_cidr_range"] = ipv6_cidr_range
|
1847
|
+
__props__.__dict__["ipv6_gce_endpoint"] = ipv6_gce_endpoint
|
1729
1848
|
__props__.__dict__["log_config"] = log_config
|
1730
1849
|
__props__.__dict__["name"] = name
|
1731
1850
|
__props__.__dict__["network"] = network
|
@@ -1818,6 +1937,22 @@ class Subnetwork(pulumi.CustomResource):
|
|
1818
1937
|
"""
|
1819
1938
|
return pulumi.get(self, "ip_cidr_range")
|
1820
1939
|
|
1940
|
+
@property
|
1941
|
+
@pulumi.getter(name="ipCollection")
|
1942
|
+
def ip_collection(self) -> pulumi.Output[Optional[str]]:
|
1943
|
+
"""
|
1944
|
+
Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP
|
1945
|
+
in EXTERNAL_IPV6_SUBNETWORK_CREATION mode.
|
1946
|
+
Use one of the following formats to specify a sub-PDP when creating an
|
1947
|
+
IPv6 NetLB forwarding rule using BYOIP:
|
1948
|
+
Full resource URL, as in:
|
1949
|
+
* `https://www.googleapis.com/compute/v1/projects/{{projectId}}/regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1950
|
+
Partial URL, as in:
|
1951
|
+
* `projects/{{projectId}}/regions/region/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1952
|
+
* `regions/{{region}}/publicDelegatedPrefixes/{{sub-pdp-name}}`
|
1953
|
+
"""
|
1954
|
+
return pulumi.get(self, "ip_collection")
|
1955
|
+
|
1821
1956
|
@property
|
1822
1957
|
@pulumi.getter(name="ipv6AccessType")
|
1823
1958
|
def ipv6_access_type(self) -> pulumi.Output[Optional[str]]:
|
@@ -1837,6 +1972,18 @@ class Subnetwork(pulumi.CustomResource):
|
|
1837
1972
|
"""
|
1838
1973
|
return pulumi.get(self, "ipv6_cidr_range")
|
1839
1974
|
|
1975
|
+
@property
|
1976
|
+
@pulumi.getter(name="ipv6GceEndpoint")
|
1977
|
+
def ipv6_gce_endpoint(self) -> pulumi.Output[str]:
|
1978
|
+
"""
|
1979
|
+
Possible endpoints of this subnetwork. It can be one of the following:
|
1980
|
+
* VM_ONLY: The subnetwork can be used for creating instances and IPv6 addresses with VM endpoint type. Such a subnetwork
|
1981
|
+
gets external IPv6 ranges from a public delegated prefix and cannot be used to create NetLb.
|
1982
|
+
* VM_AND_FR: The subnetwork can be used for creating both VM instances and Forwarding Rules. It can also be used to reserve
|
1983
|
+
IPv6 addresses with both VM and FR endpoint types. Such a subnetwork gets its IPv6 range from Google IP Pool directly.
|
1984
|
+
"""
|
1985
|
+
return pulumi.get(self, "ipv6_gce_endpoint")
|
1986
|
+
|
1840
1987
|
@property
|
1841
1988
|
@pulumi.getter(name="logConfig")
|
1842
1989
|
def log_config(self) -> pulumi.Output[Optional['outputs.SubnetworkLogConfig']]:
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -8164,7 +8164,7 @@ if not MYPY:
|
|
8164
8164
|
"""
|
8165
8165
|
enable_components: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
8166
8166
|
"""
|
8167
|
-
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
8167
|
+
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
8168
8168
|
"""
|
8169
8169
|
managed_prometheus: NotRequired[pulumi.Input['ClusterMonitoringConfigManagedPrometheusArgsDict']]
|
8170
8170
|
"""
|
@@ -8181,7 +8181,7 @@ class ClusterMonitoringConfigArgs:
|
|
8181
8181
|
managed_prometheus: Optional[pulumi.Input['ClusterMonitoringConfigManagedPrometheusArgs']] = None):
|
8182
8182
|
"""
|
8183
8183
|
:param pulumi.Input['ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs'] advanced_datapath_observability_config: Configuration for Advanced Datapath Monitoring. Structure is documented below.
|
8184
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
8184
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
8185
8185
|
:param pulumi.Input['ClusterMonitoringConfigManagedPrometheusArgs'] managed_prometheus: Configuration for Managed Service for Prometheus. Structure is documented below.
|
8186
8186
|
"""
|
8187
8187
|
if advanced_datapath_observability_config is not None:
|
@@ -8207,7 +8207,7 @@ class ClusterMonitoringConfigArgs:
|
|
8207
8207
|
@pulumi.getter(name="enableComponents")
|
8208
8208
|
def enable_components(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
8209
8209
|
"""
|
8210
|
-
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
8210
|
+
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
8211
8211
|
"""
|
8212
8212
|
return pulumi.get(self, "enable_components")
|
8213
8213
|
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -6746,7 +6746,7 @@ class ClusterMonitoringConfig(dict):
|
|
6746
6746
|
managed_prometheus: Optional['outputs.ClusterMonitoringConfigManagedPrometheus'] = None):
|
6747
6747
|
"""
|
6748
6748
|
:param 'ClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs' advanced_datapath_observability_config: Configuration for Advanced Datapath Monitoring. Structure is documented below.
|
6749
|
-
:param Sequence[str] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
6749
|
+
:param Sequence[str] enable_components: The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
6750
6750
|
:param 'ClusterMonitoringConfigManagedPrometheusArgs' managed_prometheus: Configuration for Managed Service for Prometheus. Structure is documented below.
|
6751
6751
|
"""
|
6752
6752
|
if advanced_datapath_observability_config is not None:
|
@@ -6768,7 +6768,7 @@ class ClusterMonitoringConfig(dict):
|
|
6768
6768
|
@pulumi.getter(name="enableComponents")
|
6769
6769
|
def enable_components(self) -> Optional[Sequence[str]]:
|
6770
6770
|
"""
|
6771
|
-
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR` and `
|
6771
|
+
The GKE components exposing metrics. Supported values include: `SYSTEM_COMPONENTS`, `APISERVER`, `SCHEDULER`, `CONTROLLER_MANAGER`, `STORAGE`, `HPA`, `POD`, `DAEMONSET`, `DEPLOYMENT`, `STATEFULSET`, `KUBELET`, `CADVISOR`, `DCGM` and `JOBSET`. In beta provider, `WORKLOADS` is supported on top of those 12 values. (`WORKLOADS` is deprecated and removed in GKE 1.24.) `KUBELET` and `CADVISOR` are only supported in GKE 1.29.3-gke.1093000 and above. `JOBSET` is only supported in GKE 1.32.1-gke.1357001 and above.
|
6772
6772
|
"""
|
6773
6773
|
return pulumi.get(self, "enable_components")
|
6774
6774
|
|
@@ -17790,7 +17790,7 @@ class GetClusterMonitoringConfigResult(dict):
|
|
17790
17790
|
managed_prometheuses: Sequence['outputs.GetClusterMonitoringConfigManagedPrometheusResult']):
|
17791
17791
|
"""
|
17792
17792
|
:param Sequence['GetClusterMonitoringConfigAdvancedDatapathObservabilityConfigArgs'] advanced_datapath_observability_configs: Configuration of Advanced Datapath Observability features.
|
17793
|
-
:param Sequence[str] enable_components: GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR and
|
17793
|
+
:param Sequence[str] enable_components: GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR, DCGM and JOBSET.
|
17794
17794
|
:param Sequence['GetClusterMonitoringConfigManagedPrometheusArgs'] managed_prometheuses: Configuration for Google Cloud Managed Services for Prometheus.
|
17795
17795
|
"""
|
17796
17796
|
pulumi.set(__self__, "advanced_datapath_observability_configs", advanced_datapath_observability_configs)
|
@@ -17809,7 +17809,7 @@ class GetClusterMonitoringConfigResult(dict):
|
|
17809
17809
|
@pulumi.getter(name="enableComponents")
|
17810
17810
|
def enable_components(self) -> Sequence[str]:
|
17811
17811
|
"""
|
17812
|
-
GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR and
|
17812
|
+
GKE components exposing metrics. Valid values include SYSTEM_COMPONENTS, APISERVER, SCHEDULER, CONTROLLER_MANAGER, STORAGE, HPA, POD, DAEMONSET, DEPLOYMENT, STATEFULSET, WORKLOADS, KUBELET, CADVISOR, DCGM and JOBSET.
|
17813
17813
|
"""
|
17814
17814
|
return pulumi.get(self, "enable_components")
|
17815
17815
|
|