@byteplus/pulumi-bytepluscc 0.0.24 → 0.0.26
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/alb/acl.d.ts +20 -20
- package/alb/acl.js +1 -1
- package/alb/getAcl.d.ts +11 -11
- package/alb/getListener.d.ts +20 -20
- package/alb/getServerGroup.d.ts +9 -9
- package/alb/listener.d.ts +52 -52
- package/alb/listener.js +1 -1
- package/alb/serverGroup.d.ts +24 -24
- package/alb/serverGroup.js +1 -1
- package/cr/endpointAclPolicy.d.ts +107 -0
- package/cr/endpointAclPolicy.js +84 -0
- package/cr/endpointAclPolicy.js.map +1 -0
- package/cr/getEndpointAclPolicies.d.ts +22 -0
- package/cr/getEndpointAclPolicies.js +24 -0
- package/cr/getEndpointAclPolicies.js.map +1 -0
- package/cr/getEndpointAclPolicy.d.ts +52 -0
- package/cr/getEndpointAclPolicy.js +28 -0
- package/cr/getEndpointAclPolicy.js.map +1 -0
- package/cr/getRegistry.d.ts +14 -10
- package/cr/getRegistry.js.map +1 -1
- package/cr/index.d.ts +9 -0
- package/cr/index.js +12 -1
- package/cr/index.js.map +1 -1
- package/cr/registry.d.ts +40 -25
- package/cr/registry.js +6 -1
- package/cr/registry.js.map +1 -1
- package/iam/accesskey.d.ts +23 -27
- package/iam/accesskey.js +2 -2
- package/iam/accesskey.js.map +1 -1
- package/iam/getAccesskey.d.ts +10 -10
- package/organization/getServiceControlPolicies.d.ts +22 -0
- package/organization/getServiceControlPolicies.js +24 -0
- package/organization/getServiceControlPolicies.js.map +1 -0
- package/organization/getServiceControlPolicy.d.ts +69 -0
- package/organization/getServiceControlPolicy.js +28 -0
- package/organization/getServiceControlPolicy.js.map +1 -0
- package/organization/index.d.ts +9 -0
- package/organization/index.js +12 -1
- package/organization/index.js.map +1 -1
- package/organization/serviceControlPolicy.d.ts +118 -0
- package/organization/serviceControlPolicy.js +78 -0
- package/organization/serviceControlPolicy.js.map +1 -0
- package/package.json +1 -1
- package/privatezone/getRecord.d.ts +5 -0
- package/privatezone/getRecord.js.map +1 -1
- package/privatezone/record.d.ts +4 -0
- package/privatezone/record.js +2 -0
- package/privatezone/record.js.map +1 -1
- package/rdsmysql/getParameterTemplate.d.ts +97 -0
- package/rdsmysql/getParameterTemplate.js +28 -0
- package/rdsmysql/getParameterTemplate.js.map +1 -0
- package/rdsmysql/getParameterTemplates.d.ts +22 -0
- package/rdsmysql/getParameterTemplates.js +24 -0
- package/rdsmysql/getParameterTemplates.js.map +1 -0
- package/rdsmysql/index.d.ts +9 -0
- package/rdsmysql/index.js +12 -1
- package/rdsmysql/index.js.map +1 -1
- package/rdsmysql/parameterTemplate.d.ts +186 -0
- package/rdsmysql/parameterTemplate.js +92 -0
- package/rdsmysql/parameterTemplate.js.map +1 -0
- package/redis/getInstance.d.ts +8 -0
- package/redis/getInstance.js.map +1 -1
- package/redis/instance.d.ts +47 -18
- package/redis/instance.js +27 -18
- package/redis/instance.js.map +1 -1
- package/transitrouter/getPeerAttachment.d.ts +109 -0
- package/transitrouter/getPeerAttachment.js +28 -0
- package/transitrouter/getPeerAttachment.js.map +1 -0
- package/transitrouter/getPeerAttachments.d.ts +22 -0
- package/transitrouter/getPeerAttachments.js +24 -0
- package/transitrouter/getPeerAttachments.js.map +1 -0
- package/transitrouter/index.d.ts +9 -0
- package/transitrouter/index.js +12 -1
- package/transitrouter/index.js.map +1 -1
- package/transitrouter/peerAttachment.d.ts +235 -0
- package/transitrouter/peerAttachment.js +122 -0
- package/transitrouter/peerAttachment.js.map +1 -0
- package/types/input.d.ts +135 -50
- package/types/output.d.ts +303 -102
- package/vpn/getSslVpnClientCert.d.ts +93 -0
- package/vpn/getSslVpnClientCert.js +28 -0
- package/vpn/getSslVpnClientCert.js.map +1 -0
- package/vpn/getSslVpnClientCerts.d.ts +22 -0
- package/vpn/getSslVpnClientCerts.js +24 -0
- package/vpn/getSslVpnClientCerts.js.map +1 -0
- package/vpn/index.d.ts +9 -0
- package/vpn/index.js +12 -1
- package/vpn/index.js.map +1 -1
- package/vpn/sslVpnClientCert.d.ts +183 -0
- package/vpn/sslVpnClientCert.js +104 -0
- package/vpn/sslVpnClientCert.js.map +1 -0
|
@@ -0,0 +1,186 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Volcano Engine Cloud Database MySQL version parameter template for managing and applying MySQL instance parameter configurations in bulk
|
|
6
|
+
*
|
|
7
|
+
* ## Import
|
|
8
|
+
*
|
|
9
|
+
* ```sh
|
|
10
|
+
* $ pulumi import bytepluscc:rdsmysql/parameterTemplate:ParameterTemplate example "template_id"
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class ParameterTemplate extends pulumi.CustomResource {
|
|
14
|
+
/**
|
|
15
|
+
* Get an existing ParameterTemplate resource's state with the given name, ID, and optional extra
|
|
16
|
+
* properties used to qualify the lookup.
|
|
17
|
+
*
|
|
18
|
+
* @param name The _unique_ name of the resulting resource.
|
|
19
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
20
|
+
* @param state Any extra arguments used during the lookup.
|
|
21
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
22
|
+
*/
|
|
23
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ParameterTemplateState, opts?: pulumi.CustomResourceOptions): ParameterTemplate;
|
|
24
|
+
/**
|
|
25
|
+
* Returns true if the given object is an instance of ParameterTemplate. This is designed to work even
|
|
26
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
27
|
+
*/
|
|
28
|
+
static isInstance(obj: any): obj is ParameterTemplate;
|
|
29
|
+
/**
|
|
30
|
+
* Account ID
|
|
31
|
+
*/
|
|
32
|
+
readonly accountId: pulumi.Output<string>;
|
|
33
|
+
/**
|
|
34
|
+
* Creation time (UTC+8), format: yyyy-MM-dd HH:mm:ss
|
|
35
|
+
*/
|
|
36
|
+
readonly createTime: pulumi.Output<string>;
|
|
37
|
+
/**
|
|
38
|
+
* Database engine type. Values: InnoDB (InnoDB engine), RocksDB (RocksDB engine). Default: InnoDB
|
|
39
|
+
*/
|
|
40
|
+
readonly engineType: pulumi.Output<string>;
|
|
41
|
+
/**
|
|
42
|
+
* Whether the template contains parameters that require a restart
|
|
43
|
+
*/
|
|
44
|
+
readonly needRestart: pulumi.Output<boolean>;
|
|
45
|
+
/**
|
|
46
|
+
* Number of parameters included in the template
|
|
47
|
+
*/
|
|
48
|
+
readonly parameterNum: pulumi.Output<number>;
|
|
49
|
+
/**
|
|
50
|
+
* Associated project
|
|
51
|
+
*/
|
|
52
|
+
readonly projectName: pulumi.Output<string>;
|
|
53
|
+
/**
|
|
54
|
+
* Template category. Value: DBEngine (database engine parameter)
|
|
55
|
+
*/
|
|
56
|
+
readonly templateCategory: pulumi.Output<string>;
|
|
57
|
+
/**
|
|
58
|
+
* Parameter template description
|
|
59
|
+
*/
|
|
60
|
+
readonly templateDesc: pulumi.Output<string>;
|
|
61
|
+
/**
|
|
62
|
+
* Parameter template ID, automatically generated by the system
|
|
63
|
+
*/
|
|
64
|
+
readonly templateId: pulumi.Output<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Parameter template name
|
|
67
|
+
*/
|
|
68
|
+
readonly templateName: pulumi.Output<string>;
|
|
69
|
+
readonly templateParams: pulumi.Output<outputs.rdsmysql.ParameterTemplateTemplateParam[]>;
|
|
70
|
+
/**
|
|
71
|
+
* Parameter template type. Values: System (system template), User (user template)
|
|
72
|
+
*/
|
|
73
|
+
readonly templateSource: pulumi.Output<string>;
|
|
74
|
+
/**
|
|
75
|
+
* Database type of the parameter template. Default: Mysql
|
|
76
|
+
*/
|
|
77
|
+
readonly templateType: pulumi.Output<string>;
|
|
78
|
+
/**
|
|
79
|
+
* Database version of the parameter template. Value range: MySQL*5*7 (MySQL 5.7 version), MySQL*8*0 (MySQL 8.0 version)
|
|
80
|
+
*/
|
|
81
|
+
readonly templateTypeVersion: pulumi.Output<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Template modification time
|
|
84
|
+
*/
|
|
85
|
+
readonly updateTime: pulumi.Output<string>;
|
|
86
|
+
/**
|
|
87
|
+
* Create a ParameterTemplate resource with the given unique name, arguments, and options.
|
|
88
|
+
*
|
|
89
|
+
* @param name The _unique_ name of the resource.
|
|
90
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
91
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
92
|
+
*/
|
|
93
|
+
constructor(name: string, args: ParameterTemplateArgs, opts?: pulumi.CustomResourceOptions);
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Input properties used for looking up and filtering ParameterTemplate resources.
|
|
97
|
+
*/
|
|
98
|
+
export interface ParameterTemplateState {
|
|
99
|
+
/**
|
|
100
|
+
* Account ID
|
|
101
|
+
*/
|
|
102
|
+
accountId?: pulumi.Input<string>;
|
|
103
|
+
/**
|
|
104
|
+
* Creation time (UTC+8), format: yyyy-MM-dd HH:mm:ss
|
|
105
|
+
*/
|
|
106
|
+
createTime?: pulumi.Input<string>;
|
|
107
|
+
/**
|
|
108
|
+
* Database engine type. Values: InnoDB (InnoDB engine), RocksDB (RocksDB engine). Default: InnoDB
|
|
109
|
+
*/
|
|
110
|
+
engineType?: pulumi.Input<string>;
|
|
111
|
+
/**
|
|
112
|
+
* Whether the template contains parameters that require a restart
|
|
113
|
+
*/
|
|
114
|
+
needRestart?: pulumi.Input<boolean>;
|
|
115
|
+
/**
|
|
116
|
+
* Number of parameters included in the template
|
|
117
|
+
*/
|
|
118
|
+
parameterNum?: pulumi.Input<number>;
|
|
119
|
+
/**
|
|
120
|
+
* Associated project
|
|
121
|
+
*/
|
|
122
|
+
projectName?: pulumi.Input<string>;
|
|
123
|
+
/**
|
|
124
|
+
* Template category. Value: DBEngine (database engine parameter)
|
|
125
|
+
*/
|
|
126
|
+
templateCategory?: pulumi.Input<string>;
|
|
127
|
+
/**
|
|
128
|
+
* Parameter template description
|
|
129
|
+
*/
|
|
130
|
+
templateDesc?: pulumi.Input<string>;
|
|
131
|
+
/**
|
|
132
|
+
* Parameter template ID, automatically generated by the system
|
|
133
|
+
*/
|
|
134
|
+
templateId?: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* Parameter template name
|
|
137
|
+
*/
|
|
138
|
+
templateName?: pulumi.Input<string>;
|
|
139
|
+
templateParams?: pulumi.Input<pulumi.Input<inputs.rdsmysql.ParameterTemplateTemplateParam>[]>;
|
|
140
|
+
/**
|
|
141
|
+
* Parameter template type. Values: System (system template), User (user template)
|
|
142
|
+
*/
|
|
143
|
+
templateSource?: pulumi.Input<string>;
|
|
144
|
+
/**
|
|
145
|
+
* Database type of the parameter template. Default: Mysql
|
|
146
|
+
*/
|
|
147
|
+
templateType?: pulumi.Input<string>;
|
|
148
|
+
/**
|
|
149
|
+
* Database version of the parameter template. Value range: MySQL*5*7 (MySQL 5.7 version), MySQL*8*0 (MySQL 8.0 version)
|
|
150
|
+
*/
|
|
151
|
+
templateTypeVersion?: pulumi.Input<string>;
|
|
152
|
+
/**
|
|
153
|
+
* Template modification time
|
|
154
|
+
*/
|
|
155
|
+
updateTime?: pulumi.Input<string>;
|
|
156
|
+
}
|
|
157
|
+
/**
|
|
158
|
+
* The set of arguments for constructing a ParameterTemplate resource.
|
|
159
|
+
*/
|
|
160
|
+
export interface ParameterTemplateArgs {
|
|
161
|
+
/**
|
|
162
|
+
* Database engine type. Values: InnoDB (InnoDB engine), RocksDB (RocksDB engine). Default: InnoDB
|
|
163
|
+
*/
|
|
164
|
+
engineType?: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Associated project
|
|
167
|
+
*/
|
|
168
|
+
projectName?: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* Parameter template description
|
|
171
|
+
*/
|
|
172
|
+
templateDesc?: pulumi.Input<string>;
|
|
173
|
+
/**
|
|
174
|
+
* Parameter template name
|
|
175
|
+
*/
|
|
176
|
+
templateName: pulumi.Input<string>;
|
|
177
|
+
templateParams: pulumi.Input<pulumi.Input<inputs.rdsmysql.ParameterTemplateTemplateParam>[]>;
|
|
178
|
+
/**
|
|
179
|
+
* Database type of the parameter template. Default: Mysql
|
|
180
|
+
*/
|
|
181
|
+
templateType?: pulumi.Input<string>;
|
|
182
|
+
/**
|
|
183
|
+
* Database version of the parameter template. Value range: MySQL*5*7 (MySQL 5.7 version), MySQL*8*0 (MySQL 8.0 version)
|
|
184
|
+
*/
|
|
185
|
+
templateTypeVersion?: pulumi.Input<string>;
|
|
186
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
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.ParameterTemplate = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Volcano Engine Cloud Database MySQL version parameter template for managing and applying MySQL instance parameter configurations in bulk
|
|
10
|
+
*
|
|
11
|
+
* ## Import
|
|
12
|
+
*
|
|
13
|
+
* ```sh
|
|
14
|
+
* $ pulumi import bytepluscc:rdsmysql/parameterTemplate:ParameterTemplate example "template_id"
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
class ParameterTemplate extends pulumi.CustomResource {
|
|
18
|
+
/**
|
|
19
|
+
* Get an existing ParameterTemplate resource's state with the given name, ID, and optional extra
|
|
20
|
+
* properties used to qualify the lookup.
|
|
21
|
+
*
|
|
22
|
+
* @param name The _unique_ name of the resulting resource.
|
|
23
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
24
|
+
* @param state Any extra arguments used during the lookup.
|
|
25
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
26
|
+
*/
|
|
27
|
+
static get(name, id, state, opts) {
|
|
28
|
+
return new ParameterTemplate(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Returns true if the given object is an instance of ParameterTemplate. This is designed to work even
|
|
32
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
33
|
+
*/
|
|
34
|
+
static isInstance(obj) {
|
|
35
|
+
if (obj === undefined || obj === null) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
return obj['__pulumiType'] === ParameterTemplate.__pulumiType;
|
|
39
|
+
}
|
|
40
|
+
constructor(name, argsOrState, opts) {
|
|
41
|
+
let resourceInputs = {};
|
|
42
|
+
opts = opts || {};
|
|
43
|
+
if (opts.id) {
|
|
44
|
+
const state = argsOrState;
|
|
45
|
+
resourceInputs["accountId"] = state ? state.accountId : undefined;
|
|
46
|
+
resourceInputs["createTime"] = state ? state.createTime : undefined;
|
|
47
|
+
resourceInputs["engineType"] = state ? state.engineType : undefined;
|
|
48
|
+
resourceInputs["needRestart"] = state ? state.needRestart : undefined;
|
|
49
|
+
resourceInputs["parameterNum"] = state ? state.parameterNum : undefined;
|
|
50
|
+
resourceInputs["projectName"] = state ? state.projectName : undefined;
|
|
51
|
+
resourceInputs["templateCategory"] = state ? state.templateCategory : undefined;
|
|
52
|
+
resourceInputs["templateDesc"] = state ? state.templateDesc : undefined;
|
|
53
|
+
resourceInputs["templateId"] = state ? state.templateId : undefined;
|
|
54
|
+
resourceInputs["templateName"] = state ? state.templateName : undefined;
|
|
55
|
+
resourceInputs["templateParams"] = state ? state.templateParams : undefined;
|
|
56
|
+
resourceInputs["templateSource"] = state ? state.templateSource : undefined;
|
|
57
|
+
resourceInputs["templateType"] = state ? state.templateType : undefined;
|
|
58
|
+
resourceInputs["templateTypeVersion"] = state ? state.templateTypeVersion : undefined;
|
|
59
|
+
resourceInputs["updateTime"] = state ? state.updateTime : undefined;
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
const args = argsOrState;
|
|
63
|
+
if ((!args || args.templateName === undefined) && !opts.urn) {
|
|
64
|
+
throw new Error("Missing required property 'templateName'");
|
|
65
|
+
}
|
|
66
|
+
if ((!args || args.templateParams === undefined) && !opts.urn) {
|
|
67
|
+
throw new Error("Missing required property 'templateParams'");
|
|
68
|
+
}
|
|
69
|
+
resourceInputs["engineType"] = args ? args.engineType : undefined;
|
|
70
|
+
resourceInputs["projectName"] = args ? args.projectName : undefined;
|
|
71
|
+
resourceInputs["templateDesc"] = args ? args.templateDesc : undefined;
|
|
72
|
+
resourceInputs["templateName"] = args ? args.templateName : undefined;
|
|
73
|
+
resourceInputs["templateParams"] = args ? args.templateParams : undefined;
|
|
74
|
+
resourceInputs["templateType"] = args ? args.templateType : undefined;
|
|
75
|
+
resourceInputs["templateTypeVersion"] = args ? args.templateTypeVersion : undefined;
|
|
76
|
+
resourceInputs["accountId"] = undefined /*out*/;
|
|
77
|
+
resourceInputs["createTime"] = undefined /*out*/;
|
|
78
|
+
resourceInputs["needRestart"] = undefined /*out*/;
|
|
79
|
+
resourceInputs["parameterNum"] = undefined /*out*/;
|
|
80
|
+
resourceInputs["templateCategory"] = undefined /*out*/;
|
|
81
|
+
resourceInputs["templateId"] = undefined /*out*/;
|
|
82
|
+
resourceInputs["templateSource"] = undefined /*out*/;
|
|
83
|
+
resourceInputs["updateTime"] = undefined /*out*/;
|
|
84
|
+
}
|
|
85
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
86
|
+
super(ParameterTemplate.__pulumiType, name, resourceInputs, opts);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.ParameterTemplate = ParameterTemplate;
|
|
90
|
+
/** @internal */
|
|
91
|
+
ParameterTemplate.__pulumiType = 'bytepluscc:rdsmysql/parameterTemplate:ParameterTemplate';
|
|
92
|
+
//# sourceMappingURL=parameterTemplate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parameterTemplate.js","sourceRoot":"","sources":["../../rdsmysql/parameterTemplate.ts"],"names":[],"mappings":"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"}
|
package/redis/getInstance.d.ts
CHANGED
|
@@ -29,6 +29,10 @@ export interface GetInstanceResult {
|
|
|
29
29
|
* Set a backup name for the full backup created before changes.
|
|
30
30
|
*/
|
|
31
31
|
readonly backupPointName: string;
|
|
32
|
+
/**
|
|
33
|
+
* Restore data from the backup set to the original Redis instance.
|
|
34
|
+
*/
|
|
35
|
+
readonly backupRestore: outputs.redis.GetInstanceBackupRestore;
|
|
32
36
|
/**
|
|
33
37
|
* Blue-green deployment role of the instance. Valid values: Blue: blue instance. Green: green instance. This parameter is returned only for Redis instances that have used the blue-green deployment feature.
|
|
34
38
|
*/
|
|
@@ -45,6 +49,10 @@ export interface GetInstanceResult {
|
|
|
45
49
|
* Set the list of availability zones to which the node belongs.
|
|
46
50
|
*/
|
|
47
51
|
readonly configureNodes: outputs.redis.GetInstanceConfigureNode[];
|
|
52
|
+
/**
|
|
53
|
+
* Enable data flashback
|
|
54
|
+
*/
|
|
55
|
+
readonly continuousBackup: boolean;
|
|
48
56
|
/**
|
|
49
57
|
* Whether to create a backup before making changes.
|
|
50
58
|
*/
|
package/redis/getInstance.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInstance.js","sourceRoot":"","sources":["../../redis/getInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kCAKC;
|
|
1
|
+
{"version":3,"file":"getInstance.js","sourceRoot":"","sources":["../../redis/getInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kCAKC;AA6MD;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC"}
|
package/redis/instance.d.ts
CHANGED
|
@@ -11,24 +11,6 @@ import * as outputs from "../types/output";
|
|
|
11
11
|
* import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
|
|
12
12
|
*
|
|
13
13
|
* const redisInstanceDemo = new bytepluscc.redis.Instance("RedisInstanceDemo", {
|
|
14
|
-
* instanceName: "RedisInstance",
|
|
15
|
-
* shardedCluster: 1,
|
|
16
|
-
* password: "********",
|
|
17
|
-
* nodeNumber: 2,
|
|
18
|
-
* shardCapacity: 512,
|
|
19
|
-
* shardNumber: 2,
|
|
20
|
-
* engineVersion: "5.0",
|
|
21
|
-
* vpcId: "vpc-13f8xxxx",
|
|
22
|
-
* subnetId: "vpc_subnet-xxxx",
|
|
23
|
-
* deletionProtection: "disabled",
|
|
24
|
-
* chargeType: "PostPaid",
|
|
25
|
-
* port: 6381,
|
|
26
|
-
* projectName: "default",
|
|
27
|
-
* tags: [{
|
|
28
|
-
* key: "env",
|
|
29
|
-
* value: "test",
|
|
30
|
-
* }],
|
|
31
|
-
* multiAz: "enabled",
|
|
32
14
|
* configureNodes: [
|
|
33
15
|
* {
|
|
34
16
|
* az: "cn-beijing-a",
|
|
@@ -37,6 +19,29 @@ import * as outputs from "../types/output";
|
|
|
37
19
|
* az: "cn-beijing-b",
|
|
38
20
|
* },
|
|
39
21
|
* ],
|
|
22
|
+
* multiAz: "enabled",
|
|
23
|
+
* tags: [{
|
|
24
|
+
* key: "env",
|
|
25
|
+
* value: "test",
|
|
26
|
+
* }],
|
|
27
|
+
* projectName: "default",
|
|
28
|
+
* vpcId: "vpc-xxxxx",
|
|
29
|
+
* subnetId: "subnet-xxxxx",
|
|
30
|
+
* deletionProtection: "enabled",
|
|
31
|
+
* port: 9999,
|
|
32
|
+
* autoRenew: false,
|
|
33
|
+
* chargeType: "PostPaid",
|
|
34
|
+
* engineVersion: "6.0",
|
|
35
|
+
* shardCapacity: 512,
|
|
36
|
+
* shardNumber: 2,
|
|
37
|
+
* nodeNumber: 2,
|
|
38
|
+
* allowListIds: ["acl-cnlfwmfaqdefxxxxx"],
|
|
39
|
+
* password: "********",
|
|
40
|
+
* shardedCluster: 1,
|
|
41
|
+
* instanceName: "ccapi-auto-test",
|
|
42
|
+
* noAuthMode: "open",
|
|
43
|
+
* parameterGroupId: "DefaultParamGroupId-6.0",
|
|
44
|
+
* continuousBackup: true,
|
|
40
45
|
* });
|
|
41
46
|
* ```
|
|
42
47
|
*
|
|
@@ -74,6 +79,10 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
74
79
|
* Set a backup name for the full backup created before changes.
|
|
75
80
|
*/
|
|
76
81
|
readonly backupPointName: pulumi.Output<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Restore data from the backup set to the original Redis instance.
|
|
84
|
+
*/
|
|
85
|
+
readonly backupRestore: pulumi.Output<outputs.redis.InstanceBackupRestore>;
|
|
77
86
|
/**
|
|
78
87
|
* Blue-green deployment role of the instance. Valid values: Blue: blue instance. Green: green instance. This parameter is returned only for Redis instances that have used the blue-green deployment feature.
|
|
79
88
|
*/
|
|
@@ -87,6 +96,10 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
87
96
|
*/
|
|
88
97
|
readonly chargeType: pulumi.Output<string>;
|
|
89
98
|
readonly configureNodes: pulumi.Output<outputs.redis.InstanceConfigureNode[]>;
|
|
99
|
+
/**
|
|
100
|
+
* Enable data flashback
|
|
101
|
+
*/
|
|
102
|
+
readonly continuousBackup: pulumi.Output<boolean>;
|
|
90
103
|
/**
|
|
91
104
|
* Whether to create a backup before making changes.
|
|
92
105
|
*/
|
|
@@ -251,6 +264,10 @@ export interface InstanceState {
|
|
|
251
264
|
* Set a backup name for the full backup created before changes.
|
|
252
265
|
*/
|
|
253
266
|
backupPointName?: pulumi.Input<string>;
|
|
267
|
+
/**
|
|
268
|
+
* Restore data from the backup set to the original Redis instance.
|
|
269
|
+
*/
|
|
270
|
+
backupRestore?: pulumi.Input<inputs.redis.InstanceBackupRestore>;
|
|
254
271
|
/**
|
|
255
272
|
* Blue-green deployment role of the instance. Valid values: Blue: blue instance. Green: green instance. This parameter is returned only for Redis instances that have used the blue-green deployment feature.
|
|
256
273
|
*/
|
|
@@ -264,6 +281,10 @@ export interface InstanceState {
|
|
|
264
281
|
*/
|
|
265
282
|
chargeType?: pulumi.Input<string>;
|
|
266
283
|
configureNodes?: pulumi.Input<pulumi.Input<inputs.redis.InstanceConfigureNode>[]>;
|
|
284
|
+
/**
|
|
285
|
+
* Enable data flashback
|
|
286
|
+
*/
|
|
287
|
+
continuousBackup?: pulumi.Input<boolean>;
|
|
267
288
|
/**
|
|
268
289
|
* Whether to create a backup before making changes.
|
|
269
290
|
*/
|
|
@@ -420,11 +441,19 @@ export interface InstanceArgs {
|
|
|
420
441
|
* Set a backup name for the full backup created before changes.
|
|
421
442
|
*/
|
|
422
443
|
backupPointName?: pulumi.Input<string>;
|
|
444
|
+
/**
|
|
445
|
+
* Restore data from the backup set to the original Redis instance.
|
|
446
|
+
*/
|
|
447
|
+
backupRestore?: pulumi.Input<inputs.redis.InstanceBackupRestore>;
|
|
423
448
|
/**
|
|
424
449
|
* Instance billing type. Value options: PrePaid: Subscription (also called prepaid). PostPaid: Pay-as-you-go (also called postpaid).
|
|
425
450
|
*/
|
|
426
451
|
chargeType?: pulumi.Input<string>;
|
|
427
452
|
configureNodes: pulumi.Input<pulumi.Input<inputs.redis.InstanceConfigureNode>[]>;
|
|
453
|
+
/**
|
|
454
|
+
* Enable data flashback
|
|
455
|
+
*/
|
|
456
|
+
continuousBackup?: pulumi.Input<boolean>;
|
|
428
457
|
/**
|
|
429
458
|
* Whether to create a backup before making changes.
|
|
430
459
|
*/
|
package/redis/instance.js
CHANGED
|
@@ -15,24 +15,6 @@ const utilities = require("../utilities");
|
|
|
15
15
|
* import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
|
|
16
16
|
*
|
|
17
17
|
* const redisInstanceDemo = new bytepluscc.redis.Instance("RedisInstanceDemo", {
|
|
18
|
-
* instanceName: "RedisInstance",
|
|
19
|
-
* shardedCluster: 1,
|
|
20
|
-
* password: "********",
|
|
21
|
-
* nodeNumber: 2,
|
|
22
|
-
* shardCapacity: 512,
|
|
23
|
-
* shardNumber: 2,
|
|
24
|
-
* engineVersion: "5.0",
|
|
25
|
-
* vpcId: "vpc-13f8xxxx",
|
|
26
|
-
* subnetId: "vpc_subnet-xxxx",
|
|
27
|
-
* deletionProtection: "disabled",
|
|
28
|
-
* chargeType: "PostPaid",
|
|
29
|
-
* port: 6381,
|
|
30
|
-
* projectName: "default",
|
|
31
|
-
* tags: [{
|
|
32
|
-
* key: "env",
|
|
33
|
-
* value: "test",
|
|
34
|
-
* }],
|
|
35
|
-
* multiAz: "enabled",
|
|
36
18
|
* configureNodes: [
|
|
37
19
|
* {
|
|
38
20
|
* az: "cn-beijing-a",
|
|
@@ -41,6 +23,29 @@ const utilities = require("../utilities");
|
|
|
41
23
|
* az: "cn-beijing-b",
|
|
42
24
|
* },
|
|
43
25
|
* ],
|
|
26
|
+
* multiAz: "enabled",
|
|
27
|
+
* tags: [{
|
|
28
|
+
* key: "env",
|
|
29
|
+
* value: "test",
|
|
30
|
+
* }],
|
|
31
|
+
* projectName: "default",
|
|
32
|
+
* vpcId: "vpc-xxxxx",
|
|
33
|
+
* subnetId: "subnet-xxxxx",
|
|
34
|
+
* deletionProtection: "enabled",
|
|
35
|
+
* port: 9999,
|
|
36
|
+
* autoRenew: false,
|
|
37
|
+
* chargeType: "PostPaid",
|
|
38
|
+
* engineVersion: "6.0",
|
|
39
|
+
* shardCapacity: 512,
|
|
40
|
+
* shardNumber: 2,
|
|
41
|
+
* nodeNumber: 2,
|
|
42
|
+
* allowListIds: ["acl-cnlfwmfaqdefxxxxx"],
|
|
43
|
+
* password: "********",
|
|
44
|
+
* shardedCluster: 1,
|
|
45
|
+
* instanceName: "ccapi-auto-test",
|
|
46
|
+
* noAuthMode: "open",
|
|
47
|
+
* parameterGroupId: "DefaultParamGroupId-6.0",
|
|
48
|
+
* continuousBackup: true,
|
|
44
49
|
* });
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
@@ -81,10 +86,12 @@ class Instance extends pulumi.CustomResource {
|
|
|
81
86
|
resourceInputs["allowListIds"] = state ? state.allowListIds : undefined;
|
|
82
87
|
resourceInputs["autoRenew"] = state ? state.autoRenew : undefined;
|
|
83
88
|
resourceInputs["backupPointName"] = state ? state.backupPointName : undefined;
|
|
89
|
+
resourceInputs["backupRestore"] = state ? state.backupRestore : undefined;
|
|
84
90
|
resourceInputs["blueGreenRole"] = state ? state.blueGreenRole : undefined;
|
|
85
91
|
resourceInputs["capacity"] = state ? state.capacity : undefined;
|
|
86
92
|
resourceInputs["chargeType"] = state ? state.chargeType : undefined;
|
|
87
93
|
resourceInputs["configureNodes"] = state ? state.configureNodes : undefined;
|
|
94
|
+
resourceInputs["continuousBackup"] = state ? state.continuousBackup : undefined;
|
|
88
95
|
resourceInputs["createBackup"] = state ? state.createBackup : undefined;
|
|
89
96
|
resourceInputs["createTime"] = state ? state.createTime : undefined;
|
|
90
97
|
resourceInputs["dataLayout"] = state ? state.dataLayout : undefined;
|
|
@@ -152,8 +159,10 @@ class Instance extends pulumi.CustomResource {
|
|
|
152
159
|
resourceInputs["allowListIds"] = args ? args.allowListIds : undefined;
|
|
153
160
|
resourceInputs["autoRenew"] = args ? args.autoRenew : undefined;
|
|
154
161
|
resourceInputs["backupPointName"] = args ? args.backupPointName : undefined;
|
|
162
|
+
resourceInputs["backupRestore"] = args ? args.backupRestore : undefined;
|
|
155
163
|
resourceInputs["chargeType"] = args ? args.chargeType : undefined;
|
|
156
164
|
resourceInputs["configureNodes"] = args ? args.configureNodes : undefined;
|
|
165
|
+
resourceInputs["continuousBackup"] = args ? args.continuousBackup : undefined;
|
|
157
166
|
resourceInputs["createBackup"] = args ? args.createBackup : undefined;
|
|
158
167
|
resourceInputs["deletionProtection"] = args ? args.deletionProtection : undefined;
|
|
159
168
|
resourceInputs["engineVersion"] = args ? args.engineVersion : undefined;
|
package/redis/instance.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../redis/instance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../redis/instance.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Byteplus::TransitRouter::PeerAttachment
|
|
5
|
+
*/
|
|
6
|
+
export declare function getPeerAttachment(args: GetPeerAttachmentArgs, opts?: pulumi.InvokeOptions): Promise<GetPeerAttachmentResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getPeerAttachment.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetPeerAttachmentArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getPeerAttachment.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetPeerAttachmentResult {
|
|
20
|
+
/**
|
|
21
|
+
* Automatically synchronize TR routes to the network instance route table. true: Yes. false: No.
|
|
22
|
+
*/
|
|
23
|
+
readonly autoPublishRouteEnabled: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Bandwidth for cross-region connection, measured in Mbps. The maximum bandwidth cannot exceed the remaining unallocated bandwidth limit of the specified transit router bandwidth package.
|
|
26
|
+
*/
|
|
27
|
+
readonly bandwidth: number;
|
|
28
|
+
/**
|
|
29
|
+
* Creation time of the cross-region connection.
|
|
30
|
+
*/
|
|
31
|
+
readonly creationTime: string;
|
|
32
|
+
/**
|
|
33
|
+
* Description of the cross-region connection. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: English comma (,), period (.), underscore (_), space ( ), equals sign (=), hyphen (-), Chinese comma (,), and Chinese period (。). Length limit: 0–255 characters. If this parameter is not provided or no value is specified, the default is an empty string.
|
|
34
|
+
*/
|
|
35
|
+
readonly description: string;
|
|
36
|
+
/**
|
|
37
|
+
* Uniquely identifies the resource.
|
|
38
|
+
*/
|
|
39
|
+
readonly id: string;
|
|
40
|
+
/**
|
|
41
|
+
* Enable IPv6. true: Yes. false: No.
|
|
42
|
+
*/
|
|
43
|
+
readonly ipv6Enabled: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* ID of the peer transit router instance. You can call the DescribeTransitRouters API to obtain the transit router instance ID.
|
|
46
|
+
*/
|
|
47
|
+
readonly peerTransitRouterId: string;
|
|
48
|
+
/**
|
|
49
|
+
* Region ID of the peer transit router instance. Refer to the region documentation to obtain the region ID.
|
|
50
|
+
*/
|
|
51
|
+
readonly peerTransitRouterRegionId: string;
|
|
52
|
+
/**
|
|
53
|
+
* Status of the cross-region connection. Creating: In progress. Deleting: In progress. Pending: Configuring. Available: Available.
|
|
54
|
+
*/
|
|
55
|
+
readonly status: string;
|
|
56
|
+
/**
|
|
57
|
+
* Tag list for the cross-region connection.
|
|
58
|
+
*/
|
|
59
|
+
readonly tags: outputs.transitrouter.GetPeerAttachmentTag[];
|
|
60
|
+
/**
|
|
61
|
+
* ID of the cross-region connection.
|
|
62
|
+
*/
|
|
63
|
+
readonly transitRouterAttachmentId: string;
|
|
64
|
+
/**
|
|
65
|
+
* Name of the cross-region connection. Must start with a letter, number, or Chinese character. Can include letters, numbers, Chinese characters, and the following special characters: period (.), underscore (_), and hyphen (-). Length limit: 1–128 characters. If this parameter is not provided or no value is specified, the default is the transit router instance ID.
|
|
66
|
+
*/
|
|
67
|
+
readonly transitRouterAttachmentName: string;
|
|
68
|
+
/**
|
|
69
|
+
* ID of the transit router bandwidth package. You can call the DescribeTransitRouters API to obtain the transit router instance ID. If this parameter is provided, the Bandwidth parameter must also be provided. If this parameter is not provided, the Bandwidth parameter is not required.
|
|
70
|
+
*/
|
|
71
|
+
readonly transitRouterBandwidthPackageId: string;
|
|
72
|
+
/**
|
|
73
|
+
* ID of the forwarding policy associated with the cross-region connection.
|
|
74
|
+
*/
|
|
75
|
+
readonly transitRouterForwardPolicyTableId: string;
|
|
76
|
+
/**
|
|
77
|
+
* ID of the local transit router instance.
|
|
78
|
+
*/
|
|
79
|
+
readonly transitRouterId: string;
|
|
80
|
+
/**
|
|
81
|
+
* Associated forwarding route table for the cross-region connection.
|
|
82
|
+
*/
|
|
83
|
+
readonly transitRouterRouteTableId: string;
|
|
84
|
+
/**
|
|
85
|
+
* ID of the traffic marking policy associated with the cross-region connection.
|
|
86
|
+
*/
|
|
87
|
+
readonly transitRouterTrafficQosMarkingPolicyId: string;
|
|
88
|
+
/**
|
|
89
|
+
* ID of the flow queue policy associated with the cross-region connection.
|
|
90
|
+
*/
|
|
91
|
+
readonly transitRouterTrafficQosQueuePolicyId: string;
|
|
92
|
+
/**
|
|
93
|
+
* Last operation time of the cross-region connection.
|
|
94
|
+
*/
|
|
95
|
+
readonly updateTime: string;
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Data Source schema for Byteplus::TransitRouter::PeerAttachment
|
|
99
|
+
*/
|
|
100
|
+
export declare function getPeerAttachmentOutput(args: GetPeerAttachmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPeerAttachmentResult>;
|
|
101
|
+
/**
|
|
102
|
+
* A collection of arguments for invoking getPeerAttachment.
|
|
103
|
+
*/
|
|
104
|
+
export interface GetPeerAttachmentOutputArgs {
|
|
105
|
+
/**
|
|
106
|
+
* Uniquely identifies the resource.
|
|
107
|
+
*/
|
|
108
|
+
id: pulumi.Input<string>;
|
|
109
|
+
}
|