pulumi-gcp 7.25.0__py3-none-any.whl → 7.25.0a1717104660__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 -88
- pulumi_gcp/appengine/_inputs.py +0 -18
- pulumi_gcp/appengine/domain_mapping.py +1 -1
- pulumi_gcp/appengine/outputs.py +0 -16
- pulumi_gcp/bigquery/_inputs.py +2 -286
- pulumi_gcp/bigquery/outputs.py +2 -289
- pulumi_gcp/bigquery/table.py +35 -77
- pulumi_gcp/cloudfunctionsv2/function.py +4 -0
- pulumi_gcp/cloudrun/_inputs.py +4 -80
- pulumi_gcp/cloudrun/outputs.py +4 -137
- pulumi_gcp/composer/user_workloads_secret.py +4 -4
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +176 -398
- pulumi_gcp/compute/instance_group_membership.py +2 -2
- pulumi_gcp/compute/interconnect_attachment.py +0 -82
- pulumi_gcp/compute/network_endpoint.py +2 -2
- pulumi_gcp/compute/network_endpoint_list.py +2 -2
- pulumi_gcp/compute/outputs.py +161 -609
- pulumi_gcp/compute/region_ssl_policy.py +40 -39
- pulumi_gcp/compute/security_policy_rule.py +1 -55
- pulumi_gcp/container/_inputs.py +0 -560
- pulumi_gcp/container/outputs.py +51 -1106
- pulumi_gcp/dataplex/__init__.py +0 -10
- pulumi_gcp/dataplex/_inputs.py +0 -160
- pulumi_gcp/dataplex/outputs.py +0 -112
- pulumi_gcp/datastream/connection_profile.py +0 -47
- pulumi_gcp/datastream/private_connection.py +0 -47
- pulumi_gcp/datastream/stream.py +0 -47
- pulumi_gcp/kms/__init__.py +0 -2
- pulumi_gcp/networkservices/__init__.py +0 -1
- pulumi_gcp/networkservices/_inputs.py +27 -245
- pulumi_gcp/networkservices/lb_traffic_extension.py +14 -28
- pulumi_gcp/networkservices/outputs.py +20 -251
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +0 -16
- pulumi_gcp/pubsub/outputs.py +0 -25
- pulumi_gcp/pubsub/subscription.py +4 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/user.py +4 -4
- pulumi_gcp/tpu/_inputs.py +2 -2
- pulumi_gcp/tpu/outputs.py +2 -2
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/RECORD +45 -59
- pulumi_gcp/compute/get_subnetworks.py +0 -157
- pulumi_gcp/dataplex/aspect_type.py +0 -1077
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +0 -765
- pulumi_gcp/dataplex/aspect_type_iam_member.py +0 -765
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +0 -604
- pulumi_gcp/dataplex/entry_group.py +0 -722
- pulumi_gcp/dataplex/entry_group_iam_binding.py +0 -765
- pulumi_gcp/dataplex/entry_group_iam_member.py +0 -765
- pulumi_gcp/dataplex/entry_group_iam_policy.py +0 -604
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +0 -164
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +0 -164
- pulumi_gcp/kms/autokey_config.py +0 -366
- pulumi_gcp/kms/key_handle.py +0 -548
- pulumi_gcp/networkservices/lb_route_extension.py +0 -663
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717104660.dist-info}/top_level.txt +0 -0
pulumi_gcp/datastream/stream.py
CHANGED
@@ -23,7 +23,6 @@ class StreamArgs:
|
|
23
23
|
stream_id: pulumi.Input[str],
|
24
24
|
backfill_all: Optional[pulumi.Input['StreamBackfillAllArgs']] = None,
|
25
25
|
backfill_none: Optional[pulumi.Input['StreamBackfillNoneArgs']] = None,
|
26
|
-
create_without_validation: Optional[pulumi.Input[bool]] = None,
|
27
26
|
customer_managed_encryption_key: Optional[pulumi.Input[str]] = None,
|
28
27
|
desired_state: Optional[pulumi.Input[str]] = None,
|
29
28
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -39,7 +38,6 @@ class StreamArgs:
|
|
39
38
|
:param pulumi.Input[str] stream_id: The stream identifier.
|
40
39
|
:param pulumi.Input['StreamBackfillAllArgs'] backfill_all: Backfill strategy to automatically backfill the Stream's objects. Specific objects can be excluded.
|
41
40
|
:param pulumi.Input['StreamBackfillNoneArgs'] backfill_none: Backfill strategy to disable automatic backfill for the Stream's objects.
|
42
|
-
:param pulumi.Input[bool] create_without_validation: Create the stream without validating it.
|
43
41
|
:param pulumi.Input[str] customer_managed_encryption_key: A reference to a KMS encryption key. If provided, it will be used to encrypt the data. If left blank, data will be
|
44
42
|
encrypted using an internal Stream-specific encryption key provisioned through KMS.
|
45
43
|
:param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream.
|
@@ -55,8 +53,6 @@ class StreamArgs:
|
|
55
53
|
pulumi.set(__self__, "backfill_all", backfill_all)
|
56
54
|
if backfill_none is not None:
|
57
55
|
pulumi.set(__self__, "backfill_none", backfill_none)
|
58
|
-
if create_without_validation is not None:
|
59
|
-
pulumi.set(__self__, "create_without_validation", create_without_validation)
|
60
56
|
if customer_managed_encryption_key is not None:
|
61
57
|
pulumi.set(__self__, "customer_managed_encryption_key", customer_managed_encryption_key)
|
62
58
|
if desired_state is not None:
|
@@ -152,18 +148,6 @@ class StreamArgs:
|
|
152
148
|
def backfill_none(self, value: Optional[pulumi.Input['StreamBackfillNoneArgs']]):
|
153
149
|
pulumi.set(self, "backfill_none", value)
|
154
150
|
|
155
|
-
@property
|
156
|
-
@pulumi.getter(name="createWithoutValidation")
|
157
|
-
def create_without_validation(self) -> Optional[pulumi.Input[bool]]:
|
158
|
-
"""
|
159
|
-
Create the stream without validating it.
|
160
|
-
"""
|
161
|
-
return pulumi.get(self, "create_without_validation")
|
162
|
-
|
163
|
-
@create_without_validation.setter
|
164
|
-
def create_without_validation(self, value: Optional[pulumi.Input[bool]]):
|
165
|
-
pulumi.set(self, "create_without_validation", value)
|
166
|
-
|
167
151
|
@property
|
168
152
|
@pulumi.getter(name="customerManagedEncryptionKey")
|
169
153
|
def customer_managed_encryption_key(self) -> Optional[pulumi.Input[str]]:
|
@@ -217,7 +201,6 @@ class _StreamState:
|
|
217
201
|
def __init__(__self__, *,
|
218
202
|
backfill_all: Optional[pulumi.Input['StreamBackfillAllArgs']] = None,
|
219
203
|
backfill_none: Optional[pulumi.Input['StreamBackfillNoneArgs']] = None,
|
220
|
-
create_without_validation: Optional[pulumi.Input[bool]] = None,
|
221
204
|
customer_managed_encryption_key: Optional[pulumi.Input[str]] = None,
|
222
205
|
desired_state: Optional[pulumi.Input[str]] = None,
|
223
206
|
destination_config: Optional[pulumi.Input['StreamDestinationConfigArgs']] = None,
|
@@ -235,7 +218,6 @@ class _StreamState:
|
|
235
218
|
Input properties used for looking up and filtering Stream resources.
|
236
219
|
:param pulumi.Input['StreamBackfillAllArgs'] backfill_all: Backfill strategy to automatically backfill the Stream's objects. Specific objects can be excluded.
|
237
220
|
:param pulumi.Input['StreamBackfillNoneArgs'] backfill_none: Backfill strategy to disable automatic backfill for the Stream's objects.
|
238
|
-
:param pulumi.Input[bool] create_without_validation: Create the stream without validating it.
|
239
221
|
:param pulumi.Input[str] customer_managed_encryption_key: A reference to a KMS encryption key. If provided, it will be used to encrypt the data. If left blank, data will be
|
240
222
|
encrypted using an internal Stream-specific encryption key provisioned through KMS.
|
241
223
|
:param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream.
|
@@ -258,8 +240,6 @@ class _StreamState:
|
|
258
240
|
pulumi.set(__self__, "backfill_all", backfill_all)
|
259
241
|
if backfill_none is not None:
|
260
242
|
pulumi.set(__self__, "backfill_none", backfill_none)
|
261
|
-
if create_without_validation is not None:
|
262
|
-
pulumi.set(__self__, "create_without_validation", create_without_validation)
|
263
243
|
if customer_managed_encryption_key is not None:
|
264
244
|
pulumi.set(__self__, "customer_managed_encryption_key", customer_managed_encryption_key)
|
265
245
|
if desired_state is not None:
|
@@ -311,18 +291,6 @@ class _StreamState:
|
|
311
291
|
def backfill_none(self, value: Optional[pulumi.Input['StreamBackfillNoneArgs']]):
|
312
292
|
pulumi.set(self, "backfill_none", value)
|
313
293
|
|
314
|
-
@property
|
315
|
-
@pulumi.getter(name="createWithoutValidation")
|
316
|
-
def create_without_validation(self) -> Optional[pulumi.Input[bool]]:
|
317
|
-
"""
|
318
|
-
Create the stream without validating it.
|
319
|
-
"""
|
320
|
-
return pulumi.get(self, "create_without_validation")
|
321
|
-
|
322
|
-
@create_without_validation.setter
|
323
|
-
def create_without_validation(self, value: Optional[pulumi.Input[bool]]):
|
324
|
-
pulumi.set(self, "create_without_validation", value)
|
325
|
-
|
326
294
|
@property
|
327
295
|
@pulumi.getter(name="customerManagedEncryptionKey")
|
328
296
|
def customer_managed_encryption_key(self) -> Optional[pulumi.Input[str]]:
|
@@ -489,7 +457,6 @@ class Stream(pulumi.CustomResource):
|
|
489
457
|
opts: Optional[pulumi.ResourceOptions] = None,
|
490
458
|
backfill_all: Optional[pulumi.Input[pulumi.InputType['StreamBackfillAllArgs']]] = None,
|
491
459
|
backfill_none: Optional[pulumi.Input[pulumi.InputType['StreamBackfillNoneArgs']]] = None,
|
492
|
-
create_without_validation: Optional[pulumi.Input[bool]] = None,
|
493
460
|
customer_managed_encryption_key: Optional[pulumi.Input[str]] = None,
|
494
461
|
desired_state: Optional[pulumi.Input[str]] = None,
|
495
462
|
destination_config: Optional[pulumi.Input[pulumi.InputType['StreamDestinationConfigArgs']]] = None,
|
@@ -1141,7 +1108,6 @@ class Stream(pulumi.CustomResource):
|
|
1141
1108
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1142
1109
|
:param pulumi.Input[pulumi.InputType['StreamBackfillAllArgs']] backfill_all: Backfill strategy to automatically backfill the Stream's objects. Specific objects can be excluded.
|
1143
1110
|
:param pulumi.Input[pulumi.InputType['StreamBackfillNoneArgs']] backfill_none: Backfill strategy to disable automatic backfill for the Stream's objects.
|
1144
|
-
:param pulumi.Input[bool] create_without_validation: Create the stream without validating it.
|
1145
1111
|
:param pulumi.Input[str] customer_managed_encryption_key: A reference to a KMS encryption key. If provided, it will be used to encrypt the data. If left blank, data will be
|
1146
1112
|
encrypted using an internal Stream-specific encryption key provisioned through KMS.
|
1147
1113
|
:param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream.
|
@@ -1815,7 +1781,6 @@ class Stream(pulumi.CustomResource):
|
|
1815
1781
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1816
1782
|
backfill_all: Optional[pulumi.Input[pulumi.InputType['StreamBackfillAllArgs']]] = None,
|
1817
1783
|
backfill_none: Optional[pulumi.Input[pulumi.InputType['StreamBackfillNoneArgs']]] = None,
|
1818
|
-
create_without_validation: Optional[pulumi.Input[bool]] = None,
|
1819
1784
|
customer_managed_encryption_key: Optional[pulumi.Input[str]] = None,
|
1820
1785
|
desired_state: Optional[pulumi.Input[str]] = None,
|
1821
1786
|
destination_config: Optional[pulumi.Input[pulumi.InputType['StreamDestinationConfigArgs']]] = None,
|
@@ -1836,7 +1801,6 @@ class Stream(pulumi.CustomResource):
|
|
1836
1801
|
|
1837
1802
|
__props__.__dict__["backfill_all"] = backfill_all
|
1838
1803
|
__props__.__dict__["backfill_none"] = backfill_none
|
1839
|
-
__props__.__dict__["create_without_validation"] = create_without_validation
|
1840
1804
|
__props__.__dict__["customer_managed_encryption_key"] = customer_managed_encryption_key
|
1841
1805
|
__props__.__dict__["desired_state"] = desired_state
|
1842
1806
|
if destination_config is None and not opts.urn:
|
@@ -1874,7 +1838,6 @@ class Stream(pulumi.CustomResource):
|
|
1874
1838
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1875
1839
|
backfill_all: Optional[pulumi.Input[pulumi.InputType['StreamBackfillAllArgs']]] = None,
|
1876
1840
|
backfill_none: Optional[pulumi.Input[pulumi.InputType['StreamBackfillNoneArgs']]] = None,
|
1877
|
-
create_without_validation: Optional[pulumi.Input[bool]] = None,
|
1878
1841
|
customer_managed_encryption_key: Optional[pulumi.Input[str]] = None,
|
1879
1842
|
desired_state: Optional[pulumi.Input[str]] = None,
|
1880
1843
|
destination_config: Optional[pulumi.Input[pulumi.InputType['StreamDestinationConfigArgs']]] = None,
|
@@ -1897,7 +1860,6 @@ class Stream(pulumi.CustomResource):
|
|
1897
1860
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1898
1861
|
:param pulumi.Input[pulumi.InputType['StreamBackfillAllArgs']] backfill_all: Backfill strategy to automatically backfill the Stream's objects. Specific objects can be excluded.
|
1899
1862
|
:param pulumi.Input[pulumi.InputType['StreamBackfillNoneArgs']] backfill_none: Backfill strategy to disable automatic backfill for the Stream's objects.
|
1900
|
-
:param pulumi.Input[bool] create_without_validation: Create the stream without validating it.
|
1901
1863
|
:param pulumi.Input[str] customer_managed_encryption_key: A reference to a KMS encryption key. If provided, it will be used to encrypt the data. If left blank, data will be
|
1902
1864
|
encrypted using an internal Stream-specific encryption key provisioned through KMS.
|
1903
1865
|
:param pulumi.Input[str] desired_state: Desired state of the Stream. Set this field to 'RUNNING' to start the stream, and 'PAUSED' to pause the stream.
|
@@ -1922,7 +1884,6 @@ class Stream(pulumi.CustomResource):
|
|
1922
1884
|
|
1923
1885
|
__props__.__dict__["backfill_all"] = backfill_all
|
1924
1886
|
__props__.__dict__["backfill_none"] = backfill_none
|
1925
|
-
__props__.__dict__["create_without_validation"] = create_without_validation
|
1926
1887
|
__props__.__dict__["customer_managed_encryption_key"] = customer_managed_encryption_key
|
1927
1888
|
__props__.__dict__["desired_state"] = desired_state
|
1928
1889
|
__props__.__dict__["destination_config"] = destination_config
|
@@ -1954,14 +1915,6 @@ class Stream(pulumi.CustomResource):
|
|
1954
1915
|
"""
|
1955
1916
|
return pulumi.get(self, "backfill_none")
|
1956
1917
|
|
1957
|
-
@property
|
1958
|
-
@pulumi.getter(name="createWithoutValidation")
|
1959
|
-
def create_without_validation(self) -> pulumi.Output[Optional[bool]]:
|
1960
|
-
"""
|
1961
|
-
Create the stream without validating it.
|
1962
|
-
"""
|
1963
|
-
return pulumi.get(self, "create_without_validation")
|
1964
|
-
|
1965
1918
|
@property
|
1966
1919
|
@pulumi.getter(name="customerManagedEncryptionKey")
|
1967
1920
|
def customer_managed_encryption_key(self) -> pulumi.Output[Optional[str]]:
|
pulumi_gcp/kms/__init__.py
CHANGED
@@ -5,7 +5,6 @@
|
|
5
5
|
from .. import _utilities
|
6
6
|
import typing
|
7
7
|
# Export this package's modules as members:
|
8
|
-
from .autokey_config import *
|
9
8
|
from .crypto_key import *
|
10
9
|
from .crypto_key_iam_binding import *
|
11
10
|
from .crypto_key_iam_member import *
|
@@ -20,7 +19,6 @@ from .get_kms_key_ring import *
|
|
20
19
|
from .get_kms_secret import *
|
21
20
|
from .get_kms_secret_asymmetric import *
|
22
21
|
from .get_kms_secret_ciphertext import *
|
23
|
-
from .key_handle import *
|
24
22
|
from .key_ring import *
|
25
23
|
from .key_ring_iam_binding import *
|
26
24
|
from .key_ring_iam_member import *
|
@@ -72,9 +72,6 @@ __all__ = [
|
|
72
72
|
'HttpRouteRuleMatchHeaderArgs',
|
73
73
|
'HttpRouteRuleMatchHeaderRangeMatchArgs',
|
74
74
|
'HttpRouteRuleMatchQueryParameterArgs',
|
75
|
-
'LbRouteExtensionExtensionChainArgs',
|
76
|
-
'LbRouteExtensionExtensionChainExtensionArgs',
|
77
|
-
'LbRouteExtensionExtensionChainMatchConditionArgs',
|
78
75
|
'LbTrafficExtensionExtensionChainArgs',
|
79
76
|
'LbTrafficExtensionExtensionChainExtensionArgs',
|
80
77
|
'LbTrafficExtensionExtensionChainMatchConditionArgs',
|
@@ -4278,219 +4275,6 @@ class HttpRouteRuleMatchQueryParameterArgs:
|
|
4278
4275
|
pulumi.set(self, "regex_match", value)
|
4279
4276
|
|
4280
4277
|
|
4281
|
-
@pulumi.input_type
|
4282
|
-
class LbRouteExtensionExtensionChainArgs:
|
4283
|
-
def __init__(__self__, *,
|
4284
|
-
extensions: pulumi.Input[Sequence[pulumi.Input['LbRouteExtensionExtensionChainExtensionArgs']]],
|
4285
|
-
match_condition: pulumi.Input['LbRouteExtensionExtensionChainMatchConditionArgs'],
|
4286
|
-
name: pulumi.Input[str]):
|
4287
|
-
"""
|
4288
|
-
:param pulumi.Input[Sequence[pulumi.Input['LbRouteExtensionExtensionChainExtensionArgs']]] extensions: A set of extensions to execute for the matching request.
|
4289
|
-
At least one extension is required. Up to 3 extensions can be defined for each extension chain for
|
4290
|
-
LbTrafficExtension resource. LbRouteExtension chains are limited to 1 extension per extension chain.
|
4291
|
-
Structure is documented below.
|
4292
|
-
:param pulumi.Input['LbRouteExtensionExtensionChainMatchConditionArgs'] match_condition: Conditions under which this chain is invoked for a request.
|
4293
|
-
Structure is documented below.
|
4294
|
-
:param pulumi.Input[str] name: The name for this extension chain. The name is logged as part of the HTTP request logs.
|
4295
|
-
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4296
|
-
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4297
|
-
and the last character must be a letter or a number.
|
4298
|
-
"""
|
4299
|
-
pulumi.set(__self__, "extensions", extensions)
|
4300
|
-
pulumi.set(__self__, "match_condition", match_condition)
|
4301
|
-
pulumi.set(__self__, "name", name)
|
4302
|
-
|
4303
|
-
@property
|
4304
|
-
@pulumi.getter
|
4305
|
-
def extensions(self) -> pulumi.Input[Sequence[pulumi.Input['LbRouteExtensionExtensionChainExtensionArgs']]]:
|
4306
|
-
"""
|
4307
|
-
A set of extensions to execute for the matching request.
|
4308
|
-
At least one extension is required. Up to 3 extensions can be defined for each extension chain for
|
4309
|
-
LbTrafficExtension resource. LbRouteExtension chains are limited to 1 extension per extension chain.
|
4310
|
-
Structure is documented below.
|
4311
|
-
"""
|
4312
|
-
return pulumi.get(self, "extensions")
|
4313
|
-
|
4314
|
-
@extensions.setter
|
4315
|
-
def extensions(self, value: pulumi.Input[Sequence[pulumi.Input['LbRouteExtensionExtensionChainExtensionArgs']]]):
|
4316
|
-
pulumi.set(self, "extensions", value)
|
4317
|
-
|
4318
|
-
@property
|
4319
|
-
@pulumi.getter(name="matchCondition")
|
4320
|
-
def match_condition(self) -> pulumi.Input['LbRouteExtensionExtensionChainMatchConditionArgs']:
|
4321
|
-
"""
|
4322
|
-
Conditions under which this chain is invoked for a request.
|
4323
|
-
Structure is documented below.
|
4324
|
-
"""
|
4325
|
-
return pulumi.get(self, "match_condition")
|
4326
|
-
|
4327
|
-
@match_condition.setter
|
4328
|
-
def match_condition(self, value: pulumi.Input['LbRouteExtensionExtensionChainMatchConditionArgs']):
|
4329
|
-
pulumi.set(self, "match_condition", value)
|
4330
|
-
|
4331
|
-
@property
|
4332
|
-
@pulumi.getter
|
4333
|
-
def name(self) -> pulumi.Input[str]:
|
4334
|
-
"""
|
4335
|
-
The name for this extension chain. The name is logged as part of the HTTP request logs.
|
4336
|
-
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4337
|
-
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4338
|
-
and the last character must be a letter or a number.
|
4339
|
-
"""
|
4340
|
-
return pulumi.get(self, "name")
|
4341
|
-
|
4342
|
-
@name.setter
|
4343
|
-
def name(self, value: pulumi.Input[str]):
|
4344
|
-
pulumi.set(self, "name", value)
|
4345
|
-
|
4346
|
-
|
4347
|
-
@pulumi.input_type
|
4348
|
-
class LbRouteExtensionExtensionChainExtensionArgs:
|
4349
|
-
def __init__(__self__, *,
|
4350
|
-
name: pulumi.Input[str],
|
4351
|
-
service: pulumi.Input[str],
|
4352
|
-
authority: Optional[pulumi.Input[str]] = None,
|
4353
|
-
fail_open: Optional[pulumi.Input[bool]] = None,
|
4354
|
-
forward_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
4355
|
-
timeout: Optional[pulumi.Input[str]] = None):
|
4356
|
-
"""
|
4357
|
-
:param pulumi.Input[str] name: The name for this extension. The name is logged as part of the HTTP request logs.
|
4358
|
-
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4359
|
-
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4360
|
-
and the last a letter or a number.
|
4361
|
-
:param pulumi.Input[str] service: The reference to the service that runs the extension. Must be a reference to a backend service
|
4362
|
-
:param pulumi.Input[str] authority: The :authority header in the gRPC request sent from Envoy to the extension service.
|
4363
|
-
:param pulumi.Input[bool] fail_open: Determines how the proxy behaves if the call to the extension fails or times out.
|
4364
|
-
When set to TRUE, request or response processing continues without error.
|
4365
|
-
Any subsequent extensions in the extension chain are also executed.
|
4366
|
-
When set to FALSE: * If response headers have not been delivered to the downstream client,
|
4367
|
-
a generic 500 error is returned to the client. The error response can be tailored by
|
4368
|
-
configuring a custom error response in the load balancer.
|
4369
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] forward_headers: List of the HTTP headers to forward to the extension (from the client or backend).
|
4370
|
-
If omitted, all headers are sent. Each element is a string indicating the header name.
|
4371
|
-
|
4372
|
-
- - -
|
4373
|
-
:param pulumi.Input[str] timeout: Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4374
|
-
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4375
|
-
"""
|
4376
|
-
pulumi.set(__self__, "name", name)
|
4377
|
-
pulumi.set(__self__, "service", service)
|
4378
|
-
if authority is not None:
|
4379
|
-
pulumi.set(__self__, "authority", authority)
|
4380
|
-
if fail_open is not None:
|
4381
|
-
pulumi.set(__self__, "fail_open", fail_open)
|
4382
|
-
if forward_headers is not None:
|
4383
|
-
pulumi.set(__self__, "forward_headers", forward_headers)
|
4384
|
-
if timeout is not None:
|
4385
|
-
pulumi.set(__self__, "timeout", timeout)
|
4386
|
-
|
4387
|
-
@property
|
4388
|
-
@pulumi.getter
|
4389
|
-
def name(self) -> pulumi.Input[str]:
|
4390
|
-
"""
|
4391
|
-
The name for this extension. The name is logged as part of the HTTP request logs.
|
4392
|
-
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4393
|
-
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4394
|
-
and the last a letter or a number.
|
4395
|
-
"""
|
4396
|
-
return pulumi.get(self, "name")
|
4397
|
-
|
4398
|
-
@name.setter
|
4399
|
-
def name(self, value: pulumi.Input[str]):
|
4400
|
-
pulumi.set(self, "name", value)
|
4401
|
-
|
4402
|
-
@property
|
4403
|
-
@pulumi.getter
|
4404
|
-
def service(self) -> pulumi.Input[str]:
|
4405
|
-
"""
|
4406
|
-
The reference to the service that runs the extension. Must be a reference to a backend service
|
4407
|
-
"""
|
4408
|
-
return pulumi.get(self, "service")
|
4409
|
-
|
4410
|
-
@service.setter
|
4411
|
-
def service(self, value: pulumi.Input[str]):
|
4412
|
-
pulumi.set(self, "service", value)
|
4413
|
-
|
4414
|
-
@property
|
4415
|
-
@pulumi.getter
|
4416
|
-
def authority(self) -> Optional[pulumi.Input[str]]:
|
4417
|
-
"""
|
4418
|
-
The :authority header in the gRPC request sent from Envoy to the extension service.
|
4419
|
-
"""
|
4420
|
-
return pulumi.get(self, "authority")
|
4421
|
-
|
4422
|
-
@authority.setter
|
4423
|
-
def authority(self, value: Optional[pulumi.Input[str]]):
|
4424
|
-
pulumi.set(self, "authority", value)
|
4425
|
-
|
4426
|
-
@property
|
4427
|
-
@pulumi.getter(name="failOpen")
|
4428
|
-
def fail_open(self) -> Optional[pulumi.Input[bool]]:
|
4429
|
-
"""
|
4430
|
-
Determines how the proxy behaves if the call to the extension fails or times out.
|
4431
|
-
When set to TRUE, request or response processing continues without error.
|
4432
|
-
Any subsequent extensions in the extension chain are also executed.
|
4433
|
-
When set to FALSE: * If response headers have not been delivered to the downstream client,
|
4434
|
-
a generic 500 error is returned to the client. The error response can be tailored by
|
4435
|
-
configuring a custom error response in the load balancer.
|
4436
|
-
"""
|
4437
|
-
return pulumi.get(self, "fail_open")
|
4438
|
-
|
4439
|
-
@fail_open.setter
|
4440
|
-
def fail_open(self, value: Optional[pulumi.Input[bool]]):
|
4441
|
-
pulumi.set(self, "fail_open", value)
|
4442
|
-
|
4443
|
-
@property
|
4444
|
-
@pulumi.getter(name="forwardHeaders")
|
4445
|
-
def forward_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
4446
|
-
"""
|
4447
|
-
List of the HTTP headers to forward to the extension (from the client or backend).
|
4448
|
-
If omitted, all headers are sent. Each element is a string indicating the header name.
|
4449
|
-
|
4450
|
-
- - -
|
4451
|
-
"""
|
4452
|
-
return pulumi.get(self, "forward_headers")
|
4453
|
-
|
4454
|
-
@forward_headers.setter
|
4455
|
-
def forward_headers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
4456
|
-
pulumi.set(self, "forward_headers", value)
|
4457
|
-
|
4458
|
-
@property
|
4459
|
-
@pulumi.getter
|
4460
|
-
def timeout(self) -> Optional[pulumi.Input[str]]:
|
4461
|
-
"""
|
4462
|
-
Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4463
|
-
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4464
|
-
"""
|
4465
|
-
return pulumi.get(self, "timeout")
|
4466
|
-
|
4467
|
-
@timeout.setter
|
4468
|
-
def timeout(self, value: Optional[pulumi.Input[str]]):
|
4469
|
-
pulumi.set(self, "timeout", value)
|
4470
|
-
|
4471
|
-
|
4472
|
-
@pulumi.input_type
|
4473
|
-
class LbRouteExtensionExtensionChainMatchConditionArgs:
|
4474
|
-
def __init__(__self__, *,
|
4475
|
-
cel_expression: pulumi.Input[str]):
|
4476
|
-
"""
|
4477
|
-
:param pulumi.Input[str] cel_expression: A Common Expression Language (CEL) expression that is used to match requests for which the extension chain is executed.
|
4478
|
-
"""
|
4479
|
-
pulumi.set(__self__, "cel_expression", cel_expression)
|
4480
|
-
|
4481
|
-
@property
|
4482
|
-
@pulumi.getter(name="celExpression")
|
4483
|
-
def cel_expression(self) -> pulumi.Input[str]:
|
4484
|
-
"""
|
4485
|
-
A Common Expression Language (CEL) expression that is used to match requests for which the extension chain is executed.
|
4486
|
-
"""
|
4487
|
-
return pulumi.get(self, "cel_expression")
|
4488
|
-
|
4489
|
-
@cel_expression.setter
|
4490
|
-
def cel_expression(self, value: pulumi.Input[str]):
|
4491
|
-
pulumi.set(self, "cel_expression", value)
|
4492
|
-
|
4493
|
-
|
4494
4278
|
@pulumi.input_type
|
4495
4279
|
class LbTrafficExtensionExtensionChainArgs:
|
4496
4280
|
def __init__(__self__, *,
|
@@ -4560,20 +4344,22 @@ class LbTrafficExtensionExtensionChainArgs:
|
|
4560
4344
|
@pulumi.input_type
|
4561
4345
|
class LbTrafficExtensionExtensionChainExtensionArgs:
|
4562
4346
|
def __init__(__self__, *,
|
4347
|
+
authority: pulumi.Input[str],
|
4563
4348
|
name: pulumi.Input[str],
|
4564
4349
|
service: pulumi.Input[str],
|
4565
|
-
|
4350
|
+
timeout: pulumi.Input[str],
|
4566
4351
|
fail_open: Optional[pulumi.Input[bool]] = None,
|
4567
4352
|
forward_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
4568
|
-
supported_events: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None
|
4569
|
-
timeout: Optional[pulumi.Input[str]] = None):
|
4353
|
+
supported_events: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
4570
4354
|
"""
|
4355
|
+
:param pulumi.Input[str] authority: The :authority header in the gRPC request sent from Envoy to the extension service.
|
4571
4356
|
:param pulumi.Input[str] name: The name for this extension. The name is logged as part of the HTTP request logs.
|
4572
4357
|
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4573
4358
|
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4574
4359
|
and the last a letter or a number.
|
4575
4360
|
:param pulumi.Input[str] service: The reference to the service that runs the extension. Must be a reference to a backend service
|
4576
|
-
:param pulumi.Input[str]
|
4361
|
+
:param pulumi.Input[str] timeout: Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4362
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4577
4363
|
:param pulumi.Input[bool] fail_open: Determines how the proxy behaves if the call to the extension fails or times out.
|
4578
4364
|
When set to TRUE, request or response processing continues without error.
|
4579
4365
|
Any subsequent extensions in the extension chain are also executed.
|
@@ -4588,21 +4374,29 @@ class LbTrafficExtensionExtensionChainExtensionArgs:
|
|
4588
4374
|
`RESPONSE_BODY`, `RESPONSE_BODY` and `RESPONSE_BODY`.
|
4589
4375
|
|
4590
4376
|
- - -
|
4591
|
-
:param pulumi.Input[str] timeout: Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4592
|
-
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4593
4377
|
"""
|
4378
|
+
pulumi.set(__self__, "authority", authority)
|
4594
4379
|
pulumi.set(__self__, "name", name)
|
4595
4380
|
pulumi.set(__self__, "service", service)
|
4596
|
-
|
4597
|
-
pulumi.set(__self__, "authority", authority)
|
4381
|
+
pulumi.set(__self__, "timeout", timeout)
|
4598
4382
|
if fail_open is not None:
|
4599
4383
|
pulumi.set(__self__, "fail_open", fail_open)
|
4600
4384
|
if forward_headers is not None:
|
4601
4385
|
pulumi.set(__self__, "forward_headers", forward_headers)
|
4602
4386
|
if supported_events is not None:
|
4603
4387
|
pulumi.set(__self__, "supported_events", supported_events)
|
4604
|
-
|
4605
|
-
|
4388
|
+
|
4389
|
+
@property
|
4390
|
+
@pulumi.getter
|
4391
|
+
def authority(self) -> pulumi.Input[str]:
|
4392
|
+
"""
|
4393
|
+
The :authority header in the gRPC request sent from Envoy to the extension service.
|
4394
|
+
"""
|
4395
|
+
return pulumi.get(self, "authority")
|
4396
|
+
|
4397
|
+
@authority.setter
|
4398
|
+
def authority(self, value: pulumi.Input[str]):
|
4399
|
+
pulumi.set(self, "authority", value)
|
4606
4400
|
|
4607
4401
|
@property
|
4608
4402
|
@pulumi.getter
|
@@ -4633,15 +4427,16 @@ class LbTrafficExtensionExtensionChainExtensionArgs:
|
|
4633
4427
|
|
4634
4428
|
@property
|
4635
4429
|
@pulumi.getter
|
4636
|
-
def
|
4430
|
+
def timeout(self) -> pulumi.Input[str]:
|
4637
4431
|
"""
|
4638
|
-
|
4432
|
+
Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4433
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4639
4434
|
"""
|
4640
|
-
return pulumi.get(self, "
|
4435
|
+
return pulumi.get(self, "timeout")
|
4641
4436
|
|
4642
|
-
@
|
4643
|
-
def
|
4644
|
-
pulumi.set(self, "
|
4437
|
+
@timeout.setter
|
4438
|
+
def timeout(self, value: pulumi.Input[str]):
|
4439
|
+
pulumi.set(self, "timeout", value)
|
4645
4440
|
|
4646
4441
|
@property
|
4647
4442
|
@pulumi.getter(name="failOpen")
|
@@ -4690,19 +4485,6 @@ class LbTrafficExtensionExtensionChainExtensionArgs:
|
|
4690
4485
|
def supported_events(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
4691
4486
|
pulumi.set(self, "supported_events", value)
|
4692
4487
|
|
4693
|
-
@property
|
4694
|
-
@pulumi.getter
|
4695
|
-
def timeout(self) -> Optional[pulumi.Input[str]]:
|
4696
|
-
"""
|
4697
|
-
Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4698
|
-
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4699
|
-
"""
|
4700
|
-
return pulumi.get(self, "timeout")
|
4701
|
-
|
4702
|
-
@timeout.setter
|
4703
|
-
def timeout(self, value: Optional[pulumi.Input[str]]):
|
4704
|
-
pulumi.set(self, "timeout", value)
|
4705
|
-
|
4706
4488
|
|
4707
4489
|
@pulumi.input_type
|
4708
4490
|
class LbTrafficExtensionExtensionChainMatchConditionArgs:
|
@@ -39,10 +39,8 @@ class LbTrafficExtensionArgs:
|
|
39
39
|
manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels
|
40
40
|
present on the resource.
|
41
41
|
:param pulumi.Input[str] load_balancing_scheme: All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
42
|
-
more information, refer to
|
43
|
-
|
44
|
-
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
45
|
-
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
42
|
+
more information, refer to Choosing a load balancer. Possible values: ["LOAD_BALANCING_SCHEME_UNSPECIFIED",
|
43
|
+
"INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
46
44
|
:param pulumi.Input[str] name: Name of the LbTrafficExtension resource in the following format: projects/{project}/locations/{location}/lbTrafficExtensions/{lbTrafficExtension}.
|
47
45
|
"""
|
48
46
|
pulumi.set(__self__, "extension_chains", extension_chains)
|
@@ -131,10 +129,8 @@ class LbTrafficExtensionArgs:
|
|
131
129
|
def load_balancing_scheme(self) -> Optional[pulumi.Input[str]]:
|
132
130
|
"""
|
133
131
|
All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
134
|
-
more information, refer to
|
135
|
-
|
136
|
-
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
137
|
-
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
132
|
+
more information, refer to Choosing a load balancer. Possible values: ["LOAD_BALANCING_SCHEME_UNSPECIFIED",
|
133
|
+
"INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
138
134
|
"""
|
139
135
|
return pulumi.get(self, "load_balancing_scheme")
|
140
136
|
|
@@ -192,10 +188,8 @@ class _LbTrafficExtensionState:
|
|
192
188
|
manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels
|
193
189
|
present on the resource.
|
194
190
|
:param pulumi.Input[str] load_balancing_scheme: All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
195
|
-
more information, refer to
|
196
|
-
|
197
|
-
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
198
|
-
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
191
|
+
more information, refer to Choosing a load balancer. Possible values: ["LOAD_BALANCING_SCHEME_UNSPECIFIED",
|
192
|
+
"INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
199
193
|
:param pulumi.Input[str] location: The location of the traffic extension
|
200
194
|
:param pulumi.Input[str] name: Name of the LbTrafficExtension resource in the following format: projects/{project}/locations/{location}/lbTrafficExtensions/{lbTrafficExtension}.
|
201
195
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -294,10 +288,8 @@ class _LbTrafficExtensionState:
|
|
294
288
|
def load_balancing_scheme(self) -> Optional[pulumi.Input[str]]:
|
295
289
|
"""
|
296
290
|
All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
297
|
-
more information, refer to
|
298
|
-
|
299
|
-
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
300
|
-
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
291
|
+
more information, refer to Choosing a load balancer. Possible values: ["LOAD_BALANCING_SCHEME_UNSPECIFIED",
|
292
|
+
"INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
301
293
|
"""
|
302
294
|
return pulumi.get(self, "load_balancing_scheme")
|
303
295
|
|
@@ -415,10 +407,8 @@ class LbTrafficExtension(pulumi.CustomResource):
|
|
415
407
|
manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels
|
416
408
|
present on the resource.
|
417
409
|
:param pulumi.Input[str] load_balancing_scheme: All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
418
|
-
more information, refer to
|
419
|
-
|
420
|
-
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
421
|
-
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
410
|
+
more information, refer to Choosing a load balancer. Possible values: ["LOAD_BALANCING_SCHEME_UNSPECIFIED",
|
411
|
+
"INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
422
412
|
:param pulumi.Input[str] location: The location of the traffic extension
|
423
413
|
:param pulumi.Input[str] name: Name of the LbTrafficExtension resource in the following format: projects/{project}/locations/{location}/lbTrafficExtensions/{lbTrafficExtension}.
|
424
414
|
"""
|
@@ -553,10 +543,8 @@ class LbTrafficExtension(pulumi.CustomResource):
|
|
553
543
|
manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels
|
554
544
|
present on the resource.
|
555
545
|
:param pulumi.Input[str] load_balancing_scheme: All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
556
|
-
more information, refer to
|
557
|
-
|
558
|
-
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
559
|
-
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
546
|
+
more information, refer to Choosing a load balancer. Possible values: ["LOAD_BALANCING_SCHEME_UNSPECIFIED",
|
547
|
+
"INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
560
548
|
:param pulumi.Input[str] location: The location of the traffic extension
|
561
549
|
:param pulumi.Input[str] name: Name of the LbTrafficExtension resource in the following format: projects/{project}/locations/{location}/lbTrafficExtensions/{lbTrafficExtension}.
|
562
550
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -630,10 +618,8 @@ class LbTrafficExtension(pulumi.CustomResource):
|
|
630
618
|
def load_balancing_scheme(self) -> pulumi.Output[Optional[str]]:
|
631
619
|
"""
|
632
620
|
All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
633
|
-
more information, refer to
|
634
|
-
|
635
|
-
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
636
|
-
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
621
|
+
more information, refer to Choosing a load balancer. Possible values: ["LOAD_BALANCING_SCHEME_UNSPECIFIED",
|
622
|
+
"INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
637
623
|
"""
|
638
624
|
return pulumi.get(self, "load_balancing_scheme")
|
639
625
|
|