pulumi-alicloud 3.79.0a1747891356__py3-none-any.whl → 3.79.0a1748578459__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.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +40 -0
- pulumi_alicloud/alb/_inputs.py +21 -105
- pulumi_alicloud/alb/get_load_balancers.py +169 -18
- pulumi_alicloud/alb/listener.py +28 -56
- pulumi_alicloud/alb/outputs.py +150 -105
- pulumi_alicloud/cs/_inputs.py +54 -0
- pulumi_alicloud/cs/get_kubernetes_version.py +4 -4
- pulumi_alicloud/cs/managed_kubernetes.py +129 -7
- pulumi_alicloud/cs/outputs.py +49 -0
- pulumi_alicloud/ecs/__init__.py +1 -0
- pulumi_alicloud/ecs/_inputs.py +40 -0
- pulumi_alicloud/ecs/get_dedicated_hosts.py +49 -22
- pulumi_alicloud/ecs/get_instances.py +4 -3
- pulumi_alicloud/ecs/instance.py +94 -0
- pulumi_alicloud/ecs/outputs.py +129 -39
- pulumi_alicloud/ecs/ram_role_attachment.py +406 -0
- pulumi_alicloud/eflo/__init__.py +1 -0
- pulumi_alicloud/eflo/vsc.py +433 -0
- pulumi_alicloud/elasticsearch/instance.py +7 -7
- pulumi_alicloud/ess/outputs.py +226 -4
- pulumi_alicloud/expressconnect/router_vpc_association.py +56 -49
- pulumi_alicloud/fc/__init__.py +1 -0
- pulumi_alicloud/fc/get_v3_triggers.py +277 -0
- pulumi_alicloud/fc/outputs.py +192 -0
- pulumi_alicloud/lindorm/__init__.py +1 -0
- pulumi_alicloud/lindorm/public_network.py +288 -0
- pulumi_alicloud/maxcompute/project.py +2 -4
- pulumi_alicloud/oos/get_parameters.py +72 -28
- pulumi_alicloud/oos/outputs.py +10 -10
- pulumi_alicloud/pai/__init__.py +1 -0
- pulumi_alicloud/pai/workspace_user_config.py +356 -0
- pulumi_alicloud/polardb/cluster.py +155 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/pvtz/get_zone_records.py +66 -35
- pulumi_alicloud/pvtz/get_zones.py +49 -32
- pulumi_alicloud/pvtz/outputs.py +60 -56
- pulumi_alicloud/ram/policy.py +21 -35
- pulumi_alicloud/ram/role_attachment.py +6 -2
- pulumi_alicloud/rds/__init__.py +1 -0
- pulumi_alicloud/rds/db_proxy_public.py +512 -0
- pulumi_alicloud/rds/instance.py +35 -35
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/get_alerts.py +463 -0
- pulumi_alicloud/sls/outputs.py +975 -0
- {pulumi_alicloud-3.79.0a1747891356.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.79.0a1747891356.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/RECORD +48 -41
- {pulumi_alicloud-3.79.0a1747891356.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/WHEEL +1 -1
- {pulumi_alicloud-3.79.0a1747891356.dist-info → pulumi_alicloud-3.79.0a1748578459.dist-info}/top_level.txt +0 -0
pulumi_alicloud/alb/outputs.py
CHANGED
|
@@ -248,17 +248,13 @@ class ListenerAccessLogTracingConfig(dict):
|
|
|
248
248
|
tracing_sample: Optional[builtins.int] = None,
|
|
249
249
|
tracing_type: Optional[builtins.str] = None):
|
|
250
250
|
"""
|
|
251
|
-
:param builtins.bool tracing_enabled: Xtrace Function.
|
|
251
|
+
:param builtins.bool tracing_enabled: Xtrace Function. Valid values: `true`, `false`. Default Value: `false`.
|
|
252
252
|
|
|
253
|
-
|
|
253
|
+
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the value `true`.
|
|
254
|
+
:param builtins.int tracing_sample: Xtrace Sampling Rate. Value: 1~10000. `tracingenabled` valued True When Effective.
|
|
255
|
+
:param builtins.str tracing_type: Xtrace Type Value Is `Zipkin`.
|
|
254
256
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
|
|
258
|
-
:param builtins.int tracing_sample: Xtrace Sampling Rate. Value: 1~10000 **.> `tracingenabled` **True When Effective.
|
|
259
|
-
:param builtins.str tracing_type: Xtrace Type Value Is **Zipkin * *.
|
|
260
|
-
|
|
261
|
-
> **NOTE:** `tracingenabled` **True When Effective.
|
|
257
|
+
> **NOTE:** `tracingenabled` valued True When Effective.
|
|
262
258
|
"""
|
|
263
259
|
pulumi.set(__self__, "tracing_enabled", tracing_enabled)
|
|
264
260
|
if tracing_sample is not None:
|
|
@@ -270,13 +266,9 @@ class ListenerAccessLogTracingConfig(dict):
|
|
|
270
266
|
@pulumi.getter(name="tracingEnabled")
|
|
271
267
|
def tracing_enabled(self) -> builtins.bool:
|
|
272
268
|
"""
|
|
273
|
-
Xtrace Function.
|
|
274
|
-
|
|
275
|
-
Value: True **** Or False * *.
|
|
269
|
+
Xtrace Function. Valid values: `true`, `false`. Default Value: `false`.
|
|
276
270
|
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the **True * *.
|
|
271
|
+
> **NOTE:** Only Instances outside the Security Group to Access the Log Switch `accesslogenabled` Open, in Order to Set This Parameter to the value `true`.
|
|
280
272
|
"""
|
|
281
273
|
return pulumi.get(self, "tracing_enabled")
|
|
282
274
|
|
|
@@ -284,7 +276,7 @@ class ListenerAccessLogTracingConfig(dict):
|
|
|
284
276
|
@pulumi.getter(name="tracingSample")
|
|
285
277
|
def tracing_sample(self) -> Optional[builtins.int]:
|
|
286
278
|
"""
|
|
287
|
-
Xtrace Sampling Rate. Value: 1~10000
|
|
279
|
+
Xtrace Sampling Rate. Value: 1~10000. `tracingenabled` valued True When Effective.
|
|
288
280
|
"""
|
|
289
281
|
return pulumi.get(self, "tracing_sample")
|
|
290
282
|
|
|
@@ -292,9 +284,9 @@ class ListenerAccessLogTracingConfig(dict):
|
|
|
292
284
|
@pulumi.getter(name="tracingType")
|
|
293
285
|
def tracing_type(self) -> Optional[builtins.str]:
|
|
294
286
|
"""
|
|
295
|
-
Xtrace Type Value Is
|
|
287
|
+
Xtrace Type Value Is `Zipkin`.
|
|
296
288
|
|
|
297
|
-
> **NOTE:** `tracingenabled`
|
|
289
|
+
> **NOTE:** `tracingenabled` valued True When Effective.
|
|
298
290
|
"""
|
|
299
291
|
return pulumi.get(self, "tracing_type")
|
|
300
292
|
|
|
@@ -492,7 +484,7 @@ class ListenerDefaultAction(dict):
|
|
|
492
484
|
type: builtins.str,
|
|
493
485
|
forward_group_config: Optional['outputs.ListenerDefaultActionForwardGroupConfig'] = None):
|
|
494
486
|
"""
|
|
495
|
-
:param builtins.str type:
|
|
487
|
+
:param builtins.str type: The action type. Value: ForwardGroup, indicating forwarding to the server group.
|
|
496
488
|
:param 'ListenerDefaultActionForwardGroupConfigArgs' forward_group_config: Forwarding Action Configurations See `forward_group_config` below.
|
|
497
489
|
"""
|
|
498
490
|
pulumi.set(__self__, "type", type)
|
|
@@ -503,7 +495,7 @@ class ListenerDefaultAction(dict):
|
|
|
503
495
|
@pulumi.getter
|
|
504
496
|
def type(self) -> builtins.str:
|
|
505
497
|
"""
|
|
506
|
-
|
|
498
|
+
The action type. Value: ForwardGroup, indicating forwarding to the server group.
|
|
507
499
|
"""
|
|
508
500
|
return pulumi.get(self, "type")
|
|
509
501
|
|
|
@@ -715,35 +707,11 @@ class ListenerXForwardedForConfig(dict):
|
|
|
715
707
|
:param builtins.str x_forwarded_for_client_cert_subject_dn_alias: The Custom Header Field Name,
|
|
716
708
|
:param builtins.bool x_forwarded_for_client_cert_subject_dn_enabled: Indicates Whether the X-Forwarded-Clientcert-subjectdn Header Field Is Used to Obtain Access to the Server Load Balancer Instance of the Client Certificate Owner Information.
|
|
717
709
|
:param builtins.bool x_forwarded_for_client_source_ips_enabled: Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
|
|
718
|
-
|
|
719
|
-
true: Yes.
|
|
720
|
-
|
|
721
|
-
false (default): No.
|
|
722
|
-
|
|
723
|
-
Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
|
|
724
|
-
:param builtins.str x_forwarded_for_client_source_ips_trusted: Specify the trusted proxy IP.
|
|
725
|
-
|
|
726
|
-
Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
|
|
710
|
+
:param builtins.str x_forwarded_for_client_source_ips_trusted: Specify the trusted proxy IP. Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
|
|
727
711
|
:param builtins.bool x_forwarded_for_client_src_port_enabled: Indicates Whether the X-Forwarded-Client-Port Header Field Is Used to Obtain Access to Server Load Balancer Instances to the Client, and Those of the Ports.
|
|
728
712
|
:param builtins.bool x_forwarded_for_enabled: Whether to Enable by X-Forwarded-For Header Field Is Used to Obtain the Client IP Addresses.
|
|
729
713
|
:param builtins.bool x_forwarded_for_host_enabled: Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
|
|
730
|
-
|
|
731
|
-
true: Yes.
|
|
732
|
-
|
|
733
|
-
false (default): No.
|
|
734
|
-
|
|
735
|
-
HTTP, HTTPS, and QUIC listeners support this parameter.
|
|
736
714
|
:param builtins.str x_forwarded_for_processing_mode: Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
|
|
737
|
-
|
|
738
|
-
append (default): append.
|
|
739
|
-
|
|
740
|
-
remove: Delete.
|
|
741
|
-
|
|
742
|
-
Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
|
|
743
|
-
|
|
744
|
-
Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
|
|
745
|
-
|
|
746
|
-
HTTP and HTTPS listeners support this parameter.
|
|
747
715
|
:param builtins.bool x_forwarded_for_proto_enabled: Indicates Whether the X-Forwarded-Proto Header Field Is Used to Obtain the Server Load Balancer Instance Snooping Protocols.
|
|
748
716
|
:param builtins.bool x_forwarded_for_slb_id_enabled: Indicates Whether the SLB-ID Header Field Is Used to Obtain the Load Balancing Instance Id
|
|
749
717
|
:param builtins.bool x_forwarded_for_slb_port_enabled: Indicates Whether the X-Forwarded-Port Header Field Is Used to Obtain the Server Load Balancer Instance Listening Port
|
|
@@ -852,12 +820,6 @@ class ListenerXForwardedForConfig(dict):
|
|
|
852
820
|
def x_forwarded_for_client_source_ips_enabled(self) -> Optional[builtins.bool]:
|
|
853
821
|
"""
|
|
854
822
|
Whether to use the X-Forwarded-Client-Ip header to obtain the source IP address of the server load balancer instance. Value:
|
|
855
|
-
|
|
856
|
-
true: Yes.
|
|
857
|
-
|
|
858
|
-
false (default): No.
|
|
859
|
-
|
|
860
|
-
Note HTTP, HTTPS, and QUIC listeners support this parameter. The function corresponding to this parameter is not open by default. Please contact the account manager if you need to use it.
|
|
861
823
|
"""
|
|
862
824
|
return pulumi.get(self, "x_forwarded_for_client_source_ips_enabled")
|
|
863
825
|
|
|
@@ -865,9 +827,7 @@ class ListenerXForwardedForConfig(dict):
|
|
|
865
827
|
@pulumi.getter(name="xForwardedForClientSourceIpsTrusted")
|
|
866
828
|
def x_forwarded_for_client_source_ips_trusted(self) -> Optional[builtins.str]:
|
|
867
829
|
"""
|
|
868
|
-
Specify the trusted proxy IP.
|
|
869
|
-
|
|
870
|
-
Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
|
|
830
|
+
Specify the trusted proxy IP. Application-oriented load balancing ALB will traverse the X-Forwarded-For from back to front, and select the first IP that is not in the trusted IP list as the real client IP, which will be used for the source IP speed limit.
|
|
871
831
|
"""
|
|
872
832
|
return pulumi.get(self, "x_forwarded_for_client_source_ips_trusted")
|
|
873
833
|
|
|
@@ -892,12 +852,6 @@ class ListenerXForwardedForConfig(dict):
|
|
|
892
852
|
def x_forwarded_for_host_enabled(self) -> Optional[builtins.bool]:
|
|
893
853
|
"""
|
|
894
854
|
Whether to enable the X-Forwarded-Host header field to obtain the domain name of the client accessing the Application Load Balancer. Value:
|
|
895
|
-
|
|
896
|
-
true: Yes.
|
|
897
|
-
|
|
898
|
-
false (default): No.
|
|
899
|
-
|
|
900
|
-
HTTP, HTTPS, and QUIC listeners support this parameter.
|
|
901
855
|
"""
|
|
902
856
|
return pulumi.get(self, "x_forwarded_for_host_enabled")
|
|
903
857
|
|
|
@@ -906,16 +860,6 @@ class ListenerXForwardedForConfig(dict):
|
|
|
906
860
|
def x_forwarded_for_processing_mode(self) -> Optional[builtins.str]:
|
|
907
861
|
"""
|
|
908
862
|
Schema for processing X-Forwarded-For header fields. This value takes effect only when XForwardedForEnabled is true. Value:
|
|
909
|
-
|
|
910
|
-
append (default): append.
|
|
911
|
-
|
|
912
|
-
remove: Delete.
|
|
913
|
-
|
|
914
|
-
Configure append to add the last hop IP address to the X-Forwarded-For header field before sending the request to the backend service.
|
|
915
|
-
|
|
916
|
-
Configure remove to delete the X-Forwarded-For header before the request is sent to the backend service, regardless of whether the request carries X-Forwarded-For header fields.
|
|
917
|
-
|
|
918
|
-
HTTP and HTTPS listeners support this parameter.
|
|
919
863
|
"""
|
|
920
864
|
return pulumi.get(self, "x_forwarded_for_processing_mode")
|
|
921
865
|
|
|
@@ -4462,10 +4406,8 @@ class GetLoadBalancersBalancerResult(dict):
|
|
|
4462
4406
|
zone_mappings: Sequence['outputs.GetLoadBalancersBalancerZoneMappingResult']):
|
|
4463
4407
|
"""
|
|
4464
4408
|
:param Sequence['GetLoadBalancersBalancerAccessLogConfigArgs'] access_log_configs: The Access Logging Configuration Structure.
|
|
4465
|
-
:param builtins.str address_allocated_mode: The method in which IP addresses are assigned.
|
|
4466
|
-
|
|
4467
|
-
instance.
|
|
4468
|
-
:param builtins.str address_type: The type of IP address that the ALB instance uses to provide services.
|
|
4409
|
+
:param builtins.str address_allocated_mode: The method in which IP addresses are assigned.
|
|
4410
|
+
:param builtins.str address_type: The type of IP address that the ALB instance uses to provide services. Valid values: `Intranet`, `Internet`.
|
|
4469
4411
|
:param builtins.str bandwidth_package_id: The ID of the EIP bandwidth plan which is associated with an ALB instance that uses a
|
|
4470
4412
|
public IP address.
|
|
4471
4413
|
:param builtins.str create_time: The creation time of the resource.
|
|
@@ -4473,18 +4415,18 @@ class GetLoadBalancersBalancerResult(dict):
|
|
|
4473
4415
|
:param builtins.str dns_name: DNS Domain Name.
|
|
4474
4416
|
:param builtins.str id: The ID of the Load Balancer.
|
|
4475
4417
|
:param Sequence['GetLoadBalancersBalancerLoadBalancerBillingConfigArgs'] load_balancer_billing_configs: The configuration of the billing method.
|
|
4476
|
-
:param builtins.str load_balancer_business_status: Load Balancing of the Service Status. Valid Values: `Abnormal`
|
|
4477
|
-
:param builtins.str load_balancer_bussiness_status:
|
|
4418
|
+
:param builtins.str load_balancer_business_status: Load Balancing of the Service Status. Valid Values: `Abnormal`and `Normal`.
|
|
4419
|
+
:param builtins.str load_balancer_bussiness_status: Field `load_balancer_bussiness_status` has been deprecated from provider version 1.142.0. New field `load_balancer_business_status` instead.
|
|
4478
4420
|
:param builtins.str load_balancer_edition: The edition of the ALB instance.
|
|
4479
4421
|
:param builtins.str load_balancer_id: The first ID of the resource.
|
|
4480
4422
|
:param builtins.str load_balancer_name: The name of the resource.
|
|
4481
4423
|
:param Sequence['GetLoadBalancersBalancerLoadBalancerOperationLockArgs'] load_balancer_operation_locks: The Load Balancing Operations Lock Configuration.
|
|
4482
4424
|
:param Sequence['GetLoadBalancersBalancerModificationProtectionConfigArgs'] modification_protection_configs: Modify the Protection Configuration.
|
|
4483
4425
|
:param builtins.str resource_group_id: The ID of the resource group.
|
|
4484
|
-
:param builtins.str status: The
|
|
4485
|
-
:param Mapping[str, builtins.str] tags:
|
|
4426
|
+
:param builtins.str status: The load balancer status. Valid values: `Active`, `Configuring`, `CreateFailed`, `Inactive` and `Provisioning`.
|
|
4427
|
+
:param Mapping[str, builtins.str] tags: A mapping of tags to assign to the resource.
|
|
4486
4428
|
:param builtins.str vpc_id: The ID of the virtual private cloud (VPC) where the ALB instance is deployed.
|
|
4487
|
-
:param Sequence['GetLoadBalancersBalancerZoneMappingArgs'] zone_mappings: The zones and vSwitches.
|
|
4429
|
+
:param Sequence['GetLoadBalancersBalancerZoneMappingArgs'] zone_mappings: The zones and vSwitches.
|
|
4488
4430
|
"""
|
|
4489
4431
|
pulumi.set(__self__, "access_log_configs", access_log_configs)
|
|
4490
4432
|
pulumi.set(__self__, "address_allocated_mode", address_allocated_mode)
|
|
@@ -4520,9 +4462,7 @@ class GetLoadBalancersBalancerResult(dict):
|
|
|
4520
4462
|
@pulumi.getter(name="addressAllocatedMode")
|
|
4521
4463
|
def address_allocated_mode(self) -> builtins.str:
|
|
4522
4464
|
"""
|
|
4523
|
-
The method in which IP addresses are assigned.
|
|
4524
|
-
uses a fixed IP address. Dynamic (default): An IP address is dynamically assigned to each zone of the ALB
|
|
4525
|
-
instance.
|
|
4465
|
+
The method in which IP addresses are assigned.
|
|
4526
4466
|
"""
|
|
4527
4467
|
return pulumi.get(self, "address_allocated_mode")
|
|
4528
4468
|
|
|
@@ -4530,7 +4470,7 @@ class GetLoadBalancersBalancerResult(dict):
|
|
|
4530
4470
|
@pulumi.getter(name="addressType")
|
|
4531
4471
|
def address_type(self) -> builtins.str:
|
|
4532
4472
|
"""
|
|
4533
|
-
The type of IP address that the ALB instance uses to provide services.
|
|
4473
|
+
The type of IP address that the ALB instance uses to provide services. Valid values: `Intranet`, `Internet`.
|
|
4534
4474
|
"""
|
|
4535
4475
|
return pulumi.get(self, "address_type")
|
|
4536
4476
|
|
|
@@ -4587,7 +4527,7 @@ class GetLoadBalancersBalancerResult(dict):
|
|
|
4587
4527
|
@pulumi.getter(name="loadBalancerBusinessStatus")
|
|
4588
4528
|
def load_balancer_business_status(self) -> builtins.str:
|
|
4589
4529
|
"""
|
|
4590
|
-
Load Balancing of the Service Status. Valid Values: `Abnormal`
|
|
4530
|
+
Load Balancing of the Service Status. Valid Values: `Abnormal`and `Normal`.
|
|
4591
4531
|
"""
|
|
4592
4532
|
return pulumi.get(self, "load_balancer_business_status")
|
|
4593
4533
|
|
|
@@ -4596,7 +4536,7 @@ class GetLoadBalancersBalancerResult(dict):
|
|
|
4596
4536
|
@_utilities.deprecated("""Field 'load_balancer_bussiness_status' has been deprecated from provider version 1.142.0 and it will be removed in the future version. Please use the new parameter 'load_balancer_business_status' instead.""")
|
|
4597
4537
|
def load_balancer_bussiness_status(self) -> builtins.str:
|
|
4598
4538
|
"""
|
|
4599
|
-
|
|
4539
|
+
Field `load_balancer_bussiness_status` has been deprecated from provider version 1.142.0. New field `load_balancer_business_status` instead.
|
|
4600
4540
|
"""
|
|
4601
4541
|
return pulumi.get(self, "load_balancer_bussiness_status")
|
|
4602
4542
|
|
|
@@ -4652,7 +4592,7 @@ class GetLoadBalancersBalancerResult(dict):
|
|
|
4652
4592
|
@pulumi.getter
|
|
4653
4593
|
def status(self) -> builtins.str:
|
|
4654
4594
|
"""
|
|
4655
|
-
The
|
|
4595
|
+
The load balancer status. Valid values: `Active`, `Configuring`, `CreateFailed`, `Inactive` and `Provisioning`.
|
|
4656
4596
|
"""
|
|
4657
4597
|
return pulumi.get(self, "status")
|
|
4658
4598
|
|
|
@@ -4660,7 +4600,7 @@ class GetLoadBalancersBalancerResult(dict):
|
|
|
4660
4600
|
@pulumi.getter
|
|
4661
4601
|
def tags(self) -> Mapping[str, builtins.str]:
|
|
4662
4602
|
"""
|
|
4663
|
-
|
|
4603
|
+
A mapping of tags to assign to the resource.
|
|
4664
4604
|
"""
|
|
4665
4605
|
return pulumi.get(self, "tags")
|
|
4666
4606
|
|
|
@@ -4676,7 +4616,7 @@ class GetLoadBalancersBalancerResult(dict):
|
|
|
4676
4616
|
@pulumi.getter(name="zoneMappings")
|
|
4677
4617
|
def zone_mappings(self) -> Sequence['outputs.GetLoadBalancersBalancerZoneMappingResult']:
|
|
4678
4618
|
"""
|
|
4679
|
-
The zones and vSwitches.
|
|
4619
|
+
The zones and vSwitches.
|
|
4680
4620
|
"""
|
|
4681
4621
|
return pulumi.get(self, "zone_mappings")
|
|
4682
4622
|
|
|
@@ -4744,7 +4684,7 @@ class GetLoadBalancersBalancerLoadBalancerBillingConfigResult(dict):
|
|
|
4744
4684
|
def __init__(__self__, *,
|
|
4745
4685
|
pay_type: builtins.str):
|
|
4746
4686
|
"""
|
|
4747
|
-
:param builtins.str pay_type: The billing method of the ALB instance.
|
|
4687
|
+
:param builtins.str pay_type: The billing method of the ALB instance.
|
|
4748
4688
|
"""
|
|
4749
4689
|
pulumi.set(__self__, "pay_type", pay_type)
|
|
4750
4690
|
|
|
@@ -4752,7 +4692,7 @@ class GetLoadBalancersBalancerLoadBalancerBillingConfigResult(dict):
|
|
|
4752
4692
|
@pulumi.getter(name="payType")
|
|
4753
4693
|
def pay_type(self) -> builtins.str:
|
|
4754
4694
|
"""
|
|
4755
|
-
The billing method of the ALB instance.
|
|
4695
|
+
The billing method of the ALB instance.
|
|
4756
4696
|
"""
|
|
4757
4697
|
return pulumi.get(self, "pay_type")
|
|
4758
4698
|
|
|
@@ -4764,7 +4704,7 @@ class GetLoadBalancersBalancerLoadBalancerOperationLockResult(dict):
|
|
|
4764
4704
|
lock_type: builtins.str):
|
|
4765
4705
|
"""
|
|
4766
4706
|
:param builtins.str lock_reason: The Locking of the Reasons.
|
|
4767
|
-
:param builtins.str lock_type: The Locking of the Type.
|
|
4707
|
+
:param builtins.str lock_type: The Locking of the Type.
|
|
4768
4708
|
"""
|
|
4769
4709
|
pulumi.set(__self__, "lock_reason", lock_reason)
|
|
4770
4710
|
pulumi.set(__self__, "lock_type", lock_type)
|
|
@@ -4781,7 +4721,7 @@ class GetLoadBalancersBalancerLoadBalancerOperationLockResult(dict):
|
|
|
4781
4721
|
@pulumi.getter(name="lockType")
|
|
4782
4722
|
def lock_type(self) -> builtins.str:
|
|
4783
4723
|
"""
|
|
4784
|
-
The Locking of the Type.
|
|
4724
|
+
The Locking of the Type.
|
|
4785
4725
|
"""
|
|
4786
4726
|
return pulumi.get(self, "lock_type")
|
|
4787
4727
|
|
|
@@ -4792,10 +4732,8 @@ class GetLoadBalancersBalancerModificationProtectionConfigResult(dict):
|
|
|
4792
4732
|
reason: builtins.str,
|
|
4793
4733
|
status: builtins.str):
|
|
4794
4734
|
"""
|
|
4795
|
-
:param builtins.str reason: The reason for modification protection.
|
|
4796
|
-
:param builtins.str status:
|
|
4797
|
-
* `NonProtection` - disables the configuration read-only mode. After you disable the configuration read-only mode, you cannot set the ModificationProtectionReason parameter. If the parameter is set, the value is cleared.
|
|
4798
|
-
* `ConsoleProtection` - enables the configuration read-only mode. After you enable the configuration read-only mode, you can set the ModificationProtectionReason parameter.
|
|
4735
|
+
:param builtins.str reason: The reason for modification protection.
|
|
4736
|
+
:param builtins.str status: The load balancer status. Valid values: `Active`, `Configuring`, `CreateFailed`, `Inactive` and `Provisioning`.
|
|
4799
4737
|
"""
|
|
4800
4738
|
pulumi.set(__self__, "reason", reason)
|
|
4801
4739
|
pulumi.set(__self__, "status", status)
|
|
@@ -4804,7 +4742,7 @@ class GetLoadBalancersBalancerModificationProtectionConfigResult(dict):
|
|
|
4804
4742
|
@pulumi.getter
|
|
4805
4743
|
def reason(self) -> builtins.str:
|
|
4806
4744
|
"""
|
|
4807
|
-
The reason for modification protection.
|
|
4745
|
+
The reason for modification protection.
|
|
4808
4746
|
"""
|
|
4809
4747
|
return pulumi.get(self, "reason")
|
|
4810
4748
|
|
|
@@ -4812,9 +4750,7 @@ class GetLoadBalancersBalancerModificationProtectionConfigResult(dict):
|
|
|
4812
4750
|
@pulumi.getter
|
|
4813
4751
|
def status(self) -> builtins.str:
|
|
4814
4752
|
"""
|
|
4815
|
-
|
|
4816
|
-
* `NonProtection` - disables the configuration read-only mode. After you disable the configuration read-only mode, you cannot set the ModificationProtectionReason parameter. If the parameter is set, the value is cleared.
|
|
4817
|
-
* `ConsoleProtection` - enables the configuration read-only mode. After you enable the configuration read-only mode, you can set the ModificationProtectionReason parameter.
|
|
4753
|
+
The load balancer status. Valid values: `Active`, `Configuring`, `CreateFailed`, `Inactive` and `Provisioning`.
|
|
4818
4754
|
"""
|
|
4819
4755
|
return pulumi.get(self, "status")
|
|
4820
4756
|
|
|
@@ -4823,26 +4759,41 @@ class GetLoadBalancersBalancerModificationProtectionConfigResult(dict):
|
|
|
4823
4759
|
class GetLoadBalancersBalancerZoneMappingResult(dict):
|
|
4824
4760
|
def __init__(__self__, *,
|
|
4825
4761
|
load_balancer_addresses: Sequence['outputs.GetLoadBalancersBalancerZoneMappingLoadBalancerAddressResult'],
|
|
4762
|
+
status: builtins.str,
|
|
4826
4763
|
vswitch_id: builtins.str,
|
|
4827
4764
|
zone_id: builtins.str):
|
|
4828
4765
|
"""
|
|
4829
|
-
:param
|
|
4830
|
-
:param builtins.str
|
|
4766
|
+
:param Sequence['GetLoadBalancersBalancerZoneMappingLoadBalancerAddressArgs'] load_balancer_addresses: (Available since v1.250.0) The address of the ALB instance.
|
|
4767
|
+
:param builtins.str status: The load balancer status. Valid values: `Active`, `Configuring`, `CreateFailed`, `Inactive` and `Provisioning`.
|
|
4768
|
+
:param builtins.str vswitch_id: The ID of the vSwitch that corresponds to the zone.
|
|
4769
|
+
:param builtins.str zone_id: The zone ID of the resource.
|
|
4831
4770
|
"""
|
|
4832
4771
|
pulumi.set(__self__, "load_balancer_addresses", load_balancer_addresses)
|
|
4772
|
+
pulumi.set(__self__, "status", status)
|
|
4833
4773
|
pulumi.set(__self__, "vswitch_id", vswitch_id)
|
|
4834
4774
|
pulumi.set(__self__, "zone_id", zone_id)
|
|
4835
4775
|
|
|
4836
4776
|
@property
|
|
4837
4777
|
@pulumi.getter(name="loadBalancerAddresses")
|
|
4838
4778
|
def load_balancer_addresses(self) -> Sequence['outputs.GetLoadBalancersBalancerZoneMappingLoadBalancerAddressResult']:
|
|
4779
|
+
"""
|
|
4780
|
+
(Available since v1.250.0) The address of the ALB instance.
|
|
4781
|
+
"""
|
|
4839
4782
|
return pulumi.get(self, "load_balancer_addresses")
|
|
4840
4783
|
|
|
4784
|
+
@property
|
|
4785
|
+
@pulumi.getter
|
|
4786
|
+
def status(self) -> builtins.str:
|
|
4787
|
+
"""
|
|
4788
|
+
The load balancer status. Valid values: `Active`, `Configuring`, `CreateFailed`, `Inactive` and `Provisioning`.
|
|
4789
|
+
"""
|
|
4790
|
+
return pulumi.get(self, "status")
|
|
4791
|
+
|
|
4841
4792
|
@property
|
|
4842
4793
|
@pulumi.getter(name="vswitchId")
|
|
4843
4794
|
def vswitch_id(self) -> builtins.str:
|
|
4844
4795
|
"""
|
|
4845
|
-
The ID of the vSwitch that corresponds to the zone.
|
|
4796
|
+
The ID of the vSwitch that corresponds to the zone.
|
|
4846
4797
|
"""
|
|
4847
4798
|
return pulumi.get(self, "vswitch_id")
|
|
4848
4799
|
|
|
@@ -4850,7 +4801,7 @@ class GetLoadBalancersBalancerZoneMappingResult(dict):
|
|
|
4850
4801
|
@pulumi.getter(name="zoneId")
|
|
4851
4802
|
def zone_id(self) -> builtins.str:
|
|
4852
4803
|
"""
|
|
4853
|
-
The ID of the
|
|
4804
|
+
The zone ID of the resource.
|
|
4854
4805
|
"""
|
|
4855
4806
|
return pulumi.get(self, "zone_id")
|
|
4856
4807
|
|
|
@@ -4858,14 +4809,108 @@ class GetLoadBalancersBalancerZoneMappingResult(dict):
|
|
|
4858
4809
|
@pulumi.output_type
|
|
4859
4810
|
class GetLoadBalancersBalancerZoneMappingLoadBalancerAddressResult(dict):
|
|
4860
4811
|
def __init__(__self__, *,
|
|
4861
|
-
address: builtins.str
|
|
4812
|
+
address: builtins.str,
|
|
4813
|
+
allocation_id: builtins.str,
|
|
4814
|
+
eip_type: builtins.str,
|
|
4815
|
+
intranet_address: builtins.str,
|
|
4816
|
+
intranet_address_hc_status: builtins.str,
|
|
4817
|
+
ipv4_local_addresses: Sequence[builtins.str],
|
|
4818
|
+
ipv6_address: builtins.str,
|
|
4819
|
+
ipv6_address_hc_status: builtins.str,
|
|
4820
|
+
ipv6_local_addresses: Sequence[builtins.str]):
|
|
4821
|
+
"""
|
|
4822
|
+
:param builtins.str address: IPv4 address.
|
|
4823
|
+
:param builtins.str allocation_id: The elastic IP address (EIP).
|
|
4824
|
+
:param builtins.str eip_type: The type of EIP.
|
|
4825
|
+
:param builtins.str intranet_address: The private IPv4 address.
|
|
4826
|
+
:param builtins.str intranet_address_hc_status: The health status of the private IPv4 address of the ALB instance.
|
|
4827
|
+
:param Sequence[builtins.str] ipv4_local_addresses: The IPv4 link-local addresses.
|
|
4828
|
+
:param builtins.str ipv6_address: IPv6 address.
|
|
4829
|
+
:param builtins.str ipv6_address_hc_status: The health status of the private IPv6 address of the ALB instance.
|
|
4830
|
+
:param Sequence[builtins.str] ipv6_local_addresses: The IPv6 link-local addresses.
|
|
4831
|
+
"""
|
|
4862
4832
|
pulumi.set(__self__, "address", address)
|
|
4833
|
+
pulumi.set(__self__, "allocation_id", allocation_id)
|
|
4834
|
+
pulumi.set(__self__, "eip_type", eip_type)
|
|
4835
|
+
pulumi.set(__self__, "intranet_address", intranet_address)
|
|
4836
|
+
pulumi.set(__self__, "intranet_address_hc_status", intranet_address_hc_status)
|
|
4837
|
+
pulumi.set(__self__, "ipv4_local_addresses", ipv4_local_addresses)
|
|
4838
|
+
pulumi.set(__self__, "ipv6_address", ipv6_address)
|
|
4839
|
+
pulumi.set(__self__, "ipv6_address_hc_status", ipv6_address_hc_status)
|
|
4840
|
+
pulumi.set(__self__, "ipv6_local_addresses", ipv6_local_addresses)
|
|
4863
4841
|
|
|
4864
4842
|
@property
|
|
4865
4843
|
@pulumi.getter
|
|
4866
4844
|
def address(self) -> builtins.str:
|
|
4845
|
+
"""
|
|
4846
|
+
IPv4 address.
|
|
4847
|
+
"""
|
|
4867
4848
|
return pulumi.get(self, "address")
|
|
4868
4849
|
|
|
4850
|
+
@property
|
|
4851
|
+
@pulumi.getter(name="allocationId")
|
|
4852
|
+
def allocation_id(self) -> builtins.str:
|
|
4853
|
+
"""
|
|
4854
|
+
The elastic IP address (EIP).
|
|
4855
|
+
"""
|
|
4856
|
+
return pulumi.get(self, "allocation_id")
|
|
4857
|
+
|
|
4858
|
+
@property
|
|
4859
|
+
@pulumi.getter(name="eipType")
|
|
4860
|
+
def eip_type(self) -> builtins.str:
|
|
4861
|
+
"""
|
|
4862
|
+
The type of EIP.
|
|
4863
|
+
"""
|
|
4864
|
+
return pulumi.get(self, "eip_type")
|
|
4865
|
+
|
|
4866
|
+
@property
|
|
4867
|
+
@pulumi.getter(name="intranetAddress")
|
|
4868
|
+
def intranet_address(self) -> builtins.str:
|
|
4869
|
+
"""
|
|
4870
|
+
The private IPv4 address.
|
|
4871
|
+
"""
|
|
4872
|
+
return pulumi.get(self, "intranet_address")
|
|
4873
|
+
|
|
4874
|
+
@property
|
|
4875
|
+
@pulumi.getter(name="intranetAddressHcStatus")
|
|
4876
|
+
def intranet_address_hc_status(self) -> builtins.str:
|
|
4877
|
+
"""
|
|
4878
|
+
The health status of the private IPv4 address of the ALB instance.
|
|
4879
|
+
"""
|
|
4880
|
+
return pulumi.get(self, "intranet_address_hc_status")
|
|
4881
|
+
|
|
4882
|
+
@property
|
|
4883
|
+
@pulumi.getter(name="ipv4LocalAddresses")
|
|
4884
|
+
def ipv4_local_addresses(self) -> Sequence[builtins.str]:
|
|
4885
|
+
"""
|
|
4886
|
+
The IPv4 link-local addresses.
|
|
4887
|
+
"""
|
|
4888
|
+
return pulumi.get(self, "ipv4_local_addresses")
|
|
4889
|
+
|
|
4890
|
+
@property
|
|
4891
|
+
@pulumi.getter(name="ipv6Address")
|
|
4892
|
+
def ipv6_address(self) -> builtins.str:
|
|
4893
|
+
"""
|
|
4894
|
+
IPv6 address.
|
|
4895
|
+
"""
|
|
4896
|
+
return pulumi.get(self, "ipv6_address")
|
|
4897
|
+
|
|
4898
|
+
@property
|
|
4899
|
+
@pulumi.getter(name="ipv6AddressHcStatus")
|
|
4900
|
+
def ipv6_address_hc_status(self) -> builtins.str:
|
|
4901
|
+
"""
|
|
4902
|
+
The health status of the private IPv6 address of the ALB instance.
|
|
4903
|
+
"""
|
|
4904
|
+
return pulumi.get(self, "ipv6_address_hc_status")
|
|
4905
|
+
|
|
4906
|
+
@property
|
|
4907
|
+
@pulumi.getter(name="ipv6LocalAddresses")
|
|
4908
|
+
def ipv6_local_addresses(self) -> Sequence[builtins.str]:
|
|
4909
|
+
"""
|
|
4910
|
+
The IPv6 link-local addresses.
|
|
4911
|
+
"""
|
|
4912
|
+
return pulumi.get(self, "ipv6_local_addresses")
|
|
4913
|
+
|
|
4869
4914
|
|
|
4870
4915
|
@pulumi.output_type
|
|
4871
4916
|
class GetRulesRuleResult(dict):
|
pulumi_alicloud/cs/_inputs.py
CHANGED
|
@@ -52,6 +52,8 @@ __all__ = [
|
|
|
52
52
|
'KubernetesRuntimeArgsDict',
|
|
53
53
|
'ManagedKubernetesAddonArgs',
|
|
54
54
|
'ManagedKubernetesAddonArgsDict',
|
|
55
|
+
'ManagedKubernetesAuditLogConfigArgs',
|
|
56
|
+
'ManagedKubernetesAuditLogConfigArgsDict',
|
|
55
57
|
'ManagedKubernetesCertificateAuthorityArgs',
|
|
56
58
|
'ManagedKubernetesCertificateAuthorityArgsDict',
|
|
57
59
|
'ManagedKubernetesConnectionsArgs',
|
|
@@ -1848,6 +1850,58 @@ class ManagedKubernetesAddonArgs:
|
|
|
1848
1850
|
pulumi.set(self, "version", value)
|
|
1849
1851
|
|
|
1850
1852
|
|
|
1853
|
+
if not MYPY:
|
|
1854
|
+
class ManagedKubernetesAuditLogConfigArgsDict(TypedDict):
|
|
1855
|
+
enabled: NotRequired[pulumi.Input[builtins.bool]]
|
|
1856
|
+
"""
|
|
1857
|
+
Whether to enable audit logging. Valid values: `true`, `false`.
|
|
1858
|
+
"""
|
|
1859
|
+
sls_project_name: NotRequired[pulumi.Input[builtins.str]]
|
|
1860
|
+
"""
|
|
1861
|
+
The SLS project to which the Logstore storing the cluster audit logs belongs.
|
|
1862
|
+
"""
|
|
1863
|
+
elif False:
|
|
1864
|
+
ManagedKubernetesAuditLogConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
1865
|
+
|
|
1866
|
+
@pulumi.input_type
|
|
1867
|
+
class ManagedKubernetesAuditLogConfigArgs:
|
|
1868
|
+
def __init__(__self__, *,
|
|
1869
|
+
enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
|
1870
|
+
sls_project_name: Optional[pulumi.Input[builtins.str]] = None):
|
|
1871
|
+
"""
|
|
1872
|
+
:param pulumi.Input[builtins.bool] enabled: Whether to enable audit logging. Valid values: `true`, `false`.
|
|
1873
|
+
:param pulumi.Input[builtins.str] sls_project_name: The SLS project to which the Logstore storing the cluster audit logs belongs.
|
|
1874
|
+
"""
|
|
1875
|
+
if enabled is not None:
|
|
1876
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
1877
|
+
if sls_project_name is not None:
|
|
1878
|
+
pulumi.set(__self__, "sls_project_name", sls_project_name)
|
|
1879
|
+
|
|
1880
|
+
@property
|
|
1881
|
+
@pulumi.getter
|
|
1882
|
+
def enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
1883
|
+
"""
|
|
1884
|
+
Whether to enable audit logging. Valid values: `true`, `false`.
|
|
1885
|
+
"""
|
|
1886
|
+
return pulumi.get(self, "enabled")
|
|
1887
|
+
|
|
1888
|
+
@enabled.setter
|
|
1889
|
+
def enabled(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
1890
|
+
pulumi.set(self, "enabled", value)
|
|
1891
|
+
|
|
1892
|
+
@property
|
|
1893
|
+
@pulumi.getter(name="slsProjectName")
|
|
1894
|
+
def sls_project_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
1895
|
+
"""
|
|
1896
|
+
The SLS project to which the Logstore storing the cluster audit logs belongs.
|
|
1897
|
+
"""
|
|
1898
|
+
return pulumi.get(self, "sls_project_name")
|
|
1899
|
+
|
|
1900
|
+
@sls_project_name.setter
|
|
1901
|
+
def sls_project_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
1902
|
+
pulumi.set(self, "sls_project_name", value)
|
|
1903
|
+
|
|
1904
|
+
|
|
1851
1905
|
if not MYPY:
|
|
1852
1906
|
class ManagedKubernetesCertificateAuthorityArgsDict(TypedDict):
|
|
1853
1907
|
client_cert: NotRequired[pulumi.Input[builtins.str]]
|
|
@@ -97,7 +97,7 @@ def get_kubernetes_version(cluster_type: Optional[builtins.str] = None,
|
|
|
97
97
|
"""
|
|
98
98
|
This data source provides the details of the Kubernetes version supported by ACK.
|
|
99
99
|
|
|
100
|
-
> **NOTE:** Available
|
|
100
|
+
> **NOTE:** Available since v1.170.0.
|
|
101
101
|
|
|
102
102
|
## Example Usage
|
|
103
103
|
|
|
@@ -148,7 +148,7 @@ def get_kubernetes_version(cluster_type: Optional[builtins.str] = None,
|
|
|
148
148
|
|
|
149
149
|
:param builtins.str cluster_type: The type of cluster. Its valid value are `Kubernetes` and `ManagedKubernetes`.
|
|
150
150
|
:param builtins.str kubernetes_version: The ACK released kubernetes version.
|
|
151
|
-
:param builtins.str profile: The profile of cluster. Its valid value are `Default`, `Serverless` and `
|
|
151
|
+
:param builtins.str profile: The profile of cluster. Its valid value are `Default`, `Serverless`, `Edge` and `Acs`.
|
|
152
152
|
"""
|
|
153
153
|
__args__ = dict()
|
|
154
154
|
__args__['clusterType'] = cluster_type
|
|
@@ -170,7 +170,7 @@ def get_kubernetes_version_output(cluster_type: Optional[pulumi.Input[builtins.s
|
|
|
170
170
|
"""
|
|
171
171
|
This data source provides the details of the Kubernetes version supported by ACK.
|
|
172
172
|
|
|
173
|
-
> **NOTE:** Available
|
|
173
|
+
> **NOTE:** Available since v1.170.0.
|
|
174
174
|
|
|
175
175
|
## Example Usage
|
|
176
176
|
|
|
@@ -221,7 +221,7 @@ def get_kubernetes_version_output(cluster_type: Optional[pulumi.Input[builtins.s
|
|
|
221
221
|
|
|
222
222
|
:param builtins.str cluster_type: The type of cluster. Its valid value are `Kubernetes` and `ManagedKubernetes`.
|
|
223
223
|
:param builtins.str kubernetes_version: The ACK released kubernetes version.
|
|
224
|
-
:param builtins.str profile: The profile of cluster. Its valid value are `Default`, `Serverless` and `
|
|
224
|
+
:param builtins.str profile: The profile of cluster. Its valid value are `Default`, `Serverless`, `Edge` and `Acs`.
|
|
225
225
|
"""
|
|
226
226
|
__args__ = dict()
|
|
227
227
|
__args__['clusterType'] = cluster_type
|