pulumi-alicloud 3.62.0a1725600316__py3-none-any.whl → 3.62.0a1725686385__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/cs/kubernetes.py +7 -7
- pulumi_alicloud/cs/kubernetes_addon.py +4 -8
- pulumi_alicloud/cs/managed_kubernetes.py +7 -7
- pulumi_alicloud/cs/serverless_kubernetes.py +7 -7
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/get_instance_class_infos.py +20 -0
- pulumi_alicloud/rds/get_instance_classes.py +22 -0
- pulumi_alicloud/rds/get_instance_engines.py +22 -0
- {pulumi_alicloud-3.62.0a1725600316.dist-info → pulumi_alicloud-3.62.0a1725686385.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.62.0a1725600316.dist-info → pulumi_alicloud-3.62.0a1725686385.dist-info}/RECORD +12 -12
- {pulumi_alicloud-3.62.0a1725600316.dist-info → pulumi_alicloud-3.62.0a1725686385.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.62.0a1725600316.dist-info → pulumi_alicloud-3.62.0a1725686385.dist-info}/top_level.txt +0 -0
pulumi_alicloud/cs/kubernetes.py
CHANGED
|
@@ -71,7 +71,7 @@ class KubernetesArgs:
|
|
|
71
71
|
The set of arguments for constructing a Kubernetes resource.
|
|
72
72
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] master_instance_types: The instance type of master node. Specify one type for single AZ Cluster, three types for MultiAZ Cluster.
|
|
73
73
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] master_vswitch_ids: The vswitches used by master, you can specific 3 or 5 vswitches because of the amount of masters. Detailed below.
|
|
74
|
-
:param pulumi.Input[Sequence[pulumi.Input['KubernetesAddonArgs']]] addons: The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
74
|
+
:param pulumi.Input[Sequence[pulumi.Input['KubernetesAddonArgs']]] addons: The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
75
75
|
|
|
76
76
|
*Network params*
|
|
77
77
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] api_audiences: A list of API audiences for [Service Account Token Volume Projection](https://www.alibabacloud.com/help/doc-detail/160384.htm). Set this to `["https://kubernetes.default.svc"]` if you want to enable the Token Volume Projection feature requires specifying `service_account_issuer` as well. From cluster version 1.22+, Service Account Token Volume Projection will be enabled by default.
|
|
@@ -262,7 +262,7 @@ class KubernetesArgs:
|
|
|
262
262
|
@pulumi.getter
|
|
263
263
|
def addons(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesAddonArgs']]]]:
|
|
264
264
|
"""
|
|
265
|
-
The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
265
|
+
The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
266
266
|
|
|
267
267
|
*Network params*
|
|
268
268
|
"""
|
|
@@ -918,7 +918,7 @@ class _KubernetesState:
|
|
|
918
918
|
worker_ram_role_name: Optional[pulumi.Input[str]] = None):
|
|
919
919
|
"""
|
|
920
920
|
Input properties used for looking up and filtering Kubernetes resources.
|
|
921
|
-
:param pulumi.Input[Sequence[pulumi.Input['KubernetesAddonArgs']]] addons: The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
921
|
+
:param pulumi.Input[Sequence[pulumi.Input['KubernetesAddonArgs']]] addons: The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
922
922
|
|
|
923
923
|
*Network params*
|
|
924
924
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] api_audiences: A list of API audiences for [Service Account Token Volume Projection](https://www.alibabacloud.com/help/doc-detail/160384.htm). Set this to `["https://kubernetes.default.svc"]` if you want to enable the Token Volume Projection feature requires specifying `service_account_issuer` as well. From cluster version 1.22+, Service Account Token Volume Projection will be enabled by default.
|
|
@@ -1116,7 +1116,7 @@ class _KubernetesState:
|
|
|
1116
1116
|
@pulumi.getter
|
|
1117
1117
|
def addons(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesAddonArgs']]]]:
|
|
1118
1118
|
"""
|
|
1119
|
-
The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
1119
|
+
The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
1120
1120
|
|
|
1121
1121
|
*Network params*
|
|
1122
1122
|
"""
|
|
@@ -1941,7 +1941,7 @@ class Kubernetes(pulumi.CustomResource):
|
|
|
1941
1941
|
|
|
1942
1942
|
:param str resource_name: The name of the resource.
|
|
1943
1943
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1944
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesAddonArgs', 'KubernetesAddonArgsDict']]]] addons: The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
1944
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesAddonArgs', 'KubernetesAddonArgsDict']]]] addons: The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
1945
1945
|
|
|
1946
1946
|
*Network params*
|
|
1947
1947
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] api_audiences: A list of API audiences for [Service Account Token Volume Projection](https://www.alibabacloud.com/help/doc-detail/160384.htm). Set this to `["https://kubernetes.default.svc"]` if you want to enable the Token Volume Projection feature requires specifying `service_account_issuer` as well. From cluster version 1.22+, Service Account Token Volume Projection will be enabled by default.
|
|
@@ -2269,7 +2269,7 @@ class Kubernetes(pulumi.CustomResource):
|
|
|
2269
2269
|
:param str resource_name: The unique name of the resulting resource.
|
|
2270
2270
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
2271
2271
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
2272
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesAddonArgs', 'KubernetesAddonArgsDict']]]] addons: The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
2272
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesAddonArgs', 'KubernetesAddonArgsDict']]]] addons: The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
2273
2273
|
|
|
2274
2274
|
*Network params*
|
|
2275
2275
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] api_audiences: A list of API audiences for [Service Account Token Volume Projection](https://www.alibabacloud.com/help/doc-detail/160384.htm). Set this to `["https://kubernetes.default.svc"]` if you want to enable the Token Volume Projection feature requires specifying `service_account_issuer` as well. From cluster version 1.22+, Service Account Token Volume Projection will be enabled by default.
|
|
@@ -2409,7 +2409,7 @@ class Kubernetes(pulumi.CustomResource):
|
|
|
2409
2409
|
@pulumi.getter
|
|
2410
2410
|
def addons(self) -> pulumi.Output[Optional[Sequence['outputs.KubernetesAddon']]]:
|
|
2411
2411
|
"""
|
|
2412
|
-
The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
2412
|
+
The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
2413
2413
|
|
|
2414
2414
|
*Network params*
|
|
2415
2415
|
"""
|
|
@@ -246,11 +246,9 @@ class KubernetesAddon(pulumi.CustomResource):
|
|
|
246
246
|
version: Optional[pulumi.Input[str]] = None,
|
|
247
247
|
__props__=None):
|
|
248
248
|
"""
|
|
249
|
-
|
|
249
|
+
## Example Usage
|
|
250
250
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
> **NOTE:** From version 1.166.0, support specifying addon customizable configuration.
|
|
251
|
+
Basic Usage
|
|
254
252
|
|
|
255
253
|
## Import
|
|
256
254
|
|
|
@@ -275,11 +273,9 @@ class KubernetesAddon(pulumi.CustomResource):
|
|
|
275
273
|
args: KubernetesAddonInitArgs,
|
|
276
274
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
277
275
|
"""
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
> **NOTE:** Available since v1.150.0.
|
|
276
|
+
## Example Usage
|
|
281
277
|
|
|
282
|
-
|
|
278
|
+
Basic Usage
|
|
283
279
|
|
|
284
280
|
## Import
|
|
285
281
|
|
|
@@ -55,7 +55,7 @@ class ManagedKubernetesArgs:
|
|
|
55
55
|
"""
|
|
56
56
|
The set of arguments for constructing a ManagedKubernetes resource.
|
|
57
57
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] worker_vswitch_ids: The vswitches used by control plane. See `worker_vswitch_ids` below.
|
|
58
|
-
:param pulumi.Input[Sequence[pulumi.Input['ManagedKubernetesAddonArgs']]] addons: The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
58
|
+
:param pulumi.Input[Sequence[pulumi.Input['ManagedKubernetesAddonArgs']]] addons: The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
59
59
|
|
|
60
60
|
*Network params*
|
|
61
61
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] api_audiences: A list of API audiences for [Service Account Token Volume Projection](https://www.alibabacloud.com/help/doc-detail/160384.htm). Set this to `["https://kubernetes.default.svc"]` if you want to enable the Token Volume Projection feature (requires specifying `service_account_issuer` as well. From cluster version 1.22, Service Account Token Volume Projection will be enabled by default.
|
|
@@ -189,7 +189,7 @@ class ManagedKubernetesArgs:
|
|
|
189
189
|
@pulumi.getter
|
|
190
190
|
def addons(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagedKubernetesAddonArgs']]]]:
|
|
191
191
|
"""
|
|
192
|
-
The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
192
|
+
The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
193
193
|
|
|
194
194
|
*Network params*
|
|
195
195
|
"""
|
|
@@ -662,7 +662,7 @@ class _ManagedKubernetesState:
|
|
|
662
662
|
worker_vswitch_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
663
663
|
"""
|
|
664
664
|
Input properties used for looking up and filtering ManagedKubernetes resources.
|
|
665
|
-
:param pulumi.Input[Sequence[pulumi.Input['ManagedKubernetesAddonArgs']]] addons: The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
665
|
+
:param pulumi.Input[Sequence[pulumi.Input['ManagedKubernetesAddonArgs']]] addons: The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
666
666
|
|
|
667
667
|
*Network params*
|
|
668
668
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] api_audiences: A list of API audiences for [Service Account Token Volume Projection](https://www.alibabacloud.com/help/doc-detail/160384.htm). Set this to `["https://kubernetes.default.svc"]` if you want to enable the Token Volume Projection feature (requires specifying `service_account_issuer` as well. From cluster version 1.22, Service Account Token Volume Projection will be enabled by default.
|
|
@@ -813,7 +813,7 @@ class _ManagedKubernetesState:
|
|
|
813
813
|
@pulumi.getter
|
|
814
814
|
def addons(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagedKubernetesAddonArgs']]]]:
|
|
815
815
|
"""
|
|
816
|
-
The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
816
|
+
The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
817
817
|
|
|
818
818
|
*Network params*
|
|
819
819
|
"""
|
|
@@ -1441,7 +1441,7 @@ class ManagedKubernetes(pulumi.CustomResource):
|
|
|
1441
1441
|
|
|
1442
1442
|
:param str resource_name: The name of the resource.
|
|
1443
1443
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1444
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ManagedKubernetesAddonArgs', 'ManagedKubernetesAddonArgsDict']]]] addons: The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
1444
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ManagedKubernetesAddonArgs', 'ManagedKubernetesAddonArgsDict']]]] addons: The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
1445
1445
|
|
|
1446
1446
|
*Network params*
|
|
1447
1447
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] api_audiences: A list of API audiences for [Service Account Token Volume Projection](https://www.alibabacloud.com/help/doc-detail/160384.htm). Set this to `["https://kubernetes.default.svc"]` if you want to enable the Token Volume Projection feature (requires specifying `service_account_issuer` as well. From cluster version 1.22, Service Account Token Volume Projection will be enabled by default.
|
|
@@ -1704,7 +1704,7 @@ class ManagedKubernetes(pulumi.CustomResource):
|
|
|
1704
1704
|
:param str resource_name: The unique name of the resulting resource.
|
|
1705
1705
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1706
1706
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1707
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ManagedKubernetesAddonArgs', 'ManagedKubernetesAddonArgsDict']]]] addons: The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
1707
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ManagedKubernetesAddonArgs', 'ManagedKubernetesAddonArgsDict']]]] addons: The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
1708
1708
|
|
|
1709
1709
|
*Network params*
|
|
1710
1710
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] api_audiences: A list of API audiences for [Service Account Token Volume Projection](https://www.alibabacloud.com/help/doc-detail/160384.htm). Set this to `["https://kubernetes.default.svc"]` if you want to enable the Token Volume Projection feature (requires specifying `service_account_issuer` as well. From cluster version 1.22, Service Account Token Volume Projection will be enabled by default.
|
|
@@ -1815,7 +1815,7 @@ class ManagedKubernetes(pulumi.CustomResource):
|
|
|
1815
1815
|
@pulumi.getter
|
|
1816
1816
|
def addons(self) -> pulumi.Output[Optional[Sequence['outputs.ManagedKubernetesAddon']]]:
|
|
1817
1817
|
"""
|
|
1818
|
-
The addon you want to install in cluster. See `addons` to manage addons if cluster is created.
|
|
1818
|
+
The addon you want to install in cluster. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
1819
1819
|
|
|
1820
1820
|
*Network params*
|
|
1821
1821
|
"""
|
|
@@ -47,7 +47,7 @@ class ServerlessKubernetesArgs:
|
|
|
47
47
|
zone_id: Optional[pulumi.Input[str]] = None):
|
|
48
48
|
"""
|
|
49
49
|
The set of arguments for constructing a ServerlessKubernetes resource.
|
|
50
|
-
:param pulumi.Input[Sequence[pulumi.Input['ServerlessKubernetesAddonArgs']]] addons: You can specific network plugin, log component, ingress component and so on. See `addons` to manage addons if cluster is created.
|
|
50
|
+
:param pulumi.Input[Sequence[pulumi.Input['ServerlessKubernetesAddonArgs']]] addons: You can specific network plugin, log component, ingress component and so on. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
51
51
|
:param pulumi.Input[str] client_cert: The path of client certificate, like `~/.kube/client-cert.pem`.
|
|
52
52
|
:param pulumi.Input[str] client_key: The path of client key, like `~/.kube/client-key.pem`.
|
|
53
53
|
:param pulumi.Input[str] cluster_ca_cert: The path of cluster ca certificate, like `~/.kube/cluster-ca-cert.pem`
|
|
@@ -160,7 +160,7 @@ class ServerlessKubernetesArgs:
|
|
|
160
160
|
@pulumi.getter
|
|
161
161
|
def addons(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServerlessKubernetesAddonArgs']]]]:
|
|
162
162
|
"""
|
|
163
|
-
You can specific network plugin, log component, ingress component and so on. See `addons` to manage addons if cluster is created.
|
|
163
|
+
You can specific network plugin, log component, ingress component and so on. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
164
164
|
"""
|
|
165
165
|
return pulumi.get(self, "addons")
|
|
166
166
|
|
|
@@ -546,7 +546,7 @@ class _ServerlessKubernetesState:
|
|
|
546
546
|
zone_id: Optional[pulumi.Input[str]] = None):
|
|
547
547
|
"""
|
|
548
548
|
Input properties used for looking up and filtering ServerlessKubernetes resources.
|
|
549
|
-
:param pulumi.Input[Sequence[pulumi.Input['ServerlessKubernetesAddonArgs']]] addons: You can specific network plugin, log component, ingress component and so on. See `addons` to manage addons if cluster is created.
|
|
549
|
+
:param pulumi.Input[Sequence[pulumi.Input['ServerlessKubernetesAddonArgs']]] addons: You can specific network plugin, log component, ingress component and so on. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
550
550
|
:param pulumi.Input[str] client_cert: The path of client certificate, like `~/.kube/client-cert.pem`.
|
|
551
551
|
:param pulumi.Input[str] client_key: The path of client key, like `~/.kube/client-key.pem`.
|
|
552
552
|
:param pulumi.Input[str] cluster_ca_cert: The path of cluster ca certificate, like `~/.kube/cluster-ca-cert.pem`
|
|
@@ -662,7 +662,7 @@ class _ServerlessKubernetesState:
|
|
|
662
662
|
@pulumi.getter
|
|
663
663
|
def addons(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServerlessKubernetesAddonArgs']]]]:
|
|
664
664
|
"""
|
|
665
|
-
You can specific network plugin, log component, ingress component and so on. See `addons` to manage addons if cluster is created.
|
|
665
|
+
You can specific network plugin, log component, ingress component and so on. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
666
666
|
"""
|
|
667
667
|
return pulumi.get(self, "addons")
|
|
668
668
|
|
|
@@ -1147,7 +1147,7 @@ class ServerlessKubernetes(pulumi.CustomResource):
|
|
|
1147
1147
|
|
|
1148
1148
|
:param str resource_name: The name of the resource.
|
|
1149
1149
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1150
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerlessKubernetesAddonArgs', 'ServerlessKubernetesAddonArgsDict']]]] addons: You can specific network plugin, log component, ingress component and so on. See `addons` to manage addons if cluster is created.
|
|
1150
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerlessKubernetesAddonArgs', 'ServerlessKubernetesAddonArgsDict']]]] addons: You can specific network plugin, log component, ingress component and so on. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
1151
1151
|
:param pulumi.Input[str] client_cert: The path of client certificate, like `~/.kube/client-cert.pem`.
|
|
1152
1152
|
:param pulumi.Input[str] client_key: The path of client key, like `~/.kube/client-key.pem`.
|
|
1153
1153
|
:param pulumi.Input[str] cluster_ca_cert: The path of cluster ca certificate, like `~/.kube/cluster-ca-cert.pem`
|
|
@@ -1403,7 +1403,7 @@ class ServerlessKubernetes(pulumi.CustomResource):
|
|
|
1403
1403
|
:param str resource_name: The unique name of the resulting resource.
|
|
1404
1404
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1405
1405
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1406
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerlessKubernetesAddonArgs', 'ServerlessKubernetesAddonArgsDict']]]] addons: You can specific network plugin, log component, ingress component and so on. See `addons` to manage addons if cluster is created.
|
|
1406
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ServerlessKubernetesAddonArgs', 'ServerlessKubernetesAddonArgsDict']]]] addons: You can specific network plugin, log component, ingress component and so on. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
1407
1407
|
:param pulumi.Input[str] client_cert: The path of client certificate, like `~/.kube/client-cert.pem`.
|
|
1408
1408
|
:param pulumi.Input[str] client_key: The path of client key, like `~/.kube/client-key.pem`.
|
|
1409
1409
|
:param pulumi.Input[str] cluster_ca_cert: The path of cluster ca certificate, like `~/.kube/cluster-ca-cert.pem`
|
|
@@ -1479,7 +1479,7 @@ class ServerlessKubernetes(pulumi.CustomResource):
|
|
|
1479
1479
|
@pulumi.getter
|
|
1480
1480
|
def addons(self) -> pulumi.Output[Optional[Sequence['outputs.ServerlessKubernetesAddon']]]:
|
|
1481
1481
|
"""
|
|
1482
|
-
You can specific network plugin, log component, ingress component and so on. See `addons` to manage addons if cluster is created.
|
|
1482
|
+
You can specific network plugin, log component, ingress component and so on. See `addons` below. Only works for **Create** Operation, use resource cs_kubernetes_addon to manage addons if cluster is created.
|
|
1483
1483
|
"""
|
|
1484
1484
|
return pulumi.get(self, "addons")
|
|
1485
1485
|
|
|
@@ -119,6 +119,16 @@ def get_instance_class_infos(commodity_code: Optional[str] = None,
|
|
|
119
119
|
|
|
120
120
|
## Example Usage
|
|
121
121
|
|
|
122
|
+
```python
|
|
123
|
+
import pulumi
|
|
124
|
+
import pulumi_alicloud as alicloud
|
|
125
|
+
|
|
126
|
+
resources = alicloud.rds.get_instance_class_infos(commodity_code="bards",
|
|
127
|
+
order_type="BUY",
|
|
128
|
+
output_file="./classes.txt")
|
|
129
|
+
pulumi.export("firstDbInstanceClass", resources.infos[0])
|
|
130
|
+
```
|
|
131
|
+
|
|
122
132
|
|
|
123
133
|
:param str commodity_code: The commodity code of the instance. Valid values:
|
|
124
134
|
* **bards**: The instance is a pay-as-you-go primary instance. This value is available on the China site (aliyun.com).
|
|
@@ -173,6 +183,16 @@ def get_instance_class_infos_output(commodity_code: Optional[pulumi.Input[str]]
|
|
|
173
183
|
|
|
174
184
|
## Example Usage
|
|
175
185
|
|
|
186
|
+
```python
|
|
187
|
+
import pulumi
|
|
188
|
+
import pulumi_alicloud as alicloud
|
|
189
|
+
|
|
190
|
+
resources = alicloud.rds.get_instance_class_infos(commodity_code="bards",
|
|
191
|
+
order_type="BUY",
|
|
192
|
+
output_file="./classes.txt")
|
|
193
|
+
pulumi.export("firstDbInstanceClass", resources.infos[0])
|
|
194
|
+
```
|
|
195
|
+
|
|
176
196
|
|
|
177
197
|
:param str commodity_code: The commodity code of the instance. Valid values:
|
|
178
198
|
* **bards**: The instance is a pay-as-you-go primary instance. This value is available on the China site (aliyun.com).
|
|
@@ -207,6 +207,17 @@ def get_instance_classes(category: Optional[str] = None,
|
|
|
207
207
|
|
|
208
208
|
## Example Usage
|
|
209
209
|
|
|
210
|
+
```python
|
|
211
|
+
import pulumi
|
|
212
|
+
import pulumi_alicloud as alicloud
|
|
213
|
+
|
|
214
|
+
resources = alicloud.rds.get_instance_classes(instance_charge_type="PostPaid",
|
|
215
|
+
engine="MySQL",
|
|
216
|
+
engine_version="5.6",
|
|
217
|
+
output_file="./classes.txt")
|
|
218
|
+
pulumi.export("firstDbInstanceClass", resources.instance_classes[0].instance_class)
|
|
219
|
+
```
|
|
220
|
+
|
|
210
221
|
|
|
211
222
|
:param str category: DB Instance category. the value like [`Basic`, `HighAvailability`, `Finance`, `AlwaysOn`, `serverless_basic`, `serverless_standard`, `serverless_ha`, `cluster`], [detail info](https://www.alibabacloud.com/help/doc-detail/69795.htm).
|
|
212
223
|
:param str commodity_code: The commodity code of the instance. Valid values:
|
|
@@ -293,6 +304,17 @@ def get_instance_classes_output(category: Optional[pulumi.Input[Optional[str]]]
|
|
|
293
304
|
|
|
294
305
|
## Example Usage
|
|
295
306
|
|
|
307
|
+
```python
|
|
308
|
+
import pulumi
|
|
309
|
+
import pulumi_alicloud as alicloud
|
|
310
|
+
|
|
311
|
+
resources = alicloud.rds.get_instance_classes(instance_charge_type="PostPaid",
|
|
312
|
+
engine="MySQL",
|
|
313
|
+
engine_version="5.6",
|
|
314
|
+
output_file="./classes.txt")
|
|
315
|
+
pulumi.export("firstDbInstanceClass", resources.instance_classes[0].instance_class)
|
|
316
|
+
```
|
|
317
|
+
|
|
296
318
|
|
|
297
319
|
:param str category: DB Instance category. the value like [`Basic`, `HighAvailability`, `Finance`, `AlwaysOn`, `serverless_basic`, `serverless_standard`, `serverless_ha`, `cluster`], [detail info](https://www.alibabacloud.com/help/doc-detail/69795.htm).
|
|
298
320
|
:param str commodity_code: The commodity code of the instance. Valid values:
|
|
@@ -166,6 +166,17 @@ def get_instance_engines(category: Optional[str] = None,
|
|
|
166
166
|
|
|
167
167
|
## Example Usage
|
|
168
168
|
|
|
169
|
+
```python
|
|
170
|
+
import pulumi
|
|
171
|
+
import pulumi_alicloud as alicloud
|
|
172
|
+
|
|
173
|
+
resources = alicloud.rds.get_instance_engines(instance_charge_type="PostPaid",
|
|
174
|
+
engine="MySQL",
|
|
175
|
+
engine_version="5.6",
|
|
176
|
+
output_file="./engines.txt")
|
|
177
|
+
pulumi.export("firstDbCategory", resources.instance_engines[0].category)
|
|
178
|
+
```
|
|
179
|
+
|
|
169
180
|
|
|
170
181
|
:param str category: DB Instance category. the value like [`Basic`, `HighAvailability`, `Finance`, `AlwaysOn`], [detail info](https://www.alibabacloud.com/help/doc-detail/69795.htm).
|
|
171
182
|
:param str db_instance_storage_type: The DB instance storage space required by the user. Valid values: "cloud_ssd", "local_ssd", "cloud_essd", "cloud_essd2", "cloud_essd3".
|
|
@@ -219,6 +230,17 @@ def get_instance_engines_output(category: Optional[pulumi.Input[Optional[str]]]
|
|
|
219
230
|
|
|
220
231
|
## Example Usage
|
|
221
232
|
|
|
233
|
+
```python
|
|
234
|
+
import pulumi
|
|
235
|
+
import pulumi_alicloud as alicloud
|
|
236
|
+
|
|
237
|
+
resources = alicloud.rds.get_instance_engines(instance_charge_type="PostPaid",
|
|
238
|
+
engine="MySQL",
|
|
239
|
+
engine_version="5.6",
|
|
240
|
+
output_file="./engines.txt")
|
|
241
|
+
pulumi.export("firstDbCategory", resources.instance_engines[0].category)
|
|
242
|
+
```
|
|
243
|
+
|
|
222
244
|
|
|
223
245
|
:param str category: DB Instance category. the value like [`Basic`, `HighAvailability`, `Finance`, `AlwaysOn`], [detail info](https://www.alibabacloud.com/help/doc-detail/69795.htm).
|
|
224
246
|
:param str db_instance_storage_type: The DB instance storage space required by the user. Valid values: "cloud_ssd", "local_ssd", "cloud_essd", "cloud_essd2", "cloud_essd3".
|
{pulumi_alicloud-3.62.0a1725600316.dist-info → pulumi_alicloud-3.62.0a1725686385.dist-info}/RECORD
RENAMED
|
@@ -15,7 +15,7 @@ pulumi_alicloud/msc_sub_subscription.py,sha256=oNxqSPb0yCHcXQAvFyk3W_7LcZW-qzcE6
|
|
|
15
15
|
pulumi_alicloud/msc_sub_webhook.py,sha256=Te0q3CzX4VM6ZN0tlGRW0AQILD_GC4IqZsnX4OSgqkQ,9303
|
|
16
16
|
pulumi_alicloud/outputs.py,sha256=Y4GI2tDCrUQxSoIMrqHUOIF3YROUqhnuptvQ5QN40Ws,17778
|
|
17
17
|
pulumi_alicloud/provider.py,sha256=8sN7WTEGe_IBVuR0p0zE0UFOYdMTarReTcPefZd10Mg,36924
|
|
18
|
-
pulumi_alicloud/pulumi-plugin.json,sha256=
|
|
18
|
+
pulumi_alicloud/pulumi-plugin.json,sha256=1brioSLsIAzXcfDXfkQamFjebbr3SiFZwqh7DunvwCY,85
|
|
19
19
|
pulumi_alicloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
20
|
pulumi_alicloud/ackone/__init__.py,sha256=mxlpat-GXfINngjl5TQN27S3HQtTmRaroFpyxP5TgWc,337
|
|
21
21
|
pulumi_alicloud/ackone/_inputs.py,sha256=9ECkCthg-GngG8U_PVmUX8sBmOSJ-JULs_Nnup75WS4,2353
|
|
@@ -509,17 +509,17 @@ pulumi_alicloud/cs/get_registry_enterprise_namespaces.py,sha256=Ay-bsfU7ZevAxLiL
|
|
|
509
509
|
pulumi_alicloud/cs/get_registry_enterprise_repos.py,sha256=N3quDvna69PPvbzgejr9434XSPM_SJVnUaZJLdVBADc,9448
|
|
510
510
|
pulumi_alicloud/cs/get_registry_enterprise_sync_rules.py,sha256=38GmI4ejS1QN6IkTKIzHQFs6JE7yJpRi5BxWApgXISA,10737
|
|
511
511
|
pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py,sha256=_VKLtAkqNL0O8v7i2nZgIAvt9N2rlFuHO4aiIfXM_uA,9171
|
|
512
|
-
pulumi_alicloud/cs/kubernetes.py,sha256=
|
|
513
|
-
pulumi_alicloud/cs/kubernetes_addon.py,sha256=
|
|
512
|
+
pulumi_alicloud/cs/kubernetes.py,sha256=vZtz9qfPkVM4LG0U-MgCOxyUXfcFb2fGurgAjUnjWsg,173854
|
|
513
|
+
pulumi_alicloud/cs/kubernetes_addon.py,sha256=8qAvaHJ_KP1iIPmr-cpRo_CU_-RUsKShQ3yznTYr-so,21982
|
|
514
514
|
pulumi_alicloud/cs/kubernetes_autoscaler.py,sha256=g3h9KjHNQmKmslSlWRodGVzEk4PuIDlKKJBkTXbemNI,18219
|
|
515
515
|
pulumi_alicloud/cs/kubernetes_permission.py,sha256=G05cMvqd8YCoP_rT9iiXwep3q-9iYjPDXDuUIPpGzyU,11903
|
|
516
|
-
pulumi_alicloud/cs/managed_kubernetes.py,sha256=
|
|
516
|
+
pulumi_alicloud/cs/managed_kubernetes.py,sha256=ijv2vJ701GVxgBZ04OVjOd4QgQQWUTd1uushZS5Htzw,132627
|
|
517
517
|
pulumi_alicloud/cs/node_pool.py,sha256=VZjZotxohoY9hSfzY0_QAEF9icfxi0mAaWAt4AqERIQ,240690
|
|
518
518
|
pulumi_alicloud/cs/outputs.py,sha256=NYffs3ZeOD59kLW_Turyu_mR4ECsa-aRaRMicJ_AhUQ,204061
|
|
519
519
|
pulumi_alicloud/cs/registry_enterprise_namespace.py,sha256=UhgjafvNxeEmEKbh3x-4b_rkGBG-F_cPxucptxDlIwY,18308
|
|
520
520
|
pulumi_alicloud/cs/registry_enterprise_repo.py,sha256=2Q5djejTW3jGarOQJFS4jaTJZvVoDAaQbv1xXDovxok,21098
|
|
521
521
|
pulumi_alicloud/cs/registry_enterprise_sync_rule.py,sha256=Pi204VoF98F5w13AxslN7nlebUabCPyaqJDHI6bbCfE,32657
|
|
522
|
-
pulumi_alicloud/cs/serverless_kubernetes.py,sha256=
|
|
522
|
+
pulumi_alicloud/cs/serverless_kubernetes.py,sha256=2qX7cNJYT6YVgFxoYP-EoAGZXQuYDHc1bzfpQR2RhIA,97602
|
|
523
523
|
pulumi_alicloud/cs/swarm.py,sha256=eTGw1JWlueWRY2XmdZAySHwRMMvsR8FxMCXN0E72bmw,27547
|
|
524
524
|
pulumi_alicloud/das/__init__.py,sha256=mp02tQ8kwmguQxf8Gp6q6BBFKGoAzn4cxy_y2S-jR_s,299
|
|
525
525
|
pulumi_alicloud/das/switch_das_pro.py,sha256=E8QziO6YOv6YN4s3dSfDipuBZ9WKDVPs1-bT1iY1tCg,15159
|
|
@@ -1511,9 +1511,9 @@ pulumi_alicloud/rds/get_class_details.py,sha256=A-kn8WhEg1kJ-6D_BWYvJ9AOkdu8tiir
|
|
|
1511
1511
|
pulumi_alicloud/rds/get_collation_time_zones.py,sha256=WSs_CEux6Hu-Yz6pd47H0RkmPwB9T1-iwcGNSJxLzoc,5667
|
|
1512
1512
|
pulumi_alicloud/rds/get_cross_region_backups.py,sha256=TCuBgl512CWfyogMQbL24yqir2BkNL0QvHfY3EnBhTo,11484
|
|
1513
1513
|
pulumi_alicloud/rds/get_cross_regions.py,sha256=eGwG1S2QGo0e6h44nWr0VotpbCkE3qRNyCznH2XDUOM,4210
|
|
1514
|
-
pulumi_alicloud/rds/get_instance_class_infos.py,sha256=
|
|
1515
|
-
pulumi_alicloud/rds/get_instance_classes.py,sha256=
|
|
1516
|
-
pulumi_alicloud/rds/get_instance_engines.py,sha256=
|
|
1514
|
+
pulumi_alicloud/rds/get_instance_class_infos.py,sha256=ObCecmNDpcjvoPZuNFZu2bZ8fCH3uBzhKb2AVgVBOu8,11353
|
|
1515
|
+
pulumi_alicloud/rds/get_instance_classes.py,sha256=x_Sn4p-JEV2137WB-leihEyU8D6e64kULdEEwt6AUsQ,19279
|
|
1516
|
+
pulumi_alicloud/rds/get_instance_engines.py,sha256=JScQLOfWi7RCo2n9EMwcALdkWTHWuxjgfgERvm32BXc,11700
|
|
1517
1517
|
pulumi_alicloud/rds/get_instances.py,sha256=0dptuOXF_oBda3Vsg8vEXVmHmf6x9K9jwW6S_z9CT8Q,15509
|
|
1518
1518
|
pulumi_alicloud/rds/get_modify_parameter_logs.py,sha256=8LQHMfKD3BSITqRhxFJ7_sEj1m1ND0yKgO3q2if2Zjo,6249
|
|
1519
1519
|
pulumi_alicloud/rds/get_rds_backups.py,sha256=5sWWCH9-oLwdN4VqQCVQ9_SoWcBqzfnvH0pG3a2GWps,8249
|
|
@@ -1929,7 +1929,7 @@ pulumi_alicloud/yundun/db_audit_instance.py,sha256=Volw6mwTQhvipSZWKquOuVLwQzm5T
|
|
|
1929
1929
|
pulumi_alicloud/yundun/get_bastion_host_instances.py,sha256=Ek599gnUrUe0DAgNceMRpi8s0adtBig3MD3Dhi7GQnU,5593
|
|
1930
1930
|
pulumi_alicloud/yundun/get_db_audit_instance.py,sha256=qlQxOuWKJlk9KDK3q0qrwxB5SAA8VaAYSi0ZMAs5I9o,5458
|
|
1931
1931
|
pulumi_alicloud/yundun/outputs.py,sha256=HiFcYkSFTfYJW17Yazgx77HqJL_KnyTTpzqcAI3WkG0,13295
|
|
1932
|
-
pulumi_alicloud-3.62.
|
|
1933
|
-
pulumi_alicloud-3.62.
|
|
1934
|
-
pulumi_alicloud-3.62.
|
|
1935
|
-
pulumi_alicloud-3.62.
|
|
1932
|
+
pulumi_alicloud-3.62.0a1725686385.dist-info/METADATA,sha256=W1yDcmvAEWgFsQxyPjQSKyrDy5SR83iuigWf-V0ripI,4348
|
|
1933
|
+
pulumi_alicloud-3.62.0a1725686385.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
|
|
1934
|
+
pulumi_alicloud-3.62.0a1725686385.dist-info/top_level.txt,sha256=U6LUZaKkW6MfUdVdxwspCksOWCBCMIWK24oo93s1Up8,16
|
|
1935
|
+
pulumi_alicloud-3.62.0a1725686385.dist-info/RECORD,,
|
{pulumi_alicloud-3.62.0a1725600316.dist-info → pulumi_alicloud-3.62.0a1725686385.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|