pulumi-alicloud 3.77.0a1746163013__py3-none-any.whl → 3.77.0a1746220593__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 +72 -0
- pulumi_alicloud/_inputs.py +13 -0
- pulumi_alicloud/adb/db_cluster_lake_version.py +94 -0
- pulumi_alicloud/alb/_inputs.py +6 -3
- pulumi_alicloud/alb/outputs.py +4 -2
- pulumi_alicloud/apig/environment.py +2 -2
- pulumi_alicloud/apig/http_api.py +2 -2
- pulumi_alicloud/arms/grafana_workspace.py +56 -14
- pulumi_alicloud/cloudfirewall/instance_member.py +4 -4
- pulumi_alicloud/cloudfirewall/vpc_cen_tr_firewall.py +2 -2
- pulumi_alicloud/cloudsso/_inputs.py +697 -7
- pulumi_alicloud/cloudsso/directory.py +345 -65
- pulumi_alicloud/cloudsso/outputs.py +557 -8
- pulumi_alicloud/config/outputs.py +8 -0
- pulumi_alicloud/cs/_inputs.py +18 -18
- pulumi_alicloud/cs/edge_kubernetes.py +136 -100
- pulumi_alicloud/cs/get_kubernetes_node_pools.py +21 -1
- pulumi_alicloud/cs/kubernetes.py +118 -39
- pulumi_alicloud/cs/managed_kubernetes.py +125 -46
- pulumi_alicloud/cs/outputs.py +14 -14
- pulumi_alicloud/cs/serverless_kubernetes.py +66 -73
- pulumi_alicloud/ddos/ddos_coo_instance.py +175 -25
- pulumi_alicloud/dns/ddos_coo_instance.py +175 -25
- pulumi_alicloud/dts/job_monitor_rule.py +2 -2
- pulumi_alicloud/dts/synchronization_job.py +2 -2
- pulumi_alicloud/ecs/get_instance_types.py +4 -4
- pulumi_alicloud/ecs/instance.py +28 -28
- pulumi_alicloud/ecs/outputs.py +2 -2
- pulumi_alicloud/ecs/security_group_rule.py +32 -4
- pulumi_alicloud/eflo/__init__.py +3 -0
- pulumi_alicloud/eflo/_inputs.py +623 -0
- pulumi_alicloud/eflo/experiment_plan.py +573 -0
- pulumi_alicloud/eflo/experiment_plan_template.py +464 -0
- pulumi_alicloud/eflo/outputs.py +476 -0
- pulumi_alicloud/eflo/resource.py +388 -0
- pulumi_alicloud/ens/disk.py +120 -69
- pulumi_alicloud/ens/eip.py +45 -41
- pulumi_alicloud/esa/__init__.py +2 -0
- pulumi_alicloud/esa/scheduled_preload_execution.py +479 -0
- pulumi_alicloud/esa/scheduled_preload_job.py +467 -0
- pulumi_alicloud/gwlb/listener.py +2 -2
- pulumi_alicloud/gwlb/load_balancer.py +2 -2
- pulumi_alicloud/gwlb/server_group.py +2 -2
- pulumi_alicloud/ims/__init__.py +2 -0
- pulumi_alicloud/ims/get_oidc_providers.py +216 -0
- pulumi_alicloud/ims/outputs.py +138 -0
- pulumi_alicloud/mongodb/__init__.py +2 -0
- pulumi_alicloud/mongodb/_inputs.py +154 -0
- pulumi_alicloud/mongodb/instance.py +7 -7
- pulumi_alicloud/mongodb/outputs.py +121 -0
- pulumi_alicloud/mongodb/public_network_address.py +275 -0
- pulumi_alicloud/mongodb/replica_set_role.py +533 -0
- pulumi_alicloud/nas/_inputs.py +252 -18
- pulumi_alicloud/nas/file_system.py +649 -264
- pulumi_alicloud/nas/outputs.py +198 -12
- pulumi_alicloud/nlb/server_group_server_attachment.py +4 -0
- pulumi_alicloud/pai/__init__.py +1 -0
- pulumi_alicloud/pai/flow_pipeline.py +491 -0
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/ram/__init__.py +1 -0
- pulumi_alicloud/ram/get_role_policy_attachments.py +272 -0
- pulumi_alicloud/ram/outputs.py +63 -0
- pulumi_alicloud/ram/security_preference.py +496 -110
- pulumi_alicloud/rdc/organization.py +2 -2
- pulumi_alicloud/rds/instance.py +1 -1
- pulumi_alicloud/sae/application_scaling_rule.py +2 -2
- pulumi_alicloud/sae/ingress.py +2 -2
- pulumi_alicloud/schedulerx/app_group.py +2 -2
- pulumi_alicloud/schedulerx/job.py +2 -2
- pulumi_alicloud/selectdb/db_cluster.py +2 -0
- pulumi_alicloud/selectdb/db_instance.py +43 -13
- pulumi_alicloud/selectdb/get_db_clusters.py +2 -0
- pulumi_alicloud/selectdb/get_db_instances.py +2 -0
- pulumi_alicloud/selectdb/outputs.py +3 -3
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +295 -0
- pulumi_alicloud/sls/etl.py +516 -0
- pulumi_alicloud/sls/outputs.py +209 -0
- pulumi_alicloud/vpc/network.py +156 -88
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.77.0a1746220593.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.77.0a1746220593.dist-info}/RECORD +83 -71
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.77.0a1746220593.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.77.0a1746163013.dist-info → pulumi_alicloud-3.77.0a1746220593.dist-info}/top_level.txt +0 -0
pulumi_alicloud/__init__.py
CHANGED
|
@@ -3833,6 +3833,22 @@ _utilities.register(
|
|
|
3833
3833
|
"alicloud:eflo/cluster:Cluster": "Cluster"
|
|
3834
3834
|
}
|
|
3835
3835
|
},
|
|
3836
|
+
{
|
|
3837
|
+
"pkg": "alicloud",
|
|
3838
|
+
"mod": "eflo/experimentPlan",
|
|
3839
|
+
"fqn": "pulumi_alicloud.eflo",
|
|
3840
|
+
"classes": {
|
|
3841
|
+
"alicloud:eflo/experimentPlan:ExperimentPlan": "ExperimentPlan"
|
|
3842
|
+
}
|
|
3843
|
+
},
|
|
3844
|
+
{
|
|
3845
|
+
"pkg": "alicloud",
|
|
3846
|
+
"mod": "eflo/experimentPlanTemplate",
|
|
3847
|
+
"fqn": "pulumi_alicloud.eflo",
|
|
3848
|
+
"classes": {
|
|
3849
|
+
"alicloud:eflo/experimentPlanTemplate:ExperimentPlanTemplate": "ExperimentPlanTemplate"
|
|
3850
|
+
}
|
|
3851
|
+
},
|
|
3836
3852
|
{
|
|
3837
3853
|
"pkg": "alicloud",
|
|
3838
3854
|
"mod": "eflo/invocation",
|
|
@@ -3857,6 +3873,14 @@ _utilities.register(
|
|
|
3857
3873
|
"alicloud:eflo/nodeGroup:NodeGroup": "NodeGroup"
|
|
3858
3874
|
}
|
|
3859
3875
|
},
|
|
3876
|
+
{
|
|
3877
|
+
"pkg": "alicloud",
|
|
3878
|
+
"mod": "eflo/resource",
|
|
3879
|
+
"fqn": "pulumi_alicloud.eflo",
|
|
3880
|
+
"classes": {
|
|
3881
|
+
"alicloud:eflo/resource:Resource": "Resource"
|
|
3882
|
+
}
|
|
3883
|
+
},
|
|
3860
3884
|
{
|
|
3861
3885
|
"pkg": "alicloud",
|
|
3862
3886
|
"mod": "eflo/subnet",
|
|
@@ -4225,6 +4249,22 @@ _utilities.register(
|
|
|
4225
4249
|
"alicloud:esa/rewriteUrlRule:RewriteUrlRule": "RewriteUrlRule"
|
|
4226
4250
|
}
|
|
4227
4251
|
},
|
|
4252
|
+
{
|
|
4253
|
+
"pkg": "alicloud",
|
|
4254
|
+
"mod": "esa/scheduledPreloadExecution",
|
|
4255
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4256
|
+
"classes": {
|
|
4257
|
+
"alicloud:esa/scheduledPreloadExecution:ScheduledPreloadExecution": "ScheduledPreloadExecution"
|
|
4258
|
+
}
|
|
4259
|
+
},
|
|
4260
|
+
{
|
|
4261
|
+
"pkg": "alicloud",
|
|
4262
|
+
"mod": "esa/scheduledPreloadJob",
|
|
4263
|
+
"fqn": "pulumi_alicloud.esa",
|
|
4264
|
+
"classes": {
|
|
4265
|
+
"alicloud:esa/scheduledPreloadJob:ScheduledPreloadJob": "ScheduledPreloadJob"
|
|
4266
|
+
}
|
|
4267
|
+
},
|
|
4228
4268
|
{
|
|
4229
4269
|
"pkg": "alicloud",
|
|
4230
4270
|
"mod": "esa/site",
|
|
@@ -5729,6 +5769,22 @@ _utilities.register(
|
|
|
5729
5769
|
"alicloud:mongodb/privateSrvNetworkAddress:PrivateSrvNetworkAddress": "PrivateSrvNetworkAddress"
|
|
5730
5770
|
}
|
|
5731
5771
|
},
|
|
5772
|
+
{
|
|
5773
|
+
"pkg": "alicloud",
|
|
5774
|
+
"mod": "mongodb/publicNetworkAddress",
|
|
5775
|
+
"fqn": "pulumi_alicloud.mongodb",
|
|
5776
|
+
"classes": {
|
|
5777
|
+
"alicloud:mongodb/publicNetworkAddress:PublicNetworkAddress": "PublicNetworkAddress"
|
|
5778
|
+
}
|
|
5779
|
+
},
|
|
5780
|
+
{
|
|
5781
|
+
"pkg": "alicloud",
|
|
5782
|
+
"mod": "mongodb/replicaSetRole",
|
|
5783
|
+
"fqn": "pulumi_alicloud.mongodb",
|
|
5784
|
+
"classes": {
|
|
5785
|
+
"alicloud:mongodb/replicaSetRole:ReplicaSetRole": "ReplicaSetRole"
|
|
5786
|
+
}
|
|
5787
|
+
},
|
|
5732
5788
|
{
|
|
5733
5789
|
"pkg": "alicloud",
|
|
5734
5790
|
"mod": "mongodb/serverlessInstance",
|
|
@@ -6313,6 +6369,14 @@ _utilities.register(
|
|
|
6313
6369
|
"alicloud:ots/tunnel:Tunnel": "Tunnel"
|
|
6314
6370
|
}
|
|
6315
6371
|
},
|
|
6372
|
+
{
|
|
6373
|
+
"pkg": "alicloud",
|
|
6374
|
+
"mod": "pai/flowPipeline",
|
|
6375
|
+
"fqn": "pulumi_alicloud.pai",
|
|
6376
|
+
"classes": {
|
|
6377
|
+
"alicloud:pai/flowPipeline:FlowPipeline": "FlowPipeline"
|
|
6378
|
+
}
|
|
6379
|
+
},
|
|
6316
6380
|
{
|
|
6317
6381
|
"pkg": "alicloud",
|
|
6318
6382
|
"mod": "pai/service",
|
|
@@ -7753,6 +7817,14 @@ _utilities.register(
|
|
|
7753
7817
|
"alicloud:sls/collectionPolicy:CollectionPolicy": "CollectionPolicy"
|
|
7754
7818
|
}
|
|
7755
7819
|
},
|
|
7820
|
+
{
|
|
7821
|
+
"pkg": "alicloud",
|
|
7822
|
+
"mod": "sls/etl",
|
|
7823
|
+
"fqn": "pulumi_alicloud.sls",
|
|
7824
|
+
"classes": {
|
|
7825
|
+
"alicloud:sls/etl:Etl": "Etl"
|
|
7826
|
+
}
|
|
7827
|
+
},
|
|
7756
7828
|
{
|
|
7757
7829
|
"pkg": "alicloud",
|
|
7758
7830
|
"mod": "sls/ossExportSink",
|
pulumi_alicloud/_inputs.py
CHANGED
|
@@ -542,6 +542,7 @@ if not MYPY:
|
|
|
542
542
|
"""
|
|
543
543
|
Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom eflo endpoints.
|
|
544
544
|
"""
|
|
545
|
+
eflo_cnp: NotRequired[pulumi.Input[builtins.str]]
|
|
545
546
|
eflo_controller: NotRequired[pulumi.Input[builtins.str]]
|
|
546
547
|
"""
|
|
547
548
|
Use this to override the default endpoint URL constructed from the `region`. It's typically used to connect to custom efloctrl endpoints.
|
|
@@ -956,6 +957,7 @@ class ProviderEndpointArgs:
|
|
|
956
957
|
eds_user: Optional[pulumi.Input[builtins.str]] = None,
|
|
957
958
|
edsuser: Optional[pulumi.Input[builtins.str]] = None,
|
|
958
959
|
eflo: Optional[pulumi.Input[builtins.str]] = None,
|
|
960
|
+
eflo_cnp: Optional[pulumi.Input[builtins.str]] = None,
|
|
959
961
|
eflo_controller: Optional[pulumi.Input[builtins.str]] = None,
|
|
960
962
|
ehpc: Optional[pulumi.Input[builtins.str]] = None,
|
|
961
963
|
ehs: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -1338,6 +1340,8 @@ class ProviderEndpointArgs:
|
|
|
1338
1340
|
pulumi.set(__self__, "edsuser", edsuser)
|
|
1339
1341
|
if eflo is not None:
|
|
1340
1342
|
pulumi.set(__self__, "eflo", eflo)
|
|
1343
|
+
if eflo_cnp is not None:
|
|
1344
|
+
pulumi.set(__self__, "eflo_cnp", eflo_cnp)
|
|
1341
1345
|
if eflo_controller is not None:
|
|
1342
1346
|
pulumi.set(__self__, "eflo_controller", eflo_controller)
|
|
1343
1347
|
if ehpc is not None:
|
|
@@ -2355,6 +2359,15 @@ class ProviderEndpointArgs:
|
|
|
2355
2359
|
def eflo(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
2356
2360
|
pulumi.set(self, "eflo", value)
|
|
2357
2361
|
|
|
2362
|
+
@property
|
|
2363
|
+
@pulumi.getter(name="efloCnp")
|
|
2364
|
+
def eflo_cnp(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
2365
|
+
return pulumi.get(self, "eflo_cnp")
|
|
2366
|
+
|
|
2367
|
+
@eflo_cnp.setter
|
|
2368
|
+
def eflo_cnp(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
2369
|
+
pulumi.set(self, "eflo_cnp", value)
|
|
2370
|
+
|
|
2358
2371
|
@property
|
|
2359
2372
|
@pulumi.getter(name="efloController")
|
|
2360
2373
|
def eflo_controller(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
@@ -40,6 +40,8 @@ class DBClusterLakeVersionArgs:
|
|
|
40
40
|
resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
41
41
|
restore_to_time: Optional[pulumi.Input[builtins.str]] = None,
|
|
42
42
|
restore_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
43
|
+
secondary_vswitch_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
44
|
+
secondary_zone_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
43
45
|
security_ips: Optional[pulumi.Input[builtins.str]] = None,
|
|
44
46
|
source_db_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
45
47
|
storage_resource: Optional[pulumi.Input[builtins.str]] = None):
|
|
@@ -70,6 +72,8 @@ class DBClusterLakeVersionArgs:
|
|
|
70
72
|
:param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group.
|
|
71
73
|
:param pulumi.Input[builtins.str] restore_to_time: The point in time to which you want to restore data from the backup set.
|
|
72
74
|
:param pulumi.Input[builtins.str] restore_type: The method that you want to use to restore data. Valid values:
|
|
75
|
+
:param pulumi.Input[builtins.str] secondary_vswitch_id: The ID of the secondary zone.
|
|
76
|
+
:param pulumi.Input[builtins.str] secondary_zone_id: The ID of the secondary vSwitch.
|
|
73
77
|
:param pulumi.Input[builtins.str] security_ips: The IP addresses in an IP address whitelist of a cluster. Separate multiple IP addresses with commas (,). You can add a maximum of 500 different IP addresses to a whitelist. The entries in the IP address whitelist must be in one of the following formats:
|
|
74
78
|
- IP addresses, such as 10.23.XX.XX.
|
|
75
79
|
- CIDR blocks, such as 10.23.xx.xx/24. In this example, 24 indicates that the prefix of each IP address in the IP whitelist is 24 bits in length. You can replace 24 with a value within the range of 1 to 32.
|
|
@@ -111,6 +115,10 @@ class DBClusterLakeVersionArgs:
|
|
|
111
115
|
pulumi.set(__self__, "restore_to_time", restore_to_time)
|
|
112
116
|
if restore_type is not None:
|
|
113
117
|
pulumi.set(__self__, "restore_type", restore_type)
|
|
118
|
+
if secondary_vswitch_id is not None:
|
|
119
|
+
pulumi.set(__self__, "secondary_vswitch_id", secondary_vswitch_id)
|
|
120
|
+
if secondary_zone_id is not None:
|
|
121
|
+
pulumi.set(__self__, "secondary_zone_id", secondary_zone_id)
|
|
114
122
|
if security_ips is not None:
|
|
115
123
|
pulumi.set(__self__, "security_ips", security_ips)
|
|
116
124
|
if source_db_cluster_id is not None:
|
|
@@ -363,6 +371,30 @@ class DBClusterLakeVersionArgs:
|
|
|
363
371
|
def restore_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
364
372
|
pulumi.set(self, "restore_type", value)
|
|
365
373
|
|
|
374
|
+
@property
|
|
375
|
+
@pulumi.getter(name="secondaryVswitchId")
|
|
376
|
+
def secondary_vswitch_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
377
|
+
"""
|
|
378
|
+
The ID of the secondary zone.
|
|
379
|
+
"""
|
|
380
|
+
return pulumi.get(self, "secondary_vswitch_id")
|
|
381
|
+
|
|
382
|
+
@secondary_vswitch_id.setter
|
|
383
|
+
def secondary_vswitch_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
384
|
+
pulumi.set(self, "secondary_vswitch_id", value)
|
|
385
|
+
|
|
386
|
+
@property
|
|
387
|
+
@pulumi.getter(name="secondaryZoneId")
|
|
388
|
+
def secondary_zone_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
389
|
+
"""
|
|
390
|
+
The ID of the secondary vSwitch.
|
|
391
|
+
"""
|
|
392
|
+
return pulumi.get(self, "secondary_zone_id")
|
|
393
|
+
|
|
394
|
+
@secondary_zone_id.setter
|
|
395
|
+
def secondary_zone_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
396
|
+
pulumi.set(self, "secondary_zone_id", value)
|
|
397
|
+
|
|
366
398
|
@property
|
|
367
399
|
@pulumi.getter(name="securityIps")
|
|
368
400
|
def security_ips(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
@@ -432,6 +464,8 @@ class _DBClusterLakeVersionState:
|
|
|
432
464
|
resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
433
465
|
restore_to_time: Optional[pulumi.Input[builtins.str]] = None,
|
|
434
466
|
restore_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
467
|
+
secondary_vswitch_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
468
|
+
secondary_zone_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
435
469
|
security_ips: Optional[pulumi.Input[builtins.str]] = None,
|
|
436
470
|
source_db_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
437
471
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -473,6 +507,8 @@ class _DBClusterLakeVersionState:
|
|
|
473
507
|
:param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group.
|
|
474
508
|
:param pulumi.Input[builtins.str] restore_to_time: The point in time to which you want to restore data from the backup set.
|
|
475
509
|
:param pulumi.Input[builtins.str] restore_type: The method that you want to use to restore data. Valid values:
|
|
510
|
+
:param pulumi.Input[builtins.str] secondary_vswitch_id: The ID of the secondary zone.
|
|
511
|
+
:param pulumi.Input[builtins.str] secondary_zone_id: The ID of the secondary vSwitch.
|
|
476
512
|
:param pulumi.Input[builtins.str] security_ips: The IP addresses in an IP address whitelist of a cluster. Separate multiple IP addresses with commas (,). You can add a maximum of 500 different IP addresses to a whitelist. The entries in the IP address whitelist must be in one of the following formats:
|
|
477
513
|
- IP addresses, such as 10.23.XX.XX.
|
|
478
514
|
- CIDR blocks, such as 10.23.xx.xx/24. In this example, 24 indicates that the prefix of each IP address in the IP whitelist is 24 bits in length. You can replace 24 with a value within the range of 1 to 32.
|
|
@@ -537,6 +573,10 @@ class _DBClusterLakeVersionState:
|
|
|
537
573
|
pulumi.set(__self__, "restore_to_time", restore_to_time)
|
|
538
574
|
if restore_type is not None:
|
|
539
575
|
pulumi.set(__self__, "restore_type", restore_type)
|
|
576
|
+
if secondary_vswitch_id is not None:
|
|
577
|
+
pulumi.set(__self__, "secondary_vswitch_id", secondary_vswitch_id)
|
|
578
|
+
if secondary_zone_id is not None:
|
|
579
|
+
pulumi.set(__self__, "secondary_zone_id", secondary_zone_id)
|
|
540
580
|
if security_ips is not None:
|
|
541
581
|
pulumi.set(__self__, "security_ips", security_ips)
|
|
542
582
|
if source_db_cluster_id is not None:
|
|
@@ -881,6 +921,30 @@ class _DBClusterLakeVersionState:
|
|
|
881
921
|
def restore_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
882
922
|
pulumi.set(self, "restore_type", value)
|
|
883
923
|
|
|
924
|
+
@property
|
|
925
|
+
@pulumi.getter(name="secondaryVswitchId")
|
|
926
|
+
def secondary_vswitch_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
927
|
+
"""
|
|
928
|
+
The ID of the secondary zone.
|
|
929
|
+
"""
|
|
930
|
+
return pulumi.get(self, "secondary_vswitch_id")
|
|
931
|
+
|
|
932
|
+
@secondary_vswitch_id.setter
|
|
933
|
+
def secondary_vswitch_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
934
|
+
pulumi.set(self, "secondary_vswitch_id", value)
|
|
935
|
+
|
|
936
|
+
@property
|
|
937
|
+
@pulumi.getter(name="secondaryZoneId")
|
|
938
|
+
def secondary_zone_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
939
|
+
"""
|
|
940
|
+
The ID of the secondary vSwitch.
|
|
941
|
+
"""
|
|
942
|
+
return pulumi.get(self, "secondary_zone_id")
|
|
943
|
+
|
|
944
|
+
@secondary_zone_id.setter
|
|
945
|
+
def secondary_zone_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
946
|
+
pulumi.set(self, "secondary_zone_id", value)
|
|
947
|
+
|
|
884
948
|
@property
|
|
885
949
|
@pulumi.getter(name="securityIps")
|
|
886
950
|
def security_ips(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
@@ -993,6 +1057,8 @@ class DBClusterLakeVersion(pulumi.CustomResource):
|
|
|
993
1057
|
resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
994
1058
|
restore_to_time: Optional[pulumi.Input[builtins.str]] = None,
|
|
995
1059
|
restore_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
1060
|
+
secondary_vswitch_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1061
|
+
secondary_zone_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
996
1062
|
security_ips: Optional[pulumi.Input[builtins.str]] = None,
|
|
997
1063
|
source_db_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
998
1064
|
storage_resource: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -1062,6 +1128,8 @@ class DBClusterLakeVersion(pulumi.CustomResource):
|
|
|
1062
1128
|
:param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group.
|
|
1063
1129
|
:param pulumi.Input[builtins.str] restore_to_time: The point in time to which you want to restore data from the backup set.
|
|
1064
1130
|
:param pulumi.Input[builtins.str] restore_type: The method that you want to use to restore data. Valid values:
|
|
1131
|
+
:param pulumi.Input[builtins.str] secondary_vswitch_id: The ID of the secondary zone.
|
|
1132
|
+
:param pulumi.Input[builtins.str] secondary_zone_id: The ID of the secondary vSwitch.
|
|
1065
1133
|
:param pulumi.Input[builtins.str] security_ips: The IP addresses in an IP address whitelist of a cluster. Separate multiple IP addresses with commas (,). You can add a maximum of 500 different IP addresses to a whitelist. The entries in the IP address whitelist must be in one of the following formats:
|
|
1066
1134
|
- IP addresses, such as 10.23.XX.XX.
|
|
1067
1135
|
- CIDR blocks, such as 10.23.xx.xx/24. In this example, 24 indicates that the prefix of each IP address in the IP whitelist is 24 bits in length. You can replace 24 with a value within the range of 1 to 32.
|
|
@@ -1147,6 +1215,8 @@ class DBClusterLakeVersion(pulumi.CustomResource):
|
|
|
1147
1215
|
resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1148
1216
|
restore_to_time: Optional[pulumi.Input[builtins.str]] = None,
|
|
1149
1217
|
restore_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
1218
|
+
secondary_vswitch_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1219
|
+
secondary_zone_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1150
1220
|
security_ips: Optional[pulumi.Input[builtins.str]] = None,
|
|
1151
1221
|
source_db_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1152
1222
|
storage_resource: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -1183,6 +1253,8 @@ class DBClusterLakeVersion(pulumi.CustomResource):
|
|
|
1183
1253
|
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
1184
1254
|
__props__.__dict__["restore_to_time"] = restore_to_time
|
|
1185
1255
|
__props__.__dict__["restore_type"] = restore_type
|
|
1256
|
+
__props__.__dict__["secondary_vswitch_id"] = secondary_vswitch_id
|
|
1257
|
+
__props__.__dict__["secondary_zone_id"] = secondary_zone_id
|
|
1186
1258
|
__props__.__dict__["security_ips"] = security_ips
|
|
1187
1259
|
__props__.__dict__["source_db_cluster_id"] = source_db_cluster_id
|
|
1188
1260
|
__props__.__dict__["storage_resource"] = storage_resource
|
|
@@ -1243,6 +1315,8 @@ class DBClusterLakeVersion(pulumi.CustomResource):
|
|
|
1243
1315
|
resource_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1244
1316
|
restore_to_time: Optional[pulumi.Input[builtins.str]] = None,
|
|
1245
1317
|
restore_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
1318
|
+
secondary_vswitch_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1319
|
+
secondary_zone_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1246
1320
|
security_ips: Optional[pulumi.Input[builtins.str]] = None,
|
|
1247
1321
|
source_db_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
1248
1322
|
status: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -1289,6 +1363,8 @@ class DBClusterLakeVersion(pulumi.CustomResource):
|
|
|
1289
1363
|
:param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group.
|
|
1290
1364
|
:param pulumi.Input[builtins.str] restore_to_time: The point in time to which you want to restore data from the backup set.
|
|
1291
1365
|
:param pulumi.Input[builtins.str] restore_type: The method that you want to use to restore data. Valid values:
|
|
1366
|
+
:param pulumi.Input[builtins.str] secondary_vswitch_id: The ID of the secondary zone.
|
|
1367
|
+
:param pulumi.Input[builtins.str] secondary_zone_id: The ID of the secondary vSwitch.
|
|
1292
1368
|
:param pulumi.Input[builtins.str] security_ips: The IP addresses in an IP address whitelist of a cluster. Separate multiple IP addresses with commas (,). You can add a maximum of 500 different IP addresses to a whitelist. The entries in the IP address whitelist must be in one of the following formats:
|
|
1293
1369
|
- IP addresses, such as 10.23.XX.XX.
|
|
1294
1370
|
- CIDR blocks, such as 10.23.xx.xx/24. In this example, 24 indicates that the prefix of each IP address in the IP whitelist is 24 bits in length. You can replace 24 with a value within the range of 1 to 32.
|
|
@@ -1330,6 +1406,8 @@ class DBClusterLakeVersion(pulumi.CustomResource):
|
|
|
1330
1406
|
__props__.__dict__["resource_group_id"] = resource_group_id
|
|
1331
1407
|
__props__.__dict__["restore_to_time"] = restore_to_time
|
|
1332
1408
|
__props__.__dict__["restore_type"] = restore_type
|
|
1409
|
+
__props__.__dict__["secondary_vswitch_id"] = secondary_vswitch_id
|
|
1410
|
+
__props__.__dict__["secondary_zone_id"] = secondary_zone_id
|
|
1333
1411
|
__props__.__dict__["security_ips"] = security_ips
|
|
1334
1412
|
__props__.__dict__["source_db_cluster_id"] = source_db_cluster_id
|
|
1335
1413
|
__props__.__dict__["status"] = status
|
|
@@ -1560,6 +1638,22 @@ class DBClusterLakeVersion(pulumi.CustomResource):
|
|
|
1560
1638
|
"""
|
|
1561
1639
|
return pulumi.get(self, "restore_type")
|
|
1562
1640
|
|
|
1641
|
+
@property
|
|
1642
|
+
@pulumi.getter(name="secondaryVswitchId")
|
|
1643
|
+
def secondary_vswitch_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1644
|
+
"""
|
|
1645
|
+
The ID of the secondary zone.
|
|
1646
|
+
"""
|
|
1647
|
+
return pulumi.get(self, "secondary_vswitch_id")
|
|
1648
|
+
|
|
1649
|
+
@property
|
|
1650
|
+
@pulumi.getter(name="secondaryZoneId")
|
|
1651
|
+
def secondary_zone_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1652
|
+
"""
|
|
1653
|
+
The ID of the secondary vSwitch.
|
|
1654
|
+
"""
|
|
1655
|
+
return pulumi.get(self, "secondary_zone_id")
|
|
1656
|
+
|
|
1563
1657
|
@property
|
|
1564
1658
|
@pulumi.getter(name="securityIps")
|
|
1565
1659
|
def security_ips(self) -> pulumi.Output[builtins.str]:
|
pulumi_alicloud/alb/_inputs.py
CHANGED
|
@@ -3876,8 +3876,9 @@ if not MYPY:
|
|
|
3876
3876
|
"""
|
|
3877
3877
|
weight: NotRequired[pulumi.Input[builtins.int]]
|
|
3878
3878
|
"""
|
|
3879
|
-
The weight of the backend server. Valid values: `0` to `100`. Default value: `
|
|
3879
|
+
The weight of the backend server. Valid values: `0` to `100`. Default value: `0`. If the value is set to `0`, no requests are forwarded to the server. You can specify at most 200 servers in each call.
|
|
3880
3880
|
|
|
3881
|
+
> **NOTE:** Default value: `0`. We strongly recommend specifying this parameter.
|
|
3881
3882
|
> **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
|
|
3882
3883
|
"""
|
|
3883
3884
|
elif False:
|
|
@@ -3920,8 +3921,9 @@ class ServerGroupServerArgs:
|
|
|
3920
3921
|
|
|
3921
3922
|
> **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
|
|
3922
3923
|
:param pulumi.Input[builtins.str] status: The status of the resource
|
|
3923
|
-
:param pulumi.Input[builtins.int] weight: The weight of the backend server. Valid values: `0` to `100`. Default value: `
|
|
3924
|
+
:param pulumi.Input[builtins.int] weight: The weight of the backend server. Valid values: `0` to `100`. Default value: `0`. If the value is set to `0`, no requests are forwarded to the server. You can specify at most 200 servers in each call.
|
|
3924
3925
|
|
|
3926
|
+
> **NOTE:** Default value: `0`. We strongly recommend specifying this parameter.
|
|
3925
3927
|
> **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
|
|
3926
3928
|
"""
|
|
3927
3929
|
pulumi.set(__self__, "server_id", server_id)
|
|
@@ -4057,8 +4059,9 @@ class ServerGroupServerArgs:
|
|
|
4057
4059
|
@pulumi.getter
|
|
4058
4060
|
def weight(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
4059
4061
|
"""
|
|
4060
|
-
The weight of the backend server. Valid values: `0` to `100`. Default value: `
|
|
4062
|
+
The weight of the backend server. Valid values: `0` to `100`. Default value: `0`. If the value is set to `0`, no requests are forwarded to the server. You can specify at most 200 servers in each call.
|
|
4061
4063
|
|
|
4064
|
+
> **NOTE:** Default value: `0`. We strongly recommend specifying this parameter.
|
|
4062
4065
|
> **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
|
|
4063
4066
|
"""
|
|
4064
4067
|
return pulumi.get(self, "weight")
|
pulumi_alicloud/alb/outputs.py
CHANGED
|
@@ -3065,8 +3065,9 @@ class ServerGroupServer(dict):
|
|
|
3065
3065
|
|
|
3066
3066
|
> **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
|
|
3067
3067
|
:param builtins.str status: The status of the resource
|
|
3068
|
-
:param builtins.int weight: The weight of the backend server. Valid values: `0` to `100`. Default value: `
|
|
3068
|
+
:param builtins.int weight: The weight of the backend server. Valid values: `0` to `100`. Default value: `0`. If the value is set to `0`, no requests are forwarded to the server. You can specify at most 200 servers in each call.
|
|
3069
3069
|
|
|
3070
|
+
> **NOTE:** Default value: `0`. We strongly recommend specifying this parameter.
|
|
3070
3071
|
> **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
|
|
3071
3072
|
"""
|
|
3072
3073
|
pulumi.set(__self__, "server_id", server_id)
|
|
@@ -3170,8 +3171,9 @@ class ServerGroupServer(dict):
|
|
|
3170
3171
|
@pulumi.getter
|
|
3171
3172
|
def weight(self) -> Optional[builtins.int]:
|
|
3172
3173
|
"""
|
|
3173
|
-
The weight of the backend server. Valid values: `0` to `100`. Default value: `
|
|
3174
|
+
The weight of the backend server. Valid values: `0` to `100`. Default value: `0`. If the value is set to `0`, no requests are forwarded to the server. You can specify at most 200 servers in each call.
|
|
3174
3175
|
|
|
3176
|
+
> **NOTE:** Default value: `0`. We strongly recommend specifying this parameter.
|
|
3175
3177
|
> **NOTE:** You do not need to set this parameter if you set `ServerType` to `Fc`.
|
|
3176
3178
|
"""
|
|
3177
3179
|
return pulumi.get(self, "weight")
|
|
@@ -175,7 +175,7 @@ class Environment(pulumi.CustomResource):
|
|
|
175
175
|
"""
|
|
176
176
|
Provides a APIG Environment resource.
|
|
177
177
|
|
|
178
|
-
For information about APIG Environment and how to use it, see [What is Environment](https://
|
|
178
|
+
For information about APIG Environment and how to use it, see [What is Environment](https://next.api.aliyun.com/api/APIG/2024-03-27/CreateEnvironment).
|
|
179
179
|
|
|
180
180
|
> **NOTE:** Available since v1.240.0.
|
|
181
181
|
|
|
@@ -203,7 +203,7 @@ class Environment(pulumi.CustomResource):
|
|
|
203
203
|
"""
|
|
204
204
|
Provides a APIG Environment resource.
|
|
205
205
|
|
|
206
|
-
For information about APIG Environment and how to use it, see [What is Environment](https://
|
|
206
|
+
For information about APIG Environment and how to use it, see [What is Environment](https://next.api.aliyun.com/api/APIG/2024-03-27/CreateEnvironment).
|
|
207
207
|
|
|
208
208
|
> **NOTE:** Available since v1.240.0.
|
|
209
209
|
|
pulumi_alicloud/apig/http_api.py
CHANGED
|
@@ -241,7 +241,7 @@ class HttpApi(pulumi.CustomResource):
|
|
|
241
241
|
"""
|
|
242
242
|
Provides a APIG Http Api resource.
|
|
243
243
|
|
|
244
|
-
For information about APIG Http Api and how to use it, see [What is Http Api](https://
|
|
244
|
+
For information about APIG Http Api and how to use it, see [What is Http Api](https://next.api.aliyun.com/api/APIG/2024-03-27/CreateHttpApi).
|
|
245
245
|
|
|
246
246
|
> **NOTE:** Available since v1.240.0.
|
|
247
247
|
|
|
@@ -298,7 +298,7 @@ class HttpApi(pulumi.CustomResource):
|
|
|
298
298
|
"""
|
|
299
299
|
Provides a APIG Http Api resource.
|
|
300
300
|
|
|
301
|
-
For information about APIG Http Api and how to use it, see [What is Http Api](https://
|
|
301
|
+
For information about APIG Http Api and how to use it, see [What is Http Api](https://next.api.aliyun.com/api/APIG/2024-03-27/CreateHttpApi).
|
|
302
302
|
|
|
303
303
|
> **NOTE:** Available since v1.240.0.
|
|
304
304
|
|
|
@@ -41,7 +41,9 @@ class GrafanaWorkspaceArgs:
|
|
|
41
41
|
GrafanaWorkspaceEdition is personal_edition. This parameter is invalid. Default value: 1.
|
|
42
42
|
The value of GrafanaWorkspaceEdition is experts_edition. The values are respectively 10, 30, and 50. The default value is 10.
|
|
43
43
|
The value of GrafanaWorkspaceEdition is advanced_edition. This parameter is invalid. The default value is 100.
|
|
44
|
-
:param pulumi.Input[builtins.str] aliyun_lang: Language environment (if not filled in, default is zh):
|
|
44
|
+
:param pulumi.Input[builtins.str] aliyun_lang: Language environment (if not filled in, default is zh):
|
|
45
|
+
- zh
|
|
46
|
+
- en
|
|
45
47
|
:param pulumi.Input[builtins.bool] auto_renew: Whether to automatically renew. Value range:
|
|
46
48
|
- true: Automatic renewal. Default value: true.
|
|
47
49
|
- false: Do not renew automatically.
|
|
@@ -55,7 +57,11 @@ class GrafanaWorkspaceArgs:
|
|
|
55
57
|
- PricingCycle is Month, indicating monthly payment. The value range is 1 to 9.
|
|
56
58
|
- PricingCycle is set to Year, indicating annual payment. The value range is 1 to 3. Default value: 1.
|
|
57
59
|
:param pulumi.Input[builtins.str] grafana_version: Grafana version
|
|
58
|
-
:param pulumi.Input[builtins.str] grafana_workspace_edition:
|
|
60
|
+
:param pulumi.Input[builtins.str] grafana_workspace_edition: The edition. **Valid values:**
|
|
61
|
+
- standard: `Beta Edition(For internal testing only) `
|
|
62
|
+
- personal_edition: Developer Edition
|
|
63
|
+
- experts_edition: Pro Edition
|
|
64
|
+
- advanced_edition: Advanced Edition
|
|
59
65
|
:param pulumi.Input[builtins.str] password: The password of the instance. It is 8 to 30 characters in length and must contain three types of characters: uppercase and lowercase letters, numbers, and special symbols. Special symbols can be:()'~! @#$%^& *-_+ =
|
|
60
66
|
:param pulumi.Input[builtins.str] pricing_cycle: The billing cycle of the package year and Month. Value: Month (default): purchase by Month. Year: Purchased by Year.
|
|
61
67
|
:param pulumi.Input[builtins.str] resource_group_id: The ID of the resource group
|
|
@@ -119,7 +125,9 @@ class GrafanaWorkspaceArgs:
|
|
|
119
125
|
@pulumi.getter(name="aliyunLang")
|
|
120
126
|
def aliyun_lang(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
121
127
|
"""
|
|
122
|
-
Language environment (if not filled in, default is zh):
|
|
128
|
+
Language environment (if not filled in, default is zh):
|
|
129
|
+
- zh
|
|
130
|
+
- en
|
|
123
131
|
"""
|
|
124
132
|
return pulumi.get(self, "aliyun_lang")
|
|
125
133
|
|
|
@@ -199,7 +207,11 @@ class GrafanaWorkspaceArgs:
|
|
|
199
207
|
@pulumi.getter(name="grafanaWorkspaceEdition")
|
|
200
208
|
def grafana_workspace_edition(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
201
209
|
"""
|
|
202
|
-
|
|
210
|
+
The edition. **Valid values:**
|
|
211
|
+
- standard: `Beta Edition(For internal testing only) `
|
|
212
|
+
- personal_edition: Developer Edition
|
|
213
|
+
- experts_edition: Pro Edition
|
|
214
|
+
- advanced_edition: Advanced Edition
|
|
203
215
|
"""
|
|
204
216
|
return pulumi.get(self, "grafana_workspace_edition")
|
|
205
217
|
|
|
@@ -282,7 +294,9 @@ class _GrafanaWorkspaceState:
|
|
|
282
294
|
GrafanaWorkspaceEdition is personal_edition. This parameter is invalid. Default value: 1.
|
|
283
295
|
The value of GrafanaWorkspaceEdition is experts_edition. The values are respectively 10, 30, and 50. The default value is 10.
|
|
284
296
|
The value of GrafanaWorkspaceEdition is advanced_edition. This parameter is invalid. The default value is 100.
|
|
285
|
-
:param pulumi.Input[builtins.str] aliyun_lang: Language environment (if not filled in, default is zh):
|
|
297
|
+
:param pulumi.Input[builtins.str] aliyun_lang: Language environment (if not filled in, default is zh):
|
|
298
|
+
- zh
|
|
299
|
+
- en
|
|
286
300
|
:param pulumi.Input[builtins.bool] auto_renew: Whether to automatically renew. Value range:
|
|
287
301
|
- true: Automatic renewal. Default value: true.
|
|
288
302
|
- false: Do not renew automatically.
|
|
@@ -297,7 +311,11 @@ class _GrafanaWorkspaceState:
|
|
|
297
311
|
- PricingCycle is Month, indicating monthly payment. The value range is 1 to 9.
|
|
298
312
|
- PricingCycle is set to Year, indicating annual payment. The value range is 1 to 3. Default value: 1.
|
|
299
313
|
:param pulumi.Input[builtins.str] grafana_version: Grafana version
|
|
300
|
-
:param pulumi.Input[builtins.str] grafana_workspace_edition:
|
|
314
|
+
:param pulumi.Input[builtins.str] grafana_workspace_edition: The edition. **Valid values:**
|
|
315
|
+
- standard: `Beta Edition(For internal testing only) `
|
|
316
|
+
- personal_edition: Developer Edition
|
|
317
|
+
- experts_edition: Pro Edition
|
|
318
|
+
- advanced_edition: Advanced Edition
|
|
301
319
|
:param pulumi.Input[builtins.str] grafana_workspace_name: The name of the resource
|
|
302
320
|
:param pulumi.Input[builtins.str] password: The password of the instance. It is 8 to 30 characters in length and must contain three types of characters: uppercase and lowercase letters, numbers, and special symbols. Special symbols can be:()'~! @#$%^& *-_+ =
|
|
303
321
|
:param pulumi.Input[builtins.str] pricing_cycle: The billing cycle of the package year and Month. Value: Month (default): purchase by Month. Year: Purchased by Year.
|
|
@@ -359,7 +377,9 @@ class _GrafanaWorkspaceState:
|
|
|
359
377
|
@pulumi.getter(name="aliyunLang")
|
|
360
378
|
def aliyun_lang(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
361
379
|
"""
|
|
362
|
-
Language environment (if not filled in, default is zh):
|
|
380
|
+
Language environment (if not filled in, default is zh):
|
|
381
|
+
- zh
|
|
382
|
+
- en
|
|
363
383
|
"""
|
|
364
384
|
return pulumi.get(self, "aliyun_lang")
|
|
365
385
|
|
|
@@ -451,7 +471,11 @@ class _GrafanaWorkspaceState:
|
|
|
451
471
|
@pulumi.getter(name="grafanaWorkspaceEdition")
|
|
452
472
|
def grafana_workspace_edition(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
453
473
|
"""
|
|
454
|
-
|
|
474
|
+
The edition. **Valid values:**
|
|
475
|
+
- standard: `Beta Edition(For internal testing only) `
|
|
476
|
+
- personal_edition: Developer Edition
|
|
477
|
+
- experts_edition: Pro Edition
|
|
478
|
+
- advanced_edition: Advanced Edition
|
|
455
479
|
"""
|
|
456
480
|
return pulumi.get(self, "grafana_workspace_edition")
|
|
457
481
|
|
|
@@ -613,7 +637,9 @@ class GrafanaWorkspace(pulumi.CustomResource):
|
|
|
613
637
|
GrafanaWorkspaceEdition is personal_edition. This parameter is invalid. Default value: 1.
|
|
614
638
|
The value of GrafanaWorkspaceEdition is experts_edition. The values are respectively 10, 30, and 50. The default value is 10.
|
|
615
639
|
The value of GrafanaWorkspaceEdition is advanced_edition. This parameter is invalid. The default value is 100.
|
|
616
|
-
:param pulumi.Input[builtins.str] aliyun_lang: Language environment (if not filled in, default is zh):
|
|
640
|
+
:param pulumi.Input[builtins.str] aliyun_lang: Language environment (if not filled in, default is zh):
|
|
641
|
+
- zh
|
|
642
|
+
- en
|
|
617
643
|
:param pulumi.Input[builtins.bool] auto_renew: Whether to automatically renew. Value range:
|
|
618
644
|
- true: Automatic renewal. Default value: true.
|
|
619
645
|
- false: Do not renew automatically.
|
|
@@ -627,7 +653,11 @@ class GrafanaWorkspace(pulumi.CustomResource):
|
|
|
627
653
|
- PricingCycle is Month, indicating monthly payment. The value range is 1 to 9.
|
|
628
654
|
- PricingCycle is set to Year, indicating annual payment. The value range is 1 to 3. Default value: 1.
|
|
629
655
|
:param pulumi.Input[builtins.str] grafana_version: Grafana version
|
|
630
|
-
:param pulumi.Input[builtins.str] grafana_workspace_edition:
|
|
656
|
+
:param pulumi.Input[builtins.str] grafana_workspace_edition: The edition. **Valid values:**
|
|
657
|
+
- standard: `Beta Edition(For internal testing only) `
|
|
658
|
+
- personal_edition: Developer Edition
|
|
659
|
+
- experts_edition: Pro Edition
|
|
660
|
+
- advanced_edition: Advanced Edition
|
|
631
661
|
:param pulumi.Input[builtins.str] grafana_workspace_name: The name of the resource
|
|
632
662
|
:param pulumi.Input[builtins.str] password: The password of the instance. It is 8 to 30 characters in length and must contain three types of characters: uppercase and lowercase letters, numbers, and special symbols. Special symbols can be:()'~! @#$%^& *-_+ =
|
|
633
663
|
:param pulumi.Input[builtins.str] pricing_cycle: The billing cycle of the package year and Month. Value: Month (default): purchase by Month. Year: Purchased by Year.
|
|
@@ -773,7 +803,9 @@ class GrafanaWorkspace(pulumi.CustomResource):
|
|
|
773
803
|
GrafanaWorkspaceEdition is personal_edition. This parameter is invalid. Default value: 1.
|
|
774
804
|
The value of GrafanaWorkspaceEdition is experts_edition. The values are respectively 10, 30, and 50. The default value is 10.
|
|
775
805
|
The value of GrafanaWorkspaceEdition is advanced_edition. This parameter is invalid. The default value is 100.
|
|
776
|
-
:param pulumi.Input[builtins.str] aliyun_lang: Language environment (if not filled in, default is zh):
|
|
806
|
+
:param pulumi.Input[builtins.str] aliyun_lang: Language environment (if not filled in, default is zh):
|
|
807
|
+
- zh
|
|
808
|
+
- en
|
|
777
809
|
:param pulumi.Input[builtins.bool] auto_renew: Whether to automatically renew. Value range:
|
|
778
810
|
- true: Automatic renewal. Default value: true.
|
|
779
811
|
- false: Do not renew automatically.
|
|
@@ -788,7 +820,11 @@ class GrafanaWorkspace(pulumi.CustomResource):
|
|
|
788
820
|
- PricingCycle is Month, indicating monthly payment. The value range is 1 to 9.
|
|
789
821
|
- PricingCycle is set to Year, indicating annual payment. The value range is 1 to 3. Default value: 1.
|
|
790
822
|
:param pulumi.Input[builtins.str] grafana_version: Grafana version
|
|
791
|
-
:param pulumi.Input[builtins.str] grafana_workspace_edition:
|
|
823
|
+
:param pulumi.Input[builtins.str] grafana_workspace_edition: The edition. **Valid values:**
|
|
824
|
+
- standard: `Beta Edition(For internal testing only) `
|
|
825
|
+
- personal_edition: Developer Edition
|
|
826
|
+
- experts_edition: Pro Edition
|
|
827
|
+
- advanced_edition: Advanced Edition
|
|
792
828
|
:param pulumi.Input[builtins.str] grafana_workspace_name: The name of the resource
|
|
793
829
|
:param pulumi.Input[builtins.str] password: The password of the instance. It is 8 to 30 characters in length and must contain three types of characters: uppercase and lowercase letters, numbers, and special symbols. Special symbols can be:()'~! @#$%^& *-_+ =
|
|
794
830
|
:param pulumi.Input[builtins.str] pricing_cycle: The billing cycle of the package year and Month. Value: Month (default): purchase by Month. Year: Purchased by Year.
|
|
@@ -835,7 +871,9 @@ class GrafanaWorkspace(pulumi.CustomResource):
|
|
|
835
871
|
@pulumi.getter(name="aliyunLang")
|
|
836
872
|
def aliyun_lang(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
837
873
|
"""
|
|
838
|
-
Language environment (if not filled in, default is zh):
|
|
874
|
+
Language environment (if not filled in, default is zh):
|
|
875
|
+
- zh
|
|
876
|
+
- en
|
|
839
877
|
"""
|
|
840
878
|
return pulumi.get(self, "aliyun_lang")
|
|
841
879
|
|
|
@@ -899,7 +937,11 @@ class GrafanaWorkspace(pulumi.CustomResource):
|
|
|
899
937
|
@pulumi.getter(name="grafanaWorkspaceEdition")
|
|
900
938
|
def grafana_workspace_edition(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
901
939
|
"""
|
|
902
|
-
|
|
940
|
+
The edition. **Valid values:**
|
|
941
|
+
- standard: `Beta Edition(For internal testing only) `
|
|
942
|
+
- personal_edition: Developer Edition
|
|
943
|
+
- experts_edition: Pro Edition
|
|
944
|
+
- advanced_edition: Advanced Edition
|
|
903
945
|
"""
|
|
904
946
|
return pulumi.get(self, "grafana_workspace_edition")
|
|
905
947
|
|
|
@@ -174,9 +174,9 @@ class InstanceMember(pulumi.CustomResource):
|
|
|
174
174
|
"""
|
|
175
175
|
Provides a Cloud Firewall Instance Member resource.
|
|
176
176
|
|
|
177
|
-
For information about Cloud Firewall Instance Member and how to use it, see [What is Instance Member](https://www.alibabacloud.com/help/en/
|
|
177
|
+
For information about Cloud Firewall Instance Member and how to use it, see [What is Instance Member](https://www.alibabacloud.com/help/en/cloud-firewall/cloudfirewall/developer-reference/api-cloudfw-2017-12-07-addinstancemembers).
|
|
178
178
|
|
|
179
|
-
> **NOTE:** Available
|
|
179
|
+
> **NOTE:** Available since v1.194.0.
|
|
180
180
|
|
|
181
181
|
## Example Usage
|
|
182
182
|
|
|
@@ -222,9 +222,9 @@ class InstanceMember(pulumi.CustomResource):
|
|
|
222
222
|
"""
|
|
223
223
|
Provides a Cloud Firewall Instance Member resource.
|
|
224
224
|
|
|
225
|
-
For information about Cloud Firewall Instance Member and how to use it, see [What is Instance Member](https://www.alibabacloud.com/help/en/
|
|
225
|
+
For information about Cloud Firewall Instance Member and how to use it, see [What is Instance Member](https://www.alibabacloud.com/help/en/cloud-firewall/cloudfirewall/developer-reference/api-cloudfw-2017-12-07-addinstancemembers).
|
|
226
226
|
|
|
227
|
-
> **NOTE:** Available
|
|
227
|
+
> **NOTE:** Available since v1.194.0.
|
|
228
228
|
|
|
229
229
|
## Example Usage
|
|
230
230
|
|