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