pulumi-gcp 7.28.0__py3-none-any.whl → 7.28.0a1718754929__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +0 -59
- pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
- pulumi_gcp/accesscontextmanager/access_levels.py +20 -0
- pulumi_gcp/accesscontextmanager/outputs.py +74 -58
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/bigtable/_inputs.py +0 -40
- pulumi_gcp/bigtable/outputs.py +0 -49
- pulumi_gcp/bigtable/table.py +0 -54
- pulumi_gcp/cloudbuildv2/_inputs.py +0 -383
- pulumi_gcp/cloudbuildv2/connection.py +2 -110
- pulumi_gcp/cloudbuildv2/outputs.py +0 -421
- pulumi_gcp/composer/__init__.py +0 -3
- pulumi_gcp/compute/_inputs.py +2 -4
- pulumi_gcp/compute/backend_service.py +48 -28
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -10
- pulumi_gcp/compute/region_backend_service.py +48 -35
- pulumi_gcp/compute/region_network_endpoint.py +0 -187
- pulumi_gcp/compute/region_network_endpoint_group.py +9 -49
- pulumi_gcp/compute/region_target_https_proxy.py +14 -7
- pulumi_gcp/compute/target_https_proxy.py +14 -28
- pulumi_gcp/config/__init__.pyi +0 -2
- pulumi_gcp/config/vars.py +0 -4
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +0 -227
- pulumi_gcp/discoveryengine/data_store.py +0 -108
- pulumi_gcp/discoveryengine/outputs.py +0 -280
- pulumi_gcp/edgecontainer/_inputs.py +1 -107
- pulumi_gcp/edgecontainer/outputs.py +1 -123
- pulumi_gcp/gkehub/_inputs.py +0 -16
- pulumi_gcp/gkehub/outputs.py +1 -15
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/netapp/__init__.py +0 -1
- pulumi_gcp/netapp/active_directory.py +0 -55
- pulumi_gcp/provider.py +0 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +0 -3
- pulumi_gcp/securitycenter/_inputs.py +0 -1105
- pulumi_gcp/securitycenter/outputs.py +0 -1048
- pulumi_gcp/vertex/ai_feature_online_store.py +8 -37
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/RECORD +46 -58
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/WHEEL +1 -1
- pulumi_gcp/composer/get_user_workloads_config_map.py +0 -190
- pulumi_gcp/composer/get_user_workloads_secret.py +0 -188
- pulumi_gcp/composer/user_workloads_config_map.py +0 -475
- pulumi_gcp/managedkafka/__init__.py +0 -11
- pulumi_gcp/managedkafka/_inputs.py +0 -169
- pulumi_gcp/managedkafka/cluster.py +0 -807
- pulumi_gcp/managedkafka/outputs.py +0 -197
- pulumi_gcp/managedkafka/topic.py +0 -599
- pulumi_gcp/netapp/backup.py +0 -903
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +0 -725
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +0 -713
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +0 -706
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/top_level.txt +0 -0
@@ -16,9 +16,7 @@ class RegionNetworkEndpointArgs:
|
|
16
16
|
def __init__(__self__, *,
|
17
17
|
port: pulumi.Input[int],
|
18
18
|
region_network_endpoint_group: pulumi.Input[str],
|
19
|
-
client_destination_port: Optional[pulumi.Input[int]] = None,
|
20
19
|
fqdn: Optional[pulumi.Input[str]] = None,
|
21
|
-
instance: Optional[pulumi.Input[str]] = None,
|
22
20
|
ip_address: Optional[pulumi.Input[str]] = None,
|
23
21
|
project: Optional[pulumi.Input[str]] = None,
|
24
22
|
region: Optional[pulumi.Input[str]] = None):
|
@@ -29,11 +27,8 @@ class RegionNetworkEndpointArgs:
|
|
29
27
|
|
30
28
|
|
31
29
|
- - -
|
32
|
-
:param pulumi.Input[int] client_destination_port: Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
33
30
|
:param pulumi.Input[str] fqdn: Fully qualified domain name of network endpoint.
|
34
31
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_FQDN_PORT.
|
35
|
-
:param pulumi.Input[str] instance: The name for a specific VM instance that the IP address belongs to.
|
36
|
-
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
37
32
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
38
33
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
39
34
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -42,12 +37,8 @@ class RegionNetworkEndpointArgs:
|
|
42
37
|
"""
|
43
38
|
pulumi.set(__self__, "port", port)
|
44
39
|
pulumi.set(__self__, "region_network_endpoint_group", region_network_endpoint_group)
|
45
|
-
if client_destination_port is not None:
|
46
|
-
pulumi.set(__self__, "client_destination_port", client_destination_port)
|
47
40
|
if fqdn is not None:
|
48
41
|
pulumi.set(__self__, "fqdn", fqdn)
|
49
|
-
if instance is not None:
|
50
|
-
pulumi.set(__self__, "instance", instance)
|
51
42
|
if ip_address is not None:
|
52
43
|
pulumi.set(__self__, "ip_address", ip_address)
|
53
44
|
if project is not None:
|
@@ -82,18 +73,6 @@ class RegionNetworkEndpointArgs:
|
|
82
73
|
def region_network_endpoint_group(self, value: pulumi.Input[str]):
|
83
74
|
pulumi.set(self, "region_network_endpoint_group", value)
|
84
75
|
|
85
|
-
@property
|
86
|
-
@pulumi.getter(name="clientDestinationPort")
|
87
|
-
def client_destination_port(self) -> Optional[pulumi.Input[int]]:
|
88
|
-
"""
|
89
|
-
Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
90
|
-
"""
|
91
|
-
return pulumi.get(self, "client_destination_port")
|
92
|
-
|
93
|
-
@client_destination_port.setter
|
94
|
-
def client_destination_port(self, value: Optional[pulumi.Input[int]]):
|
95
|
-
pulumi.set(self, "client_destination_port", value)
|
96
|
-
|
97
76
|
@property
|
98
77
|
@pulumi.getter
|
99
78
|
def fqdn(self) -> Optional[pulumi.Input[str]]:
|
@@ -107,19 +86,6 @@ class RegionNetworkEndpointArgs:
|
|
107
86
|
def fqdn(self, value: Optional[pulumi.Input[str]]):
|
108
87
|
pulumi.set(self, "fqdn", value)
|
109
88
|
|
110
|
-
@property
|
111
|
-
@pulumi.getter
|
112
|
-
def instance(self) -> Optional[pulumi.Input[str]]:
|
113
|
-
"""
|
114
|
-
The name for a specific VM instance that the IP address belongs to.
|
115
|
-
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
116
|
-
"""
|
117
|
-
return pulumi.get(self, "instance")
|
118
|
-
|
119
|
-
@instance.setter
|
120
|
-
def instance(self, value: Optional[pulumi.Input[str]]):
|
121
|
-
pulumi.set(self, "instance", value)
|
122
|
-
|
123
89
|
@property
|
124
90
|
@pulumi.getter(name="ipAddress")
|
125
91
|
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
@@ -162,9 +128,7 @@ class RegionNetworkEndpointArgs:
|
|
162
128
|
@pulumi.input_type
|
163
129
|
class _RegionNetworkEndpointState:
|
164
130
|
def __init__(__self__, *,
|
165
|
-
client_destination_port: Optional[pulumi.Input[int]] = None,
|
166
131
|
fqdn: Optional[pulumi.Input[str]] = None,
|
167
|
-
instance: Optional[pulumi.Input[str]] = None,
|
168
132
|
ip_address: Optional[pulumi.Input[str]] = None,
|
169
133
|
port: Optional[pulumi.Input[int]] = None,
|
170
134
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -172,11 +136,8 @@ class _RegionNetworkEndpointState:
|
|
172
136
|
region_network_endpoint_group: Optional[pulumi.Input[str]] = None):
|
173
137
|
"""
|
174
138
|
Input properties used for looking up and filtering RegionNetworkEndpoint resources.
|
175
|
-
:param pulumi.Input[int] client_destination_port: Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
176
139
|
:param pulumi.Input[str] fqdn: Fully qualified domain name of network endpoint.
|
177
140
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_FQDN_PORT.
|
178
|
-
:param pulumi.Input[str] instance: The name for a specific VM instance that the IP address belongs to.
|
179
|
-
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
180
141
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
181
142
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
182
143
|
:param pulumi.Input[int] port: Port number of network endpoint.
|
@@ -188,12 +149,8 @@ class _RegionNetworkEndpointState:
|
|
188
149
|
|
189
150
|
- - -
|
190
151
|
"""
|
191
|
-
if client_destination_port is not None:
|
192
|
-
pulumi.set(__self__, "client_destination_port", client_destination_port)
|
193
152
|
if fqdn is not None:
|
194
153
|
pulumi.set(__self__, "fqdn", fqdn)
|
195
|
-
if instance is not None:
|
196
|
-
pulumi.set(__self__, "instance", instance)
|
197
154
|
if ip_address is not None:
|
198
155
|
pulumi.set(__self__, "ip_address", ip_address)
|
199
156
|
if port is not None:
|
@@ -205,18 +162,6 @@ class _RegionNetworkEndpointState:
|
|
205
162
|
if region_network_endpoint_group is not None:
|
206
163
|
pulumi.set(__self__, "region_network_endpoint_group", region_network_endpoint_group)
|
207
164
|
|
208
|
-
@property
|
209
|
-
@pulumi.getter(name="clientDestinationPort")
|
210
|
-
def client_destination_port(self) -> Optional[pulumi.Input[int]]:
|
211
|
-
"""
|
212
|
-
Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
213
|
-
"""
|
214
|
-
return pulumi.get(self, "client_destination_port")
|
215
|
-
|
216
|
-
@client_destination_port.setter
|
217
|
-
def client_destination_port(self, value: Optional[pulumi.Input[int]]):
|
218
|
-
pulumi.set(self, "client_destination_port", value)
|
219
|
-
|
220
165
|
@property
|
221
166
|
@pulumi.getter
|
222
167
|
def fqdn(self) -> Optional[pulumi.Input[str]]:
|
@@ -230,19 +175,6 @@ class _RegionNetworkEndpointState:
|
|
230
175
|
def fqdn(self, value: Optional[pulumi.Input[str]]):
|
231
176
|
pulumi.set(self, "fqdn", value)
|
232
177
|
|
233
|
-
@property
|
234
|
-
@pulumi.getter
|
235
|
-
def instance(self) -> Optional[pulumi.Input[str]]:
|
236
|
-
"""
|
237
|
-
The name for a specific VM instance that the IP address belongs to.
|
238
|
-
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
239
|
-
"""
|
240
|
-
return pulumi.get(self, "instance")
|
241
|
-
|
242
|
-
@instance.setter
|
243
|
-
def instance(self, value: Optional[pulumi.Input[str]]):
|
244
|
-
pulumi.set(self, "instance", value)
|
245
|
-
|
246
178
|
@property
|
247
179
|
@pulumi.getter(name="ipAddress")
|
248
180
|
def ip_address(self) -> Optional[pulumi.Input[str]]:
|
@@ -314,9 +246,7 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
314
246
|
def __init__(__self__,
|
315
247
|
resource_name: str,
|
316
248
|
opts: Optional[pulumi.ResourceOptions] = None,
|
317
|
-
client_destination_port: Optional[pulumi.Input[int]] = None,
|
318
249
|
fqdn: Optional[pulumi.Input[str]] = None,
|
319
|
-
instance: Optional[pulumi.Input[str]] = None,
|
320
250
|
ip_address: Optional[pulumi.Input[str]] = None,
|
321
251
|
port: Optional[pulumi.Input[int]] = None,
|
322
252
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -378,49 +308,6 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
378
308
|
fqdn="backend.example.com",
|
379
309
|
port=443)
|
380
310
|
```
|
381
|
-
### Region Network Endpoint Portmap
|
382
|
-
|
383
|
-
```python
|
384
|
-
import pulumi
|
385
|
-
import pulumi_gcp as gcp
|
386
|
-
|
387
|
-
default = gcp.compute.Network("default",
|
388
|
-
name="network",
|
389
|
-
auto_create_subnetworks=False)
|
390
|
-
default_subnetwork = gcp.compute.Subnetwork("default",
|
391
|
-
name="subnetwork",
|
392
|
-
ip_cidr_range="10.0.0.0/16",
|
393
|
-
region="us-central1",
|
394
|
-
network=default.id)
|
395
|
-
default_region_network_endpoint_group = gcp.compute.RegionNetworkEndpointGroup("default",
|
396
|
-
name="portmap-neg",
|
397
|
-
region="us-central1",
|
398
|
-
network=default.id,
|
399
|
-
subnetwork=default_subnetwork.id,
|
400
|
-
network_endpoint_type="GCE_VM_IP_PORTMAP")
|
401
|
-
my_image = gcp.compute.get_image(family="debian-11",
|
402
|
-
project="debian-cloud")
|
403
|
-
default_instance = gcp.compute.Instance("default",
|
404
|
-
network_interfaces=[gcp.compute.InstanceNetworkInterfaceArgs(
|
405
|
-
access_configs=[gcp.compute.InstanceNetworkInterfaceAccessConfigArgs()],
|
406
|
-
subnetwork=default_subnetwork.id,
|
407
|
-
)],
|
408
|
-
name="instance",
|
409
|
-
machine_type="e2-medium",
|
410
|
-
zone="us-central1-a",
|
411
|
-
boot_disk=gcp.compute.InstanceBootDiskArgs(
|
412
|
-
initialize_params=gcp.compute.InstanceBootDiskInitializeParamsArgs(
|
413
|
-
image=my_image.self_link,
|
414
|
-
),
|
415
|
-
))
|
416
|
-
region_network_endpoint_portmap = gcp.compute.RegionNetworkEndpoint("region_network_endpoint_portmap",
|
417
|
-
region_network_endpoint_group=default_region_network_endpoint_group.name,
|
418
|
-
region="us-central1",
|
419
|
-
instance=default_instance.self_link,
|
420
|
-
port=80,
|
421
|
-
ip_address=default_instance.network_interfaces[0].network_ip,
|
422
|
-
client_destination_port=8080)
|
423
|
-
```
|
424
311
|
|
425
312
|
## Import
|
426
313
|
|
@@ -454,11 +341,8 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
454
341
|
|
455
342
|
:param str resource_name: The name of the resource.
|
456
343
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
457
|
-
:param pulumi.Input[int] client_destination_port: Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
458
344
|
:param pulumi.Input[str] fqdn: Fully qualified domain name of network endpoint.
|
459
345
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_FQDN_PORT.
|
460
|
-
:param pulumi.Input[str] instance: The name for a specific VM instance that the IP address belongs to.
|
461
|
-
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
462
346
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
463
347
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
464
348
|
:param pulumi.Input[int] port: Port number of network endpoint.
|
@@ -531,49 +415,6 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
531
415
|
fqdn="backend.example.com",
|
532
416
|
port=443)
|
533
417
|
```
|
534
|
-
### Region Network Endpoint Portmap
|
535
|
-
|
536
|
-
```python
|
537
|
-
import pulumi
|
538
|
-
import pulumi_gcp as gcp
|
539
|
-
|
540
|
-
default = gcp.compute.Network("default",
|
541
|
-
name="network",
|
542
|
-
auto_create_subnetworks=False)
|
543
|
-
default_subnetwork = gcp.compute.Subnetwork("default",
|
544
|
-
name="subnetwork",
|
545
|
-
ip_cidr_range="10.0.0.0/16",
|
546
|
-
region="us-central1",
|
547
|
-
network=default.id)
|
548
|
-
default_region_network_endpoint_group = gcp.compute.RegionNetworkEndpointGroup("default",
|
549
|
-
name="portmap-neg",
|
550
|
-
region="us-central1",
|
551
|
-
network=default.id,
|
552
|
-
subnetwork=default_subnetwork.id,
|
553
|
-
network_endpoint_type="GCE_VM_IP_PORTMAP")
|
554
|
-
my_image = gcp.compute.get_image(family="debian-11",
|
555
|
-
project="debian-cloud")
|
556
|
-
default_instance = gcp.compute.Instance("default",
|
557
|
-
network_interfaces=[gcp.compute.InstanceNetworkInterfaceArgs(
|
558
|
-
access_configs=[gcp.compute.InstanceNetworkInterfaceAccessConfigArgs()],
|
559
|
-
subnetwork=default_subnetwork.id,
|
560
|
-
)],
|
561
|
-
name="instance",
|
562
|
-
machine_type="e2-medium",
|
563
|
-
zone="us-central1-a",
|
564
|
-
boot_disk=gcp.compute.InstanceBootDiskArgs(
|
565
|
-
initialize_params=gcp.compute.InstanceBootDiskInitializeParamsArgs(
|
566
|
-
image=my_image.self_link,
|
567
|
-
),
|
568
|
-
))
|
569
|
-
region_network_endpoint_portmap = gcp.compute.RegionNetworkEndpoint("region_network_endpoint_portmap",
|
570
|
-
region_network_endpoint_group=default_region_network_endpoint_group.name,
|
571
|
-
region="us-central1",
|
572
|
-
instance=default_instance.self_link,
|
573
|
-
port=80,
|
574
|
-
ip_address=default_instance.network_interfaces[0].network_ip,
|
575
|
-
client_destination_port=8080)
|
576
|
-
```
|
577
418
|
|
578
419
|
## Import
|
579
420
|
|
@@ -620,9 +461,7 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
620
461
|
def _internal_init(__self__,
|
621
462
|
resource_name: str,
|
622
463
|
opts: Optional[pulumi.ResourceOptions] = None,
|
623
|
-
client_destination_port: Optional[pulumi.Input[int]] = None,
|
624
464
|
fqdn: Optional[pulumi.Input[str]] = None,
|
625
|
-
instance: Optional[pulumi.Input[str]] = None,
|
626
465
|
ip_address: Optional[pulumi.Input[str]] = None,
|
627
466
|
port: Optional[pulumi.Input[int]] = None,
|
628
467
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -637,9 +476,7 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
637
476
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
638
477
|
__props__ = RegionNetworkEndpointArgs.__new__(RegionNetworkEndpointArgs)
|
639
478
|
|
640
|
-
__props__.__dict__["client_destination_port"] = client_destination_port
|
641
479
|
__props__.__dict__["fqdn"] = fqdn
|
642
|
-
__props__.__dict__["instance"] = instance
|
643
480
|
__props__.__dict__["ip_address"] = ip_address
|
644
481
|
if port is None and not opts.urn:
|
645
482
|
raise TypeError("Missing required property 'port'")
|
@@ -659,9 +496,7 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
659
496
|
def get(resource_name: str,
|
660
497
|
id: pulumi.Input[str],
|
661
498
|
opts: Optional[pulumi.ResourceOptions] = None,
|
662
|
-
client_destination_port: Optional[pulumi.Input[int]] = None,
|
663
499
|
fqdn: Optional[pulumi.Input[str]] = None,
|
664
|
-
instance: Optional[pulumi.Input[str]] = None,
|
665
500
|
ip_address: Optional[pulumi.Input[str]] = None,
|
666
501
|
port: Optional[pulumi.Input[int]] = None,
|
667
502
|
project: Optional[pulumi.Input[str]] = None,
|
@@ -674,11 +509,8 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
674
509
|
:param str resource_name: The unique name of the resulting resource.
|
675
510
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
676
511
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
677
|
-
:param pulumi.Input[int] client_destination_port: Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
678
512
|
:param pulumi.Input[str] fqdn: Fully qualified domain name of network endpoint.
|
679
513
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_FQDN_PORT.
|
680
|
-
:param pulumi.Input[str] instance: The name for a specific VM instance that the IP address belongs to.
|
681
|
-
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
682
514
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
683
515
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
684
516
|
:param pulumi.Input[int] port: Port number of network endpoint.
|
@@ -694,9 +526,7 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
694
526
|
|
695
527
|
__props__ = _RegionNetworkEndpointState.__new__(_RegionNetworkEndpointState)
|
696
528
|
|
697
|
-
__props__.__dict__["client_destination_port"] = client_destination_port
|
698
529
|
__props__.__dict__["fqdn"] = fqdn
|
699
|
-
__props__.__dict__["instance"] = instance
|
700
530
|
__props__.__dict__["ip_address"] = ip_address
|
701
531
|
__props__.__dict__["port"] = port
|
702
532
|
__props__.__dict__["project"] = project
|
@@ -704,14 +534,6 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
704
534
|
__props__.__dict__["region_network_endpoint_group"] = region_network_endpoint_group
|
705
535
|
return RegionNetworkEndpoint(resource_name, opts=opts, __props__=__props__)
|
706
536
|
|
707
|
-
@property
|
708
|
-
@pulumi.getter(name="clientDestinationPort")
|
709
|
-
def client_destination_port(self) -> pulumi.Output[Optional[int]]:
|
710
|
-
"""
|
711
|
-
Client destination port for the `GCE_VM_IP_PORTMAP` NEG.
|
712
|
-
"""
|
713
|
-
return pulumi.get(self, "client_destination_port")
|
714
|
-
|
715
537
|
@property
|
716
538
|
@pulumi.getter
|
717
539
|
def fqdn(self) -> pulumi.Output[Optional[str]]:
|
@@ -721,15 +543,6 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
721
543
|
"""
|
722
544
|
return pulumi.get(self, "fqdn")
|
723
545
|
|
724
|
-
@property
|
725
|
-
@pulumi.getter
|
726
|
-
def instance(self) -> pulumi.Output[Optional[str]]:
|
727
|
-
"""
|
728
|
-
The name for a specific VM instance that the IP address belongs to.
|
729
|
-
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
730
|
-
"""
|
731
|
-
return pulumi.get(self, "instance")
|
732
|
-
|
733
546
|
@property
|
734
547
|
@pulumi.getter(name="ipAddress")
|
735
548
|
def ip_address(self) -> pulumi.Output[Optional[str]]:
|
@@ -57,7 +57,7 @@ class RegionNetworkEndpointGroupArgs:
|
|
57
57
|
"default" project network if unspecified.
|
58
58
|
:param pulumi.Input[str] network_endpoint_type: Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
59
59
|
Default value is `SERVERLESS`.
|
60
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT
|
60
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
61
61
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
62
62
|
If it is not provided, the provider project is used.
|
63
63
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
@@ -201,7 +201,7 @@ class RegionNetworkEndpointGroupArgs:
|
|
201
201
|
"""
|
202
202
|
Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
203
203
|
Default value is `SERVERLESS`.
|
204
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT
|
204
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
205
205
|
"""
|
206
206
|
return pulumi.get(self, "network_endpoint_type")
|
207
207
|
|
@@ -305,7 +305,7 @@ class _RegionNetworkEndpointGroupState:
|
|
305
305
|
"default" project network if unspecified.
|
306
306
|
:param pulumi.Input[str] network_endpoint_type: Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
307
307
|
Default value is `SERVERLESS`.
|
308
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT
|
308
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
309
309
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
310
310
|
If it is not provided, the provider project is used.
|
311
311
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
@@ -442,7 +442,7 @@ class _RegionNetworkEndpointGroupState:
|
|
442
442
|
"""
|
443
443
|
Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
444
444
|
Default value is `SERVERLESS`.
|
445
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT
|
445
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
446
446
|
"""
|
447
447
|
return pulumi.get(self, "network_endpoint_type")
|
448
448
|
|
@@ -551,8 +551,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
551
551
|
subnetwork: Optional[pulumi.Input[str]] = None,
|
552
552
|
__props__=None):
|
553
553
|
"""
|
554
|
-
A regional NEG that can support Serverless Products
|
555
|
-
external backends and providing traffic to the PSC port mapping endpoints.
|
554
|
+
A regional NEG that can support Serverless Products and proxying traffic to external backends.
|
556
555
|
|
557
556
|
To get more information about RegionNetworkEndpointGroup, see:
|
558
557
|
|
@@ -789,25 +788,6 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
789
788
|
network=default.id,
|
790
789
|
network_endpoint_type="INTERNET_FQDN_PORT")
|
791
790
|
```
|
792
|
-
### Region Network Endpoint Group Portmap
|
793
|
-
|
794
|
-
```python
|
795
|
-
import pulumi
|
796
|
-
import pulumi_gcp as gcp
|
797
|
-
|
798
|
-
default = gcp.compute.Network("default", name="network")
|
799
|
-
default_subnetwork = gcp.compute.Subnetwork("default",
|
800
|
-
name="subnetwork",
|
801
|
-
ip_cidr_range="10.0.0.0/16",
|
802
|
-
region="us-central1",
|
803
|
-
network=default.id)
|
804
|
-
region_network_endpoint_group_portmap = gcp.compute.RegionNetworkEndpointGroup("region_network_endpoint_group_portmap",
|
805
|
-
name="portmap-neg",
|
806
|
-
region="us-central1",
|
807
|
-
network=default.id,
|
808
|
-
subnetwork=default_subnetwork.id,
|
809
|
-
network_endpoint_type="GCE_VM_IP_PORTMAP")
|
810
|
-
```
|
811
791
|
|
812
792
|
## Import
|
813
793
|
|
@@ -864,7 +844,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
864
844
|
"default" project network if unspecified.
|
865
845
|
:param pulumi.Input[str] network_endpoint_type: Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
866
846
|
Default value is `SERVERLESS`.
|
867
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT
|
847
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
868
848
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
869
849
|
If it is not provided, the provider project is used.
|
870
850
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
@@ -887,8 +867,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
887
867
|
args: RegionNetworkEndpointGroupArgs,
|
888
868
|
opts: Optional[pulumi.ResourceOptions] = None):
|
889
869
|
"""
|
890
|
-
A regional NEG that can support Serverless Products
|
891
|
-
external backends and providing traffic to the PSC port mapping endpoints.
|
870
|
+
A regional NEG that can support Serverless Products and proxying traffic to external backends.
|
892
871
|
|
893
872
|
To get more information about RegionNetworkEndpointGroup, see:
|
894
873
|
|
@@ -1125,25 +1104,6 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1125
1104
|
network=default.id,
|
1126
1105
|
network_endpoint_type="INTERNET_FQDN_PORT")
|
1127
1106
|
```
|
1128
|
-
### Region Network Endpoint Group Portmap
|
1129
|
-
|
1130
|
-
```python
|
1131
|
-
import pulumi
|
1132
|
-
import pulumi_gcp as gcp
|
1133
|
-
|
1134
|
-
default = gcp.compute.Network("default", name="network")
|
1135
|
-
default_subnetwork = gcp.compute.Subnetwork("default",
|
1136
|
-
name="subnetwork",
|
1137
|
-
ip_cidr_range="10.0.0.0/16",
|
1138
|
-
region="us-central1",
|
1139
|
-
network=default.id)
|
1140
|
-
region_network_endpoint_group_portmap = gcp.compute.RegionNetworkEndpointGroup("region_network_endpoint_group_portmap",
|
1141
|
-
name="portmap-neg",
|
1142
|
-
region="us-central1",
|
1143
|
-
network=default.id,
|
1144
|
-
subnetwork=default_subnetwork.id,
|
1145
|
-
network_endpoint_type="GCE_VM_IP_PORTMAP")
|
1146
|
-
```
|
1147
1107
|
|
1148
1108
|
## Import
|
1149
1109
|
|
@@ -1279,7 +1239,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1279
1239
|
"default" project network if unspecified.
|
1280
1240
|
:param pulumi.Input[str] network_endpoint_type: Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
1281
1241
|
Default value is `SERVERLESS`.
|
1282
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT
|
1242
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
1283
1243
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1284
1244
|
If it is not provided, the provider project is used.
|
1285
1245
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
@@ -1384,7 +1344,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1384
1344
|
"""
|
1385
1345
|
Type of network endpoints in this network endpoint group. Defaults to SERVERLESS.
|
1386
1346
|
Default value is `SERVERLESS`.
|
1387
|
-
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT
|
1347
|
+
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`.
|
1388
1348
|
"""
|
1389
1349
|
return pulumi.get(self, "network_endpoint_type")
|
1390
1350
|
|
@@ -31,7 +31,8 @@ class RegionTargetHttpsProxyArgs:
|
|
31
31
|
|
32
32
|
- - -
|
33
33
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
34
|
-
|
34
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
35
|
+
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
35
36
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
36
37
|
:param pulumi.Input[str] description: An optional description of this resource.
|
37
38
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
@@ -100,7 +101,8 @@ class RegionTargetHttpsProxyArgs:
|
|
100
101
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
101
102
|
"""
|
102
103
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
103
|
-
|
104
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
105
|
+
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
104
106
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
105
107
|
"""
|
106
108
|
return pulumi.get(self, "certificate_manager_certificates")
|
@@ -232,7 +234,8 @@ class _RegionTargetHttpsProxyState:
|
|
232
234
|
"""
|
233
235
|
Input properties used for looking up and filtering RegionTargetHttpsProxy resources.
|
234
236
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
235
|
-
|
237
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
238
|
+
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
236
239
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
237
240
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
238
241
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -300,7 +303,8 @@ class _RegionTargetHttpsProxyState:
|
|
300
303
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
301
304
|
"""
|
302
305
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
303
|
-
|
306
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
307
|
+
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
304
308
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
305
309
|
"""
|
306
310
|
return pulumi.get(self, "certificate_manager_certificates")
|
@@ -681,7 +685,8 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
|
|
681
685
|
:param str resource_name: The name of the resource.
|
682
686
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
683
687
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
684
|
-
|
688
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
689
|
+
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
685
690
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
686
691
|
:param pulumi.Input[str] description: An optional description of this resource.
|
687
692
|
:param pulumi.Input[str] name: Name of the resource. Provided by the client when the resource is
|
@@ -996,7 +1001,8 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
|
|
996
1001
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
997
1002
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
998
1003
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
999
|
-
|
1004
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
1005
|
+
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
1000
1006
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1001
1007
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
1002
1008
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -1057,7 +1063,8 @@ class RegionTargetHttpsProxy(pulumi.CustomResource):
|
|
1057
1063
|
def certificate_manager_certificates(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1058
1064
|
"""
|
1059
1065
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
1060
|
-
|
1066
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
1067
|
+
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
1061
1068
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1062
1069
|
"""
|
1063
1070
|
return pulumi.get(self, "certificate_manager_certificates")
|