@byteplus/pulumi-bytepluscc 0.0.25 → 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/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/types/input.d.ts +50 -0
- package/types/output.d.ts +120 -0
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
2
3
|
/**
|
|
3
4
|
* Data Source schema for Byteplus::PrivateZone::Record
|
|
4
5
|
*/
|
|
@@ -44,6 +45,10 @@ export interface GetRecordResult {
|
|
|
44
45
|
* DNS record ID.
|
|
45
46
|
*/
|
|
46
47
|
readonly recordId: string;
|
|
48
|
+
/**
|
|
49
|
+
* Record set list
|
|
50
|
+
*/
|
|
51
|
+
readonly recordSets: outputs.privatezone.GetRecordRecordSet[];
|
|
47
52
|
/**
|
|
48
53
|
* Remarks. Supports UTF-8 characters. Maximum 16 characters. Default is an empty string.
|
|
49
54
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRecord.js","sourceRoot":"","sources":["../../privatezone/getRecord.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getRecord.js","sourceRoot":"","sources":["../../privatezone/getRecord.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8BAKC;AAiFD;;GAEG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAAiC;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC"}
|
package/privatezone/record.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
2
4
|
/**
|
|
3
5
|
* A DNS record maps a domain name to resource information within a VPC.
|
|
4
6
|
*
|
|
@@ -67,6 +69,7 @@ export declare class Record extends pulumi.CustomResource {
|
|
|
67
69
|
* DNS record ID.
|
|
68
70
|
*/
|
|
69
71
|
readonly recordId: pulumi.Output<string>;
|
|
72
|
+
readonly recordSets: pulumi.Output<outputs.privatezone.RecordRecordSet[]>;
|
|
70
73
|
/**
|
|
71
74
|
* Remarks. Supports UTF-8 characters. Maximum 16 characters. Default is an empty string.
|
|
72
75
|
*/
|
|
@@ -136,6 +139,7 @@ export interface RecordState {
|
|
|
136
139
|
* DNS record ID.
|
|
137
140
|
*/
|
|
138
141
|
recordId?: pulumi.Input<string>;
|
|
142
|
+
recordSets?: pulumi.Input<pulumi.Input<inputs.privatezone.RecordRecordSet>[]>;
|
|
139
143
|
/**
|
|
140
144
|
* Remarks. Supports UTF-8 characters. Maximum 16 characters. Default is an empty string.
|
|
141
145
|
*/
|
package/privatezone/record.js
CHANGED
|
@@ -67,6 +67,7 @@ class Record extends pulumi.CustomResource {
|
|
|
67
67
|
resourceInputs["lastOperator"] = state ? state.lastOperator : undefined;
|
|
68
68
|
resourceInputs["line"] = state ? state.line : undefined;
|
|
69
69
|
resourceInputs["recordId"] = state ? state.recordId : undefined;
|
|
70
|
+
resourceInputs["recordSets"] = state ? state.recordSets : undefined;
|
|
70
71
|
resourceInputs["remark"] = state ? state.remark : undefined;
|
|
71
72
|
resourceInputs["ttl"] = state ? state.ttl : undefined;
|
|
72
73
|
resourceInputs["type"] = state ? state.type : undefined;
|
|
@@ -103,6 +104,7 @@ class Record extends pulumi.CustomResource {
|
|
|
103
104
|
resourceInputs["createdAt"] = undefined /*out*/;
|
|
104
105
|
resourceInputs["lastOperator"] = undefined /*out*/;
|
|
105
106
|
resourceInputs["recordId"] = undefined /*out*/;
|
|
107
|
+
resourceInputs["recordSets"] = undefined /*out*/;
|
|
106
108
|
resourceInputs["updatedAt"] = undefined /*out*/;
|
|
107
109
|
}
|
|
108
110
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"record.js","sourceRoot":"","sources":["../../privatezone/record.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"record.js","sourceRoot":"","sources":["../../privatezone/record.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Byteplus::RDSMySQL::ParameterTemplate
|
|
5
|
+
*/
|
|
6
|
+
export declare function getParameterTemplate(args: GetParameterTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetParameterTemplateResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getParameterTemplate.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetParameterTemplateArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getParameterTemplate.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetParameterTemplateResult {
|
|
20
|
+
/**
|
|
21
|
+
* Account ID
|
|
22
|
+
*/
|
|
23
|
+
readonly accountId: string;
|
|
24
|
+
/**
|
|
25
|
+
* Creation time (UTC+8), format: yyyy-MM-dd HH:mm:ss
|
|
26
|
+
*/
|
|
27
|
+
readonly createTime: string;
|
|
28
|
+
/**
|
|
29
|
+
* Database engine type. Values: InnoDB (InnoDB engine), RocksDB (RocksDB engine). Default: InnoDB
|
|
30
|
+
*/
|
|
31
|
+
readonly engineType: string;
|
|
32
|
+
/**
|
|
33
|
+
* Uniquely identifies the resource.
|
|
34
|
+
*/
|
|
35
|
+
readonly id: string;
|
|
36
|
+
/**
|
|
37
|
+
* Whether the template contains parameters that require a restart
|
|
38
|
+
*/
|
|
39
|
+
readonly needRestart: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Number of parameters included in the template
|
|
42
|
+
*/
|
|
43
|
+
readonly parameterNum: number;
|
|
44
|
+
/**
|
|
45
|
+
* Associated project
|
|
46
|
+
*/
|
|
47
|
+
readonly projectName: string;
|
|
48
|
+
/**
|
|
49
|
+
* Template category. Value: DBEngine (database engine parameter)
|
|
50
|
+
*/
|
|
51
|
+
readonly templateCategory: string;
|
|
52
|
+
/**
|
|
53
|
+
* Parameter template description
|
|
54
|
+
*/
|
|
55
|
+
readonly templateDesc: string;
|
|
56
|
+
/**
|
|
57
|
+
* Parameter template ID, automatically generated by the system
|
|
58
|
+
*/
|
|
59
|
+
readonly templateId: string;
|
|
60
|
+
/**
|
|
61
|
+
* Parameter template name
|
|
62
|
+
*/
|
|
63
|
+
readonly templateName: string;
|
|
64
|
+
/**
|
|
65
|
+
* Parameters included in the parameter template
|
|
66
|
+
*/
|
|
67
|
+
readonly templateParams: outputs.rdsmysql.GetParameterTemplateTemplateParam[];
|
|
68
|
+
/**
|
|
69
|
+
* Parameter template type. Values: System (system template), User (user template)
|
|
70
|
+
*/
|
|
71
|
+
readonly templateSource: string;
|
|
72
|
+
/**
|
|
73
|
+
* Database type of the parameter template. Default: Mysql
|
|
74
|
+
*/
|
|
75
|
+
readonly templateType: string;
|
|
76
|
+
/**
|
|
77
|
+
* Database version of the parameter template. Value range: MySQL*5*7 (MySQL 5.7 version), MySQL*8*0 (MySQL 8.0 version)
|
|
78
|
+
*/
|
|
79
|
+
readonly templateTypeVersion: string;
|
|
80
|
+
/**
|
|
81
|
+
* Template modification time
|
|
82
|
+
*/
|
|
83
|
+
readonly updateTime: string;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Data Source schema for Byteplus::RDSMySQL::ParameterTemplate
|
|
87
|
+
*/
|
|
88
|
+
export declare function getParameterTemplateOutput(args: GetParameterTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetParameterTemplateResult>;
|
|
89
|
+
/**
|
|
90
|
+
* A collection of arguments for invoking getParameterTemplate.
|
|
91
|
+
*/
|
|
92
|
+
export interface GetParameterTemplateOutputArgs {
|
|
93
|
+
/**
|
|
94
|
+
* Uniquely identifies the resource.
|
|
95
|
+
*/
|
|
96
|
+
id: pulumi.Input<string>;
|
|
97
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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.getParameterTemplateOutput = exports.getParameterTemplate = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Byteplus::RDSMySQL::ParameterTemplate
|
|
10
|
+
*/
|
|
11
|
+
function getParameterTemplate(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("bytepluscc:rdsmysql/getParameterTemplate:getParameterTemplate", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getParameterTemplate = getParameterTemplate;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Byteplus::RDSMySQL::ParameterTemplate
|
|
20
|
+
*/
|
|
21
|
+
function getParameterTemplateOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("bytepluscc:rdsmysql/getParameterTemplate:getParameterTemplate", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getParameterTemplateOutput = getParameterTemplateOutput;
|
|
28
|
+
//# sourceMappingURL=getParameterTemplate.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getParameterTemplate.js","sourceRoot":"","sources":["../../rdsmysql/getParameterTemplate.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+DAA+D,EAAE;QAC1F,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC;AAiFD;;GAEG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAAiC;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+DAA+D,EAAE;QAChG,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gEAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Byteplus::RDSMySQL::ParameterTemplate
|
|
4
|
+
*/
|
|
5
|
+
export declare function getParameterTemplates(opts?: pulumi.InvokeOptions): Promise<GetParameterTemplatesResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getParameterTemplates.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetParameterTemplatesResult {
|
|
10
|
+
/**
|
|
11
|
+
* Uniquely identifies the data source.
|
|
12
|
+
*/
|
|
13
|
+
readonly id: string;
|
|
14
|
+
/**
|
|
15
|
+
* Set of Resource Identifiers.
|
|
16
|
+
*/
|
|
17
|
+
readonly ids: string[];
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Plural Data Source schema for Byteplus::RDSMySQL::ParameterTemplate
|
|
21
|
+
*/
|
|
22
|
+
export declare function getParameterTemplatesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetParameterTemplatesResult>;
|
|
@@ -0,0 +1,24 @@
|
|
|
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.getParameterTemplatesOutput = exports.getParameterTemplates = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Byteplus::RDSMySQL::ParameterTemplate
|
|
10
|
+
*/
|
|
11
|
+
function getParameterTemplates(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("bytepluscc:rdsmysql/getParameterTemplates:getParameterTemplates", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getParameterTemplates = getParameterTemplates;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Byteplus::RDSMySQL::ParameterTemplate
|
|
18
|
+
*/
|
|
19
|
+
function getParameterTemplatesOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("bytepluscc:rdsmysql/getParameterTemplates:getParameterTemplates", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getParameterTemplatesOutput = getParameterTemplatesOutput;
|
|
24
|
+
//# sourceMappingURL=getParameterTemplates.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getParameterTemplates.js","sourceRoot":"","sources":["../../rdsmysql/getParameterTemplates.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA2B;IAC7D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iEAAiE,EAAE,EAC/F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,sDAIC;AAeD;;GAEG;AACH,SAAgB,2BAA2B,CAAC,IAAiC;IACzE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iEAAiE,EAAE,EACrG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,kEAIC"}
|
package/rdsmysql/index.d.ts
CHANGED
|
@@ -49,6 +49,15 @@ export declare const getInstanceOutput: typeof import("./getInstance").getInstan
|
|
|
49
49
|
export { GetInstancesResult } from "./getInstances";
|
|
50
50
|
export declare const getInstances: typeof import("./getInstances").getInstances;
|
|
51
51
|
export declare const getInstancesOutput: typeof import("./getInstances").getInstancesOutput;
|
|
52
|
+
export { GetParameterTemplateArgs, GetParameterTemplateResult, GetParameterTemplateOutputArgs } from "./getParameterTemplate";
|
|
53
|
+
export declare const getParameterTemplate: typeof import("./getParameterTemplate").getParameterTemplate;
|
|
54
|
+
export declare const getParameterTemplateOutput: typeof import("./getParameterTemplate").getParameterTemplateOutput;
|
|
55
|
+
export { GetParameterTemplatesResult } from "./getParameterTemplates";
|
|
56
|
+
export declare const getParameterTemplates: typeof import("./getParameterTemplates").getParameterTemplates;
|
|
57
|
+
export declare const getParameterTemplatesOutput: typeof import("./getParameterTemplates").getParameterTemplatesOutput;
|
|
52
58
|
export { InstanceArgs, InstanceState } from "./instance";
|
|
53
59
|
export type Instance = import("./instance").Instance;
|
|
54
60
|
export declare const Instance: typeof import("./instance").Instance;
|
|
61
|
+
export { ParameterTemplateArgs, ParameterTemplateState } from "./parameterTemplate";
|
|
62
|
+
export type ParameterTemplate = import("./parameterTemplate").ParameterTemplate;
|
|
63
|
+
export declare const ParameterTemplate: typeof import("./parameterTemplate").ParameterTemplate;
|
package/rdsmysql/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.Instance = exports.getInstancesOutput = exports.getInstances = exports.getInstanceOutput = exports.getInstance = exports.getEndpointsOutput = exports.getEndpoints = exports.getEndpointOutput = exports.getEndpoint = exports.getDbAccountsOutput = exports.getDbAccounts = exports.getDbAccountOutput = exports.getDbAccount = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseOutput = exports.getDatabase = exports.getBackupsOutput = exports.getBackups = exports.getBackupOutput = exports.getBackup = exports.getAllowListsOutput = exports.getAllowLists = exports.getAllowListOutput = exports.getAllowList = exports.Endpoint = exports.DbAccount = exports.Database = exports.Backup = exports.AllowList = void 0;
|
|
5
|
+
exports.ParameterTemplate = exports.Instance = exports.getParameterTemplatesOutput = exports.getParameterTemplates = exports.getParameterTemplateOutput = exports.getParameterTemplate = exports.getInstancesOutput = exports.getInstances = exports.getInstanceOutput = exports.getInstance = exports.getEndpointsOutput = exports.getEndpoints = exports.getEndpointOutput = exports.getEndpoint = exports.getDbAccountsOutput = exports.getDbAccounts = exports.getDbAccountOutput = exports.getDbAccount = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabaseOutput = exports.getDatabase = exports.getBackupsOutput = exports.getBackups = exports.getBackupOutput = exports.getBackup = exports.getAllowListsOutput = exports.getAllowLists = exports.getAllowListOutput = exports.getAllowList = exports.Endpoint = exports.DbAccount = exports.Database = exports.Backup = exports.AllowList = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.AllowList = null;
|
|
@@ -51,8 +51,16 @@ utilities.lazyLoad(exports, ["getInstance", "getInstanceOutput"], () => require(
|
|
|
51
51
|
exports.getInstances = null;
|
|
52
52
|
exports.getInstancesOutput = null;
|
|
53
53
|
utilities.lazyLoad(exports, ["getInstances", "getInstancesOutput"], () => require("./getInstances"));
|
|
54
|
+
exports.getParameterTemplate = null;
|
|
55
|
+
exports.getParameterTemplateOutput = null;
|
|
56
|
+
utilities.lazyLoad(exports, ["getParameterTemplate", "getParameterTemplateOutput"], () => require("./getParameterTemplate"));
|
|
57
|
+
exports.getParameterTemplates = null;
|
|
58
|
+
exports.getParameterTemplatesOutput = null;
|
|
59
|
+
utilities.lazyLoad(exports, ["getParameterTemplates", "getParameterTemplatesOutput"], () => require("./getParameterTemplates"));
|
|
54
60
|
exports.Instance = null;
|
|
55
61
|
utilities.lazyLoad(exports, ["Instance"], () => require("./instance"));
|
|
62
|
+
exports.ParameterTemplate = null;
|
|
63
|
+
utilities.lazyLoad(exports, ["ParameterTemplate"], () => require("./parameterTemplate"));
|
|
56
64
|
const _module = {
|
|
57
65
|
version: utilities.getVersion(),
|
|
58
66
|
construct: (name, type, urn) => {
|
|
@@ -69,6 +77,8 @@ const _module = {
|
|
|
69
77
|
return new exports.Endpoint(name, undefined, { urn });
|
|
70
78
|
case "bytepluscc:rdsmysql/instance:Instance":
|
|
71
79
|
return new exports.Instance(name, undefined, { urn });
|
|
80
|
+
case "bytepluscc:rdsmysql/parameterTemplate:ParameterTemplate":
|
|
81
|
+
return new exports.ParameterTemplate(name, undefined, { urn });
|
|
72
82
|
default:
|
|
73
83
|
throw new Error(`unknown resource type ${type}`);
|
|
74
84
|
}
|
|
@@ -80,4 +90,5 @@ pulumi.runtime.registerResourceModule("bytepluscc", "rdsmysql/database", _module
|
|
|
80
90
|
pulumi.runtime.registerResourceModule("bytepluscc", "rdsmysql/dbAccount", _module);
|
|
81
91
|
pulumi.runtime.registerResourceModule("bytepluscc", "rdsmysql/endpoint", _module);
|
|
82
92
|
pulumi.runtime.registerResourceModule("bytepluscc", "rdsmysql/instance", _module);
|
|
93
|
+
pulumi.runtime.registerResourceModule("bytepluscc", "rdsmysql/parameterTemplate", _module);
|
|
83
94
|
//# sourceMappingURL=index.js.map
|
package/rdsmysql/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../rdsmysql/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../rdsmysql/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -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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"}
|
package/types/input.d.ts
CHANGED
|
@@ -7533,6 +7533,32 @@ export declare namespace privatelink {
|
|
|
7533
7533
|
}
|
|
7534
7534
|
}
|
|
7535
7535
|
export declare namespace privatezone {
|
|
7536
|
+
interface RecordRecordSet {
|
|
7537
|
+
/**
|
|
7538
|
+
* Full domain name
|
|
7539
|
+
*/
|
|
7540
|
+
fqdn?: pulumi.Input<string>;
|
|
7541
|
+
/**
|
|
7542
|
+
* Subdomain prefix
|
|
7543
|
+
*/
|
|
7544
|
+
host?: pulumi.Input<string>;
|
|
7545
|
+
/**
|
|
7546
|
+
* Record set ID
|
|
7547
|
+
*/
|
|
7548
|
+
id?: pulumi.Input<string>;
|
|
7549
|
+
/**
|
|
7550
|
+
* Resolution line
|
|
7551
|
+
*/
|
|
7552
|
+
line?: pulumi.Input<string>;
|
|
7553
|
+
/**
|
|
7554
|
+
* Record type
|
|
7555
|
+
*/
|
|
7556
|
+
type?: pulumi.Input<string>;
|
|
7557
|
+
/**
|
|
7558
|
+
* Load balancing enabled
|
|
7559
|
+
*/
|
|
7560
|
+
weightEnabled?: pulumi.Input<boolean>;
|
|
7561
|
+
}
|
|
7536
7562
|
interface ResolverEndpointIpConfig {
|
|
7537
7563
|
/**
|
|
7538
7564
|
* Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
|
|
@@ -8364,6 +8390,16 @@ export declare namespace rdsmysql {
|
|
|
8364
8390
|
*/
|
|
8365
8391
|
value?: pulumi.Input<string>;
|
|
8366
8392
|
}
|
|
8393
|
+
interface ParameterTemplateTemplateParam {
|
|
8394
|
+
/**
|
|
8395
|
+
* Instance parameter name
|
|
8396
|
+
*/
|
|
8397
|
+
name: pulumi.Input<string>;
|
|
8398
|
+
/**
|
|
8399
|
+
* Parameter runtime value
|
|
8400
|
+
*/
|
|
8401
|
+
runningValue: pulumi.Input<string>;
|
|
8402
|
+
}
|
|
8367
8403
|
}
|
|
8368
8404
|
export declare namespace rdspostgresql {
|
|
8369
8405
|
interface AllowListAssociatedInstance {
|
|
@@ -8684,6 +8720,20 @@ export declare namespace redis {
|
|
|
8684
8720
|
*/
|
|
8685
8721
|
securityGroupId?: pulumi.Input<string>;
|
|
8686
8722
|
}
|
|
8723
|
+
interface InstanceBackupRestore {
|
|
8724
|
+
/**
|
|
8725
|
+
* Backup ID, used to specify which backup to use when restoring from a backup set
|
|
8726
|
+
*/
|
|
8727
|
+
backupPointId?: pulumi.Input<string>;
|
|
8728
|
+
/**
|
|
8729
|
+
* Recovery method
|
|
8730
|
+
*/
|
|
8731
|
+
backupType?: pulumi.Input<string>;
|
|
8732
|
+
/**
|
|
8733
|
+
* Used to specify the point in time for point-in-time recovery
|
|
8734
|
+
*/
|
|
8735
|
+
timePoint?: pulumi.Input<string>;
|
|
8736
|
+
}
|
|
8687
8737
|
interface InstanceCapacity {
|
|
8688
8738
|
/**
|
|
8689
8739
|
* Total memory capacity of the current instance. Unit: MiB.
|
package/types/output.d.ts
CHANGED
|
@@ -15568,6 +15568,32 @@ export declare namespace privatelink {
|
|
|
15568
15568
|
}
|
|
15569
15569
|
}
|
|
15570
15570
|
export declare namespace privatezone {
|
|
15571
|
+
interface GetRecordRecordSet {
|
|
15572
|
+
/**
|
|
15573
|
+
* Full domain name
|
|
15574
|
+
*/
|
|
15575
|
+
fqdn: string;
|
|
15576
|
+
/**
|
|
15577
|
+
* Subdomain prefix
|
|
15578
|
+
*/
|
|
15579
|
+
host: string;
|
|
15580
|
+
/**
|
|
15581
|
+
* Record set ID
|
|
15582
|
+
*/
|
|
15583
|
+
id: string;
|
|
15584
|
+
/**
|
|
15585
|
+
* Resolution line
|
|
15586
|
+
*/
|
|
15587
|
+
line: string;
|
|
15588
|
+
/**
|
|
15589
|
+
* Record type
|
|
15590
|
+
*/
|
|
15591
|
+
type: string;
|
|
15592
|
+
/**
|
|
15593
|
+
* Load balancing enabled
|
|
15594
|
+
*/
|
|
15595
|
+
weightEnabled: boolean;
|
|
15596
|
+
}
|
|
15571
15597
|
interface GetResolverEndpointIpConfig {
|
|
15572
15598
|
/**
|
|
15573
15599
|
* Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
|
|
@@ -15634,6 +15660,32 @@ export declare namespace privatezone {
|
|
|
15634
15660
|
*/
|
|
15635
15661
|
vpcId: string;
|
|
15636
15662
|
}
|
|
15663
|
+
interface RecordRecordSet {
|
|
15664
|
+
/**
|
|
15665
|
+
* Full domain name
|
|
15666
|
+
*/
|
|
15667
|
+
fqdn: string;
|
|
15668
|
+
/**
|
|
15669
|
+
* Subdomain prefix
|
|
15670
|
+
*/
|
|
15671
|
+
host: string;
|
|
15672
|
+
/**
|
|
15673
|
+
* Record set ID
|
|
15674
|
+
*/
|
|
15675
|
+
id: string;
|
|
15676
|
+
/**
|
|
15677
|
+
* Resolution line
|
|
15678
|
+
*/
|
|
15679
|
+
line: string;
|
|
15680
|
+
/**
|
|
15681
|
+
* Record type
|
|
15682
|
+
*/
|
|
15683
|
+
type: string;
|
|
15684
|
+
/**
|
|
15685
|
+
* Load balancing enabled
|
|
15686
|
+
*/
|
|
15687
|
+
weightEnabled: boolean;
|
|
15688
|
+
}
|
|
15637
15689
|
interface ResolverEndpointIpConfig {
|
|
15638
15690
|
/**
|
|
15639
15691
|
* Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
|
|
@@ -17036,6 +17088,36 @@ export declare namespace rdsmysql {
|
|
|
17036
17088
|
*/
|
|
17037
17089
|
value: string;
|
|
17038
17090
|
}
|
|
17091
|
+
interface GetParameterTemplateTemplateParam {
|
|
17092
|
+
/**
|
|
17093
|
+
* Default value of the parameter
|
|
17094
|
+
*/
|
|
17095
|
+
defaultValue: string;
|
|
17096
|
+
/**
|
|
17097
|
+
* Parameter description
|
|
17098
|
+
*/
|
|
17099
|
+
description: string;
|
|
17100
|
+
/**
|
|
17101
|
+
* Expected value of the parameter
|
|
17102
|
+
*/
|
|
17103
|
+
expectValue: string;
|
|
17104
|
+
/**
|
|
17105
|
+
* Instance parameter name
|
|
17106
|
+
*/
|
|
17107
|
+
name: string;
|
|
17108
|
+
/**
|
|
17109
|
+
* Whether a restart is required for the instance to take effect
|
|
17110
|
+
*/
|
|
17111
|
+
restart: boolean;
|
|
17112
|
+
/**
|
|
17113
|
+
* Parameter runtime value
|
|
17114
|
+
*/
|
|
17115
|
+
runningValue: string;
|
|
17116
|
+
/**
|
|
17117
|
+
* Parameter value range
|
|
17118
|
+
*/
|
|
17119
|
+
valueRange: string;
|
|
17120
|
+
}
|
|
17039
17121
|
interface InstanceAddressObject {
|
|
17040
17122
|
/**
|
|
17041
17123
|
* false: private network resolution (default). true: private and public network resolution.
|
|
@@ -17319,6 +17401,16 @@ export declare namespace rdsmysql {
|
|
|
17319
17401
|
*/
|
|
17320
17402
|
value: string;
|
|
17321
17403
|
}
|
|
17404
|
+
interface ParameterTemplateTemplateParam {
|
|
17405
|
+
/**
|
|
17406
|
+
* Instance parameter name
|
|
17407
|
+
*/
|
|
17408
|
+
name: string;
|
|
17409
|
+
/**
|
|
17410
|
+
* Parameter runtime value
|
|
17411
|
+
*/
|
|
17412
|
+
runningValue: string;
|
|
17413
|
+
}
|
|
17322
17414
|
}
|
|
17323
17415
|
export declare namespace rdspostgresql {
|
|
17324
17416
|
interface AllowListAssociatedInstance {
|
|
@@ -18000,6 +18092,20 @@ export declare namespace redis {
|
|
|
18000
18092
|
*/
|
|
18001
18093
|
securityGroupName: string;
|
|
18002
18094
|
}
|
|
18095
|
+
interface GetInstanceBackupRestore {
|
|
18096
|
+
/**
|
|
18097
|
+
* Backup ID, used to specify which backup to use when restoring from a backup set
|
|
18098
|
+
*/
|
|
18099
|
+
backupPointId: string;
|
|
18100
|
+
/**
|
|
18101
|
+
* Recovery method
|
|
18102
|
+
*/
|
|
18103
|
+
backupType: string;
|
|
18104
|
+
/**
|
|
18105
|
+
* Used to specify the point in time for point-in-time recovery
|
|
18106
|
+
*/
|
|
18107
|
+
timePoint: string;
|
|
18108
|
+
}
|
|
18003
18109
|
interface GetInstanceCapacity {
|
|
18004
18110
|
/**
|
|
18005
18111
|
* Total memory capacity of the current instance. Unit: MiB.
|
|
@@ -18084,6 +18190,20 @@ export declare namespace redis {
|
|
|
18084
18190
|
*/
|
|
18085
18191
|
vip: string;
|
|
18086
18192
|
}
|
|
18193
|
+
interface InstanceBackupRestore {
|
|
18194
|
+
/**
|
|
18195
|
+
* Backup ID, used to specify which backup to use when restoring from a backup set
|
|
18196
|
+
*/
|
|
18197
|
+
backupPointId: string;
|
|
18198
|
+
/**
|
|
18199
|
+
* Recovery method
|
|
18200
|
+
*/
|
|
18201
|
+
backupType: string;
|
|
18202
|
+
/**
|
|
18203
|
+
* Used to specify the point in time for point-in-time recovery
|
|
18204
|
+
*/
|
|
18205
|
+
timePoint: string;
|
|
18206
|
+
}
|
|
18087
18207
|
interface InstanceCapacity {
|
|
18088
18208
|
/**
|
|
18089
18209
|
* Total memory capacity of the current instance. Unit: MiB.
|