@pulumi/alicloud 3.48.0 → 3.49.0
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.
- package/cms/namespace.d.ts +15 -14
- package/cms/namespace.js +3 -2
- package/cms/namespace.js.map +1 -1
- package/ecs/eipAssociation.d.ts +29 -17
- package/ecs/eipAssociation.js +3 -1
- package/ecs/eipAssociation.js.map +1 -1
- package/ess/eciScalingConfiguration.d.ts +6 -3
- package/ess/eciScalingConfiguration.js.map +1 -1
- package/package.json +1 -1
- package/polardb/clusterEndpoint.d.ts +268 -0
- package/polardb/clusterEndpoint.js +130 -0
- package/polardb/clusterEndpoint.js.map +1 -0
- package/polardb/endpoint.d.ts +129 -30
- package/polardb/endpoint.js +9 -21
- package/polardb/endpoint.js.map +1 -1
- package/polardb/endpointAddress.d.ts +8 -3
- package/polardb/endpointAddress.js +3 -2
- package/polardb/endpointAddress.js.map +1 -1
- package/polardb/index.d.ts +6 -0
- package/polardb/index.js +11 -1
- package/polardb/index.js.map +1 -1
- package/polardb/primaryEndpoint.d.ts +214 -0
- package/polardb/primaryEndpoint.js +122 -0
- package/polardb/primaryEndpoint.js.map +1 -0
package/polardb/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.ParameterGroup = exports.GlobalDatabaseNetwork = exports.getZonesOutput = exports.getZones = exports.getParameterGroupsOutput = exports.getParameterGroups = exports.getNodeClassesOutput = exports.getNodeClasses = exports.getGlobalDatabaseNetworksOutput = exports.getGlobalDatabaseNetworks = exports.getEndpointsOutput = exports.getEndpoints = exports.getDatabasesOutput = exports.getDatabases = exports.getClustersOutput = exports.getClusters = exports.getAccountsOutput = exports.getAccounts = exports.EndpointAddress = exports.Endpoint = exports.Database = exports.Cluster = exports.BackupPolicy = exports.AccountPrivilege = exports.Account = void 0;
|
|
5
|
+
exports.PrimaryEndpoint = exports.ParameterGroup = exports.GlobalDatabaseNetwork = exports.getZonesOutput = exports.getZones = exports.getParameterGroupsOutput = exports.getParameterGroups = exports.getNodeClassesOutput = exports.getNodeClasses = exports.getGlobalDatabaseNetworksOutput = exports.getGlobalDatabaseNetworks = exports.getEndpointsOutput = exports.getEndpoints = exports.getDatabasesOutput = exports.getDatabases = exports.getClustersOutput = exports.getClusters = exports.getAccountsOutput = exports.getAccounts = exports.EndpointAddress = exports.Endpoint = exports.Database = exports.ClusterEndpoint = exports.Cluster = exports.BackupPolicy = exports.AccountPrivilege = exports.Account = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.Account = null;
|
|
@@ -13,6 +13,8 @@ exports.BackupPolicy = null;
|
|
|
13
13
|
utilities.lazyLoad(exports, ["BackupPolicy"], () => require("./backupPolicy"));
|
|
14
14
|
exports.Cluster = null;
|
|
15
15
|
utilities.lazyLoad(exports, ["Cluster"], () => require("./cluster"));
|
|
16
|
+
exports.ClusterEndpoint = null;
|
|
17
|
+
utilities.lazyLoad(exports, ["ClusterEndpoint"], () => require("./clusterEndpoint"));
|
|
16
18
|
exports.Database = null;
|
|
17
19
|
utilities.lazyLoad(exports, ["Database"], () => require("./database"));
|
|
18
20
|
exports.Endpoint = null;
|
|
@@ -47,6 +49,8 @@ exports.GlobalDatabaseNetwork = null;
|
|
|
47
49
|
utilities.lazyLoad(exports, ["GlobalDatabaseNetwork"], () => require("./globalDatabaseNetwork"));
|
|
48
50
|
exports.ParameterGroup = null;
|
|
49
51
|
utilities.lazyLoad(exports, ["ParameterGroup"], () => require("./parameterGroup"));
|
|
52
|
+
exports.PrimaryEndpoint = null;
|
|
53
|
+
utilities.lazyLoad(exports, ["PrimaryEndpoint"], () => require("./primaryEndpoint"));
|
|
50
54
|
const _module = {
|
|
51
55
|
version: utilities.getVersion(),
|
|
52
56
|
construct: (name, type, urn) => {
|
|
@@ -59,6 +63,8 @@ const _module = {
|
|
|
59
63
|
return new exports.BackupPolicy(name, undefined, { urn });
|
|
60
64
|
case "alicloud:polardb/cluster:Cluster":
|
|
61
65
|
return new exports.Cluster(name, undefined, { urn });
|
|
66
|
+
case "alicloud:polardb/clusterEndpoint:ClusterEndpoint":
|
|
67
|
+
return new exports.ClusterEndpoint(name, undefined, { urn });
|
|
62
68
|
case "alicloud:polardb/database:Database":
|
|
63
69
|
return new exports.Database(name, undefined, { urn });
|
|
64
70
|
case "alicloud:polardb/endpoint:Endpoint":
|
|
@@ -69,6 +75,8 @@ const _module = {
|
|
|
69
75
|
return new exports.GlobalDatabaseNetwork(name, undefined, { urn });
|
|
70
76
|
case "alicloud:polardb/parameterGroup:ParameterGroup":
|
|
71
77
|
return new exports.ParameterGroup(name, undefined, { urn });
|
|
78
|
+
case "alicloud:polardb/primaryEndpoint:PrimaryEndpoint":
|
|
79
|
+
return new exports.PrimaryEndpoint(name, undefined, { urn });
|
|
72
80
|
default:
|
|
73
81
|
throw new Error(`unknown resource type ${type}`);
|
|
74
82
|
}
|
|
@@ -78,9 +86,11 @@ pulumi.runtime.registerResourceModule("alicloud", "polardb/account", _module);
|
|
|
78
86
|
pulumi.runtime.registerResourceModule("alicloud", "polardb/accountPrivilege", _module);
|
|
79
87
|
pulumi.runtime.registerResourceModule("alicloud", "polardb/backupPolicy", _module);
|
|
80
88
|
pulumi.runtime.registerResourceModule("alicloud", "polardb/cluster", _module);
|
|
89
|
+
pulumi.runtime.registerResourceModule("alicloud", "polardb/clusterEndpoint", _module);
|
|
81
90
|
pulumi.runtime.registerResourceModule("alicloud", "polardb/database", _module);
|
|
82
91
|
pulumi.runtime.registerResourceModule("alicloud", "polardb/endpoint", _module);
|
|
83
92
|
pulumi.runtime.registerResourceModule("alicloud", "polardb/endpointAddress", _module);
|
|
84
93
|
pulumi.runtime.registerResourceModule("alicloud", "polardb/globalDatabaseNetwork", _module);
|
|
85
94
|
pulumi.runtime.registerResourceModule("alicloud", "polardb/parameterGroup", _module);
|
|
95
|
+
pulumi.runtime.registerResourceModule("alicloud", "polardb/primaryEndpoint", _module);
|
|
86
96
|
//# sourceMappingURL=index.js.map
|
package/polardb/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../polardb/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../polardb/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAIxD,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAIlE,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAIxD,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAGxE,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,yBAAyB,GAA2E,IAAW,CAAC;AAChH,QAAA,+BAA+B,GAAiF,IAAW,CAAC;AACzI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,2BAA2B,EAAC,iCAAiC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,6BAA6B,CAAC,CAAC,CAAC;AAG9H,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC/E,QAAA,oBAAoB,GAA2D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,EAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAG7F,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AAC3F,QAAA,wBAAwB,GAAmE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,EAAC,0BAA0B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAGzG,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI3E,QAAA,qBAAqB,GAAmE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAIpF,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAItE,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAGrF,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,kCAAkC;gBACnC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,oDAAoD;gBACrD,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,4CAA4C;gBAC7C,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,kCAAkC;gBACnC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,kDAAkD;gBACnD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,oCAAoC;gBACrC,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,oCAAoC;gBACrC,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,kDAAkD;gBACnD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,8DAA8D;gBAC/D,OAAO,IAAI,6BAAqB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnE,KAAK,gDAAgD;gBACjD,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,kDAAkD;gBACnD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,0BAA0B,EAAE,OAAO,CAAC,CAAA;AACtF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,+BAA+B,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,UAAU,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides a PolarDB endpoint resource to manage primary endpoint of PolarDB cluster.
|
|
4
|
+
*
|
|
5
|
+
* > **NOTE:** Available since v1.217.0
|
|
6
|
+
*
|
|
7
|
+
* > **NOTE:** The default primary endpoint can not be created or deleted manually.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as alicloud from "@pulumi/alicloud";
|
|
14
|
+
*
|
|
15
|
+
* const defaultNodeClasses = alicloud.polardb.getNodeClasses({
|
|
16
|
+
* dbType: "MySQL",
|
|
17
|
+
* dbVersion: "8.0",
|
|
18
|
+
* payType: "PostPaid",
|
|
19
|
+
* category: "Normal",
|
|
20
|
+
* });
|
|
21
|
+
* const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
|
|
22
|
+
* vpcName: "terraform-example",
|
|
23
|
+
* cidrBlock: "172.16.0.0/16",
|
|
24
|
+
* });
|
|
25
|
+
* const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
|
|
26
|
+
* vpcId: defaultNetwork.id,
|
|
27
|
+
* cidrBlock: "172.16.0.0/24",
|
|
28
|
+
* zoneId: defaultNodeClasses.then(defaultNodeClasses => defaultNodeClasses.classes?.[0]?.zoneId),
|
|
29
|
+
* vswitchName: "terraform-example",
|
|
30
|
+
* });
|
|
31
|
+
* const defaultCluster = new alicloud.polardb.Cluster("defaultCluster", {
|
|
32
|
+
* dbType: "MySQL",
|
|
33
|
+
* dbVersion: "8.0",
|
|
34
|
+
* dbNodeClass: defaultNodeClasses.then(defaultNodeClasses => defaultNodeClasses.classes?.[0]?.supportedEngines?.[0]?.availableResources?.[0]?.dbNodeClass),
|
|
35
|
+
* payType: "PostPaid",
|
|
36
|
+
* vswitchId: defaultSwitch.id,
|
|
37
|
+
* description: "terraform-example",
|
|
38
|
+
* });
|
|
39
|
+
* const defaultPrimaryEndpoint = new alicloud.polardb.PrimaryEndpoint("defaultPrimaryEndpoint", {dbClusterId: defaultCluster.id});
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* ## Import
|
|
43
|
+
*
|
|
44
|
+
* PolarDB endpoint can be imported using the id, e.g.
|
|
45
|
+
*
|
|
46
|
+
* ```sh
|
|
47
|
+
* $ pulumi import alicloud:polardb/primaryEndpoint:PrimaryEndpoint example pc-abc123456:pe-abc123456
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
export declare class PrimaryEndpoint extends pulumi.CustomResource {
|
|
51
|
+
/**
|
|
52
|
+
* Get an existing PrimaryEndpoint resource's state with the given name, ID, and optional extra
|
|
53
|
+
* properties used to qualify the lookup.
|
|
54
|
+
*
|
|
55
|
+
* @param name The _unique_ name of the resulting resource.
|
|
56
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
57
|
+
* @param state Any extra arguments used during the lookup.
|
|
58
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
59
|
+
*/
|
|
60
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: PrimaryEndpointState, opts?: pulumi.CustomResourceOptions): PrimaryEndpoint;
|
|
61
|
+
/**
|
|
62
|
+
* Returns true if the given object is an instance of PrimaryEndpoint. This is designed to work even
|
|
63
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
64
|
+
*/
|
|
65
|
+
static isInstance(obj: any): obj is PrimaryEndpoint;
|
|
66
|
+
/**
|
|
67
|
+
* Prefix of the specified endpoint. The prefix must be 6 to 30 characters in length, and can contain lowercase letters, digits, and hyphens (-), must start with a letter and end with a digit or letter.
|
|
68
|
+
*/
|
|
69
|
+
readonly connectionPrefix: pulumi.Output<string>;
|
|
70
|
+
/**
|
|
71
|
+
* The Id of cluster that can run database.
|
|
72
|
+
*/
|
|
73
|
+
readonly dbClusterId: pulumi.Output<string>;
|
|
74
|
+
/**
|
|
75
|
+
* The name of the endpoint.
|
|
76
|
+
*/
|
|
77
|
+
readonly dbEndpointDescription: pulumi.Output<string | undefined>;
|
|
78
|
+
/**
|
|
79
|
+
* The ID of the cluster endpoint.
|
|
80
|
+
*/
|
|
81
|
+
readonly dbEndpointId: pulumi.Output<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Type of endpoint.
|
|
84
|
+
*/
|
|
85
|
+
readonly endpointType: pulumi.Output<string>;
|
|
86
|
+
/**
|
|
87
|
+
* The network type of the endpoint address.
|
|
88
|
+
*/
|
|
89
|
+
readonly netType: pulumi.Output<string | undefined>;
|
|
90
|
+
/**
|
|
91
|
+
* Port of the specified endpoint. Valid values: 3000 to 5999.
|
|
92
|
+
*/
|
|
93
|
+
readonly port: pulumi.Output<string>;
|
|
94
|
+
/**
|
|
95
|
+
* Specifies whether automatic rotation of SSL certificates is enabled. Valid values: `Enable`,`Disable`.
|
|
96
|
+
* **NOTE:** For a PolarDB for MySQL cluster, this parameter is required, and only one connection string in each endpoint can enable the ssl, for other notes, see [Configure SSL encryption](https://www.alibabacloud.com/help/doc-detail/153182.htm).
|
|
97
|
+
* For a PolarDB for PostgreSQL cluster or a PolarDB-O cluster, this parameter is not required, by default, SSL encryption is enabled for all endpoints.
|
|
98
|
+
*/
|
|
99
|
+
readonly sslAutoRotate: pulumi.Output<string | undefined>;
|
|
100
|
+
/**
|
|
101
|
+
* The specifies SSL certificate download link.
|
|
102
|
+
*/
|
|
103
|
+
readonly sslCertificateUrl: pulumi.Output<string>;
|
|
104
|
+
/**
|
|
105
|
+
* The SSL connection string.
|
|
106
|
+
*/
|
|
107
|
+
readonly sslConnectionString: pulumi.Output<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Specifies how to modify the SSL encryption status. Valid values: `Disable`, `Enable`, `Update`.
|
|
110
|
+
*/
|
|
111
|
+
readonly sslEnabled: pulumi.Output<string | undefined>;
|
|
112
|
+
/**
|
|
113
|
+
* The time when the SSL certificate expires. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
114
|
+
*/
|
|
115
|
+
readonly sslExpireTime: pulumi.Output<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Create a PrimaryEndpoint resource with the given unique name, arguments, and options.
|
|
118
|
+
*
|
|
119
|
+
* @param name The _unique_ name of the resource.
|
|
120
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
121
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
122
|
+
*/
|
|
123
|
+
constructor(name: string, args: PrimaryEndpointArgs, opts?: pulumi.CustomResourceOptions);
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Input properties used for looking up and filtering PrimaryEndpoint resources.
|
|
127
|
+
*/
|
|
128
|
+
export interface PrimaryEndpointState {
|
|
129
|
+
/**
|
|
130
|
+
* Prefix of the specified endpoint. The prefix must be 6 to 30 characters in length, and can contain lowercase letters, digits, and hyphens (-), must start with a letter and end with a digit or letter.
|
|
131
|
+
*/
|
|
132
|
+
connectionPrefix?: pulumi.Input<string>;
|
|
133
|
+
/**
|
|
134
|
+
* The Id of cluster that can run database.
|
|
135
|
+
*/
|
|
136
|
+
dbClusterId?: pulumi.Input<string>;
|
|
137
|
+
/**
|
|
138
|
+
* The name of the endpoint.
|
|
139
|
+
*/
|
|
140
|
+
dbEndpointDescription?: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* The ID of the cluster endpoint.
|
|
143
|
+
*/
|
|
144
|
+
dbEndpointId?: pulumi.Input<string>;
|
|
145
|
+
/**
|
|
146
|
+
* Type of endpoint.
|
|
147
|
+
*/
|
|
148
|
+
endpointType?: pulumi.Input<string>;
|
|
149
|
+
/**
|
|
150
|
+
* The network type of the endpoint address.
|
|
151
|
+
*/
|
|
152
|
+
netType?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* Port of the specified endpoint. Valid values: 3000 to 5999.
|
|
155
|
+
*/
|
|
156
|
+
port?: pulumi.Input<string>;
|
|
157
|
+
/**
|
|
158
|
+
* Specifies whether automatic rotation of SSL certificates is enabled. Valid values: `Enable`,`Disable`.
|
|
159
|
+
* **NOTE:** For a PolarDB for MySQL cluster, this parameter is required, and only one connection string in each endpoint can enable the ssl, for other notes, see [Configure SSL encryption](https://www.alibabacloud.com/help/doc-detail/153182.htm).
|
|
160
|
+
* For a PolarDB for PostgreSQL cluster or a PolarDB-O cluster, this parameter is not required, by default, SSL encryption is enabled for all endpoints.
|
|
161
|
+
*/
|
|
162
|
+
sslAutoRotate?: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* The specifies SSL certificate download link.
|
|
165
|
+
*/
|
|
166
|
+
sslCertificateUrl?: pulumi.Input<string>;
|
|
167
|
+
/**
|
|
168
|
+
* The SSL connection string.
|
|
169
|
+
*/
|
|
170
|
+
sslConnectionString?: pulumi.Input<string>;
|
|
171
|
+
/**
|
|
172
|
+
* Specifies how to modify the SSL encryption status. Valid values: `Disable`, `Enable`, `Update`.
|
|
173
|
+
*/
|
|
174
|
+
sslEnabled?: pulumi.Input<string>;
|
|
175
|
+
/**
|
|
176
|
+
* The time when the SSL certificate expires. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
177
|
+
*/
|
|
178
|
+
sslExpireTime?: pulumi.Input<string>;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* The set of arguments for constructing a PrimaryEndpoint resource.
|
|
182
|
+
*/
|
|
183
|
+
export interface PrimaryEndpointArgs {
|
|
184
|
+
/**
|
|
185
|
+
* Prefix of the specified endpoint. The prefix must be 6 to 30 characters in length, and can contain lowercase letters, digits, and hyphens (-), must start with a letter and end with a digit or letter.
|
|
186
|
+
*/
|
|
187
|
+
connectionPrefix?: pulumi.Input<string>;
|
|
188
|
+
/**
|
|
189
|
+
* The Id of cluster that can run database.
|
|
190
|
+
*/
|
|
191
|
+
dbClusterId: pulumi.Input<string>;
|
|
192
|
+
/**
|
|
193
|
+
* The name of the endpoint.
|
|
194
|
+
*/
|
|
195
|
+
dbEndpointDescription?: pulumi.Input<string>;
|
|
196
|
+
/**
|
|
197
|
+
* The network type of the endpoint address.
|
|
198
|
+
*/
|
|
199
|
+
netType?: pulumi.Input<string>;
|
|
200
|
+
/**
|
|
201
|
+
* Port of the specified endpoint. Valid values: 3000 to 5999.
|
|
202
|
+
*/
|
|
203
|
+
port?: pulumi.Input<string>;
|
|
204
|
+
/**
|
|
205
|
+
* Specifies whether automatic rotation of SSL certificates is enabled. Valid values: `Enable`,`Disable`.
|
|
206
|
+
* **NOTE:** For a PolarDB for MySQL cluster, this parameter is required, and only one connection string in each endpoint can enable the ssl, for other notes, see [Configure SSL encryption](https://www.alibabacloud.com/help/doc-detail/153182.htm).
|
|
207
|
+
* For a PolarDB for PostgreSQL cluster or a PolarDB-O cluster, this parameter is not required, by default, SSL encryption is enabled for all endpoints.
|
|
208
|
+
*/
|
|
209
|
+
sslAutoRotate?: pulumi.Input<string>;
|
|
210
|
+
/**
|
|
211
|
+
* Specifies how to modify the SSL encryption status. Valid values: `Disable`, `Enable`, `Update`.
|
|
212
|
+
*/
|
|
213
|
+
sslEnabled?: pulumi.Input<string>;
|
|
214
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.PrimaryEndpoint = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a PolarDB endpoint resource to manage primary endpoint of PolarDB cluster.
|
|
10
|
+
*
|
|
11
|
+
* > **NOTE:** Available since v1.217.0
|
|
12
|
+
*
|
|
13
|
+
* > **NOTE:** The default primary endpoint can not be created or deleted manually.
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as alicloud from "@pulumi/alicloud";
|
|
20
|
+
*
|
|
21
|
+
* const defaultNodeClasses = alicloud.polardb.getNodeClasses({
|
|
22
|
+
* dbType: "MySQL",
|
|
23
|
+
* dbVersion: "8.0",
|
|
24
|
+
* payType: "PostPaid",
|
|
25
|
+
* category: "Normal",
|
|
26
|
+
* });
|
|
27
|
+
* const defaultNetwork = new alicloud.vpc.Network("defaultNetwork", {
|
|
28
|
+
* vpcName: "terraform-example",
|
|
29
|
+
* cidrBlock: "172.16.0.0/16",
|
|
30
|
+
* });
|
|
31
|
+
* const defaultSwitch = new alicloud.vpc.Switch("defaultSwitch", {
|
|
32
|
+
* vpcId: defaultNetwork.id,
|
|
33
|
+
* cidrBlock: "172.16.0.0/24",
|
|
34
|
+
* zoneId: defaultNodeClasses.then(defaultNodeClasses => defaultNodeClasses.classes?.[0]?.zoneId),
|
|
35
|
+
* vswitchName: "terraform-example",
|
|
36
|
+
* });
|
|
37
|
+
* const defaultCluster = new alicloud.polardb.Cluster("defaultCluster", {
|
|
38
|
+
* dbType: "MySQL",
|
|
39
|
+
* dbVersion: "8.0",
|
|
40
|
+
* dbNodeClass: defaultNodeClasses.then(defaultNodeClasses => defaultNodeClasses.classes?.[0]?.supportedEngines?.[0]?.availableResources?.[0]?.dbNodeClass),
|
|
41
|
+
* payType: "PostPaid",
|
|
42
|
+
* vswitchId: defaultSwitch.id,
|
|
43
|
+
* description: "terraform-example",
|
|
44
|
+
* });
|
|
45
|
+
* const defaultPrimaryEndpoint = new alicloud.polardb.PrimaryEndpoint("defaultPrimaryEndpoint", {dbClusterId: defaultCluster.id});
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* ## Import
|
|
49
|
+
*
|
|
50
|
+
* PolarDB endpoint can be imported using the id, e.g.
|
|
51
|
+
*
|
|
52
|
+
* ```sh
|
|
53
|
+
* $ pulumi import alicloud:polardb/primaryEndpoint:PrimaryEndpoint example pc-abc123456:pe-abc123456
|
|
54
|
+
* ```
|
|
55
|
+
*/
|
|
56
|
+
class PrimaryEndpoint extends pulumi.CustomResource {
|
|
57
|
+
/**
|
|
58
|
+
* Get an existing PrimaryEndpoint resource's state with the given name, ID, and optional extra
|
|
59
|
+
* properties used to qualify the lookup.
|
|
60
|
+
*
|
|
61
|
+
* @param name The _unique_ name of the resulting resource.
|
|
62
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
63
|
+
* @param state Any extra arguments used during the lookup.
|
|
64
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
65
|
+
*/
|
|
66
|
+
static get(name, id, state, opts) {
|
|
67
|
+
return new PrimaryEndpoint(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
68
|
+
}
|
|
69
|
+
/**
|
|
70
|
+
* Returns true if the given object is an instance of PrimaryEndpoint. This is designed to work even
|
|
71
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
72
|
+
*/
|
|
73
|
+
static isInstance(obj) {
|
|
74
|
+
if (obj === undefined || obj === null) {
|
|
75
|
+
return false;
|
|
76
|
+
}
|
|
77
|
+
return obj['__pulumiType'] === PrimaryEndpoint.__pulumiType;
|
|
78
|
+
}
|
|
79
|
+
constructor(name, argsOrState, opts) {
|
|
80
|
+
let resourceInputs = {};
|
|
81
|
+
opts = opts || {};
|
|
82
|
+
if (opts.id) {
|
|
83
|
+
const state = argsOrState;
|
|
84
|
+
resourceInputs["connectionPrefix"] = state ? state.connectionPrefix : undefined;
|
|
85
|
+
resourceInputs["dbClusterId"] = state ? state.dbClusterId : undefined;
|
|
86
|
+
resourceInputs["dbEndpointDescription"] = state ? state.dbEndpointDescription : undefined;
|
|
87
|
+
resourceInputs["dbEndpointId"] = state ? state.dbEndpointId : undefined;
|
|
88
|
+
resourceInputs["endpointType"] = state ? state.endpointType : undefined;
|
|
89
|
+
resourceInputs["netType"] = state ? state.netType : undefined;
|
|
90
|
+
resourceInputs["port"] = state ? state.port : undefined;
|
|
91
|
+
resourceInputs["sslAutoRotate"] = state ? state.sslAutoRotate : undefined;
|
|
92
|
+
resourceInputs["sslCertificateUrl"] = state ? state.sslCertificateUrl : undefined;
|
|
93
|
+
resourceInputs["sslConnectionString"] = state ? state.sslConnectionString : undefined;
|
|
94
|
+
resourceInputs["sslEnabled"] = state ? state.sslEnabled : undefined;
|
|
95
|
+
resourceInputs["sslExpireTime"] = state ? state.sslExpireTime : undefined;
|
|
96
|
+
}
|
|
97
|
+
else {
|
|
98
|
+
const args = argsOrState;
|
|
99
|
+
if ((!args || args.dbClusterId === undefined) && !opts.urn) {
|
|
100
|
+
throw new Error("Missing required property 'dbClusterId'");
|
|
101
|
+
}
|
|
102
|
+
resourceInputs["connectionPrefix"] = args ? args.connectionPrefix : undefined;
|
|
103
|
+
resourceInputs["dbClusterId"] = args ? args.dbClusterId : undefined;
|
|
104
|
+
resourceInputs["dbEndpointDescription"] = args ? args.dbEndpointDescription : undefined;
|
|
105
|
+
resourceInputs["netType"] = args ? args.netType : undefined;
|
|
106
|
+
resourceInputs["port"] = args ? args.port : undefined;
|
|
107
|
+
resourceInputs["sslAutoRotate"] = args ? args.sslAutoRotate : undefined;
|
|
108
|
+
resourceInputs["sslEnabled"] = args ? args.sslEnabled : undefined;
|
|
109
|
+
resourceInputs["dbEndpointId"] = undefined /*out*/;
|
|
110
|
+
resourceInputs["endpointType"] = undefined /*out*/;
|
|
111
|
+
resourceInputs["sslCertificateUrl"] = undefined /*out*/;
|
|
112
|
+
resourceInputs["sslConnectionString"] = undefined /*out*/;
|
|
113
|
+
resourceInputs["sslExpireTime"] = undefined /*out*/;
|
|
114
|
+
}
|
|
115
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
116
|
+
super(PrimaryEndpoint.__pulumiType, name, resourceInputs, opts);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
exports.PrimaryEndpoint = PrimaryEndpoint;
|
|
120
|
+
/** @internal */
|
|
121
|
+
PrimaryEndpoint.__pulumiType = 'alicloud:polardb/primaryEndpoint:PrimaryEndpoint';
|
|
122
|
+
//# sourceMappingURL=primaryEndpoint.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"primaryEndpoint.js","sourceRoot":"","sources":["../../polardb/primaryEndpoint.ts"],"names":[],"mappings":"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"}
|