@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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import { input as inputs, output as outputs } from "./types";
|
|
3
3
|
/**
|
|
4
|
-
* **NOTICE:**
|
|
4
|
+
* > **NOTICE:** This data source has been deprecated in favor of `linode.getDatabaseBackups`.
|
|
5
5
|
*
|
|
6
6
|
* Provides information about Linode MySQL Database Backups that match a set of filters.
|
|
7
7
|
*
|
|
@@ -6,7 +6,7 @@ exports.getDatabaseMysqlBackupsOutput = exports.getDatabaseMysqlBackups = void 0
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* **NOTICE:**
|
|
9
|
+
* > **NOTICE:** This data source has been deprecated in favor of `linode.getDatabaseBackups`.
|
|
10
10
|
*
|
|
11
11
|
* Provides information about Linode MySQL Database Backups that match a set of filters.
|
|
12
12
|
*
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { output as outputs } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* Provides information about a Linode PostgreSQL Database.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* Get information about a PostgreSQL database:
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as linode from "@pulumi/linode";
|
|
13
|
+
*
|
|
14
|
+
* const my_db = pulumi.output(linode.getDatabasePostgresql({
|
|
15
|
+
* databaseId: 12345,
|
|
16
|
+
* }));
|
|
17
|
+
* ```
|
|
18
|
+
* ## Attributes
|
|
19
|
+
*
|
|
20
|
+
* The `linode.DatabasePostgresql` data source exports the following attributes:
|
|
21
|
+
*
|
|
22
|
+
* * `allowList` - 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.
|
|
23
|
+
*
|
|
24
|
+
* * `caCert` - The base64-encoded SSL CA certificate for the Managed Database instance.
|
|
25
|
+
*
|
|
26
|
+
* * `clusterSize` - The number of Linode Instance nodes deployed to the Managed Database.
|
|
27
|
+
*
|
|
28
|
+
* * `created` - When this Managed Database was created.
|
|
29
|
+
*
|
|
30
|
+
* * `encrypted` - Whether the Managed Databases is encrypted.
|
|
31
|
+
*
|
|
32
|
+
* * `engine` - The Managed Database engine. (e.g. `postgresql`)
|
|
33
|
+
*
|
|
34
|
+
* * `engineId` - The Managed Database engine in engine/version format. (e.g. `postgresql/13.2`)
|
|
35
|
+
*
|
|
36
|
+
* * `hostPrimary` - The primary host for the Managed Database.
|
|
37
|
+
*
|
|
38
|
+
* * `hostSecondary` - The secondary/private network host for the Managed Database.
|
|
39
|
+
*
|
|
40
|
+
* * `label` - A unique, user-defined string referring to the Managed Database.
|
|
41
|
+
*
|
|
42
|
+
* * `region` - The region that hosts this Linode Managed Database.
|
|
43
|
+
*
|
|
44
|
+
* * `rootPassword` - The randomly-generated root password for the Managed Database instance.
|
|
45
|
+
*
|
|
46
|
+
* * `rootUsername` - The root username for the Managed Database instance.
|
|
47
|
+
*
|
|
48
|
+
* * `replicationType` - The replication method used for the Managed Database. (`none`, `asynch`, `semiSynch`)
|
|
49
|
+
*
|
|
50
|
+
* * `replicationCommitType` - (Optional) The synchronization level of the replicating server. (`on`, `local`, `remoteWrite`, `remoteApply`, `off`)
|
|
51
|
+
*
|
|
52
|
+
* * `sslConnection` - Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
53
|
+
*
|
|
54
|
+
* * `status` - The operating status of the Managed Database.
|
|
55
|
+
*
|
|
56
|
+
* * `type` - The Linode Instance type used for the nodes of the Managed Database instance.
|
|
57
|
+
*
|
|
58
|
+
* * `updated` - When this Managed Database was last updated.
|
|
59
|
+
*
|
|
60
|
+
* * `updates` - (Optional) Configuration settings for automated patch update maintenance for the Managed Database.
|
|
61
|
+
*
|
|
62
|
+
* * `version` - The Managed Database engine version. (e.g. `v8.0.26`)
|
|
63
|
+
*
|
|
64
|
+
* ## updates
|
|
65
|
+
*
|
|
66
|
+
* The following arguments are exported by the `updates` specification block:
|
|
67
|
+
*
|
|
68
|
+
* * `dayOfWeek` - The day to perform maintenance. (`monday`, `tuesday`, ...)
|
|
69
|
+
*
|
|
70
|
+
* * `duration` - The maximum maintenance window time in hours. (`1`..`3`)
|
|
71
|
+
*
|
|
72
|
+
* * `frequency` - Whether maintenance occurs on a weekly or monthly basis. (`weekly`, `monthly`)
|
|
73
|
+
*
|
|
74
|
+
* * `hourOfDay` - The hour to begin maintenance based in UTC time. (`0`..`23`)
|
|
75
|
+
*
|
|
76
|
+
* * `weekOfMonth` - The week of the month to perform monthly frequency updates. Required for `monthly` frequency updates. (`1`..`4`)
|
|
77
|
+
*/
|
|
78
|
+
export declare function getDatabasePostgresql(args: GetDatabasePostgresqlArgs, opts?: pulumi.InvokeOptions): Promise<GetDatabasePostgresqlResult>;
|
|
79
|
+
/**
|
|
80
|
+
* A collection of arguments for invoking getDatabasePostgresql.
|
|
81
|
+
*/
|
|
82
|
+
export interface GetDatabasePostgresqlArgs {
|
|
83
|
+
/**
|
|
84
|
+
* The ID of the PostgreSQL database.
|
|
85
|
+
*/
|
|
86
|
+
databaseId: number;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* A collection of values returned by getDatabasePostgresql.
|
|
90
|
+
*/
|
|
91
|
+
export interface GetDatabasePostgresqlResult {
|
|
92
|
+
readonly allowLists: string[];
|
|
93
|
+
readonly caCert: string;
|
|
94
|
+
readonly clusterSize: number;
|
|
95
|
+
readonly created: string;
|
|
96
|
+
readonly databaseId: number;
|
|
97
|
+
readonly encrypted: boolean;
|
|
98
|
+
readonly engine: string;
|
|
99
|
+
readonly engineId: string;
|
|
100
|
+
readonly hostPrimary: string;
|
|
101
|
+
readonly hostSecondary: string;
|
|
102
|
+
/**
|
|
103
|
+
* The provider-assigned unique ID for this managed resource.
|
|
104
|
+
*/
|
|
105
|
+
readonly id: string;
|
|
106
|
+
readonly label: string;
|
|
107
|
+
readonly port: number;
|
|
108
|
+
readonly region: string;
|
|
109
|
+
readonly replicationCommitType: string;
|
|
110
|
+
readonly replicationType: string;
|
|
111
|
+
readonly rootPassword: string;
|
|
112
|
+
readonly rootUsername: string;
|
|
113
|
+
readonly sslConnection: boolean;
|
|
114
|
+
readonly status: string;
|
|
115
|
+
readonly type: string;
|
|
116
|
+
readonly updated: string;
|
|
117
|
+
readonly updates: outputs.GetDatabasePostgresqlUpdate[];
|
|
118
|
+
readonly version: string;
|
|
119
|
+
}
|
|
120
|
+
export declare function getDatabasePostgresqlOutput(args: GetDatabasePostgresqlOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDatabasePostgresqlResult>;
|
|
121
|
+
/**
|
|
122
|
+
* A collection of arguments for invoking getDatabasePostgresql.
|
|
123
|
+
*/
|
|
124
|
+
export interface GetDatabasePostgresqlOutputArgs {
|
|
125
|
+
/**
|
|
126
|
+
* The ID of the PostgreSQL database.
|
|
127
|
+
*/
|
|
128
|
+
databaseId: pulumi.Input<number>;
|
|
129
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
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.getDatabasePostgresqlOutput = exports.getDatabasePostgresql = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides information about a Linode PostgreSQL Database.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* Get information about a PostgreSQL database:
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as linode from "@pulumi/linode";
|
|
18
|
+
*
|
|
19
|
+
* const my_db = pulumi.output(linode.getDatabasePostgresql({
|
|
20
|
+
* databaseId: 12345,
|
|
21
|
+
* }));
|
|
22
|
+
* ```
|
|
23
|
+
* ## Attributes
|
|
24
|
+
*
|
|
25
|
+
* The `linode.DatabasePostgresql` data source exports the following attributes:
|
|
26
|
+
*
|
|
27
|
+
* * `allowList` - 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.
|
|
28
|
+
*
|
|
29
|
+
* * `caCert` - The base64-encoded SSL CA certificate for the Managed Database instance.
|
|
30
|
+
*
|
|
31
|
+
* * `clusterSize` - The number of Linode Instance nodes deployed to the Managed Database.
|
|
32
|
+
*
|
|
33
|
+
* * `created` - When this Managed Database was created.
|
|
34
|
+
*
|
|
35
|
+
* * `encrypted` - Whether the Managed Databases is encrypted.
|
|
36
|
+
*
|
|
37
|
+
* * `engine` - The Managed Database engine. (e.g. `postgresql`)
|
|
38
|
+
*
|
|
39
|
+
* * `engineId` - The Managed Database engine in engine/version format. (e.g. `postgresql/13.2`)
|
|
40
|
+
*
|
|
41
|
+
* * `hostPrimary` - The primary host for the Managed Database.
|
|
42
|
+
*
|
|
43
|
+
* * `hostSecondary` - The secondary/private network host for the Managed Database.
|
|
44
|
+
*
|
|
45
|
+
* * `label` - A unique, user-defined string referring to the Managed Database.
|
|
46
|
+
*
|
|
47
|
+
* * `region` - The region that hosts this Linode Managed Database.
|
|
48
|
+
*
|
|
49
|
+
* * `rootPassword` - The randomly-generated root password for the Managed Database instance.
|
|
50
|
+
*
|
|
51
|
+
* * `rootUsername` - The root username for the Managed Database instance.
|
|
52
|
+
*
|
|
53
|
+
* * `replicationType` - The replication method used for the Managed Database. (`none`, `asynch`, `semiSynch`)
|
|
54
|
+
*
|
|
55
|
+
* * `replicationCommitType` - (Optional) The synchronization level of the replicating server. (`on`, `local`, `remoteWrite`, `remoteApply`, `off`)
|
|
56
|
+
*
|
|
57
|
+
* * `sslConnection` - Whether to require SSL credentials to establish a connection to the Managed Database.
|
|
58
|
+
*
|
|
59
|
+
* * `status` - The operating status of the Managed Database.
|
|
60
|
+
*
|
|
61
|
+
* * `type` - The Linode Instance type used for the nodes of the Managed Database instance.
|
|
62
|
+
*
|
|
63
|
+
* * `updated` - When this Managed Database was last updated.
|
|
64
|
+
*
|
|
65
|
+
* * `updates` - (Optional) Configuration settings for automated patch update maintenance for the Managed Database.
|
|
66
|
+
*
|
|
67
|
+
* * `version` - The Managed Database engine version. (e.g. `v8.0.26`)
|
|
68
|
+
*
|
|
69
|
+
* ## updates
|
|
70
|
+
*
|
|
71
|
+
* The following arguments are exported by the `updates` specification block:
|
|
72
|
+
*
|
|
73
|
+
* * `dayOfWeek` - The day to perform maintenance. (`monday`, `tuesday`, ...)
|
|
74
|
+
*
|
|
75
|
+
* * `duration` - The maximum maintenance window time in hours. (`1`..`3`)
|
|
76
|
+
*
|
|
77
|
+
* * `frequency` - Whether maintenance occurs on a weekly or monthly basis. (`weekly`, `monthly`)
|
|
78
|
+
*
|
|
79
|
+
* * `hourOfDay` - The hour to begin maintenance based in UTC time. (`0`..`23`)
|
|
80
|
+
*
|
|
81
|
+
* * `weekOfMonth` - The week of the month to perform monthly frequency updates. Required for `monthly` frequency updates. (`1`..`4`)
|
|
82
|
+
*/
|
|
83
|
+
function getDatabasePostgresql(args, opts) {
|
|
84
|
+
if (!opts) {
|
|
85
|
+
opts = {};
|
|
86
|
+
}
|
|
87
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
88
|
+
return pulumi.runtime.invoke("linode:index/getDatabasePostgresql:getDatabasePostgresql", {
|
|
89
|
+
"databaseId": args.databaseId,
|
|
90
|
+
}, opts);
|
|
91
|
+
}
|
|
92
|
+
exports.getDatabasePostgresql = getDatabasePostgresql;
|
|
93
|
+
function getDatabasePostgresqlOutput(args, opts) {
|
|
94
|
+
return pulumi.output(args).apply(a => getDatabasePostgresql(a, opts));
|
|
95
|
+
}
|
|
96
|
+
exports.getDatabasePostgresqlOutput = getDatabasePostgresqlOutput;
|
|
97
|
+
//# sourceMappingURL=getDatabasePostgresql.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDatabasePostgresql.js","sourceRoot":"","sources":["../getDatabasePostgresql.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0EG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,sDASC;AA6CD,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,qBAAqB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,kEAEC"}
|
package/getDatabases.d.ts
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import { input as inputs, output as outputs } from "./types";
|
|
3
3
|
/**
|
|
4
|
-
* **NOTICE:** Managed Databases are currently in beta. Ensure `apiVersion` is set to `v4beta` in order to use this data source.
|
|
5
|
-
*
|
|
6
4
|
* Provides information about Linode Managed Databases that match a set of filters.
|
|
7
5
|
*
|
|
8
6
|
* ## Example Usage
|
package/getDatabases.js
CHANGED
|
@@ -6,8 +6,6 @@ exports.getDatabasesOutput = exports.getDatabases = 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 data source.
|
|
10
|
-
*
|
|
11
9
|
* Provides information about Linode Managed Databases that match a set of filters.
|
|
12
10
|
*
|
|
13
11
|
* ## Example Usage
|
package/getDatabases.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDatabases.js","sourceRoot":"","sources":["../getDatabases.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getDatabases.js","sourceRoot":"","sources":["../getDatabases.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8DG;AACH,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,oCAaC;AAoCD,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAChE,CAAC;AAFD,gDAEC"}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides information about a Linode IPv6 Range.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* Get information about an IPv6 range assigned to a Linode:
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as linode from "@pulumi/linode";
|
|
12
|
+
*
|
|
13
|
+
* const range_info = pulumi.output(linode.getIpv6Range({
|
|
14
|
+
* range: "2001:0db8::",
|
|
15
|
+
* }));
|
|
16
|
+
* ```
|
|
17
|
+
* ## Attributes
|
|
18
|
+
*
|
|
19
|
+
* The `linode.Ipv6Range` data source exports the following attributes:
|
|
20
|
+
*
|
|
21
|
+
* * `ipBgp` - Whether this IPv6 range is shared.
|
|
22
|
+
*
|
|
23
|
+
* * `linodes` - A set of Linodes targeted by this IPv6 range. Includes Linodes with IP sharing.
|
|
24
|
+
*
|
|
25
|
+
* * `prefix` - The prefix length of the address, denoting how many addresses can be assigned from this range.
|
|
26
|
+
*
|
|
27
|
+
* * `region` - The region for this range of IPv6 addresses.
|
|
28
|
+
*/
|
|
29
|
+
export declare function getIpv6Range(args: GetIpv6RangeArgs, opts?: pulumi.InvokeOptions): Promise<GetIpv6RangeResult>;
|
|
30
|
+
/**
|
|
31
|
+
* A collection of arguments for invoking getIpv6Range.
|
|
32
|
+
*/
|
|
33
|
+
export interface GetIpv6RangeArgs {
|
|
34
|
+
/**
|
|
35
|
+
* The IPv6 range to retrieve information about.
|
|
36
|
+
*/
|
|
37
|
+
range: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* A collection of values returned by getIpv6Range.
|
|
41
|
+
*/
|
|
42
|
+
export interface GetIpv6RangeResult {
|
|
43
|
+
/**
|
|
44
|
+
* The provider-assigned unique ID for this managed resource.
|
|
45
|
+
*/
|
|
46
|
+
readonly id: string;
|
|
47
|
+
readonly isBgp: boolean;
|
|
48
|
+
readonly linodes: number[];
|
|
49
|
+
readonly prefix: number;
|
|
50
|
+
readonly range: string;
|
|
51
|
+
readonly region: string;
|
|
52
|
+
}
|
|
53
|
+
export declare function getIpv6RangeOutput(args: GetIpv6RangeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetIpv6RangeResult>;
|
|
54
|
+
/**
|
|
55
|
+
* A collection of arguments for invoking getIpv6Range.
|
|
56
|
+
*/
|
|
57
|
+
export interface GetIpv6RangeOutputArgs {
|
|
58
|
+
/**
|
|
59
|
+
* The IPv6 range to retrieve information about.
|
|
60
|
+
*/
|
|
61
|
+
range: pulumi.Input<string>;
|
|
62
|
+
}
|
package/getIpv6Range.js
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
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.getIpv6RangeOutput = exports.getIpv6Range = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides information about a Linode IPv6 Range.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* Get information about an IPv6 range assigned to a Linode:
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as linode from "@pulumi/linode";
|
|
18
|
+
*
|
|
19
|
+
* const range_info = pulumi.output(linode.getIpv6Range({
|
|
20
|
+
* range: "2001:0db8::",
|
|
21
|
+
* }));
|
|
22
|
+
* ```
|
|
23
|
+
* ## Attributes
|
|
24
|
+
*
|
|
25
|
+
* The `linode.Ipv6Range` data source exports the following attributes:
|
|
26
|
+
*
|
|
27
|
+
* * `ipBgp` - Whether this IPv6 range is shared.
|
|
28
|
+
*
|
|
29
|
+
* * `linodes` - A set of Linodes targeted by this IPv6 range. Includes Linodes with IP sharing.
|
|
30
|
+
*
|
|
31
|
+
* * `prefix` - The prefix length of the address, denoting how many addresses can be assigned from this range.
|
|
32
|
+
*
|
|
33
|
+
* * `region` - The region for this range of IPv6 addresses.
|
|
34
|
+
*/
|
|
35
|
+
function getIpv6Range(args, opts) {
|
|
36
|
+
if (!opts) {
|
|
37
|
+
opts = {};
|
|
38
|
+
}
|
|
39
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
40
|
+
return pulumi.runtime.invoke("linode:index/getIpv6Range:getIpv6Range", {
|
|
41
|
+
"range": args.range,
|
|
42
|
+
}, opts);
|
|
43
|
+
}
|
|
44
|
+
exports.getIpv6Range = getIpv6Range;
|
|
45
|
+
function getIpv6RangeOutput(args, opts) {
|
|
46
|
+
return pulumi.output(args).apply(a => getIpv6Range(a, opts));
|
|
47
|
+
}
|
|
48
|
+
exports.getIpv6RangeOutput = getIpv6RangeOutput;
|
|
49
|
+
//# sourceMappingURL=getIpv6Range.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getIpv6Range.js","sourceRoot":"","sources":["../getIpv6Range.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,oCASC;AA2BD,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAChE,CAAC;AAFD,gDAEC"}
|
package/index.d.ts
CHANGED
|
@@ -1,11 +1,18 @@
|
|
|
1
|
+
export * from "./databaseAccessControls";
|
|
2
|
+
export * from "./databaseMongodb";
|
|
1
3
|
export * from "./databaseMysql";
|
|
4
|
+
export * from "./databasePostgresql";
|
|
2
5
|
export * from "./domain";
|
|
3
6
|
export * from "./domainRecord";
|
|
4
7
|
export * from "./firewall";
|
|
5
8
|
export * from "./firewallDevice";
|
|
6
9
|
export * from "./getAccount";
|
|
10
|
+
export * from "./getDatabaseBackups";
|
|
7
11
|
export * from "./getDatabaseEngines";
|
|
12
|
+
export * from "./getDatabaseMongodb";
|
|
13
|
+
export * from "./getDatabaseMysql";
|
|
8
14
|
export * from "./getDatabaseMysqlBackups";
|
|
15
|
+
export * from "./getDatabasePostgresql";
|
|
9
16
|
export * from "./getDatabases";
|
|
10
17
|
export * from "./getDomain";
|
|
11
18
|
export * from "./getDomainRecord";
|
|
@@ -16,6 +23,7 @@ export * from "./getInstanceBackups";
|
|
|
16
23
|
export * from "./getInstanceType";
|
|
17
24
|
export * from "./getInstanceTypes";
|
|
18
25
|
export * from "./getInstances";
|
|
26
|
+
export * from "./getIpv6Range";
|
|
19
27
|
export * from "./getKernel";
|
|
20
28
|
export * from "./getLkeCluster";
|
|
21
29
|
export * from "./getNetworkingIp";
|
|
@@ -34,6 +42,7 @@ export * from "./getVolume";
|
|
|
34
42
|
export * from "./image";
|
|
35
43
|
export * from "./instance";
|
|
36
44
|
export * from "./instanceIp";
|
|
45
|
+
export * from "./instanceSharedIps";
|
|
37
46
|
export * from "./ipv6Range";
|
|
38
47
|
export * from "./lkeCluster";
|
|
39
48
|
export * from "./nodeBalancer";
|
package/index.js
CHANGED
|
@@ -20,14 +20,21 @@ exports.types = exports.config = void 0;
|
|
|
20
20
|
const pulumi = require("@pulumi/pulumi");
|
|
21
21
|
const utilities = require("./utilities");
|
|
22
22
|
// Export members:
|
|
23
|
+
__exportStar(require("./databaseAccessControls"), exports);
|
|
24
|
+
__exportStar(require("./databaseMongodb"), exports);
|
|
23
25
|
__exportStar(require("./databaseMysql"), exports);
|
|
26
|
+
__exportStar(require("./databasePostgresql"), exports);
|
|
24
27
|
__exportStar(require("./domain"), exports);
|
|
25
28
|
__exportStar(require("./domainRecord"), exports);
|
|
26
29
|
__exportStar(require("./firewall"), exports);
|
|
27
30
|
__exportStar(require("./firewallDevice"), exports);
|
|
28
31
|
__exportStar(require("./getAccount"), exports);
|
|
32
|
+
__exportStar(require("./getDatabaseBackups"), exports);
|
|
29
33
|
__exportStar(require("./getDatabaseEngines"), exports);
|
|
34
|
+
__exportStar(require("./getDatabaseMongodb"), exports);
|
|
35
|
+
__exportStar(require("./getDatabaseMysql"), exports);
|
|
30
36
|
__exportStar(require("./getDatabaseMysqlBackups"), exports);
|
|
37
|
+
__exportStar(require("./getDatabasePostgresql"), exports);
|
|
31
38
|
__exportStar(require("./getDatabases"), exports);
|
|
32
39
|
__exportStar(require("./getDomain"), exports);
|
|
33
40
|
__exportStar(require("./getDomainRecord"), exports);
|
|
@@ -38,6 +45,7 @@ __exportStar(require("./getInstanceBackups"), exports);
|
|
|
38
45
|
__exportStar(require("./getInstanceType"), exports);
|
|
39
46
|
__exportStar(require("./getInstanceTypes"), exports);
|
|
40
47
|
__exportStar(require("./getInstances"), exports);
|
|
48
|
+
__exportStar(require("./getIpv6Range"), exports);
|
|
41
49
|
__exportStar(require("./getKernel"), exports);
|
|
42
50
|
__exportStar(require("./getLkeCluster"), exports);
|
|
43
51
|
__exportStar(require("./getNetworkingIp"), exports);
|
|
@@ -56,6 +64,7 @@ __exportStar(require("./getVolume"), exports);
|
|
|
56
64
|
__exportStar(require("./image"), exports);
|
|
57
65
|
__exportStar(require("./instance"), exports);
|
|
58
66
|
__exportStar(require("./instanceIp"), exports);
|
|
67
|
+
__exportStar(require("./instanceSharedIps"), exports);
|
|
59
68
|
__exportStar(require("./ipv6Range"), exports);
|
|
60
69
|
__exportStar(require("./lkeCluster"), exports);
|
|
61
70
|
__exportStar(require("./nodeBalancer"), exports);
|
|
@@ -77,7 +86,10 @@ exports.config = config;
|
|
|
77
86
|
const types = require("./types");
|
|
78
87
|
exports.types = types;
|
|
79
88
|
// Import resources to register:
|
|
89
|
+
const databaseAccessControls_1 = require("./databaseAccessControls");
|
|
90
|
+
const databaseMongodb_1 = require("./databaseMongodb");
|
|
80
91
|
const databaseMysql_1 = require("./databaseMysql");
|
|
92
|
+
const databasePostgresql_1 = require("./databasePostgresql");
|
|
81
93
|
const domain_1 = require("./domain");
|
|
82
94
|
const domainRecord_1 = require("./domainRecord");
|
|
83
95
|
const firewall_1 = require("./firewall");
|
|
@@ -85,6 +97,7 @@ const firewallDevice_1 = require("./firewallDevice");
|
|
|
85
97
|
const image_1 = require("./image");
|
|
86
98
|
const instance_1 = require("./instance");
|
|
87
99
|
const instanceIp_1 = require("./instanceIp");
|
|
100
|
+
const instanceSharedIps_1 = require("./instanceSharedIps");
|
|
88
101
|
const ipv6Range_1 = require("./ipv6Range");
|
|
89
102
|
const lkeCluster_1 = require("./lkeCluster");
|
|
90
103
|
const nodeBalancer_1 = require("./nodeBalancer");
|
|
@@ -103,8 +116,14 @@ const _module = {
|
|
|
103
116
|
version: utilities.getVersion(),
|
|
104
117
|
construct: (name, type, urn) => {
|
|
105
118
|
switch (type) {
|
|
119
|
+
case "linode:index/databaseAccessControls:DatabaseAccessControls":
|
|
120
|
+
return new databaseAccessControls_1.DatabaseAccessControls(name, undefined, { urn });
|
|
121
|
+
case "linode:index/databaseMongodb:DatabaseMongodb":
|
|
122
|
+
return new databaseMongodb_1.DatabaseMongodb(name, undefined, { urn });
|
|
106
123
|
case "linode:index/databaseMysql:DatabaseMysql":
|
|
107
124
|
return new databaseMysql_1.DatabaseMysql(name, undefined, { urn });
|
|
125
|
+
case "linode:index/databasePostgresql:DatabasePostgresql":
|
|
126
|
+
return new databasePostgresql_1.DatabasePostgresql(name, undefined, { urn });
|
|
108
127
|
case "linode:index/domain:Domain":
|
|
109
128
|
return new domain_1.Domain(name, undefined, { urn });
|
|
110
129
|
case "linode:index/domainRecord:DomainRecord":
|
|
@@ -119,6 +138,8 @@ const _module = {
|
|
|
119
138
|
return new instance_1.Instance(name, undefined, { urn });
|
|
120
139
|
case "linode:index/instanceIp:InstanceIp":
|
|
121
140
|
return new instanceIp_1.InstanceIp(name, undefined, { urn });
|
|
141
|
+
case "linode:index/instanceSharedIps:InstanceSharedIps":
|
|
142
|
+
return new instanceSharedIps_1.InstanceSharedIps(name, undefined, { urn });
|
|
122
143
|
case "linode:index/ipv6Range:Ipv6Range":
|
|
123
144
|
return new ipv6Range_1.Ipv6Range(name, undefined, { urn });
|
|
124
145
|
case "linode:index/lkeCluster:LkeCluster":
|
|
@@ -152,7 +173,10 @@ const _module = {
|
|
|
152
173
|
}
|
|
153
174
|
},
|
|
154
175
|
};
|
|
176
|
+
pulumi.runtime.registerResourceModule("linode", "index/databaseAccessControls", _module);
|
|
177
|
+
pulumi.runtime.registerResourceModule("linode", "index/databaseMongodb", _module);
|
|
155
178
|
pulumi.runtime.registerResourceModule("linode", "index/databaseMysql", _module);
|
|
179
|
+
pulumi.runtime.registerResourceModule("linode", "index/databasePostgresql", _module);
|
|
156
180
|
pulumi.runtime.registerResourceModule("linode", "index/domain", _module);
|
|
157
181
|
pulumi.runtime.registerResourceModule("linode", "index/domainRecord", _module);
|
|
158
182
|
pulumi.runtime.registerResourceModule("linode", "index/firewall", _module);
|
|
@@ -160,6 +184,7 @@ pulumi.runtime.registerResourceModule("linode", "index/firewallDevice", _module)
|
|
|
160
184
|
pulumi.runtime.registerResourceModule("linode", "index/image", _module);
|
|
161
185
|
pulumi.runtime.registerResourceModule("linode", "index/instance", _module);
|
|
162
186
|
pulumi.runtime.registerResourceModule("linode", "index/instanceIp", _module);
|
|
187
|
+
pulumi.runtime.registerResourceModule("linode", "index/instanceSharedIps", _module);
|
|
163
188
|
pulumi.runtime.registerResourceModule("linode", "index/ipv6Range", _module);
|
|
164
189
|
pulumi.runtime.registerResourceModule("linode", "index/lkeCluster", _module);
|
|
165
190
|
pulumi.runtime.registerResourceModule("linode", "index/nodeBalancer", _module);
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,kBAAkB;AAClB,kDAAgC;AAChC,2CAAyB;AACzB,iDAA+B;AAC/B,6CAA2B;AAC3B,mDAAiC;AACjC,+CAA6B;AAC7B,uDAAqC;AACrC,4DAA0C;AAC1C,iDAA+B;AAC/B,8CAA4B;AAC5B,oDAAkC;AAClC,gDAA8B;AAC9B,6CAA2B;AAC3B,8CAA4B;AAC5B,uDAAqC;AACrC,oDAAkC;AAClC,qDAAmC;AACnC,iDAA+B;AAC/B,8CAA4B;AAC5B,kDAAgC;AAChC,oDAAkC;AAClC,oDAAkC;AAClC,0DAAwC;AACxC,wDAAsC;AACtC,4DAA0C;AAC1C,+CAA6B;AAC7B,8CAA4B;AAC5B,8CAA4B;AAC5B,mDAAiC;AACjC,oDAAkC;AAClC,4CAA0B;AAC1B,6CAA2B;AAC3B,8CAA4B;AAC5B,0CAAwB;AACxB,6CAA2B;AAC3B,+CAA6B;AAC7B,8CAA4B;AAC5B,+CAA6B;AAC7B,iDAA+B;AAC/B,uDAAqC;AACrC,qDAAmC;AACnC,wDAAsC;AACtC,qDAAmC;AACnC,wDAAsC;AACtC,6CAA2B;AAC3B,yCAAuB;AACvB,2CAAyB;AACzB,gDAA8B;AAC9B,0CAAwB;AACxB,yCAAuB;AACvB,2CAAyB;AAEzB,sBAAsB;AACtB,mCAAmC;AAI/B,wBAAM;AAHV,iCAAiC;AAI7B,sBAAK;AAGT,gCAAgC;AAChC,mDAAgD;AAChD,qCAAkC;AAClC,iDAA8C;AAC9C,yCAAsC;AACtC,qDAAkD;AAClD,mCAAgC;AAChC,yCAAsC;AACtC,6CAA0C;AAC1C,2CAAwC;AACxC,6CAA0C;AAC1C,iDAA8C;AAC9C,6DAA0D;AAC1D,yDAAsD;AACtD,+DAA4D;AAC5D,yDAAsD;AACtD,+DAA4D;AAC5D,iCAA8B;AAC9B,qCAAkC;AAClC,+CAA4C;AAC5C,mCAAgC;AAChC,iCAA8B;AAC9B,qCAAkC;AAElC,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,0CAA0C;gBAC3C,OAAO,IAAI,6BAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,4BAA4B;gBAC7B,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,wCAAwC;gBACzC,OAAO,IAAI,2BAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,gCAAgC;gBACjC,OAAO,IAAI,mBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,4CAA4C;gBAC7C,OAAO,IAAI,+BAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,0BAA0B;gBAC3B,OAAO,IAAI,aAAK,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnD,KAAK,gCAAgC;gBACjC,OAAO,IAAI,mBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,oCAAoC;gBACrC,OAAO,IAAI,uBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,kCAAkC;gBACnC,OAAO,IAAI,qBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,oCAAoC;gBACrC,OAAO,IAAI,uBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,wCAAwC;gBACzC,OAAO,IAAI,2BAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,oDAAoD;gBACrD,OAAO,IAAI,uCAAkB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChE,KAAK,gDAAgD;gBACjD,OAAO,IAAI,mCAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,sDAAsD;gBACvD,OAAO,IAAI,yCAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,gDAAgD;gBACjD,OAAO,IAAI,mCAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,sDAAsD;gBACvD,OAAO,IAAI,yCAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,wBAAwB;gBACzB,OAAO,IAAI,WAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD,KAAK,4BAA4B;gBAC7B,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,sCAAsC;gBACvC,OAAO,IAAI,yBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD,KAAK,0BAA0B;gBAC3B,OAAO,IAAI,aAAK,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnD,KAAK,wBAAwB;gBACzB,OAAO,IAAI,WAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD,KAAK,4BAA4B;gBAC7B,OAAO,IAAI,eAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AAC1E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,aAAa,EAAE,OAAO,CAAC,CAAA;AACvE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AAC1E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA;AAC3E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC5E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,0BAA0B,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,YAAY,EAAE,OAAO,CAAC,CAAA;AACtE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,aAAa,EAAE,OAAO,CAAC,CAAA;AACvE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,YAAY,EAAE,OAAO,CAAC,CAAA;AACtE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,QAAQ,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AAExE,yCAAsC;AAEtC,MAAM,CAAC,OAAO,CAAC,uBAAuB,CAAC,QAAQ,EAAE;IAC7C,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,iBAAiB,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAA2B,EAAE;QACpF,IAAI,IAAI,KAAK,yBAAyB,EAAE;YACpC,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACpD;QACD,OAAO,IAAI,mBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC;IACvD,CAAC;CACJ,CAAC,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/instance.d.ts
CHANGED
|
@@ -162,7 +162,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
162
162
|
*/
|
|
163
163
|
readonly bootConfigLabel: pulumi.Output<string>;
|
|
164
164
|
/**
|
|
165
|
-
*
|
|
165
|
+
* If true, then the instance is kept or converted into in a running state. If false, the instance will be shutdown. If unspecified, the Linode's power status will not be managed by the Provider.
|
|
166
166
|
*/
|
|
167
167
|
readonly booted: pulumi.Output<boolean>;
|
|
168
168
|
/**
|
|
@@ -222,6 +222,10 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
222
222
|
* The initial password for the `root` user account. *This value can not be imported.* *Changing `rootPass` forces the creation of a new Linode Instance.* *If omitted, a random password will be generated but will not be stored in state.*
|
|
223
223
|
*/
|
|
224
224
|
readonly rootPass: pulumi.Output<string | undefined>;
|
|
225
|
+
/**
|
|
226
|
+
* A set of IPv4 addresses to be shared with the Instance. These IP addresses can be both private and public, but must be in the same region as the instance.
|
|
227
|
+
*/
|
|
228
|
+
readonly sharedIpv4s: pulumi.Output<string[]>;
|
|
225
229
|
/**
|
|
226
230
|
* Information about the resources available to this Linode.
|
|
227
231
|
*/
|
|
@@ -298,7 +302,7 @@ export interface InstanceState {
|
|
|
298
302
|
*/
|
|
299
303
|
bootConfigLabel?: pulumi.Input<string>;
|
|
300
304
|
/**
|
|
301
|
-
*
|
|
305
|
+
* If true, then the instance is kept or converted into in a running state. If false, the instance will be shutdown. If unspecified, the Linode's power status will not be managed by the Provider.
|
|
302
306
|
*/
|
|
303
307
|
booted?: pulumi.Input<boolean>;
|
|
304
308
|
/**
|
|
@@ -358,6 +362,10 @@ export interface InstanceState {
|
|
|
358
362
|
* The initial password for the `root` user account. *This value can not be imported.* *Changing `rootPass` forces the creation of a new Linode Instance.* *If omitted, a random password will be generated but will not be stored in state.*
|
|
359
363
|
*/
|
|
360
364
|
rootPass?: pulumi.Input<string>;
|
|
365
|
+
/**
|
|
366
|
+
* A set of IPv4 addresses to be shared with the Instance. These IP addresses can be both private and public, but must be in the same region as the instance.
|
|
367
|
+
*/
|
|
368
|
+
sharedIpv4s?: pulumi.Input<pulumi.Input<string>[]>;
|
|
361
369
|
/**
|
|
362
370
|
* Information about the resources available to this Linode.
|
|
363
371
|
*/
|
|
@@ -422,7 +430,7 @@ export interface InstanceArgs {
|
|
|
422
430
|
*/
|
|
423
431
|
bootConfigLabel?: pulumi.Input<string>;
|
|
424
432
|
/**
|
|
425
|
-
*
|
|
433
|
+
* If true, then the instance is kept or converted into in a running state. If false, the instance will be shutdown. If unspecified, the Linode's power status will not be managed by the Provider.
|
|
426
434
|
*/
|
|
427
435
|
booted?: pulumi.Input<boolean>;
|
|
428
436
|
/**
|
|
@@ -463,6 +471,10 @@ export interface InstanceArgs {
|
|
|
463
471
|
* The initial password for the `root` user account. *This value can not be imported.* *Changing `rootPass` forces the creation of a new Linode Instance.* *If omitted, a random password will be generated but will not be stored in state.*
|
|
464
472
|
*/
|
|
465
473
|
rootPass?: pulumi.Input<string>;
|
|
474
|
+
/**
|
|
475
|
+
* A set of IPv4 addresses to be shared with the Instance. These IP addresses can be both private and public, but must be in the same region as the instance.
|
|
476
|
+
*/
|
|
477
|
+
sharedIpv4s?: pulumi.Input<pulumi.Input<string>[]>;
|
|
466
478
|
/**
|
|
467
479
|
* An object containing responses to any User Defined Fields present in the StackScript being deployed to this Linode. Only accepted if 'stackscript_id' is given. The required values depend on the StackScript being deployed. *This value can not be imported.* *Changing `stackscriptData` forces the creation of a new Linode Instance.*
|
|
468
480
|
*/
|
package/instance.js
CHANGED
|
@@ -150,6 +150,7 @@ class Instance extends pulumi.CustomResource {
|
|
|
150
150
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
151
151
|
resourceInputs["resizeDisk"] = state ? state.resizeDisk : undefined;
|
|
152
152
|
resourceInputs["rootPass"] = state ? state.rootPass : undefined;
|
|
153
|
+
resourceInputs["sharedIpv4s"] = state ? state.sharedIpv4s : undefined;
|
|
153
154
|
resourceInputs["specs"] = state ? state.specs : undefined;
|
|
154
155
|
resourceInputs["stackscriptData"] = state ? state.stackscriptData : undefined;
|
|
155
156
|
resourceInputs["stackscriptId"] = state ? state.stackscriptId : undefined;
|
|
@@ -181,6 +182,7 @@ class Instance extends pulumi.CustomResource {
|
|
|
181
182
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
182
183
|
resourceInputs["resizeDisk"] = args ? args.resizeDisk : undefined;
|
|
183
184
|
resourceInputs["rootPass"] = args ? args.rootPass : undefined;
|
|
185
|
+
resourceInputs["sharedIpv4s"] = args ? args.sharedIpv4s : undefined;
|
|
184
186
|
resourceInputs["stackscriptData"] = args ? args.stackscriptData : undefined;
|
|
185
187
|
resourceInputs["stackscriptId"] = args ? args.stackscriptId : undefined;
|
|
186
188
|
resourceInputs["swapSize"] = args ? args.swapSize : undefined;
|