pulumi-gcp 8.3.0a1727223968__py3-none-any.whl → 8.3.0a1727226164__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 +120 -0
- pulumi_gcp/alloydb/_inputs.py +20 -0
- pulumi_gcp/alloydb/instance.py +36 -0
- pulumi_gcp/alloydb/outputs.py +14 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +1400 -0
- pulumi_gcp/compute/attached_disk.py +103 -0
- pulumi_gcp/compute/backend_service.py +29 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +769 -0
- pulumi_gcp/compute/outputs.py +1019 -0
- pulumi_gcp/compute/region_backend_service.py +29 -22
- pulumi_gcp/compute/router_nat.py +27 -66
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +72 -99
- pulumi_gcp/container/outputs.py +53 -70
- pulumi_gcp/databasemigrationservice/__init__.py +1 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +362 -0
- pulumi_gcp/databasemigrationservice/migration_job.py +1739 -0
- pulumi_gcp/databasemigrationservice/outputs.py +268 -0
- pulumi_gcp/dataproc/get_metastore_service.py +11 -1
- pulumi_gcp/dataproc/metastore_service.py +93 -0
- pulumi_gcp/developerconnect/_inputs.py +42 -39
- pulumi_gcp/developerconnect/connection.py +86 -83
- pulumi_gcp/developerconnect/outputs.py +28 -26
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +131 -0
- pulumi_gcp/discoveryengine/outputs.py +131 -0
- pulumi_gcp/discoveryengine/target_site.py +870 -0
- pulumi_gcp/dns/managed_zone.py +1 -1
- pulumi_gcp/filestore/get_instance.py +21 -1
- pulumi_gcp/filestore/instance.py +94 -0
- pulumi_gcp/gkehub/feature_membership.py +140 -62
- pulumi_gcp/healthcare/__init__.py +1 -0
- pulumi_gcp/healthcare/_inputs.py +39 -0
- pulumi_gcp/healthcare/outputs.py +40 -0
- pulumi_gcp/healthcare/workspace.py +465 -0
- pulumi_gcp/looker/instance.py +81 -0
- pulumi_gcp/netapp/_inputs.py +63 -0
- pulumi_gcp/netapp/outputs.py +57 -0
- pulumi_gcp/netapp/storage_pool.py +54 -0
- pulumi_gcp/netapp/volume.py +82 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +43 -7
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/__init__.py +8 -0
- pulumi_gcp/secretmanager/_inputs.py +308 -0
- pulumi_gcp/secretmanager/get_regional_secret.py +279 -0
- pulumi_gcp/secretmanager/get_regional_secret_iam_policy.py +173 -0
- pulumi_gcp/secretmanager/get_regional_secret_version.py +241 -0
- pulumi_gcp/secretmanager/outputs.py +336 -0
- pulumi_gcp/secretmanager/regional_secret.py +1433 -0
- pulumi_gcp/secretmanager/regional_secret_iam_binding.py +1082 -0
- pulumi_gcp/secretmanager/regional_secret_iam_member.py +1082 -0
- pulumi_gcp/secretmanager/regional_secret_iam_policy.py +901 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +753 -0
- pulumi_gcp/securitycenter/__init__.py +4 -0
- pulumi_gcp/securitycenter/folder_scc_big_query_export.py +795 -0
- pulumi_gcp/securitycenter/organization_scc_big_query_export.py +738 -0
- pulumi_gcp/securitycenter/project_scc_big_query_export.py +749 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_export.py +862 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +6 -2
- pulumi_gcp/siteverification/__init__.py +3 -0
- pulumi_gcp/siteverification/_inputs.py +85 -0
- pulumi_gcp/siteverification/outputs.py +57 -0
- pulumi_gcp/siteverification/web_resource.py +398 -0
- pulumi_gcp/spanner/__init__.py +1 -0
- pulumi_gcp/spanner/_inputs.py +129 -0
- pulumi_gcp/spanner/backup_schedule.py +748 -0
- pulumi_gcp/spanner/get_instance.py +11 -1
- pulumi_gcp/spanner/instance.py +56 -0
- pulumi_gcp/spanner/outputs.py +93 -0
- {pulumi_gcp-8.3.0a1727223968.dist-info → pulumi_gcp-8.3.0a1727226164.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.3.0a1727223968.dist-info → pulumi_gcp-8.3.0a1727226164.dist-info}/RECORD +76 -56
- {pulumi_gcp-8.3.0a1727223968.dist-info → pulumi_gcp-8.3.0a1727226164.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.3.0a1727223968.dist-info → pulumi_gcp-8.3.0a1727226164.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,7 @@ class AttachedDiskArgs:
|
|
22
22
|
disk: pulumi.Input[str],
|
23
23
|
instance: pulumi.Input[str],
|
24
24
|
device_name: Optional[pulumi.Input[str]] = None,
|
25
|
+
interface: Optional[pulumi.Input[str]] = None,
|
25
26
|
mode: Optional[pulumi.Input[str]] = None,
|
26
27
|
project: Optional[pulumi.Input[str]] = None,
|
27
28
|
zone: Optional[pulumi.Input[str]] = None):
|
@@ -44,6 +45,15 @@ class AttachedDiskArgs:
|
|
44
45
|
If not specified, the server chooses a default device name to apply
|
45
46
|
to this disk, in the form persistent-disks-x, where x is a number
|
46
47
|
assigned by Google Compute Engine.
|
48
|
+
:param pulumi.Input[str] interface: The disk interface used for attaching this disk.
|
49
|
+
|
50
|
+
This field is only used for specific cases, please don't specify
|
51
|
+
this field without advice from Google. Not specifying the field
|
52
|
+
will allow the the server to assign the correct interface.
|
53
|
+
|
54
|
+
Possible values:
|
55
|
+
"SCSI"
|
56
|
+
"NVME"
|
47
57
|
:param pulumi.Input[str] mode: The mode in which to attach this disk, either READ_WRITE or
|
48
58
|
READ_ONLY. If not specified, the default is to attach the disk in
|
49
59
|
READ_WRITE mode.
|
@@ -60,6 +70,8 @@ class AttachedDiskArgs:
|
|
60
70
|
pulumi.set(__self__, "instance", instance)
|
61
71
|
if device_name is not None:
|
62
72
|
pulumi.set(__self__, "device_name", device_name)
|
73
|
+
if interface is not None:
|
74
|
+
pulumi.set(__self__, "interface", interface)
|
63
75
|
if mode is not None:
|
64
76
|
pulumi.set(__self__, "mode", mode)
|
65
77
|
if project is not None:
|
@@ -117,6 +129,26 @@ class AttachedDiskArgs:
|
|
117
129
|
def device_name(self, value: Optional[pulumi.Input[str]]):
|
118
130
|
pulumi.set(self, "device_name", value)
|
119
131
|
|
132
|
+
@property
|
133
|
+
@pulumi.getter
|
134
|
+
def interface(self) -> Optional[pulumi.Input[str]]:
|
135
|
+
"""
|
136
|
+
The disk interface used for attaching this disk.
|
137
|
+
|
138
|
+
This field is only used for specific cases, please don't specify
|
139
|
+
this field without advice from Google. Not specifying the field
|
140
|
+
will allow the the server to assign the correct interface.
|
141
|
+
|
142
|
+
Possible values:
|
143
|
+
"SCSI"
|
144
|
+
"NVME"
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "interface")
|
147
|
+
|
148
|
+
@interface.setter
|
149
|
+
def interface(self, value: Optional[pulumi.Input[str]]):
|
150
|
+
pulumi.set(self, "interface", value)
|
151
|
+
|
120
152
|
@property
|
121
153
|
@pulumi.getter
|
122
154
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
@@ -168,6 +200,7 @@ class _AttachedDiskState:
|
|
168
200
|
device_name: Optional[pulumi.Input[str]] = None,
|
169
201
|
disk: Optional[pulumi.Input[str]] = None,
|
170
202
|
instance: Optional[pulumi.Input[str]] = None,
|
203
|
+
interface: Optional[pulumi.Input[str]] = None,
|
171
204
|
mode: Optional[pulumi.Input[str]] = None,
|
172
205
|
project: Optional[pulumi.Input[str]] = None,
|
173
206
|
zone: Optional[pulumi.Input[str]] = None):
|
@@ -190,6 +223,15 @@ class _AttachedDiskState:
|
|
190
223
|
If the `self_link` is provided then `zone` and `project` are extracted from the
|
191
224
|
self link. If only the name is used then `zone` and `project` must be defined
|
192
225
|
as properties on the resource or provider.
|
226
|
+
:param pulumi.Input[str] interface: The disk interface used for attaching this disk.
|
227
|
+
|
228
|
+
This field is only used for specific cases, please don't specify
|
229
|
+
this field without advice from Google. Not specifying the field
|
230
|
+
will allow the the server to assign the correct interface.
|
231
|
+
|
232
|
+
Possible values:
|
233
|
+
"SCSI"
|
234
|
+
"NVME"
|
193
235
|
:param pulumi.Input[str] mode: The mode in which to attach this disk, either READ_WRITE or
|
194
236
|
READ_ONLY. If not specified, the default is to attach the disk in
|
195
237
|
READ_WRITE mode.
|
@@ -208,6 +250,8 @@ class _AttachedDiskState:
|
|
208
250
|
pulumi.set(__self__, "disk", disk)
|
209
251
|
if instance is not None:
|
210
252
|
pulumi.set(__self__, "instance", instance)
|
253
|
+
if interface is not None:
|
254
|
+
pulumi.set(__self__, "interface", interface)
|
211
255
|
if mode is not None:
|
212
256
|
pulumi.set(__self__, "mode", mode)
|
213
257
|
if project is not None:
|
@@ -265,6 +309,26 @@ class _AttachedDiskState:
|
|
265
309
|
def instance(self, value: Optional[pulumi.Input[str]]):
|
266
310
|
pulumi.set(self, "instance", value)
|
267
311
|
|
312
|
+
@property
|
313
|
+
@pulumi.getter
|
314
|
+
def interface(self) -> Optional[pulumi.Input[str]]:
|
315
|
+
"""
|
316
|
+
The disk interface used for attaching this disk.
|
317
|
+
|
318
|
+
This field is only used for specific cases, please don't specify
|
319
|
+
this field without advice from Google. Not specifying the field
|
320
|
+
will allow the the server to assign the correct interface.
|
321
|
+
|
322
|
+
Possible values:
|
323
|
+
"SCSI"
|
324
|
+
"NVME"
|
325
|
+
"""
|
326
|
+
return pulumi.get(self, "interface")
|
327
|
+
|
328
|
+
@interface.setter
|
329
|
+
def interface(self, value: Optional[pulumi.Input[str]]):
|
330
|
+
pulumi.set(self, "interface", value)
|
331
|
+
|
268
332
|
@property
|
269
333
|
@pulumi.getter
|
270
334
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
@@ -318,6 +382,7 @@ class AttachedDisk(pulumi.CustomResource):
|
|
318
382
|
device_name: Optional[pulumi.Input[str]] = None,
|
319
383
|
disk: Optional[pulumi.Input[str]] = None,
|
320
384
|
instance: Optional[pulumi.Input[str]] = None,
|
385
|
+
interface: Optional[pulumi.Input[str]] = None,
|
321
386
|
mode: Optional[pulumi.Input[str]] = None,
|
322
387
|
project: Optional[pulumi.Input[str]] = None,
|
323
388
|
zone: Optional[pulumi.Input[str]] = None,
|
@@ -397,6 +462,15 @@ class AttachedDisk(pulumi.CustomResource):
|
|
397
462
|
If the `self_link` is provided then `zone` and `project` are extracted from the
|
398
463
|
self link. If only the name is used then `zone` and `project` must be defined
|
399
464
|
as properties on the resource or provider.
|
465
|
+
:param pulumi.Input[str] interface: The disk interface used for attaching this disk.
|
466
|
+
|
467
|
+
This field is only used for specific cases, please don't specify
|
468
|
+
this field without advice from Google. Not specifying the field
|
469
|
+
will allow the the server to assign the correct interface.
|
470
|
+
|
471
|
+
Possible values:
|
472
|
+
"SCSI"
|
473
|
+
"NVME"
|
400
474
|
:param pulumi.Input[str] mode: The mode in which to attach this disk, either READ_WRITE or
|
401
475
|
READ_ONLY. If not specified, the default is to attach the disk in
|
402
476
|
READ_WRITE mode.
|
@@ -489,6 +563,7 @@ class AttachedDisk(pulumi.CustomResource):
|
|
489
563
|
device_name: Optional[pulumi.Input[str]] = None,
|
490
564
|
disk: Optional[pulumi.Input[str]] = None,
|
491
565
|
instance: Optional[pulumi.Input[str]] = None,
|
566
|
+
interface: Optional[pulumi.Input[str]] = None,
|
492
567
|
mode: Optional[pulumi.Input[str]] = None,
|
493
568
|
project: Optional[pulumi.Input[str]] = None,
|
494
569
|
zone: Optional[pulumi.Input[str]] = None,
|
@@ -508,6 +583,7 @@ class AttachedDisk(pulumi.CustomResource):
|
|
508
583
|
if instance is None and not opts.urn:
|
509
584
|
raise TypeError("Missing required property 'instance'")
|
510
585
|
__props__.__dict__["instance"] = instance
|
586
|
+
__props__.__dict__["interface"] = interface
|
511
587
|
__props__.__dict__["mode"] = mode
|
512
588
|
__props__.__dict__["project"] = project
|
513
589
|
__props__.__dict__["zone"] = zone
|
@@ -524,6 +600,7 @@ class AttachedDisk(pulumi.CustomResource):
|
|
524
600
|
device_name: Optional[pulumi.Input[str]] = None,
|
525
601
|
disk: Optional[pulumi.Input[str]] = None,
|
526
602
|
instance: Optional[pulumi.Input[str]] = None,
|
603
|
+
interface: Optional[pulumi.Input[str]] = None,
|
527
604
|
mode: Optional[pulumi.Input[str]] = None,
|
528
605
|
project: Optional[pulumi.Input[str]] = None,
|
529
606
|
zone: Optional[pulumi.Input[str]] = None) -> 'AttachedDisk':
|
@@ -551,6 +628,15 @@ class AttachedDisk(pulumi.CustomResource):
|
|
551
628
|
If the `self_link` is provided then `zone` and `project` are extracted from the
|
552
629
|
self link. If only the name is used then `zone` and `project` must be defined
|
553
630
|
as properties on the resource or provider.
|
631
|
+
:param pulumi.Input[str] interface: The disk interface used for attaching this disk.
|
632
|
+
|
633
|
+
This field is only used for specific cases, please don't specify
|
634
|
+
this field without advice from Google. Not specifying the field
|
635
|
+
will allow the the server to assign the correct interface.
|
636
|
+
|
637
|
+
Possible values:
|
638
|
+
"SCSI"
|
639
|
+
"NVME"
|
554
640
|
:param pulumi.Input[str] mode: The mode in which to attach this disk, either READ_WRITE or
|
555
641
|
READ_ONLY. If not specified, the default is to attach the disk in
|
556
642
|
READ_WRITE mode.
|
@@ -570,6 +656,7 @@ class AttachedDisk(pulumi.CustomResource):
|
|
570
656
|
__props__.__dict__["device_name"] = device_name
|
571
657
|
__props__.__dict__["disk"] = disk
|
572
658
|
__props__.__dict__["instance"] = instance
|
659
|
+
__props__.__dict__["interface"] = interface
|
573
660
|
__props__.__dict__["mode"] = mode
|
574
661
|
__props__.__dict__["project"] = project
|
575
662
|
__props__.__dict__["zone"] = zone
|
@@ -613,6 +700,22 @@ class AttachedDisk(pulumi.CustomResource):
|
|
613
700
|
"""
|
614
701
|
return pulumi.get(self, "instance")
|
615
702
|
|
703
|
+
@property
|
704
|
+
@pulumi.getter
|
705
|
+
def interface(self) -> pulumi.Output[Optional[str]]:
|
706
|
+
"""
|
707
|
+
The disk interface used for attaching this disk.
|
708
|
+
|
709
|
+
This field is only used for specific cases, please don't specify
|
710
|
+
this field without advice from Google. Not specifying the field
|
711
|
+
will allow the the server to assign the correct interface.
|
712
|
+
|
713
|
+
Possible values:
|
714
|
+
"SCSI"
|
715
|
+
"NVME"
|
716
|
+
"""
|
717
|
+
return pulumi.get(self, "interface")
|
718
|
+
|
616
719
|
@property
|
617
720
|
@pulumi.getter
|
618
721
|
def mode(self) -> pulumi.Output[Optional[str]]:
|
@@ -125,7 +125,8 @@ class BackendServiceArgs:
|
|
125
125
|
build times and host selection times. For more information about
|
126
126
|
Maglev, refer to https://ai.google/research/pubs/pub44824
|
127
127
|
* `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
|
128
|
-
reported weights.
|
128
|
+
reported weights. Only applicable to loadBalancingScheme
|
129
|
+
EXTERNAL. If set, the Backend Service must
|
129
130
|
configure a non legacy HTTP-based Health Check, and
|
130
131
|
health check replies are expected to contain
|
131
132
|
non-standard HTTP response header field
|
@@ -136,14 +137,14 @@ class BackendServiceArgs:
|
|
136
137
|
instance either reported a valid weight or had
|
137
138
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
138
139
|
equal-weight.
|
139
|
-
|
140
|
+
locality_lb_policy is applicable to either:
|
140
141
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
141
142
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
142
143
|
* A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
|
143
144
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
144
145
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
145
146
|
Network Load Balancing. The default is MAGLEV.
|
146
|
-
If session_affinity is not NONE, and
|
147
|
+
If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
|
147
148
|
or RING_HASH, session affinity settings will not take effect.
|
148
149
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
149
150
|
by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
|
@@ -504,7 +505,8 @@ class BackendServiceArgs:
|
|
504
505
|
build times and host selection times. For more information about
|
505
506
|
Maglev, refer to https://ai.google/research/pubs/pub44824
|
506
507
|
* `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
|
507
|
-
reported weights.
|
508
|
+
reported weights. Only applicable to loadBalancingScheme
|
509
|
+
EXTERNAL. If set, the Backend Service must
|
508
510
|
configure a non legacy HTTP-based Health Check, and
|
509
511
|
health check replies are expected to contain
|
510
512
|
non-standard HTTP response header field
|
@@ -515,14 +517,14 @@ class BackendServiceArgs:
|
|
515
517
|
instance either reported a valid weight or had
|
516
518
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
517
519
|
equal-weight.
|
518
|
-
|
520
|
+
locality_lb_policy is applicable to either:
|
519
521
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
520
522
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
521
523
|
* A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
|
522
524
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
523
525
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
524
526
|
Network Load Balancing. The default is MAGLEV.
|
525
|
-
If session_affinity is not NONE, and
|
527
|
+
If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
|
526
528
|
or RING_HASH, session affinity settings will not take effect.
|
527
529
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
528
530
|
by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
|
@@ -815,7 +817,8 @@ class _BackendServiceState:
|
|
815
817
|
build times and host selection times. For more information about
|
816
818
|
Maglev, refer to https://ai.google/research/pubs/pub44824
|
817
819
|
* `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
|
818
|
-
reported weights.
|
820
|
+
reported weights. Only applicable to loadBalancingScheme
|
821
|
+
EXTERNAL. If set, the Backend Service must
|
819
822
|
configure a non legacy HTTP-based Health Check, and
|
820
823
|
health check replies are expected to contain
|
821
824
|
non-standard HTTP response header field
|
@@ -826,14 +829,14 @@ class _BackendServiceState:
|
|
826
829
|
instance either reported a valid weight or had
|
827
830
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
828
831
|
equal-weight.
|
829
|
-
|
832
|
+
locality_lb_policy is applicable to either:
|
830
833
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
831
834
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
832
835
|
* A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
|
833
836
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
834
837
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
835
838
|
Network Load Balancing. The default is MAGLEV.
|
836
|
-
If session_affinity is not NONE, and
|
839
|
+
If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
|
837
840
|
or RING_HASH, session affinity settings will not take effect.
|
838
841
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
839
842
|
by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
|
@@ -1240,7 +1243,8 @@ class _BackendServiceState:
|
|
1240
1243
|
build times and host selection times. For more information about
|
1241
1244
|
Maglev, refer to https://ai.google/research/pubs/pub44824
|
1242
1245
|
* `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
|
1243
|
-
reported weights.
|
1246
|
+
reported weights. Only applicable to loadBalancingScheme
|
1247
|
+
EXTERNAL. If set, the Backend Service must
|
1244
1248
|
configure a non legacy HTTP-based Health Check, and
|
1245
1249
|
health check replies are expected to contain
|
1246
1250
|
non-standard HTTP response header field
|
@@ -1251,14 +1255,14 @@ class _BackendServiceState:
|
|
1251
1255
|
instance either reported a valid weight or had
|
1252
1256
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
1253
1257
|
equal-weight.
|
1254
|
-
|
1258
|
+
locality_lb_policy is applicable to either:
|
1255
1259
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
1256
1260
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
1257
1261
|
* A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
|
1258
1262
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
1259
1263
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
1260
1264
|
Network Load Balancing. The default is MAGLEV.
|
1261
|
-
If session_affinity is not NONE, and
|
1265
|
+
If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
|
1262
1266
|
or RING_HASH, session affinity settings will not take effect.
|
1263
1267
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
1264
1268
|
by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
|
@@ -1851,7 +1855,8 @@ class BackendService(pulumi.CustomResource):
|
|
1851
1855
|
build times and host selection times. For more information about
|
1852
1856
|
Maglev, refer to https://ai.google/research/pubs/pub44824
|
1853
1857
|
* `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
|
1854
|
-
reported weights.
|
1858
|
+
reported weights. Only applicable to loadBalancingScheme
|
1859
|
+
EXTERNAL. If set, the Backend Service must
|
1855
1860
|
configure a non legacy HTTP-based Health Check, and
|
1856
1861
|
health check replies are expected to contain
|
1857
1862
|
non-standard HTTP response header field
|
@@ -1862,14 +1867,14 @@ class BackendService(pulumi.CustomResource):
|
|
1862
1867
|
instance either reported a valid weight or had
|
1863
1868
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
1864
1869
|
equal-weight.
|
1865
|
-
|
1870
|
+
locality_lb_policy is applicable to either:
|
1866
1871
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
1867
1872
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
1868
1873
|
* A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
|
1869
1874
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
1870
1875
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
1871
1876
|
Network Load Balancing. The default is MAGLEV.
|
1872
|
-
If session_affinity is not NONE, and
|
1877
|
+
If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
|
1873
1878
|
or RING_HASH, session affinity settings will not take effect.
|
1874
1879
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
1875
1880
|
by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
|
@@ -2429,7 +2434,8 @@ class BackendService(pulumi.CustomResource):
|
|
2429
2434
|
build times and host selection times. For more information about
|
2430
2435
|
Maglev, refer to https://ai.google/research/pubs/pub44824
|
2431
2436
|
* `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
|
2432
|
-
reported weights.
|
2437
|
+
reported weights. Only applicable to loadBalancingScheme
|
2438
|
+
EXTERNAL. If set, the Backend Service must
|
2433
2439
|
configure a non legacy HTTP-based Health Check, and
|
2434
2440
|
health check replies are expected to contain
|
2435
2441
|
non-standard HTTP response header field
|
@@ -2440,14 +2446,14 @@ class BackendService(pulumi.CustomResource):
|
|
2440
2446
|
instance either reported a valid weight or had
|
2441
2447
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
2442
2448
|
equal-weight.
|
2443
|
-
|
2449
|
+
locality_lb_policy is applicable to either:
|
2444
2450
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
2445
2451
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
2446
2452
|
* A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
|
2447
2453
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
2448
2454
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
2449
2455
|
Network Load Balancing. The default is MAGLEV.
|
2450
|
-
If session_affinity is not NONE, and
|
2456
|
+
If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
|
2451
2457
|
or RING_HASH, session affinity settings will not take effect.
|
2452
2458
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
2453
2459
|
by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
|
@@ -2692,7 +2698,7 @@ class BackendService(pulumi.CustomResource):
|
|
2692
2698
|
|
2693
2699
|
@property
|
2694
2700
|
@pulumi.getter
|
2695
|
-
def iap(self) -> pulumi.Output[
|
2701
|
+
def iap(self) -> pulumi.Output['outputs.BackendServiceIap']:
|
2696
2702
|
"""
|
2697
2703
|
Settings for enabling Cloud Identity Aware Proxy
|
2698
2704
|
Structure is documented below.
|
@@ -2751,7 +2757,8 @@ class BackendService(pulumi.CustomResource):
|
|
2751
2757
|
build times and host selection times. For more information about
|
2752
2758
|
Maglev, refer to https://ai.google/research/pubs/pub44824
|
2753
2759
|
* `WEIGHTED_MAGLEV`: Per-instance weighted Load Balancing via health check
|
2754
|
-
reported weights.
|
2760
|
+
reported weights. Only applicable to loadBalancingScheme
|
2761
|
+
EXTERNAL. If set, the Backend Service must
|
2755
2762
|
configure a non legacy HTTP-based Health Check, and
|
2756
2763
|
health check replies are expected to contain
|
2757
2764
|
non-standard HTTP response header field
|
@@ -2762,14 +2769,14 @@ class BackendService(pulumi.CustomResource):
|
|
2762
2769
|
instance either reported a valid weight or had
|
2763
2770
|
UNAVAILABLE_WEIGHT. Otherwise, Load Balancing remains
|
2764
2771
|
equal-weight.
|
2765
|
-
|
2772
|
+
locality_lb_policy is applicable to either:
|
2766
2773
|
* A regional backend service with the service_protocol set to HTTP, HTTPS, or HTTP2,
|
2767
2774
|
and loadBalancingScheme set to INTERNAL_MANAGED.
|
2768
2775
|
* A global backend service with the load_balancing_scheme set to INTERNAL_SELF_MANAGED.
|
2769
2776
|
* A regional backend service with loadBalancingScheme set to EXTERNAL (External Network
|
2770
2777
|
Load Balancing). Only MAGLEV and WEIGHTED_MAGLEV values are possible for External
|
2771
2778
|
Network Load Balancing. The default is MAGLEV.
|
2772
|
-
If session_affinity is not NONE, and
|
2779
|
+
If session_affinity is not NONE, and locality_lb_policy is not set to MAGLEV, WEIGHTED_MAGLEV,
|
2773
2780
|
or RING_HASH, session affinity settings will not take effect.
|
2774
2781
|
Only ROUND_ROBIN and RING_HASH are supported when the backend service is referenced
|
2775
2782
|
by a URL map that is bound to target gRPC proxy that has validate_for_proxyless
|