pulumi-gcp 7.25.0a1717135845__py3-none-any.whl → 7.25.0a1717407024__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 +88 -0
- pulumi_gcp/appengine/_inputs.py +18 -0
- pulumi_gcp/appengine/domain_mapping.py +1 -1
- pulumi_gcp/appengine/outputs.py +16 -0
- pulumi_gcp/bigquery/_inputs.py +286 -2
- pulumi_gcp/bigquery/outputs.py +289 -2
- pulumi_gcp/bigquery/table.py +77 -35
- pulumi_gcp/cloudfunctionsv2/function.py +0 -4
- pulumi_gcp/cloudrun/_inputs.py +80 -4
- pulumi_gcp/cloudrun/outputs.py +137 -4
- pulumi_gcp/composer/user_workloads_secret.py +4 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +398 -176
- pulumi_gcp/compute/get_subnetworks.py +157 -0
- pulumi_gcp/compute/instance_group_membership.py +2 -2
- pulumi_gcp/compute/interconnect_attachment.py +82 -0
- pulumi_gcp/compute/network_endpoint.py +2 -2
- pulumi_gcp/compute/network_endpoint_list.py +2 -2
- pulumi_gcp/compute/outputs.py +609 -161
- pulumi_gcp/compute/region_ssl_policy.py +39 -40
- pulumi_gcp/compute/security_policy_rule.py +55 -1
- pulumi_gcp/container/_inputs.py +560 -0
- pulumi_gcp/container/outputs.py +1106 -51
- pulumi_gcp/dataplex/__init__.py +10 -0
- pulumi_gcp/dataplex/_inputs.py +160 -0
- pulumi_gcp/dataplex/aspect_type.py +1077 -0
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +765 -0
- pulumi_gcp/dataplex/aspect_type_iam_member.py +765 -0
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +604 -0
- pulumi_gcp/dataplex/entry_group.py +722 -0
- pulumi_gcp/dataplex/entry_group_iam_binding.py +765 -0
- pulumi_gcp/dataplex/entry_group_iam_member.py +765 -0
- pulumi_gcp/dataplex/entry_group_iam_policy.py +604 -0
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +164 -0
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +164 -0
- pulumi_gcp/dataplex/outputs.py +112 -0
- pulumi_gcp/datastream/connection_profile.py +47 -0
- pulumi_gcp/datastream/private_connection.py +47 -0
- pulumi_gcp/datastream/stream.py +47 -0
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +366 -0
- pulumi_gcp/kms/key_handle.py +548 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/_inputs.py +245 -27
- pulumi_gcp/networkservices/lb_route_extension.py +663 -0
- pulumi_gcp/networkservices/lb_traffic_extension.py +28 -14
- pulumi_gcp/networkservices/outputs.py +251 -20
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +16 -0
- pulumi_gcp/pubsub/outputs.py +25 -0
- pulumi_gcp/pubsub/subscription.py +8 -4
- 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.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/RECORD +59 -45
- {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/top_level.txt +0 -0
@@ -39,8 +39,10 @@ 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 Choosing a load balancer.
|
43
|
-
|
42
|
+
more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service) and
|
43
|
+
[Supported application load
|
44
|
+
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
45
|
+
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
44
46
|
:param pulumi.Input[str] name: Name of the LbTrafficExtension resource in the following format: projects/{project}/locations/{location}/lbTrafficExtensions/{lbTrafficExtension}.
|
45
47
|
"""
|
46
48
|
pulumi.set(__self__, "extension_chains", extension_chains)
|
@@ -129,8 +131,10 @@ class LbTrafficExtensionArgs:
|
|
129
131
|
def load_balancing_scheme(self) -> Optional[pulumi.Input[str]]:
|
130
132
|
"""
|
131
133
|
All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
132
|
-
more information, refer to Choosing a load balancer.
|
133
|
-
|
134
|
+
more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service) and
|
135
|
+
[Supported application load
|
136
|
+
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
137
|
+
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
134
138
|
"""
|
135
139
|
return pulumi.get(self, "load_balancing_scheme")
|
136
140
|
|
@@ -188,8 +192,10 @@ class _LbTrafficExtensionState:
|
|
188
192
|
manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels
|
189
193
|
present on the resource.
|
190
194
|
: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
|
191
|
-
more information, refer to Choosing a load balancer.
|
192
|
-
|
195
|
+
more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service) and
|
196
|
+
[Supported application load
|
197
|
+
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
198
|
+
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
193
199
|
:param pulumi.Input[str] location: The location of the traffic extension
|
194
200
|
:param pulumi.Input[str] name: Name of the LbTrafficExtension resource in the following format: projects/{project}/locations/{location}/lbTrafficExtensions/{lbTrafficExtension}.
|
195
201
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -288,8 +294,10 @@ class _LbTrafficExtensionState:
|
|
288
294
|
def load_balancing_scheme(self) -> Optional[pulumi.Input[str]]:
|
289
295
|
"""
|
290
296
|
All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
291
|
-
more information, refer to Choosing a load balancer.
|
292
|
-
|
297
|
+
more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service) and
|
298
|
+
[Supported application load
|
299
|
+
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
300
|
+
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
293
301
|
"""
|
294
302
|
return pulumi.get(self, "load_balancing_scheme")
|
295
303
|
|
@@ -407,8 +415,10 @@ class LbTrafficExtension(pulumi.CustomResource):
|
|
407
415
|
manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels
|
408
416
|
present on the resource.
|
409
417
|
: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
|
410
|
-
more information, refer to Choosing a load balancer.
|
411
|
-
|
418
|
+
more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service) and
|
419
|
+
[Supported application load
|
420
|
+
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
421
|
+
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
412
422
|
:param pulumi.Input[str] location: The location of the traffic extension
|
413
423
|
:param pulumi.Input[str] name: Name of the LbTrafficExtension resource in the following format: projects/{project}/locations/{location}/lbTrafficExtensions/{lbTrafficExtension}.
|
414
424
|
"""
|
@@ -543,8 +553,10 @@ class LbTrafficExtension(pulumi.CustomResource):
|
|
543
553
|
manage the labels present in your configuration. Please refer to the field 'effective_labels' for all of the labels
|
544
554
|
present on the resource.
|
545
555
|
: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
|
546
|
-
more information, refer to Choosing a load balancer.
|
547
|
-
|
556
|
+
more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service) and
|
557
|
+
[Supported application load
|
558
|
+
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
559
|
+
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
548
560
|
:param pulumi.Input[str] location: The location of the traffic extension
|
549
561
|
:param pulumi.Input[str] name: Name of the LbTrafficExtension resource in the following format: projects/{project}/locations/{location}/lbTrafficExtensions/{lbTrafficExtension}.
|
550
562
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
|
@@ -618,8 +630,10 @@ class LbTrafficExtension(pulumi.CustomResource):
|
|
618
630
|
def load_balancing_scheme(self) -> pulumi.Output[Optional[str]]:
|
619
631
|
"""
|
620
632
|
All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. For
|
621
|
-
more information, refer to Choosing a load balancer.
|
622
|
-
|
633
|
+
more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service) and
|
634
|
+
[Supported application load
|
635
|
+
balancers](https://cloud.google.com/service-extensions/docs/callouts-overview#supported-lbs). Possible values:
|
636
|
+
["INTERNAL_MANAGED", "EXTERNAL_MANAGED"]
|
623
637
|
"""
|
624
638
|
return pulumi.get(self, "load_balancing_scheme")
|
625
639
|
|
@@ -73,6 +73,9 @@ __all__ = [
|
|
73
73
|
'HttpRouteRuleMatchHeader',
|
74
74
|
'HttpRouteRuleMatchHeaderRangeMatch',
|
75
75
|
'HttpRouteRuleMatchQueryParameter',
|
76
|
+
'LbRouteExtensionExtensionChain',
|
77
|
+
'LbRouteExtensionExtensionChainExtension',
|
78
|
+
'LbRouteExtensionExtensionChainMatchCondition',
|
76
79
|
'LbTrafficExtensionExtensionChain',
|
77
80
|
'LbTrafficExtensionExtensionChainExtension',
|
78
81
|
'LbTrafficExtensionExtensionChainMatchCondition',
|
@@ -4500,6 +4503,232 @@ class HttpRouteRuleMatchQueryParameter(dict):
|
|
4500
4503
|
return pulumi.get(self, "regex_match")
|
4501
4504
|
|
4502
4505
|
|
4506
|
+
@pulumi.output_type
|
4507
|
+
class LbRouteExtensionExtensionChain(dict):
|
4508
|
+
@staticmethod
|
4509
|
+
def __key_warning(key: str):
|
4510
|
+
suggest = None
|
4511
|
+
if key == "matchCondition":
|
4512
|
+
suggest = "match_condition"
|
4513
|
+
|
4514
|
+
if suggest:
|
4515
|
+
pulumi.log.warn(f"Key '{key}' not found in LbRouteExtensionExtensionChain. Access the value via the '{suggest}' property getter instead.")
|
4516
|
+
|
4517
|
+
def __getitem__(self, key: str) -> Any:
|
4518
|
+
LbRouteExtensionExtensionChain.__key_warning(key)
|
4519
|
+
return super().__getitem__(key)
|
4520
|
+
|
4521
|
+
def get(self, key: str, default = None) -> Any:
|
4522
|
+
LbRouteExtensionExtensionChain.__key_warning(key)
|
4523
|
+
return super().get(key, default)
|
4524
|
+
|
4525
|
+
def __init__(__self__, *,
|
4526
|
+
extensions: Sequence['outputs.LbRouteExtensionExtensionChainExtension'],
|
4527
|
+
match_condition: 'outputs.LbRouteExtensionExtensionChainMatchCondition',
|
4528
|
+
name: str):
|
4529
|
+
"""
|
4530
|
+
:param Sequence['LbRouteExtensionExtensionChainExtensionArgs'] extensions: A set of extensions to execute for the matching request.
|
4531
|
+
At least one extension is required. Up to 3 extensions can be defined for each extension chain for
|
4532
|
+
LbTrafficExtension resource. LbRouteExtension chains are limited to 1 extension per extension chain.
|
4533
|
+
Structure is documented below.
|
4534
|
+
:param 'LbRouteExtensionExtensionChainMatchConditionArgs' match_condition: Conditions under which this chain is invoked for a request.
|
4535
|
+
Structure is documented below.
|
4536
|
+
:param str name: The name for this extension chain. The name is logged as part of the HTTP request logs.
|
4537
|
+
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4538
|
+
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4539
|
+
and the last character must be a letter or a number.
|
4540
|
+
"""
|
4541
|
+
pulumi.set(__self__, "extensions", extensions)
|
4542
|
+
pulumi.set(__self__, "match_condition", match_condition)
|
4543
|
+
pulumi.set(__self__, "name", name)
|
4544
|
+
|
4545
|
+
@property
|
4546
|
+
@pulumi.getter
|
4547
|
+
def extensions(self) -> Sequence['outputs.LbRouteExtensionExtensionChainExtension']:
|
4548
|
+
"""
|
4549
|
+
A set of extensions to execute for the matching request.
|
4550
|
+
At least one extension is required. Up to 3 extensions can be defined for each extension chain for
|
4551
|
+
LbTrafficExtension resource. LbRouteExtension chains are limited to 1 extension per extension chain.
|
4552
|
+
Structure is documented below.
|
4553
|
+
"""
|
4554
|
+
return pulumi.get(self, "extensions")
|
4555
|
+
|
4556
|
+
@property
|
4557
|
+
@pulumi.getter(name="matchCondition")
|
4558
|
+
def match_condition(self) -> 'outputs.LbRouteExtensionExtensionChainMatchCondition':
|
4559
|
+
"""
|
4560
|
+
Conditions under which this chain is invoked for a request.
|
4561
|
+
Structure is documented below.
|
4562
|
+
"""
|
4563
|
+
return pulumi.get(self, "match_condition")
|
4564
|
+
|
4565
|
+
@property
|
4566
|
+
@pulumi.getter
|
4567
|
+
def name(self) -> str:
|
4568
|
+
"""
|
4569
|
+
The name for this extension chain. The name is logged as part of the HTTP request logs.
|
4570
|
+
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4571
|
+
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4572
|
+
and the last character must be a letter or a number.
|
4573
|
+
"""
|
4574
|
+
return pulumi.get(self, "name")
|
4575
|
+
|
4576
|
+
|
4577
|
+
@pulumi.output_type
|
4578
|
+
class LbRouteExtensionExtensionChainExtension(dict):
|
4579
|
+
@staticmethod
|
4580
|
+
def __key_warning(key: str):
|
4581
|
+
suggest = None
|
4582
|
+
if key == "failOpen":
|
4583
|
+
suggest = "fail_open"
|
4584
|
+
elif key == "forwardHeaders":
|
4585
|
+
suggest = "forward_headers"
|
4586
|
+
|
4587
|
+
if suggest:
|
4588
|
+
pulumi.log.warn(f"Key '{key}' not found in LbRouteExtensionExtensionChainExtension. Access the value via the '{suggest}' property getter instead.")
|
4589
|
+
|
4590
|
+
def __getitem__(self, key: str) -> Any:
|
4591
|
+
LbRouteExtensionExtensionChainExtension.__key_warning(key)
|
4592
|
+
return super().__getitem__(key)
|
4593
|
+
|
4594
|
+
def get(self, key: str, default = None) -> Any:
|
4595
|
+
LbRouteExtensionExtensionChainExtension.__key_warning(key)
|
4596
|
+
return super().get(key, default)
|
4597
|
+
|
4598
|
+
def __init__(__self__, *,
|
4599
|
+
name: str,
|
4600
|
+
service: str,
|
4601
|
+
authority: Optional[str] = None,
|
4602
|
+
fail_open: Optional[bool] = None,
|
4603
|
+
forward_headers: Optional[Sequence[str]] = None,
|
4604
|
+
timeout: Optional[str] = None):
|
4605
|
+
"""
|
4606
|
+
:param str name: The name for this extension. The name is logged as part of the HTTP request logs.
|
4607
|
+
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4608
|
+
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4609
|
+
and the last a letter or a number.
|
4610
|
+
:param str service: The reference to the service that runs the extension. Must be a reference to a backend service
|
4611
|
+
:param str authority: The :authority header in the gRPC request sent from Envoy to the extension service.
|
4612
|
+
:param bool fail_open: Determines how the proxy behaves if the call to the extension fails or times out.
|
4613
|
+
When set to TRUE, request or response processing continues without error.
|
4614
|
+
Any subsequent extensions in the extension chain are also executed.
|
4615
|
+
When set to FALSE: * If response headers have not been delivered to the downstream client,
|
4616
|
+
a generic 500 error is returned to the client. The error response can be tailored by
|
4617
|
+
configuring a custom error response in the load balancer.
|
4618
|
+
:param Sequence[str] forward_headers: List of the HTTP headers to forward to the extension (from the client or backend).
|
4619
|
+
If omitted, all headers are sent. Each element is a string indicating the header name.
|
4620
|
+
|
4621
|
+
- - -
|
4622
|
+
:param str timeout: Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4623
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4624
|
+
"""
|
4625
|
+
pulumi.set(__self__, "name", name)
|
4626
|
+
pulumi.set(__self__, "service", service)
|
4627
|
+
if authority is not None:
|
4628
|
+
pulumi.set(__self__, "authority", authority)
|
4629
|
+
if fail_open is not None:
|
4630
|
+
pulumi.set(__self__, "fail_open", fail_open)
|
4631
|
+
if forward_headers is not None:
|
4632
|
+
pulumi.set(__self__, "forward_headers", forward_headers)
|
4633
|
+
if timeout is not None:
|
4634
|
+
pulumi.set(__self__, "timeout", timeout)
|
4635
|
+
|
4636
|
+
@property
|
4637
|
+
@pulumi.getter
|
4638
|
+
def name(self) -> str:
|
4639
|
+
"""
|
4640
|
+
The name for this extension. The name is logged as part of the HTTP request logs.
|
4641
|
+
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4642
|
+
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4643
|
+
and the last a letter or a number.
|
4644
|
+
"""
|
4645
|
+
return pulumi.get(self, "name")
|
4646
|
+
|
4647
|
+
@property
|
4648
|
+
@pulumi.getter
|
4649
|
+
def service(self) -> str:
|
4650
|
+
"""
|
4651
|
+
The reference to the service that runs the extension. Must be a reference to a backend service
|
4652
|
+
"""
|
4653
|
+
return pulumi.get(self, "service")
|
4654
|
+
|
4655
|
+
@property
|
4656
|
+
@pulumi.getter
|
4657
|
+
def authority(self) -> Optional[str]:
|
4658
|
+
"""
|
4659
|
+
The :authority header in the gRPC request sent from Envoy to the extension service.
|
4660
|
+
"""
|
4661
|
+
return pulumi.get(self, "authority")
|
4662
|
+
|
4663
|
+
@property
|
4664
|
+
@pulumi.getter(name="failOpen")
|
4665
|
+
def fail_open(self) -> Optional[bool]:
|
4666
|
+
"""
|
4667
|
+
Determines how the proxy behaves if the call to the extension fails or times out.
|
4668
|
+
When set to TRUE, request or response processing continues without error.
|
4669
|
+
Any subsequent extensions in the extension chain are also executed.
|
4670
|
+
When set to FALSE: * If response headers have not been delivered to the downstream client,
|
4671
|
+
a generic 500 error is returned to the client. The error response can be tailored by
|
4672
|
+
configuring a custom error response in the load balancer.
|
4673
|
+
"""
|
4674
|
+
return pulumi.get(self, "fail_open")
|
4675
|
+
|
4676
|
+
@property
|
4677
|
+
@pulumi.getter(name="forwardHeaders")
|
4678
|
+
def forward_headers(self) -> Optional[Sequence[str]]:
|
4679
|
+
"""
|
4680
|
+
List of the HTTP headers to forward to the extension (from the client or backend).
|
4681
|
+
If omitted, all headers are sent. Each element is a string indicating the header name.
|
4682
|
+
|
4683
|
+
- - -
|
4684
|
+
"""
|
4685
|
+
return pulumi.get(self, "forward_headers")
|
4686
|
+
|
4687
|
+
@property
|
4688
|
+
@pulumi.getter
|
4689
|
+
def timeout(self) -> Optional[str]:
|
4690
|
+
"""
|
4691
|
+
Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4692
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4693
|
+
"""
|
4694
|
+
return pulumi.get(self, "timeout")
|
4695
|
+
|
4696
|
+
|
4697
|
+
@pulumi.output_type
|
4698
|
+
class LbRouteExtensionExtensionChainMatchCondition(dict):
|
4699
|
+
@staticmethod
|
4700
|
+
def __key_warning(key: str):
|
4701
|
+
suggest = None
|
4702
|
+
if key == "celExpression":
|
4703
|
+
suggest = "cel_expression"
|
4704
|
+
|
4705
|
+
if suggest:
|
4706
|
+
pulumi.log.warn(f"Key '{key}' not found in LbRouteExtensionExtensionChainMatchCondition. Access the value via the '{suggest}' property getter instead.")
|
4707
|
+
|
4708
|
+
def __getitem__(self, key: str) -> Any:
|
4709
|
+
LbRouteExtensionExtensionChainMatchCondition.__key_warning(key)
|
4710
|
+
return super().__getitem__(key)
|
4711
|
+
|
4712
|
+
def get(self, key: str, default = None) -> Any:
|
4713
|
+
LbRouteExtensionExtensionChainMatchCondition.__key_warning(key)
|
4714
|
+
return super().get(key, default)
|
4715
|
+
|
4716
|
+
def __init__(__self__, *,
|
4717
|
+
cel_expression: str):
|
4718
|
+
"""
|
4719
|
+
:param str cel_expression: A Common Expression Language (CEL) expression that is used to match requests for which the extension chain is executed.
|
4720
|
+
"""
|
4721
|
+
pulumi.set(__self__, "cel_expression", cel_expression)
|
4722
|
+
|
4723
|
+
@property
|
4724
|
+
@pulumi.getter(name="celExpression")
|
4725
|
+
def cel_expression(self) -> str:
|
4726
|
+
"""
|
4727
|
+
A Common Expression Language (CEL) expression that is used to match requests for which the extension chain is executed.
|
4728
|
+
"""
|
4729
|
+
return pulumi.get(self, "cel_expression")
|
4730
|
+
|
4731
|
+
|
4503
4732
|
@pulumi.output_type
|
4504
4733
|
class LbTrafficExtensionExtensionChain(dict):
|
4505
4734
|
@staticmethod
|
@@ -4595,22 +4824,20 @@ class LbTrafficExtensionExtensionChainExtension(dict):
|
|
4595
4824
|
return super().get(key, default)
|
4596
4825
|
|
4597
4826
|
def __init__(__self__, *,
|
4598
|
-
authority: str,
|
4599
4827
|
name: str,
|
4600
4828
|
service: str,
|
4601
|
-
|
4829
|
+
authority: Optional[str] = None,
|
4602
4830
|
fail_open: Optional[bool] = None,
|
4603
4831
|
forward_headers: Optional[Sequence[str]] = None,
|
4604
|
-
supported_events: Optional[Sequence[str]] = None
|
4832
|
+
supported_events: Optional[Sequence[str]] = None,
|
4833
|
+
timeout: Optional[str] = None):
|
4605
4834
|
"""
|
4606
|
-
:param str authority: The :authority header in the gRPC request sent from Envoy to the extension service.
|
4607
4835
|
:param str name: The name for this extension. The name is logged as part of the HTTP request logs.
|
4608
4836
|
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4609
4837
|
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4610
4838
|
and the last a letter or a number.
|
4611
4839
|
:param str service: The reference to the service that runs the extension. Must be a reference to a backend service
|
4612
|
-
:param str
|
4613
|
-
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4840
|
+
:param str authority: The :authority header in the gRPC request sent from Envoy to the extension service.
|
4614
4841
|
:param bool fail_open: Determines how the proxy behaves if the call to the extension fails or times out.
|
4615
4842
|
When set to TRUE, request or response processing continues without error.
|
4616
4843
|
Any subsequent extensions in the extension chain are also executed.
|
@@ -4625,25 +4852,21 @@ class LbTrafficExtensionExtensionChainExtension(dict):
|
|
4625
4852
|
`RESPONSE_BODY`, `RESPONSE_BODY` and `RESPONSE_BODY`.
|
4626
4853
|
|
4627
4854
|
- - -
|
4855
|
+
:param str timeout: Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4856
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4628
4857
|
"""
|
4629
|
-
pulumi.set(__self__, "authority", authority)
|
4630
4858
|
pulumi.set(__self__, "name", name)
|
4631
4859
|
pulumi.set(__self__, "service", service)
|
4632
|
-
|
4860
|
+
if authority is not None:
|
4861
|
+
pulumi.set(__self__, "authority", authority)
|
4633
4862
|
if fail_open is not None:
|
4634
4863
|
pulumi.set(__self__, "fail_open", fail_open)
|
4635
4864
|
if forward_headers is not None:
|
4636
4865
|
pulumi.set(__self__, "forward_headers", forward_headers)
|
4637
4866
|
if supported_events is not None:
|
4638
4867
|
pulumi.set(__self__, "supported_events", supported_events)
|
4639
|
-
|
4640
|
-
|
4641
|
-
@pulumi.getter
|
4642
|
-
def authority(self) -> str:
|
4643
|
-
"""
|
4644
|
-
The :authority header in the gRPC request sent from Envoy to the extension service.
|
4645
|
-
"""
|
4646
|
-
return pulumi.get(self, "authority")
|
4868
|
+
if timeout is not None:
|
4869
|
+
pulumi.set(__self__, "timeout", timeout)
|
4647
4870
|
|
4648
4871
|
@property
|
4649
4872
|
@pulumi.getter
|
@@ -4666,12 +4889,11 @@ class LbTrafficExtensionExtensionChainExtension(dict):
|
|
4666
4889
|
|
4667
4890
|
@property
|
4668
4891
|
@pulumi.getter
|
4669
|
-
def
|
4892
|
+
def authority(self) -> Optional[str]:
|
4670
4893
|
"""
|
4671
|
-
|
4672
|
-
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4894
|
+
The :authority header in the gRPC request sent from Envoy to the extension service.
|
4673
4895
|
"""
|
4674
|
-
return pulumi.get(self, "
|
4896
|
+
return pulumi.get(self, "authority")
|
4675
4897
|
|
4676
4898
|
@property
|
4677
4899
|
@pulumi.getter(name="failOpen")
|
@@ -4708,6 +4930,15 @@ class LbTrafficExtensionExtensionChainExtension(dict):
|
|
4708
4930
|
"""
|
4709
4931
|
return pulumi.get(self, "supported_events")
|
4710
4932
|
|
4933
|
+
@property
|
4934
|
+
@pulumi.getter
|
4935
|
+
def timeout(self) -> Optional[str]:
|
4936
|
+
"""
|
4937
|
+
Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4938
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4939
|
+
"""
|
4940
|
+
return pulumi.get(self, "timeout")
|
4941
|
+
|
4711
4942
|
|
4712
4943
|
@pulumi.output_type
|
4713
4944
|
class LbTrafficExtensionExtensionChainMatchCondition(dict):
|
pulumi_gcp/orgpolicy/policy.py
CHANGED
@@ -297,7 +297,7 @@ class Policy(pulumi.CustomResource):
|
|
297
297
|
import pulumi_gcp as gcp
|
298
298
|
|
299
299
|
constraint = gcp.orgpolicy.CustomConstraint("constraint",
|
300
|
-
name="custom.
|
300
|
+
name="custom.disableGkeAutoUpgrade_2067",
|
301
301
|
parent="organizations/123456789",
|
302
302
|
display_name="Disable GKE auto upgrade",
|
303
303
|
description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
|
@@ -449,7 +449,7 @@ class Policy(pulumi.CustomResource):
|
|
449
449
|
import pulumi_gcp as gcp
|
450
450
|
|
451
451
|
constraint = gcp.orgpolicy.CustomConstraint("constraint",
|
452
|
-
name="custom.
|
452
|
+
name="custom.disableGkeAutoUpgrade_2067",
|
453
453
|
parent="organizations/123456789",
|
454
454
|
display_name="Disable GKE auto upgrade",
|
455
455
|
description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
|
pulumi_gcp/pubsub/_inputs.py
CHANGED
@@ -387,6 +387,7 @@ class SubscriptionCloudStorageConfigArgs:
|
|
387
387
|
def __init__(__self__, *,
|
388
388
|
bucket: pulumi.Input[str],
|
389
389
|
avro_config: Optional[pulumi.Input['SubscriptionCloudStorageConfigAvroConfigArgs']] = None,
|
390
|
+
filename_datetime_format: Optional[pulumi.Input[str]] = None,
|
390
391
|
filename_prefix: Optional[pulumi.Input[str]] = None,
|
391
392
|
filename_suffix: Optional[pulumi.Input[str]] = None,
|
392
393
|
max_bytes: Optional[pulumi.Input[int]] = None,
|
@@ -396,6 +397,7 @@ class SubscriptionCloudStorageConfigArgs:
|
|
396
397
|
:param pulumi.Input[str] bucket: User-provided name for the Cloud Storage bucket. The bucket must be created by the user. The bucket name must be without any prefix like "gs://".
|
397
398
|
:param pulumi.Input['SubscriptionCloudStorageConfigAvroConfigArgs'] avro_config: If set, message data will be written to Cloud Storage in Avro format.
|
398
399
|
Structure is documented below.
|
400
|
+
:param pulumi.Input[str] filename_datetime_format: User-provided format string specifying how to represent datetimes in Cloud Storage filenames.
|
399
401
|
:param pulumi.Input[str] filename_prefix: User-provided prefix for Cloud Storage filename.
|
400
402
|
:param pulumi.Input[str] filename_suffix: User-provided suffix for Cloud Storage filename. Must not end in "/".
|
401
403
|
:param pulumi.Input[int] max_bytes: The maximum bytes that can be written to a Cloud Storage file before a new file is created. Min 1 KB, max 10 GiB.
|
@@ -409,6 +411,8 @@ class SubscriptionCloudStorageConfigArgs:
|
|
409
411
|
pulumi.set(__self__, "bucket", bucket)
|
410
412
|
if avro_config is not None:
|
411
413
|
pulumi.set(__self__, "avro_config", avro_config)
|
414
|
+
if filename_datetime_format is not None:
|
415
|
+
pulumi.set(__self__, "filename_datetime_format", filename_datetime_format)
|
412
416
|
if filename_prefix is not None:
|
413
417
|
pulumi.set(__self__, "filename_prefix", filename_prefix)
|
414
418
|
if filename_suffix is not None:
|
@@ -445,6 +449,18 @@ class SubscriptionCloudStorageConfigArgs:
|
|
445
449
|
def avro_config(self, value: Optional[pulumi.Input['SubscriptionCloudStorageConfigAvroConfigArgs']]):
|
446
450
|
pulumi.set(self, "avro_config", value)
|
447
451
|
|
452
|
+
@property
|
453
|
+
@pulumi.getter(name="filenameDatetimeFormat")
|
454
|
+
def filename_datetime_format(self) -> Optional[pulumi.Input[str]]:
|
455
|
+
"""
|
456
|
+
User-provided format string specifying how to represent datetimes in Cloud Storage filenames.
|
457
|
+
"""
|
458
|
+
return pulumi.get(self, "filename_datetime_format")
|
459
|
+
|
460
|
+
@filename_datetime_format.setter
|
461
|
+
def filename_datetime_format(self, value: Optional[pulumi.Input[str]]):
|
462
|
+
pulumi.set(self, "filename_datetime_format", value)
|
463
|
+
|
448
464
|
@property
|
449
465
|
@pulumi.getter(name="filenamePrefix")
|
450
466
|
def filename_prefix(self) -> Optional[pulumi.Input[str]]:
|
pulumi_gcp/pubsub/outputs.py
CHANGED
@@ -420,6 +420,8 @@ class SubscriptionCloudStorageConfig(dict):
|
|
420
420
|
suggest = None
|
421
421
|
if key == "avroConfig":
|
422
422
|
suggest = "avro_config"
|
423
|
+
elif key == "filenameDatetimeFormat":
|
424
|
+
suggest = "filename_datetime_format"
|
423
425
|
elif key == "filenamePrefix":
|
424
426
|
suggest = "filename_prefix"
|
425
427
|
elif key == "filenameSuffix":
|
@@ -443,6 +445,7 @@ class SubscriptionCloudStorageConfig(dict):
|
|
443
445
|
def __init__(__self__, *,
|
444
446
|
bucket: str,
|
445
447
|
avro_config: Optional['outputs.SubscriptionCloudStorageConfigAvroConfig'] = None,
|
448
|
+
filename_datetime_format: Optional[str] = None,
|
446
449
|
filename_prefix: Optional[str] = None,
|
447
450
|
filename_suffix: Optional[str] = None,
|
448
451
|
max_bytes: Optional[int] = None,
|
@@ -452,6 +455,7 @@ class SubscriptionCloudStorageConfig(dict):
|
|
452
455
|
:param str bucket: User-provided name for the Cloud Storage bucket. The bucket must be created by the user. The bucket name must be without any prefix like "gs://".
|
453
456
|
:param 'SubscriptionCloudStorageConfigAvroConfigArgs' avro_config: If set, message data will be written to Cloud Storage in Avro format.
|
454
457
|
Structure is documented below.
|
458
|
+
:param str filename_datetime_format: User-provided format string specifying how to represent datetimes in Cloud Storage filenames.
|
455
459
|
:param str filename_prefix: User-provided prefix for Cloud Storage filename.
|
456
460
|
:param str filename_suffix: User-provided suffix for Cloud Storage filename. Must not end in "/".
|
457
461
|
:param int max_bytes: The maximum bytes that can be written to a Cloud Storage file before a new file is created. Min 1 KB, max 10 GiB.
|
@@ -465,6 +469,8 @@ class SubscriptionCloudStorageConfig(dict):
|
|
465
469
|
pulumi.set(__self__, "bucket", bucket)
|
466
470
|
if avro_config is not None:
|
467
471
|
pulumi.set(__self__, "avro_config", avro_config)
|
472
|
+
if filename_datetime_format is not None:
|
473
|
+
pulumi.set(__self__, "filename_datetime_format", filename_datetime_format)
|
468
474
|
if filename_prefix is not None:
|
469
475
|
pulumi.set(__self__, "filename_prefix", filename_prefix)
|
470
476
|
if filename_suffix is not None:
|
@@ -493,6 +499,14 @@ class SubscriptionCloudStorageConfig(dict):
|
|
493
499
|
"""
|
494
500
|
return pulumi.get(self, "avro_config")
|
495
501
|
|
502
|
+
@property
|
503
|
+
@pulumi.getter(name="filenameDatetimeFormat")
|
504
|
+
def filename_datetime_format(self) -> Optional[str]:
|
505
|
+
"""
|
506
|
+
User-provided format string specifying how to represent datetimes in Cloud Storage filenames.
|
507
|
+
"""
|
508
|
+
return pulumi.get(self, "filename_datetime_format")
|
509
|
+
|
496
510
|
@property
|
497
511
|
@pulumi.getter(name="filenamePrefix")
|
498
512
|
def filename_prefix(self) -> Optional[str]:
|
@@ -1353,6 +1367,7 @@ class GetSubscriptionCloudStorageConfigResult(dict):
|
|
1353
1367
|
def __init__(__self__, *,
|
1354
1368
|
avro_configs: Sequence['outputs.GetSubscriptionCloudStorageConfigAvroConfigResult'],
|
1355
1369
|
bucket: str,
|
1370
|
+
filename_datetime_format: str,
|
1356
1371
|
filename_prefix: str,
|
1357
1372
|
filename_suffix: str,
|
1358
1373
|
max_bytes: int,
|
@@ -1361,6 +1376,7 @@ class GetSubscriptionCloudStorageConfigResult(dict):
|
|
1361
1376
|
"""
|
1362
1377
|
:param Sequence['GetSubscriptionCloudStorageConfigAvroConfigArgs'] avro_configs: If set, message data will be written to Cloud Storage in Avro format.
|
1363
1378
|
:param str bucket: User-provided name for the Cloud Storage bucket. The bucket must be created by the user. The bucket name must be without any prefix like "gs://".
|
1379
|
+
:param str filename_datetime_format: User-provided format string specifying how to represent datetimes in Cloud Storage filenames.
|
1364
1380
|
:param str filename_prefix: User-provided prefix for Cloud Storage filename.
|
1365
1381
|
:param str filename_suffix: User-provided suffix for Cloud Storage filename. Must not end in "/".
|
1366
1382
|
:param int max_bytes: The maximum bytes that can be written to a Cloud Storage file before a new file is created. Min 1 KB, max 10 GiB.
|
@@ -1372,6 +1388,7 @@ class GetSubscriptionCloudStorageConfigResult(dict):
|
|
1372
1388
|
"""
|
1373
1389
|
pulumi.set(__self__, "avro_configs", avro_configs)
|
1374
1390
|
pulumi.set(__self__, "bucket", bucket)
|
1391
|
+
pulumi.set(__self__, "filename_datetime_format", filename_datetime_format)
|
1375
1392
|
pulumi.set(__self__, "filename_prefix", filename_prefix)
|
1376
1393
|
pulumi.set(__self__, "filename_suffix", filename_suffix)
|
1377
1394
|
pulumi.set(__self__, "max_bytes", max_bytes)
|
@@ -1394,6 +1411,14 @@ class GetSubscriptionCloudStorageConfigResult(dict):
|
|
1394
1411
|
"""
|
1395
1412
|
return pulumi.get(self, "bucket")
|
1396
1413
|
|
1414
|
+
@property
|
1415
|
+
@pulumi.getter(name="filenameDatetimeFormat")
|
1416
|
+
def filename_datetime_format(self) -> str:
|
1417
|
+
"""
|
1418
|
+
User-provided format string specifying how to represent datetimes in Cloud Storage filenames.
|
1419
|
+
"""
|
1420
|
+
return pulumi.get(self, "filename_datetime_format")
|
1421
|
+
|
1397
1422
|
@property
|
1398
1423
|
@pulumi.getter(name="filenamePrefix")
|
1399
1424
|
def filename_prefix(self) -> str:
|
@@ -1053,7 +1053,8 @@ class Subscription(pulumi.CustomResource):
|
|
1053
1053
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1054
1054
|
bucket=example.name,
|
1055
1055
|
filename_prefix="pre-",
|
1056
|
-
filename_suffix="-
|
1056
|
+
filename_suffix="-_40785",
|
1057
|
+
filename_datetime_format="YYYY-MM-DD/hh_mm_ssZ",
|
1057
1058
|
max_bytes=1000,
|
1058
1059
|
max_duration="300s",
|
1059
1060
|
),
|
@@ -1084,7 +1085,8 @@ class Subscription(pulumi.CustomResource):
|
|
1084
1085
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1085
1086
|
bucket=example.name,
|
1086
1087
|
filename_prefix="pre-",
|
1087
|
-
filename_suffix="-
|
1088
|
+
filename_suffix="-_79169",
|
1089
|
+
filename_datetime_format="YYYY-MM-DD/hh_mm_ssZ",
|
1088
1090
|
max_bytes=1000,
|
1089
1091
|
max_duration="300s",
|
1090
1092
|
avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
|
@@ -1396,7 +1398,8 @@ class Subscription(pulumi.CustomResource):
|
|
1396
1398
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1397
1399
|
bucket=example.name,
|
1398
1400
|
filename_prefix="pre-",
|
1399
|
-
filename_suffix="-
|
1401
|
+
filename_suffix="-_40785",
|
1402
|
+
filename_datetime_format="YYYY-MM-DD/hh_mm_ssZ",
|
1400
1403
|
max_bytes=1000,
|
1401
1404
|
max_duration="300s",
|
1402
1405
|
),
|
@@ -1427,7 +1430,8 @@ class Subscription(pulumi.CustomResource):
|
|
1427
1430
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1428
1431
|
bucket=example.name,
|
1429
1432
|
filename_prefix="pre-",
|
1430
|
-
filename_suffix="-
|
1433
|
+
filename_suffix="-_79169",
|
1434
|
+
filename_datetime_format="YYYY-MM-DD/hh_mm_ssZ",
|
1431
1435
|
max_bytes=1000,
|
1432
1436
|
max_duration="300s",
|
1433
1437
|
avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
|
pulumi_gcp/pulumi-plugin.json
CHANGED
pulumi_gcp/sql/user.py
CHANGED
@@ -407,7 +407,7 @@ class User(pulumi.CustomResource):
|
|
407
407
|
settings=gcp.sql.DatabaseInstanceSettingsArgs(
|
408
408
|
tier="db-f1-micro",
|
409
409
|
database_flags=[gcp.sql.DatabaseInstanceSettingsDatabaseFlagArgs(
|
410
|
-
name="
|
410
|
+
name="cloudsql_iam_authentication",
|
411
411
|
value="on",
|
412
412
|
)],
|
413
413
|
))
|
@@ -436,7 +436,7 @@ class User(pulumi.CustomResource):
|
|
436
436
|
settings=gcp.sql.DatabaseInstanceSettingsArgs(
|
437
437
|
tier="db-f1-micro",
|
438
438
|
database_flags=[gcp.sql.DatabaseInstanceSettingsDatabaseFlagArgs(
|
439
|
-
name="
|
439
|
+
name="cloudsql_iam_authentication",
|
440
440
|
value="on",
|
441
441
|
)],
|
442
442
|
))
|
@@ -543,7 +543,7 @@ class User(pulumi.CustomResource):
|
|
543
543
|
settings=gcp.sql.DatabaseInstanceSettingsArgs(
|
544
544
|
tier="db-f1-micro",
|
545
545
|
database_flags=[gcp.sql.DatabaseInstanceSettingsDatabaseFlagArgs(
|
546
|
-
name="
|
546
|
+
name="cloudsql_iam_authentication",
|
547
547
|
value="on",
|
548
548
|
)],
|
549
549
|
))
|
@@ -572,7 +572,7 @@ class User(pulumi.CustomResource):
|
|
572
572
|
settings=gcp.sql.DatabaseInstanceSettingsArgs(
|
573
573
|
tier="db-f1-micro",
|
574
574
|
database_flags=[gcp.sql.DatabaseInstanceSettingsDatabaseFlagArgs(
|
575
|
-
name="
|
575
|
+
name="cloudsql_iam_authentication",
|
576
576
|
value="on",
|
577
577
|
)],
|
578
578
|
))
|