@pulumi/linode 3.8.0 → 3.9.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/databaseAccessControls.d.ts +102 -0
- package/databaseAccessControls.js +92 -0
- package/databaseAccessControls.js.map +1 -0
- package/databaseMongodb.d.ts +377 -0
- package/databaseMongodb.js +209 -0
- package/databaseMongodb.js.map +1 -0
- package/databaseMysql.d.ts +38 -6
- package/databaseMysql.js +23 -2
- package/databaseMysql.js.map +1 -1
- package/databasePostgresql.d.ts +353 -0
- package/databasePostgresql.js +199 -0
- package/databasePostgresql.js.map +1 -0
- package/firewall.d.ts +2 -1
- package/firewall.js +2 -1
- package/firewall.js.map +1 -1
- package/getDatabaseBackups.d.ts +116 -0
- package/getDatabaseBackups.js +71 -0
- package/getDatabaseBackups.js.map +1 -0
- package/getDatabaseEngines.d.ts +0 -2
- package/getDatabaseEngines.js +0 -2
- package/getDatabaseEngines.js.map +1 -1
- package/getDatabaseMongodb.d.ts +137 -0
- package/getDatabaseMongodb.js +103 -0
- package/getDatabaseMongodb.js.map +1 -0
- package/getDatabaseMysql.d.ts +125 -0
- package/getDatabaseMysql.js +95 -0
- package/getDatabaseMysql.js.map +1 -0
- package/getDatabaseMysqlBackups.d.ts +1 -1
- package/getDatabaseMysqlBackups.js +1 -1
- package/getDatabasePostgresql.d.ts +129 -0
- package/getDatabasePostgresql.js +97 -0
- package/getDatabasePostgresql.js.map +1 -0
- package/getDatabases.d.ts +0 -2
- package/getDatabases.js +0 -2
- package/getDatabases.js.map +1 -1
- package/getIpv6Range.d.ts +62 -0
- package/getIpv6Range.js +49 -0
- package/getIpv6Range.js.map +1 -0
- package/index.d.ts +9 -0
- package/index.js +25 -0
- package/index.js.map +1 -1
- package/instance.d.ts +15 -3
- package/instance.js +2 -0
- package/instance.js.map +1 -1
- package/instanceIp.d.ts +2 -1
- package/instanceIp.js +2 -1
- package/instanceIp.js.map +1 -1
- package/instanceSharedIps.d.ts +60 -0
- package/instanceSharedIps.js +57 -0
- package/instanceSharedIps.js.map +1 -0
- package/ipv6Range.d.ts +3 -3
- package/lkeCluster.d.ts +6 -6
- package/lkeCluster.js +6 -6
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/stackScript.d.ts +1 -1
- package/stackScript.js +1 -1
- package/types/input.d.ts +69 -17
- package/types/output.d.ts +65 -0
|
@@ -0,0 +1,209 @@
|
|
|
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.DatabaseMongodb = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides a Linode Mongo Database resource. This can be used to create, modify, and delete Linode MongoDB Databases.
|
|
10
|
+
* For more information, see the [Linode APIv4 docs](https://www.linode.com/docs/api/databases/).
|
|
11
|
+
*
|
|
12
|
+
* Please keep in mind that Managed Databases can take up to an hour to provision.
|
|
13
|
+
*
|
|
14
|
+
* ## Example Usage
|
|
15
|
+
*
|
|
16
|
+
* Creating a simple MongoDB database instance:
|
|
17
|
+
*
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as linode from "@pulumi/linode";
|
|
21
|
+
*
|
|
22
|
+
* const foobar = new linode.DatabaseMongodb("foobar", {
|
|
23
|
+
* engineId: "mongodb/4.4.10",
|
|
24
|
+
* label: "mydatabase",
|
|
25
|
+
* region: "us-southeast",
|
|
26
|
+
* type: "g6-nanode-1",
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* Creating a complex MongoDB database instance:
|
|
31
|
+
*
|
|
32
|
+
* ```typescript
|
|
33
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
34
|
+
* import * as linode from "@pulumi/linode";
|
|
35
|
+
*
|
|
36
|
+
* const foobar = new linode.DatabaseMongodb("foobar", {
|
|
37
|
+
* allowLists: ["0.0.0.0/0"],
|
|
38
|
+
* clusterSize: 3,
|
|
39
|
+
* compressionType: "zlib",
|
|
40
|
+
* encrypted: true,
|
|
41
|
+
* engineId: "mongodb/4.4.10",
|
|
42
|
+
* label: "mydatabase",
|
|
43
|
+
* region: "us-southeast",
|
|
44
|
+
* sslConnection: true,
|
|
45
|
+
* storageEngine: "wiredtiger",
|
|
46
|
+
* type: "g6-nanode-1",
|
|
47
|
+
* updates: {
|
|
48
|
+
* dayOfWeek: "saturday",
|
|
49
|
+
* duration: 1,
|
|
50
|
+
* frequency: "monthly",
|
|
51
|
+
* hourOfDay: 22,
|
|
52
|
+
* weekOfMonth: 2,
|
|
53
|
+
* },
|
|
54
|
+
* });
|
|
55
|
+
* ```
|
|
56
|
+
* ## updates
|
|
57
|
+
*
|
|
58
|
+
* The following arguments are supported in the `updates` specification block:
|
|
59
|
+
*
|
|
60
|
+
* * `dayOfWeek` - (Required) The day to perform maintenance. (`monday`, `tuesday`, ...)
|
|
61
|
+
*
|
|
62
|
+
* * `duration` - (Required) The maximum maintenance window time in hours. (`1`..`3`)
|
|
63
|
+
*
|
|
64
|
+
* * `frequency` - (Required) Whether maintenance occurs on a weekly or monthly basis. (`weekly`, `monthly`)
|
|
65
|
+
*
|
|
66
|
+
* * `hourOfDay` - (Required) The hour to begin maintenance based in UTC time. (`0`..`23`)
|
|
67
|
+
*
|
|
68
|
+
* * `weekOfMonth` - (Optional) The week of the month to perform monthly frequency updates. Required for `monthly` frequency updates. (`1`..`4`)
|
|
69
|
+
*
|
|
70
|
+
* ## Attributes
|
|
71
|
+
*
|
|
72
|
+
* In addition to all arguments above, the following attributes are exported:
|
|
73
|
+
*
|
|
74
|
+
* * `id` - The ID of the Managed Database.
|
|
75
|
+
*
|
|
76
|
+
* * `caCert` - The base64-encoded SSL CA certificate for the Managed Database instance.
|
|
77
|
+
*
|
|
78
|
+
* * `created` - When this Managed Database was created.
|
|
79
|
+
*
|
|
80
|
+
* * `engine` - The Managed Database engine. (e.g. `mongodb`)
|
|
81
|
+
*
|
|
82
|
+
* * `hostPrimary` - The primary host for the Managed Database.
|
|
83
|
+
*
|
|
84
|
+
* * `hostSecondary` - The secondary/private network host for the Managed Database.
|
|
85
|
+
*
|
|
86
|
+
* * `peers` - A set of peer addresses for this Database.
|
|
87
|
+
*
|
|
88
|
+
* * `port` - The access port for this Managed Database.
|
|
89
|
+
*
|
|
90
|
+
* * `replicaSet` - Label for configuring a MongoDB replica set. Choose the same label on multiple Databases to include them in the same replica set.
|
|
91
|
+
*
|
|
92
|
+
* * `rootPassword` - The randomly-generated root password for the Managed Database instance.
|
|
93
|
+
*
|
|
94
|
+
* * `rootUsername` - The root username for the Managed Database instance.
|
|
95
|
+
*
|
|
96
|
+
* * `status` - The operating status of the Managed Database.
|
|
97
|
+
*
|
|
98
|
+
* * `updated` - When this Managed Database was last updated.
|
|
99
|
+
*
|
|
100
|
+
* * `version` - The Managed Database engine version. (e.g. `v8.0.26`)
|
|
101
|
+
*
|
|
102
|
+
* ## Import
|
|
103
|
+
*
|
|
104
|
+
* Linode MongoDB Databases can be imported using the `id`, e.g.
|
|
105
|
+
*
|
|
106
|
+
* ```sh
|
|
107
|
+
* $ pulumi import linode:index/databaseMongodb:DatabaseMongodb foobar 1234567
|
|
108
|
+
* ```
|
|
109
|
+
*/
|
|
110
|
+
class DatabaseMongodb extends pulumi.CustomResource {
|
|
111
|
+
constructor(name, argsOrState, opts) {
|
|
112
|
+
let resourceInputs = {};
|
|
113
|
+
opts = opts || {};
|
|
114
|
+
if (opts.id) {
|
|
115
|
+
const state = argsOrState;
|
|
116
|
+
resourceInputs["allowLists"] = state ? state.allowLists : undefined;
|
|
117
|
+
resourceInputs["caCert"] = state ? state.caCert : undefined;
|
|
118
|
+
resourceInputs["clusterSize"] = state ? state.clusterSize : undefined;
|
|
119
|
+
resourceInputs["compressionType"] = state ? state.compressionType : undefined;
|
|
120
|
+
resourceInputs["created"] = state ? state.created : undefined;
|
|
121
|
+
resourceInputs["encrypted"] = state ? state.encrypted : undefined;
|
|
122
|
+
resourceInputs["engine"] = state ? state.engine : undefined;
|
|
123
|
+
resourceInputs["engineId"] = state ? state.engineId : undefined;
|
|
124
|
+
resourceInputs["hostPrimary"] = state ? state.hostPrimary : undefined;
|
|
125
|
+
resourceInputs["hostSecondary"] = state ? state.hostSecondary : undefined;
|
|
126
|
+
resourceInputs["label"] = state ? state.label : undefined;
|
|
127
|
+
resourceInputs["peers"] = state ? state.peers : undefined;
|
|
128
|
+
resourceInputs["port"] = state ? state.port : undefined;
|
|
129
|
+
resourceInputs["region"] = state ? state.region : undefined;
|
|
130
|
+
resourceInputs["replicaSet"] = state ? state.replicaSet : undefined;
|
|
131
|
+
resourceInputs["rootPassword"] = state ? state.rootPassword : undefined;
|
|
132
|
+
resourceInputs["rootUsername"] = state ? state.rootUsername : undefined;
|
|
133
|
+
resourceInputs["sslConnection"] = state ? state.sslConnection : undefined;
|
|
134
|
+
resourceInputs["status"] = state ? state.status : undefined;
|
|
135
|
+
resourceInputs["storageEngine"] = state ? state.storageEngine : undefined;
|
|
136
|
+
resourceInputs["type"] = state ? state.type : undefined;
|
|
137
|
+
resourceInputs["updated"] = state ? state.updated : undefined;
|
|
138
|
+
resourceInputs["updates"] = state ? state.updates : undefined;
|
|
139
|
+
resourceInputs["version"] = state ? state.version : undefined;
|
|
140
|
+
}
|
|
141
|
+
else {
|
|
142
|
+
const args = argsOrState;
|
|
143
|
+
if ((!args || args.engineId === undefined) && !opts.urn) {
|
|
144
|
+
throw new Error("Missing required property 'engineId'");
|
|
145
|
+
}
|
|
146
|
+
if ((!args || args.label === undefined) && !opts.urn) {
|
|
147
|
+
throw new Error("Missing required property 'label'");
|
|
148
|
+
}
|
|
149
|
+
if ((!args || args.region === undefined) && !opts.urn) {
|
|
150
|
+
throw new Error("Missing required property 'region'");
|
|
151
|
+
}
|
|
152
|
+
if ((!args || args.type === undefined) && !opts.urn) {
|
|
153
|
+
throw new Error("Missing required property 'type'");
|
|
154
|
+
}
|
|
155
|
+
resourceInputs["allowLists"] = args ? args.allowLists : undefined;
|
|
156
|
+
resourceInputs["clusterSize"] = args ? args.clusterSize : undefined;
|
|
157
|
+
resourceInputs["compressionType"] = args ? args.compressionType : undefined;
|
|
158
|
+
resourceInputs["encrypted"] = args ? args.encrypted : undefined;
|
|
159
|
+
resourceInputs["engineId"] = args ? args.engineId : undefined;
|
|
160
|
+
resourceInputs["label"] = args ? args.label : undefined;
|
|
161
|
+
resourceInputs["region"] = args ? args.region : undefined;
|
|
162
|
+
resourceInputs["sslConnection"] = args ? args.sslConnection : undefined;
|
|
163
|
+
resourceInputs["storageEngine"] = args ? args.storageEngine : undefined;
|
|
164
|
+
resourceInputs["type"] = args ? args.type : undefined;
|
|
165
|
+
resourceInputs["updates"] = args ? args.updates : undefined;
|
|
166
|
+
resourceInputs["caCert"] = undefined /*out*/;
|
|
167
|
+
resourceInputs["created"] = undefined /*out*/;
|
|
168
|
+
resourceInputs["engine"] = undefined /*out*/;
|
|
169
|
+
resourceInputs["hostPrimary"] = undefined /*out*/;
|
|
170
|
+
resourceInputs["hostSecondary"] = undefined /*out*/;
|
|
171
|
+
resourceInputs["peers"] = undefined /*out*/;
|
|
172
|
+
resourceInputs["port"] = undefined /*out*/;
|
|
173
|
+
resourceInputs["replicaSet"] = undefined /*out*/;
|
|
174
|
+
resourceInputs["rootPassword"] = undefined /*out*/;
|
|
175
|
+
resourceInputs["rootUsername"] = undefined /*out*/;
|
|
176
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
177
|
+
resourceInputs["updated"] = undefined /*out*/;
|
|
178
|
+
resourceInputs["version"] = undefined /*out*/;
|
|
179
|
+
}
|
|
180
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
181
|
+
super(DatabaseMongodb.__pulumiType, name, resourceInputs, opts);
|
|
182
|
+
}
|
|
183
|
+
/**
|
|
184
|
+
* Get an existing DatabaseMongodb resource's state with the given name, ID, and optional extra
|
|
185
|
+
* properties used to qualify the lookup.
|
|
186
|
+
*
|
|
187
|
+
* @param name The _unique_ name of the resulting resource.
|
|
188
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
189
|
+
* @param state Any extra arguments used during the lookup.
|
|
190
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
191
|
+
*/
|
|
192
|
+
static get(name, id, state, opts) {
|
|
193
|
+
return new DatabaseMongodb(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Returns true if the given object is an instance of DatabaseMongodb. This is designed to work even
|
|
197
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
198
|
+
*/
|
|
199
|
+
static isInstance(obj) {
|
|
200
|
+
if (obj === undefined || obj === null) {
|
|
201
|
+
return false;
|
|
202
|
+
}
|
|
203
|
+
return obj['__pulumiType'] === DatabaseMongodb.__pulumiType;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
exports.DatabaseMongodb = DatabaseMongodb;
|
|
207
|
+
/** @internal */
|
|
208
|
+
DatabaseMongodb.__pulumiType = 'linode:index/databaseMongodb:DatabaseMongodb';
|
|
209
|
+
//# sourceMappingURL=databaseMongodb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"databaseMongodb.js","sourceRoot":"","sources":["../databaseMongodb.ts"],"names":[],"mappings":"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"}
|
package/databaseMysql.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "./types";
|
|
2
3
|
/**
|
|
3
|
-
* **NOTICE:** Managed Databases are currently in beta. Ensure `apiVersion` is set to `v4beta` in order to use this resource.
|
|
4
|
-
*
|
|
5
4
|
* Provides a Linode MySQL Database resource. This can be used to create, modify, and delete Linode MySQL Databases.
|
|
6
5
|
* For more information, see the [Linode APIv4 docs](https://www.linode.com/docs/api/databases/).
|
|
7
6
|
*
|
|
@@ -39,8 +38,29 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
39
38
|
* replicationType: "asynch",
|
|
40
39
|
* sslConnection: true,
|
|
41
40
|
* type: "g6-nanode-1",
|
|
41
|
+
* updates: {
|
|
42
|
+
* dayOfWeek: "saturday",
|
|
43
|
+
* duration: 1,
|
|
44
|
+
* frequency: "monthly",
|
|
45
|
+
* hourOfDay: 22,
|
|
46
|
+
* weekOfMonth: 2,
|
|
47
|
+
* },
|
|
42
48
|
* });
|
|
43
49
|
* ```
|
|
50
|
+
* ## updates
|
|
51
|
+
*
|
|
52
|
+
* The following arguments are supported in the `updates` specification block:
|
|
53
|
+
*
|
|
54
|
+
* * `dayOfWeek` - (Required) The day to perform maintenance. (`monday`, `tuesday`, ...)
|
|
55
|
+
*
|
|
56
|
+
* * `duration` - (Required) The maximum maintenance window time in hours. (`1`..`3`)
|
|
57
|
+
*
|
|
58
|
+
* * `frequency` - (Required) Whether maintenance occurs on a weekly or monthly basis. (`weekly`, `monthly`)
|
|
59
|
+
*
|
|
60
|
+
* * `hourOfDay` - (Required) The hour to begin maintenance based in UTC time. (`0`..`23`)
|
|
61
|
+
*
|
|
62
|
+
* * `weekOfMonth` - (Optional) The week of the month to perform monthly frequency updates. Required for `monthly` frequency updates. (`1`..`4`)
|
|
63
|
+
*
|
|
44
64
|
* ## Attributes
|
|
45
65
|
*
|
|
46
66
|
* In addition to all arguments above, the following attributes are exported:
|
|
@@ -92,9 +112,9 @@ export declare class DatabaseMysql extends pulumi.CustomResource {
|
|
|
92
112
|
*/
|
|
93
113
|
static isInstance(obj: any): obj is DatabaseMysql;
|
|
94
114
|
/**
|
|
95
|
-
* A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format.
|
|
115
|
+
* A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `linode.DatabaseAccessControls` to manage your allow list separately.
|
|
96
116
|
*/
|
|
97
|
-
readonly allowLists: pulumi.Output<string[]
|
|
117
|
+
readonly allowLists: pulumi.Output<string[]>;
|
|
98
118
|
/**
|
|
99
119
|
* The base64-encoded SSL CA certificate for the Managed Database instance.
|
|
100
120
|
*/
|
|
@@ -163,6 +183,10 @@ export declare class DatabaseMysql extends pulumi.CustomResource {
|
|
|
163
183
|
* When this Managed Database was last updated.
|
|
164
184
|
*/
|
|
165
185
|
readonly updated: pulumi.Output<string>;
|
|
186
|
+
/**
|
|
187
|
+
* Configuration settings for automated patch update maintenance for the Managed Database.
|
|
188
|
+
*/
|
|
189
|
+
readonly updates: pulumi.Output<outputs.DatabaseMysqlUpdates>;
|
|
166
190
|
/**
|
|
167
191
|
* The Managed Database engine version.
|
|
168
192
|
*/
|
|
@@ -181,7 +205,7 @@ export declare class DatabaseMysql extends pulumi.CustomResource {
|
|
|
181
205
|
*/
|
|
182
206
|
export interface DatabaseMysqlState {
|
|
183
207
|
/**
|
|
184
|
-
* A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format.
|
|
208
|
+
* A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `linode.DatabaseAccessControls` to manage your allow list separately.
|
|
185
209
|
*/
|
|
186
210
|
allowLists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
187
211
|
/**
|
|
@@ -252,6 +276,10 @@ export interface DatabaseMysqlState {
|
|
|
252
276
|
* When this Managed Database was last updated.
|
|
253
277
|
*/
|
|
254
278
|
updated?: pulumi.Input<string>;
|
|
279
|
+
/**
|
|
280
|
+
* Configuration settings for automated patch update maintenance for the Managed Database.
|
|
281
|
+
*/
|
|
282
|
+
updates?: pulumi.Input<inputs.DatabaseMysqlUpdates>;
|
|
255
283
|
/**
|
|
256
284
|
* The Managed Database engine version.
|
|
257
285
|
*/
|
|
@@ -262,7 +290,7 @@ export interface DatabaseMysqlState {
|
|
|
262
290
|
*/
|
|
263
291
|
export interface DatabaseMysqlArgs {
|
|
264
292
|
/**
|
|
265
|
-
* A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format.
|
|
293
|
+
* A list of IP addresses that can access the Managed Database. Each item can be a single IP address or a range in CIDR format. Use `linode.DatabaseAccessControls` to manage your allow list separately.
|
|
266
294
|
*/
|
|
267
295
|
allowLists?: pulumi.Input<pulumi.Input<string>[]>;
|
|
268
296
|
/**
|
|
@@ -297,4 +325,8 @@ export interface DatabaseMysqlArgs {
|
|
|
297
325
|
* The Linode Instance type used for the nodes of the Managed Database instance.
|
|
298
326
|
*/
|
|
299
327
|
type: pulumi.Input<string>;
|
|
328
|
+
/**
|
|
329
|
+
* Configuration settings for automated patch update maintenance for the Managed Database.
|
|
330
|
+
*/
|
|
331
|
+
updates?: pulumi.Input<inputs.DatabaseMysqlUpdates>;
|
|
300
332
|
}
|
package/databaseMysql.js
CHANGED
|
@@ -6,8 +6,6 @@ exports.DatabaseMysql = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* **NOTICE:** Managed Databases are currently in beta. Ensure `apiVersion` is set to `v4beta` in order to use this resource.
|
|
10
|
-
*
|
|
11
9
|
* Provides a Linode MySQL Database resource. This can be used to create, modify, and delete Linode MySQL Databases.
|
|
12
10
|
* For more information, see the [Linode APIv4 docs](https://www.linode.com/docs/api/databases/).
|
|
13
11
|
*
|
|
@@ -45,8 +43,29 @@ const utilities = require("./utilities");
|
|
|
45
43
|
* replicationType: "asynch",
|
|
46
44
|
* sslConnection: true,
|
|
47
45
|
* type: "g6-nanode-1",
|
|
46
|
+
* updates: {
|
|
47
|
+
* dayOfWeek: "saturday",
|
|
48
|
+
* duration: 1,
|
|
49
|
+
* frequency: "monthly",
|
|
50
|
+
* hourOfDay: 22,
|
|
51
|
+
* weekOfMonth: 2,
|
|
52
|
+
* },
|
|
48
53
|
* });
|
|
49
54
|
* ```
|
|
55
|
+
* ## updates
|
|
56
|
+
*
|
|
57
|
+
* The following arguments are supported in the `updates` specification block:
|
|
58
|
+
*
|
|
59
|
+
* * `dayOfWeek` - (Required) The day to perform maintenance. (`monday`, `tuesday`, ...)
|
|
60
|
+
*
|
|
61
|
+
* * `duration` - (Required) The maximum maintenance window time in hours. (`1`..`3`)
|
|
62
|
+
*
|
|
63
|
+
* * `frequency` - (Required) Whether maintenance occurs on a weekly or monthly basis. (`weekly`, `monthly`)
|
|
64
|
+
*
|
|
65
|
+
* * `hourOfDay` - (Required) The hour to begin maintenance based in UTC time. (`0`..`23`)
|
|
66
|
+
*
|
|
67
|
+
* * `weekOfMonth` - (Optional) The week of the month to perform monthly frequency updates. Required for `monthly` frequency updates. (`1`..`4`)
|
|
68
|
+
*
|
|
50
69
|
* ## Attributes
|
|
51
70
|
*
|
|
52
71
|
* In addition to all arguments above, the following attributes are exported:
|
|
@@ -105,6 +124,7 @@ class DatabaseMysql extends pulumi.CustomResource {
|
|
|
105
124
|
resourceInputs["status"] = state ? state.status : undefined;
|
|
106
125
|
resourceInputs["type"] = state ? state.type : undefined;
|
|
107
126
|
resourceInputs["updated"] = state ? state.updated : undefined;
|
|
127
|
+
resourceInputs["updates"] = state ? state.updates : undefined;
|
|
108
128
|
resourceInputs["version"] = state ? state.version : undefined;
|
|
109
129
|
}
|
|
110
130
|
else {
|
|
@@ -130,6 +150,7 @@ class DatabaseMysql extends pulumi.CustomResource {
|
|
|
130
150
|
resourceInputs["replicationType"] = args ? args.replicationType : undefined;
|
|
131
151
|
resourceInputs["sslConnection"] = args ? args.sslConnection : undefined;
|
|
132
152
|
resourceInputs["type"] = args ? args.type : undefined;
|
|
153
|
+
resourceInputs["updates"] = args ? args.updates : undefined;
|
|
133
154
|
resourceInputs["caCert"] = undefined /*out*/;
|
|
134
155
|
resourceInputs["created"] = undefined /*out*/;
|
|
135
156
|
resourceInputs["engine"] = undefined /*out*/;
|
package/databaseMysql.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"databaseMysql.js","sourceRoot":"","sources":["../databaseMysql.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"databaseMysql.js","sourceRoot":"","sources":["../databaseMysql.ts"],"names":[],"mappings":"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"}
|