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
@@ -73,9 +73,6 @@ __all__ = [
|
|
73
73
|
'HttpRouteRuleMatchHeader',
|
74
74
|
'HttpRouteRuleMatchHeaderRangeMatch',
|
75
75
|
'HttpRouteRuleMatchQueryParameter',
|
76
|
-
'LbRouteExtensionExtensionChain',
|
77
|
-
'LbRouteExtensionExtensionChainExtension',
|
78
|
-
'LbRouteExtensionExtensionChainMatchCondition',
|
79
76
|
'LbTrafficExtensionExtensionChain',
|
80
77
|
'LbTrafficExtensionExtensionChainExtension',
|
81
78
|
'LbTrafficExtensionExtensionChainMatchCondition',
|
@@ -4503,232 +4500,6 @@ class HttpRouteRuleMatchQueryParameter(dict):
|
|
4503
4500
|
return pulumi.get(self, "regex_match")
|
4504
4501
|
|
4505
4502
|
|
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
|
-
|
4732
4503
|
@pulumi.output_type
|
4733
4504
|
class LbTrafficExtensionExtensionChain(dict):
|
4734
4505
|
@staticmethod
|
@@ -4824,20 +4595,22 @@ class LbTrafficExtensionExtensionChainExtension(dict):
|
|
4824
4595
|
return super().get(key, default)
|
4825
4596
|
|
4826
4597
|
def __init__(__self__, *,
|
4598
|
+
authority: str,
|
4827
4599
|
name: str,
|
4828
4600
|
service: str,
|
4829
|
-
|
4601
|
+
timeout: str,
|
4830
4602
|
fail_open: Optional[bool] = None,
|
4831
4603
|
forward_headers: Optional[Sequence[str]] = None,
|
4832
|
-
supported_events: Optional[Sequence[str]] = None
|
4833
|
-
timeout: Optional[str] = None):
|
4604
|
+
supported_events: Optional[Sequence[str]] = None):
|
4834
4605
|
"""
|
4606
|
+
:param str authority: The :authority header in the gRPC request sent from Envoy to the extension service.
|
4835
4607
|
:param str name: The name for this extension. The name is logged as part of the HTTP request logs.
|
4836
4608
|
The name must conform with RFC-1034, is restricted to lower-cased letters, numbers and hyphens,
|
4837
4609
|
and can have a maximum length of 63 characters. Additionally, the first character must be a letter
|
4838
4610
|
and the last a letter or a number.
|
4839
4611
|
:param str service: The reference to the service that runs the extension. Must be a reference to a backend service
|
4840
|
-
:param str
|
4612
|
+
:param str timeout: Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4613
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4841
4614
|
:param bool fail_open: Determines how the proxy behaves if the call to the extension fails or times out.
|
4842
4615
|
When set to TRUE, request or response processing continues without error.
|
4843
4616
|
Any subsequent extensions in the extension chain are also executed.
|
@@ -4852,21 +4625,25 @@ class LbTrafficExtensionExtensionChainExtension(dict):
|
|
4852
4625
|
`RESPONSE_BODY`, `RESPONSE_BODY` and `RESPONSE_BODY`.
|
4853
4626
|
|
4854
4627
|
- - -
|
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".
|
4857
4628
|
"""
|
4629
|
+
pulumi.set(__self__, "authority", authority)
|
4858
4630
|
pulumi.set(__self__, "name", name)
|
4859
4631
|
pulumi.set(__self__, "service", service)
|
4860
|
-
|
4861
|
-
pulumi.set(__self__, "authority", authority)
|
4632
|
+
pulumi.set(__self__, "timeout", timeout)
|
4862
4633
|
if fail_open is not None:
|
4863
4634
|
pulumi.set(__self__, "fail_open", fail_open)
|
4864
4635
|
if forward_headers is not None:
|
4865
4636
|
pulumi.set(__self__, "forward_headers", forward_headers)
|
4866
4637
|
if supported_events is not None:
|
4867
4638
|
pulumi.set(__self__, "supported_events", supported_events)
|
4868
|
-
|
4869
|
-
|
4639
|
+
|
4640
|
+
@property
|
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")
|
4870
4647
|
|
4871
4648
|
@property
|
4872
4649
|
@pulumi.getter
|
@@ -4889,11 +4666,12 @@ class LbTrafficExtensionExtensionChainExtension(dict):
|
|
4889
4666
|
|
4890
4667
|
@property
|
4891
4668
|
@pulumi.getter
|
4892
|
-
def
|
4669
|
+
def timeout(self) -> str:
|
4893
4670
|
"""
|
4894
|
-
|
4671
|
+
Specifies the timeout for each individual message on the stream. The timeout must be between 10-1000 milliseconds.
|
4672
|
+
A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".
|
4895
4673
|
"""
|
4896
|
-
return pulumi.get(self, "
|
4674
|
+
return pulumi.get(self, "timeout")
|
4897
4675
|
|
4898
4676
|
@property
|
4899
4677
|
@pulumi.getter(name="failOpen")
|
@@ -4930,15 +4708,6 @@ class LbTrafficExtensionExtensionChainExtension(dict):
|
|
4930
4708
|
"""
|
4931
4709
|
return pulumi.get(self, "supported_events")
|
4932
4710
|
|
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
|
-
|
4942
4711
|
|
4943
4712
|
@pulumi.output_type
|
4944
4713
|
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_87786",
|
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_87786",
|
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,7 +387,6 @@ 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,
|
391
390
|
filename_prefix: Optional[pulumi.Input[str]] = None,
|
392
391
|
filename_suffix: Optional[pulumi.Input[str]] = None,
|
393
392
|
max_bytes: Optional[pulumi.Input[int]] = None,
|
@@ -397,7 +396,6 @@ class SubscriptionCloudStorageConfigArgs:
|
|
397
396
|
: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://".
|
398
397
|
:param pulumi.Input['SubscriptionCloudStorageConfigAvroConfigArgs'] avro_config: If set, message data will be written to Cloud Storage in Avro format.
|
399
398
|
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.
|
401
399
|
:param pulumi.Input[str] filename_prefix: User-provided prefix for Cloud Storage filename.
|
402
400
|
:param pulumi.Input[str] filename_suffix: User-provided suffix for Cloud Storage filename. Must not end in "/".
|
403
401
|
: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.
|
@@ -411,8 +409,6 @@ class SubscriptionCloudStorageConfigArgs:
|
|
411
409
|
pulumi.set(__self__, "bucket", bucket)
|
412
410
|
if avro_config is not None:
|
413
411
|
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)
|
416
412
|
if filename_prefix is not None:
|
417
413
|
pulumi.set(__self__, "filename_prefix", filename_prefix)
|
418
414
|
if filename_suffix is not None:
|
@@ -449,18 +445,6 @@ class SubscriptionCloudStorageConfigArgs:
|
|
449
445
|
def avro_config(self, value: Optional[pulumi.Input['SubscriptionCloudStorageConfigAvroConfigArgs']]):
|
450
446
|
pulumi.set(self, "avro_config", value)
|
451
447
|
|
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
|
-
|
464
448
|
@property
|
465
449
|
@pulumi.getter(name="filenamePrefix")
|
466
450
|
def filename_prefix(self) -> Optional[pulumi.Input[str]]:
|
pulumi_gcp/pubsub/outputs.py
CHANGED
@@ -420,8 +420,6 @@ 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"
|
425
423
|
elif key == "filenamePrefix":
|
426
424
|
suggest = "filename_prefix"
|
427
425
|
elif key == "filenameSuffix":
|
@@ -445,7 +443,6 @@ class SubscriptionCloudStorageConfig(dict):
|
|
445
443
|
def __init__(__self__, *,
|
446
444
|
bucket: str,
|
447
445
|
avro_config: Optional['outputs.SubscriptionCloudStorageConfigAvroConfig'] = None,
|
448
|
-
filename_datetime_format: Optional[str] = None,
|
449
446
|
filename_prefix: Optional[str] = None,
|
450
447
|
filename_suffix: Optional[str] = None,
|
451
448
|
max_bytes: Optional[int] = None,
|
@@ -455,7 +452,6 @@ class SubscriptionCloudStorageConfig(dict):
|
|
455
452
|
: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://".
|
456
453
|
:param 'SubscriptionCloudStorageConfigAvroConfigArgs' avro_config: If set, message data will be written to Cloud Storage in Avro format.
|
457
454
|
Structure is documented below.
|
458
|
-
:param str filename_datetime_format: User-provided format string specifying how to represent datetimes in Cloud Storage filenames.
|
459
455
|
:param str filename_prefix: User-provided prefix for Cloud Storage filename.
|
460
456
|
:param str filename_suffix: User-provided suffix for Cloud Storage filename. Must not end in "/".
|
461
457
|
: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.
|
@@ -469,8 +465,6 @@ class SubscriptionCloudStorageConfig(dict):
|
|
469
465
|
pulumi.set(__self__, "bucket", bucket)
|
470
466
|
if avro_config is not None:
|
471
467
|
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)
|
474
468
|
if filename_prefix is not None:
|
475
469
|
pulumi.set(__self__, "filename_prefix", filename_prefix)
|
476
470
|
if filename_suffix is not None:
|
@@ -499,14 +493,6 @@ class SubscriptionCloudStorageConfig(dict):
|
|
499
493
|
"""
|
500
494
|
return pulumi.get(self, "avro_config")
|
501
495
|
|
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
|
-
|
510
496
|
@property
|
511
497
|
@pulumi.getter(name="filenamePrefix")
|
512
498
|
def filename_prefix(self) -> Optional[str]:
|
@@ -1367,7 +1353,6 @@ class GetSubscriptionCloudStorageConfigResult(dict):
|
|
1367
1353
|
def __init__(__self__, *,
|
1368
1354
|
avro_configs: Sequence['outputs.GetSubscriptionCloudStorageConfigAvroConfigResult'],
|
1369
1355
|
bucket: str,
|
1370
|
-
filename_datetime_format: str,
|
1371
1356
|
filename_prefix: str,
|
1372
1357
|
filename_suffix: str,
|
1373
1358
|
max_bytes: int,
|
@@ -1376,7 +1361,6 @@ class GetSubscriptionCloudStorageConfigResult(dict):
|
|
1376
1361
|
"""
|
1377
1362
|
:param Sequence['GetSubscriptionCloudStorageConfigAvroConfigArgs'] avro_configs: If set, message data will be written to Cloud Storage in Avro format.
|
1378
1363
|
: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.
|
1380
1364
|
:param str filename_prefix: User-provided prefix for Cloud Storage filename.
|
1381
1365
|
:param str filename_suffix: User-provided suffix for Cloud Storage filename. Must not end in "/".
|
1382
1366
|
: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.
|
@@ -1388,7 +1372,6 @@ class GetSubscriptionCloudStorageConfigResult(dict):
|
|
1388
1372
|
"""
|
1389
1373
|
pulumi.set(__self__, "avro_configs", avro_configs)
|
1390
1374
|
pulumi.set(__self__, "bucket", bucket)
|
1391
|
-
pulumi.set(__self__, "filename_datetime_format", filename_datetime_format)
|
1392
1375
|
pulumi.set(__self__, "filename_prefix", filename_prefix)
|
1393
1376
|
pulumi.set(__self__, "filename_suffix", filename_suffix)
|
1394
1377
|
pulumi.set(__self__, "max_bytes", max_bytes)
|
@@ -1411,14 +1394,6 @@ class GetSubscriptionCloudStorageConfigResult(dict):
|
|
1411
1394
|
"""
|
1412
1395
|
return pulumi.get(self, "bucket")
|
1413
1396
|
|
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
|
-
|
1422
1397
|
@property
|
1423
1398
|
@pulumi.getter(name="filenamePrefix")
|
1424
1399
|
def filename_prefix(self) -> str:
|
@@ -1053,8 +1053,7 @@ 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="-
|
1057
|
-
filename_datetime_format="YYYY-MM-DD/hh_mm_ssZ",
|
1056
|
+
filename_suffix="-_2067",
|
1058
1057
|
max_bytes=1000,
|
1059
1058
|
max_duration="300s",
|
1060
1059
|
),
|
@@ -1085,8 +1084,7 @@ class Subscription(pulumi.CustomResource):
|
|
1085
1084
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1086
1085
|
bucket=example.name,
|
1087
1086
|
filename_prefix="pre-",
|
1088
|
-
filename_suffix="-
|
1089
|
-
filename_datetime_format="YYYY-MM-DD/hh_mm_ssZ",
|
1087
|
+
filename_suffix="-_40785",
|
1090
1088
|
max_bytes=1000,
|
1091
1089
|
max_duration="300s",
|
1092
1090
|
avro_config=gcp.pubsub.SubscriptionCloudStorageConfigAvroConfigArgs(
|
@@ -1398,8 +1396,7 @@ class Subscription(pulumi.CustomResource):
|
|
1398
1396
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1399
1397
|
bucket=example.name,
|
1400
1398
|
filename_prefix="pre-",
|
1401
|
-
filename_suffix="-
|
1402
|
-
filename_datetime_format="YYYY-MM-DD/hh_mm_ssZ",
|
1399
|
+
filename_suffix="-_2067",
|
1403
1400
|
max_bytes=1000,
|
1404
1401
|
max_duration="300s",
|
1405
1402
|
),
|
@@ -1430,8 +1427,7 @@ class Subscription(pulumi.CustomResource):
|
|
1430
1427
|
cloud_storage_config=gcp.pubsub.SubscriptionCloudStorageConfigArgs(
|
1431
1428
|
bucket=example.name,
|
1432
1429
|
filename_prefix="pre-",
|
1433
|
-
filename_suffix="-
|
1434
|
-
filename_datetime_format="YYYY-MM-DD/hh_mm_ssZ",
|
1430
|
+
filename_suffix="-_40785",
|
1435
1431
|
max_bytes=1000,
|
1436
1432
|
max_duration="300s",
|
1437
1433
|
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
|
))
|
pulumi_gcp/tpu/_inputs.py
CHANGED
@@ -96,7 +96,7 @@ class V2VmAcceleratorConfigArgs:
|
|
96
96
|
"""
|
97
97
|
:param pulumi.Input[str] topology: Topology of TPU in chips.
|
98
98
|
:param pulumi.Input[str] type: Type of TPU.
|
99
|
-
Possible values are: `V2`, `V3`, `V4
|
99
|
+
Possible values are: `V2`, `V3`, `V4`.
|
100
100
|
"""
|
101
101
|
pulumi.set(__self__, "topology", topology)
|
102
102
|
pulumi.set(__self__, "type", type)
|
@@ -118,7 +118,7 @@ class V2VmAcceleratorConfigArgs:
|
|
118
118
|
def type(self) -> pulumi.Input[str]:
|
119
119
|
"""
|
120
120
|
Type of TPU.
|
121
|
-
Possible values are: `V2`, `V3`, `V4
|
121
|
+
Possible values are: `V2`, `V3`, `V4`.
|
122
122
|
"""
|
123
123
|
return pulumi.get(self, "type")
|
124
124
|
|
pulumi_gcp/tpu/outputs.py
CHANGED
@@ -102,7 +102,7 @@ class V2VmAcceleratorConfig(dict):
|
|
102
102
|
"""
|
103
103
|
:param str topology: Topology of TPU in chips.
|
104
104
|
:param str type: Type of TPU.
|
105
|
-
Possible values are: `V2`, `V3`, `V4
|
105
|
+
Possible values are: `V2`, `V3`, `V4`.
|
106
106
|
"""
|
107
107
|
pulumi.set(__self__, "topology", topology)
|
108
108
|
pulumi.set(__self__, "type", type)
|
@@ -120,7 +120,7 @@ class V2VmAcceleratorConfig(dict):
|
|
120
120
|
def type(self) -> str:
|
121
121
|
"""
|
122
122
|
Type of TPU.
|
123
|
-
Possible values are: `V2`, `V3`, `V4
|
123
|
+
Possible values are: `V2`, `V3`, `V4`.
|
124
124
|
"""
|
125
125
|
return pulumi.get(self, "type")
|
126
126
|
|