@pulumi/linode 4.32.0-alpha.1737525368 → 4.32.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/databaseMysql.d.ts +2 -0
- package/databaseMysql.js +2 -0
- package/databaseMysql.js.map +1 -1
- package/databaseMysqlV2.d.ts +333 -0
- package/databaseMysqlV2.js +147 -0
- package/databaseMysqlV2.js.map +1 -0
- package/databasePostgresql.d.ts +2 -0
- package/databasePostgresql.js +2 -0
- package/databasePostgresql.js.map +1 -1
- package/databasePostgresqlV2.d.ts +333 -0
- package/databasePostgresqlV2.js +147 -0
- package/databasePostgresqlV2.js.map +1 -0
- package/getDatabaseBackups.d.ts +4 -0
- package/getDatabaseBackups.js +4 -0
- package/getDatabaseBackups.js.map +1 -1
- package/getDatabaseMysql.d.ts +4 -0
- package/getDatabaseMysql.js +4 -0
- package/getDatabaseMysql.js.map +1 -1
- package/getDatabaseMysqlBackups.d.ts +4 -4
- package/getDatabaseMysqlBackups.js +4 -4
- package/getDatabaseMysqlV2.d.ts +204 -0
- package/getDatabaseMysqlV2.js +104 -0
- package/getDatabaseMysqlV2.js.map +1 -0
- package/getDatabasePostgresql.d.ts +4 -0
- package/getDatabasePostgresql.js +4 -0
- package/getDatabasePostgresql.js.map +1 -1
- package/getDatabasePostgresqlV2.d.ts +204 -0
- package/getDatabasePostgresqlV2.js +104 -0
- package/getDatabasePostgresqlV2.js.map +1 -0
- package/getInstanceType.d.ts +4 -0
- package/getInstanceType.js.map +1 -1
- package/getNetworkingIp.d.ts +3 -0
- package/getNetworkingIp.js.map +1 -1
- package/getNetworkingIps.d.ts +112 -0
- package/getNetworkingIps.js +100 -0
- package/getNetworkingIps.js.map +1 -1
- package/getPlacementGroup.d.ts +12 -0
- package/getPlacementGroup.js +2 -0
- package/getPlacementGroup.js.map +1 -1
- package/index.d.ts +12 -0
- package/index.js +20 -4
- package/index.js.map +1 -1
- package/instance.d.ts +9 -3
- package/instance.js.map +1 -1
- package/networkingIp.d.ts +37 -11
- package/networkingIp.js +26 -0
- package/networkingIp.js.map +1 -1
- package/networkingIpAssignment.d.ts +17 -3
- package/networkingIpAssignment.js +5 -0
- package/networkingIpAssignment.js.map +1 -1
- package/objectStorageKey.d.ts +23 -0
- package/objectStorageKey.js +23 -0
- package/objectStorageKey.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +183 -13
- package/types/output.d.ts +155 -7
package/networkingIp.d.ts
CHANGED
|
@@ -1,4 +1,30 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Manages allocation of reserved IPv4 address in a region and optionally assigning the reserved address to a Linode instance.
|
|
4
|
+
*
|
|
5
|
+
* For more information, see the corresponding [API documentation](https://techdocs.akamai.com/linode-api/reference/post-allocate-ip).
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as linode from "@pulumi/linode";
|
|
12
|
+
*
|
|
13
|
+
* const testIp = new linode.NetworkingIp("test_ip", {
|
|
14
|
+
* type: "ipv4",
|
|
15
|
+
* linodeId: 12345,
|
|
16
|
+
* "public": true,
|
|
17
|
+
* });
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ## Import
|
|
21
|
+
*
|
|
22
|
+
* IP addresses can be imported using the IP address ID, e.g.
|
|
23
|
+
*
|
|
24
|
+
* ```sh
|
|
25
|
+
* $ pulumi import linode:index/networkingIp:NetworkingIp example_ip 172.104.30.209
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
2
28
|
export declare class NetworkingIp extends pulumi.CustomResource {
|
|
3
29
|
/**
|
|
4
30
|
* Get an existing NetworkingIp resource's state with the given name, ID, and optional extra
|
|
@@ -16,15 +42,15 @@ export declare class NetworkingIp extends pulumi.CustomResource {
|
|
|
16
42
|
*/
|
|
17
43
|
static isInstance(obj: any): obj is NetworkingIp;
|
|
18
44
|
/**
|
|
19
|
-
* The
|
|
45
|
+
* The IP address.
|
|
20
46
|
*/
|
|
21
47
|
readonly address: pulumi.Output<string>;
|
|
22
48
|
/**
|
|
23
|
-
* The ID of the Linode to
|
|
49
|
+
* The ID of the Linode to which the IP address will be assigned. Conflicts with `region`.
|
|
24
50
|
*/
|
|
25
51
|
readonly linodeId: pulumi.Output<number>;
|
|
26
52
|
/**
|
|
27
|
-
* Whether the
|
|
53
|
+
* Whether the IP address is public. Defaults to true.
|
|
28
54
|
*/
|
|
29
55
|
readonly public: pulumi.Output<boolean>;
|
|
30
56
|
/**
|
|
@@ -36,7 +62,7 @@ export declare class NetworkingIp extends pulumi.CustomResource {
|
|
|
36
62
|
*/
|
|
37
63
|
readonly reserved: pulumi.Output<boolean>;
|
|
38
64
|
/**
|
|
39
|
-
* The type of IP address (ipv4)
|
|
65
|
+
* The type of IP address. (ipv4, ipv6, etc.)
|
|
40
66
|
*/
|
|
41
67
|
readonly type: pulumi.Output<string>;
|
|
42
68
|
/**
|
|
@@ -53,15 +79,15 @@ export declare class NetworkingIp extends pulumi.CustomResource {
|
|
|
53
79
|
*/
|
|
54
80
|
export interface NetworkingIpState {
|
|
55
81
|
/**
|
|
56
|
-
* The
|
|
82
|
+
* The IP address.
|
|
57
83
|
*/
|
|
58
84
|
address?: pulumi.Input<string>;
|
|
59
85
|
/**
|
|
60
|
-
* The ID of the Linode to
|
|
86
|
+
* The ID of the Linode to which the IP address will be assigned. Conflicts with `region`.
|
|
61
87
|
*/
|
|
62
88
|
linodeId?: pulumi.Input<number>;
|
|
63
89
|
/**
|
|
64
|
-
* Whether the
|
|
90
|
+
* Whether the IP address is public. Defaults to true.
|
|
65
91
|
*/
|
|
66
92
|
public?: pulumi.Input<boolean>;
|
|
67
93
|
/**
|
|
@@ -73,7 +99,7 @@ export interface NetworkingIpState {
|
|
|
73
99
|
*/
|
|
74
100
|
reserved?: pulumi.Input<boolean>;
|
|
75
101
|
/**
|
|
76
|
-
* The type of IP address (ipv4)
|
|
102
|
+
* The type of IP address. (ipv4, ipv6, etc.)
|
|
77
103
|
*/
|
|
78
104
|
type?: pulumi.Input<string>;
|
|
79
105
|
}
|
|
@@ -82,11 +108,11 @@ export interface NetworkingIpState {
|
|
|
82
108
|
*/
|
|
83
109
|
export interface NetworkingIpArgs {
|
|
84
110
|
/**
|
|
85
|
-
* The ID of the Linode to
|
|
111
|
+
* The ID of the Linode to which the IP address will be assigned. Conflicts with `region`.
|
|
86
112
|
*/
|
|
87
113
|
linodeId?: pulumi.Input<number>;
|
|
88
114
|
/**
|
|
89
|
-
* Whether the
|
|
115
|
+
* Whether the IP address is public. Defaults to true.
|
|
90
116
|
*/
|
|
91
117
|
public?: pulumi.Input<boolean>;
|
|
92
118
|
/**
|
|
@@ -98,7 +124,7 @@ export interface NetworkingIpArgs {
|
|
|
98
124
|
*/
|
|
99
125
|
reserved?: pulumi.Input<boolean>;
|
|
100
126
|
/**
|
|
101
|
-
* The type of IP address (ipv4)
|
|
127
|
+
* The type of IP address. (ipv4, ipv6, etc.)
|
|
102
128
|
*/
|
|
103
129
|
type?: pulumi.Input<string>;
|
|
104
130
|
}
|
package/networkingIp.js
CHANGED
|
@@ -5,6 +5,32 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.NetworkingIp = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages allocation of reserved IPv4 address in a region and optionally assigning the reserved address to a Linode instance.
|
|
10
|
+
*
|
|
11
|
+
* For more information, see the corresponding [API documentation](https://techdocs.akamai.com/linode-api/reference/post-allocate-ip).
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as linode from "@pulumi/linode";
|
|
18
|
+
*
|
|
19
|
+
* const testIp = new linode.NetworkingIp("test_ip", {
|
|
20
|
+
* type: "ipv4",
|
|
21
|
+
* linodeId: 12345,
|
|
22
|
+
* "public": true,
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* ## Import
|
|
27
|
+
*
|
|
28
|
+
* IP addresses can be imported using the IP address ID, e.g.
|
|
29
|
+
*
|
|
30
|
+
* ```sh
|
|
31
|
+
* $ pulumi import linode:index/networkingIp:NetworkingIp example_ip 172.104.30.209
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
8
34
|
class NetworkingIp extends pulumi.CustomResource {
|
|
9
35
|
/**
|
|
10
36
|
* Get an existing NetworkingIp resource's state with the given name, ID, and optional extra
|
package/networkingIp.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"networkingIp.js","sourceRoot":"","sources":["../networkingIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AAnFL,oCAoFC;AAtEG,gBAAgB;AACO,yBAAY,GAAG,wCAAwC,CAAC"}
|
|
1
|
+
{"version":3,"file":"networkingIp.js","sourceRoot":"","sources":["../networkingIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACjD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AAnFL,oCAoFC;AAtEG,gBAAgB;AACO,yBAAY,GAAG,wCAAwC,CAAC"}
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Manages the assignment of multiple IPv4 addresses and/or IPv6 ranges to multiple Linodes in a specified region.
|
|
6
|
+
*
|
|
7
|
+
* For more information, see the corresponding [API documentation](https://techdocs.akamai.com/linode-api/reference/post-assign-ips).
|
|
8
|
+
*/
|
|
4
9
|
export declare class NetworkingIpAssignment extends pulumi.CustomResource {
|
|
5
10
|
/**
|
|
6
11
|
* Get an existing NetworkingIpAssignment resource's state with the given name, ID, and optional extra
|
|
@@ -17,9 +22,12 @@ export declare class NetworkingIpAssignment extends pulumi.CustomResource {
|
|
|
17
22
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
18
23
|
*/
|
|
19
24
|
static isInstance(obj: any): obj is NetworkingIpAssignment;
|
|
25
|
+
/**
|
|
26
|
+
* A list of IP/Linode assignments to apply.
|
|
27
|
+
*/
|
|
20
28
|
readonly assignments: pulumi.Output<outputs.NetworkingIpAssignmentAssignment[] | undefined>;
|
|
21
29
|
/**
|
|
22
|
-
* The region
|
|
30
|
+
* The region where the IP addresses will be assigned.
|
|
23
31
|
*/
|
|
24
32
|
readonly region: pulumi.Output<string>;
|
|
25
33
|
/**
|
|
@@ -35,9 +43,12 @@ export declare class NetworkingIpAssignment extends pulumi.CustomResource {
|
|
|
35
43
|
* Input properties used for looking up and filtering NetworkingIpAssignment resources.
|
|
36
44
|
*/
|
|
37
45
|
export interface NetworkingIpAssignmentState {
|
|
46
|
+
/**
|
|
47
|
+
* A list of IP/Linode assignments to apply.
|
|
48
|
+
*/
|
|
38
49
|
assignments?: pulumi.Input<pulumi.Input<inputs.NetworkingIpAssignmentAssignment>[]>;
|
|
39
50
|
/**
|
|
40
|
-
* The region
|
|
51
|
+
* The region where the IP addresses will be assigned.
|
|
41
52
|
*/
|
|
42
53
|
region?: pulumi.Input<string>;
|
|
43
54
|
}
|
|
@@ -45,9 +56,12 @@ export interface NetworkingIpAssignmentState {
|
|
|
45
56
|
* The set of arguments for constructing a NetworkingIpAssignment resource.
|
|
46
57
|
*/
|
|
47
58
|
export interface NetworkingIpAssignmentArgs {
|
|
59
|
+
/**
|
|
60
|
+
* A list of IP/Linode assignments to apply.
|
|
61
|
+
*/
|
|
48
62
|
assignments?: pulumi.Input<pulumi.Input<inputs.NetworkingIpAssignmentAssignment>[]>;
|
|
49
63
|
/**
|
|
50
|
-
* The region
|
|
64
|
+
* The region where the IP addresses will be assigned.
|
|
51
65
|
*/
|
|
52
66
|
region: pulumi.Input<string>;
|
|
53
67
|
}
|
|
@@ -5,6 +5,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.NetworkingIpAssignment = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages the assignment of multiple IPv4 addresses and/or IPv6 ranges to multiple Linodes in a specified region.
|
|
10
|
+
*
|
|
11
|
+
* For more information, see the corresponding [API documentation](https://techdocs.akamai.com/linode-api/reference/post-assign-ips).
|
|
12
|
+
*/
|
|
8
13
|
class NetworkingIpAssignment extends pulumi.CustomResource {
|
|
9
14
|
/**
|
|
10
15
|
* Get an existing NetworkingIpAssignment resource's state with the given name, ID, and optional extra
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"networkingIpAssignment.js","sourceRoot":"","sources":["../networkingIpAssignment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,MAAa,sBAAuB,SAAQ,MAAM,CAAC,cAAc;IAC7D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmC,EAAE,IAAmC;QACjI,OAAO,IAAI,sBAAsB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,sBAAsB,CAAC,YAAY,CAAC;IACvE,CAAC;
|
|
1
|
+
{"version":3,"file":"networkingIpAssignment.js","sourceRoot":"","sources":["../networkingIpAssignment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,MAAa,sBAAuB,SAAQ,MAAM,CAAC,cAAc;IAC7D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmC,EAAE,IAAmC;QACjI,OAAO,IAAI,sBAAsB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,sBAAsB,CAAC,YAAY,CAAC;IACvE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAAsE,EAAE,IAAmC;QACjI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsD,CAAC;YACrE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAqD,CAAC;YACnE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,sBAAsB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3E,CAAC;;AA9DL,wDA+DC;AAjDG,gBAAgB;AACO,mCAAY,GAAG,4DAA4D,CAAC"}
|
package/objectStorageKey.d.ts
CHANGED
|
@@ -31,6 +31,29 @@ import * as outputs from "./types/output";
|
|
|
31
31
|
* }],
|
|
32
32
|
* });
|
|
33
33
|
* ```
|
|
34
|
+
*
|
|
35
|
+
* The following example shows how to grant a key the explicit access to multiple buckets.
|
|
36
|
+
*
|
|
37
|
+
* ```typescript
|
|
38
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
39
|
+
* import * as linode from "@pulumi/linode";
|
|
40
|
+
*
|
|
41
|
+
* const foo = new linode.ObjectStorageKey("foo", {
|
|
42
|
+
* label: "image-access",
|
|
43
|
+
* bucketAccesses: [
|
|
44
|
+
* {
|
|
45
|
+
* bucketName: "foobar1",
|
|
46
|
+
* cluster: "us-east-1",
|
|
47
|
+
* permissions: "read_write",
|
|
48
|
+
* },
|
|
49
|
+
* {
|
|
50
|
+
* bucketName: "foobar2",
|
|
51
|
+
* cluster: "us-east-1",
|
|
52
|
+
* permissions: "read_write",
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* });
|
|
56
|
+
* ```
|
|
34
57
|
*/
|
|
35
58
|
export declare class ObjectStorageKey extends pulumi.CustomResource {
|
|
36
59
|
/**
|
package/objectStorageKey.js
CHANGED
|
@@ -35,6 +35,29 @@ const utilities = require("./utilities");
|
|
|
35
35
|
* }],
|
|
36
36
|
* });
|
|
37
37
|
* ```
|
|
38
|
+
*
|
|
39
|
+
* The following example shows how to grant a key the explicit access to multiple buckets.
|
|
40
|
+
*
|
|
41
|
+
* ```typescript
|
|
42
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
43
|
+
* import * as linode from "@pulumi/linode";
|
|
44
|
+
*
|
|
45
|
+
* const foo = new linode.ObjectStorageKey("foo", {
|
|
46
|
+
* label: "image-access",
|
|
47
|
+
* bucketAccesses: [
|
|
48
|
+
* {
|
|
49
|
+
* bucketName: "foobar1",
|
|
50
|
+
* cluster: "us-east-1",
|
|
51
|
+
* permissions: "read_write",
|
|
52
|
+
* },
|
|
53
|
+
* {
|
|
54
|
+
* bucketName: "foobar2",
|
|
55
|
+
* cluster: "us-east-1",
|
|
56
|
+
* permissions: "read_write",
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* });
|
|
60
|
+
* ```
|
|
38
61
|
*/
|
|
39
62
|
class ObjectStorageKey extends pulumi.CustomResource {
|
|
40
63
|
/**
|
package/objectStorageKey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"objectStorageKey.js","sourceRoot":"","sources":["../objectStorageKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"objectStorageKey.js","sourceRoot":"","sources":["../objectStorageKey.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/linode",
|
|
3
|
-
"version": "4.32.0
|
|
3
|
+
"version": "4.32.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing linode cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "linode",
|
|
26
|
-
"version": "4.32.0
|
|
26
|
+
"version": "4.32.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -22,6 +22,31 @@ export interface DatabaseMysqlUpdates {
|
|
|
22
22
|
*/
|
|
23
23
|
weekOfMonth?: pulumi.Input<number>;
|
|
24
24
|
}
|
|
25
|
+
export interface DatabaseMysqlV2PendingUpdate {
|
|
26
|
+
deadline: pulumi.Input<string>;
|
|
27
|
+
description: pulumi.Input<string>;
|
|
28
|
+
plannedFor: pulumi.Input<string>;
|
|
29
|
+
}
|
|
30
|
+
export interface DatabaseMysqlV2Timeouts {
|
|
31
|
+
/**
|
|
32
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
33
|
+
*/
|
|
34
|
+
create?: pulumi.Input<string>;
|
|
35
|
+
/**
|
|
36
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
37
|
+
*/
|
|
38
|
+
delete?: pulumi.Input<string>;
|
|
39
|
+
/**
|
|
40
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
41
|
+
*/
|
|
42
|
+
update?: pulumi.Input<string>;
|
|
43
|
+
}
|
|
44
|
+
export interface DatabaseMysqlV2Updates {
|
|
45
|
+
dayOfWeek: pulumi.Input<number>;
|
|
46
|
+
duration: pulumi.Input<number>;
|
|
47
|
+
frequency: pulumi.Input<string>;
|
|
48
|
+
hourOfDay: pulumi.Input<number>;
|
|
49
|
+
}
|
|
25
50
|
export interface DatabasePostgresqlUpdates {
|
|
26
51
|
/**
|
|
27
52
|
* The day to perform maintenance.
|
|
@@ -44,6 +69,31 @@ export interface DatabasePostgresqlUpdates {
|
|
|
44
69
|
*/
|
|
45
70
|
weekOfMonth?: pulumi.Input<number>;
|
|
46
71
|
}
|
|
72
|
+
export interface DatabasePostgresqlV2PendingUpdate {
|
|
73
|
+
deadline: pulumi.Input<string>;
|
|
74
|
+
description: pulumi.Input<string>;
|
|
75
|
+
plannedFor: pulumi.Input<string>;
|
|
76
|
+
}
|
|
77
|
+
export interface DatabasePostgresqlV2Timeouts {
|
|
78
|
+
/**
|
|
79
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
80
|
+
*/
|
|
81
|
+
create?: pulumi.Input<string>;
|
|
82
|
+
/**
|
|
83
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
84
|
+
*/
|
|
85
|
+
delete?: pulumi.Input<string>;
|
|
86
|
+
/**
|
|
87
|
+
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
88
|
+
*/
|
|
89
|
+
update?: pulumi.Input<string>;
|
|
90
|
+
}
|
|
91
|
+
export interface DatabasePostgresqlV2Updates {
|
|
92
|
+
dayOfWeek: pulumi.Input<number>;
|
|
93
|
+
duration: pulumi.Input<number>;
|
|
94
|
+
frequency: pulumi.Input<string>;
|
|
95
|
+
hourOfDay: pulumi.Input<number>;
|
|
96
|
+
}
|
|
47
97
|
export interface FirewallDevice {
|
|
48
98
|
/**
|
|
49
99
|
* The ID of the underlying entity this device references (i.e. the Linode's ID).
|
|
@@ -1403,6 +1453,10 @@ export interface GetInstanceTypesFilterArgs {
|
|
|
1403
1453
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
1404
1454
|
}
|
|
1405
1455
|
export interface GetInstanceTypesType {
|
|
1456
|
+
/**
|
|
1457
|
+
* The number of VPUs this Linode Type offers.
|
|
1458
|
+
*/
|
|
1459
|
+
acceleratedDevices?: number;
|
|
1406
1460
|
/**
|
|
1407
1461
|
* Information about the optional Backup service offered for Linodes.
|
|
1408
1462
|
*/
|
|
@@ -1449,6 +1503,10 @@ export interface GetInstanceTypesType {
|
|
|
1449
1503
|
vcpus?: number;
|
|
1450
1504
|
}
|
|
1451
1505
|
export interface GetInstanceTypesTypeArgs {
|
|
1506
|
+
/**
|
|
1507
|
+
* The number of VPUs this Linode Type offers.
|
|
1508
|
+
*/
|
|
1509
|
+
acceleratedDevices?: pulumi.Input<number>;
|
|
1452
1510
|
/**
|
|
1453
1511
|
* Information about the optional Backup service offered for Linodes.
|
|
1454
1512
|
*/
|
|
@@ -2452,29 +2510,29 @@ export interface GetNetworkTransferPricesTypeRegionPriceArgs {
|
|
|
2452
2510
|
}
|
|
2453
2511
|
export interface GetNetworkingIpsFilter {
|
|
2454
2512
|
/**
|
|
2455
|
-
* The
|
|
2513
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
2456
2514
|
*/
|
|
2457
2515
|
matchBy?: string;
|
|
2458
2516
|
/**
|
|
2459
|
-
* The name of the
|
|
2517
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
2460
2518
|
*/
|
|
2461
2519
|
name: string;
|
|
2462
2520
|
/**
|
|
2463
|
-
*
|
|
2521
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
2464
2522
|
*/
|
|
2465
2523
|
values: string[];
|
|
2466
2524
|
}
|
|
2467
2525
|
export interface GetNetworkingIpsFilterArgs {
|
|
2468
2526
|
/**
|
|
2469
|
-
* The
|
|
2527
|
+
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
2470
2528
|
*/
|
|
2471
2529
|
matchBy?: pulumi.Input<string>;
|
|
2472
2530
|
/**
|
|
2473
|
-
* The name of the
|
|
2531
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
2474
2532
|
*/
|
|
2475
2533
|
name: pulumi.Input<string>;
|
|
2476
2534
|
/**
|
|
2477
|
-
*
|
|
2535
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
2478
2536
|
*/
|
|
2479
2537
|
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
2480
2538
|
}
|
|
@@ -2504,11 +2562,11 @@ export interface GetNetworkingIpsIpAddress {
|
|
|
2504
2562
|
*/
|
|
2505
2563
|
rdns?: string;
|
|
2506
2564
|
/**
|
|
2507
|
-
* The Region this IP address resides in.
|
|
2565
|
+
* The Region this IP address resides in. See all regions [here](https://api.linode.com/v4/regions).
|
|
2508
2566
|
*/
|
|
2509
2567
|
region?: string;
|
|
2510
2568
|
/**
|
|
2511
|
-
* Whether this IP is reserved
|
|
2569
|
+
* Whether this IP address is a reserved IP.
|
|
2512
2570
|
*/
|
|
2513
2571
|
reserved?: boolean;
|
|
2514
2572
|
/**
|
|
@@ -2546,11 +2604,11 @@ export interface GetNetworkingIpsIpAddressArgs {
|
|
|
2546
2604
|
*/
|
|
2547
2605
|
rdns?: pulumi.Input<string>;
|
|
2548
2606
|
/**
|
|
2549
|
-
* The Region this IP address resides in.
|
|
2607
|
+
* The Region this IP address resides in. See all regions [here](https://api.linode.com/v4/regions).
|
|
2550
2608
|
*/
|
|
2551
2609
|
region?: pulumi.Input<string>;
|
|
2552
2610
|
/**
|
|
2553
|
-
* Whether this IP is reserved
|
|
2611
|
+
* Whether this IP address is a reserved IP.
|
|
2554
2612
|
*/
|
|
2555
2613
|
reserved?: pulumi.Input<boolean>;
|
|
2556
2614
|
/**
|
|
@@ -3118,6 +3176,50 @@ export interface GetPlacementGroupMemberArgs {
|
|
|
3118
3176
|
*/
|
|
3119
3177
|
linodeId?: pulumi.Input<number>;
|
|
3120
3178
|
}
|
|
3179
|
+
export interface GetPlacementGroupMigrations {
|
|
3180
|
+
/**
|
|
3181
|
+
* A list of the Linodes the system is migrating into the placement group.
|
|
3182
|
+
*/
|
|
3183
|
+
inbounds?: inputs.GetPlacementGroupMigrationsInbound[];
|
|
3184
|
+
/**
|
|
3185
|
+
* A list of the Linodes the system is migrating out of the placement group.
|
|
3186
|
+
*/
|
|
3187
|
+
outbounds?: inputs.GetPlacementGroupMigrationsOutbound[];
|
|
3188
|
+
}
|
|
3189
|
+
export interface GetPlacementGroupMigrationsArgs {
|
|
3190
|
+
/**
|
|
3191
|
+
* A list of the Linodes the system is migrating into the placement group.
|
|
3192
|
+
*/
|
|
3193
|
+
inbounds?: pulumi.Input<pulumi.Input<inputs.GetPlacementGroupMigrationsInboundArgs>[]>;
|
|
3194
|
+
/**
|
|
3195
|
+
* A list of the Linodes the system is migrating out of the placement group.
|
|
3196
|
+
*/
|
|
3197
|
+
outbounds?: pulumi.Input<pulumi.Input<inputs.GetPlacementGroupMigrationsOutboundArgs>[]>;
|
|
3198
|
+
}
|
|
3199
|
+
export interface GetPlacementGroupMigrationsInbound {
|
|
3200
|
+
/**
|
|
3201
|
+
* The ID of the Linode.
|
|
3202
|
+
*/
|
|
3203
|
+
linodeId: number;
|
|
3204
|
+
}
|
|
3205
|
+
export interface GetPlacementGroupMigrationsInboundArgs {
|
|
3206
|
+
/**
|
|
3207
|
+
* The ID of the Linode.
|
|
3208
|
+
*/
|
|
3209
|
+
linodeId: pulumi.Input<number>;
|
|
3210
|
+
}
|
|
3211
|
+
export interface GetPlacementGroupMigrationsOutbound {
|
|
3212
|
+
/**
|
|
3213
|
+
* The ID of the Linode.
|
|
3214
|
+
*/
|
|
3215
|
+
linodeId: number;
|
|
3216
|
+
}
|
|
3217
|
+
export interface GetPlacementGroupMigrationsOutboundArgs {
|
|
3218
|
+
/**
|
|
3219
|
+
* The ID of the Linode.
|
|
3220
|
+
*/
|
|
3221
|
+
linodeId: pulumi.Input<number>;
|
|
3222
|
+
}
|
|
3121
3223
|
export interface GetPlacementGroupsFilter {
|
|
3122
3224
|
/**
|
|
3123
3225
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -3163,6 +3265,10 @@ export interface GetPlacementGroupsPlacementGroup {
|
|
|
3163
3265
|
* A set of Linodes currently assigned to this Placement Group.
|
|
3164
3266
|
*/
|
|
3165
3267
|
members?: inputs.GetPlacementGroupsPlacementGroupMember[];
|
|
3268
|
+
/**
|
|
3269
|
+
* Any Linodes that are being migrated to or from the placement group.
|
|
3270
|
+
*/
|
|
3271
|
+
migrations?: inputs.GetPlacementGroupsPlacementGroupMigrations;
|
|
3166
3272
|
/**
|
|
3167
3273
|
* Whether Linodes must be able to become compliant during assignment. (Default `strict`)
|
|
3168
3274
|
*/
|
|
@@ -3193,6 +3299,10 @@ export interface GetPlacementGroupsPlacementGroupArgs {
|
|
|
3193
3299
|
* A set of Linodes currently assigned to this Placement Group.
|
|
3194
3300
|
*/
|
|
3195
3301
|
members?: pulumi.Input<pulumi.Input<inputs.GetPlacementGroupsPlacementGroupMemberArgs>[]>;
|
|
3302
|
+
/**
|
|
3303
|
+
* Any Linodes that are being migrated to or from the placement group.
|
|
3304
|
+
*/
|
|
3305
|
+
migrations?: pulumi.Input<inputs.GetPlacementGroupsPlacementGroupMigrationsArgs>;
|
|
3196
3306
|
/**
|
|
3197
3307
|
* Whether Linodes must be able to become compliant during assignment. (Default `strict`)
|
|
3198
3308
|
*/
|
|
@@ -3212,7 +3322,7 @@ export interface GetPlacementGroupsPlacementGroupMember {
|
|
|
3212
3322
|
*/
|
|
3213
3323
|
isCompliant?: boolean;
|
|
3214
3324
|
/**
|
|
3215
|
-
* The
|
|
3325
|
+
* The unique identifier for the Linode being migrated out of the placement group.
|
|
3216
3326
|
*/
|
|
3217
3327
|
linodeId?: number;
|
|
3218
3328
|
}
|
|
@@ -3222,10 +3332,54 @@ export interface GetPlacementGroupsPlacementGroupMemberArgs {
|
|
|
3222
3332
|
*/
|
|
3223
3333
|
isCompliant?: pulumi.Input<boolean>;
|
|
3224
3334
|
/**
|
|
3225
|
-
* The
|
|
3335
|
+
* The unique identifier for the Linode being migrated out of the placement group.
|
|
3226
3336
|
*/
|
|
3227
3337
|
linodeId?: pulumi.Input<number>;
|
|
3228
3338
|
}
|
|
3339
|
+
export interface GetPlacementGroupsPlacementGroupMigrations {
|
|
3340
|
+
/**
|
|
3341
|
+
* A list of the Linodes the system is migrating into the placement group.
|
|
3342
|
+
*/
|
|
3343
|
+
inbounds?: inputs.GetPlacementGroupsPlacementGroupMigrationsInbound[];
|
|
3344
|
+
/**
|
|
3345
|
+
* A list of the Linodes the system is migrating out of the placement group.
|
|
3346
|
+
*/
|
|
3347
|
+
outbounds?: inputs.GetPlacementGroupsPlacementGroupMigrationsOutbound[];
|
|
3348
|
+
}
|
|
3349
|
+
export interface GetPlacementGroupsPlacementGroupMigrationsArgs {
|
|
3350
|
+
/**
|
|
3351
|
+
* A list of the Linodes the system is migrating into the placement group.
|
|
3352
|
+
*/
|
|
3353
|
+
inbounds?: pulumi.Input<pulumi.Input<inputs.GetPlacementGroupsPlacementGroupMigrationsInboundArgs>[]>;
|
|
3354
|
+
/**
|
|
3355
|
+
* A list of the Linodes the system is migrating out of the placement group.
|
|
3356
|
+
*/
|
|
3357
|
+
outbounds?: pulumi.Input<pulumi.Input<inputs.GetPlacementGroupsPlacementGroupMigrationsOutboundArgs>[]>;
|
|
3358
|
+
}
|
|
3359
|
+
export interface GetPlacementGroupsPlacementGroupMigrationsInbound {
|
|
3360
|
+
/**
|
|
3361
|
+
* The unique identifier for the Linode being migrated out of the placement group.
|
|
3362
|
+
*/
|
|
3363
|
+
linodeId: number;
|
|
3364
|
+
}
|
|
3365
|
+
export interface GetPlacementGroupsPlacementGroupMigrationsInboundArgs {
|
|
3366
|
+
/**
|
|
3367
|
+
* The unique identifier for the Linode being migrated out of the placement group.
|
|
3368
|
+
*/
|
|
3369
|
+
linodeId: pulumi.Input<number>;
|
|
3370
|
+
}
|
|
3371
|
+
export interface GetPlacementGroupsPlacementGroupMigrationsOutbound {
|
|
3372
|
+
/**
|
|
3373
|
+
* The unique identifier for the Linode being migrated out of the placement group.
|
|
3374
|
+
*/
|
|
3375
|
+
linodeId: number;
|
|
3376
|
+
}
|
|
3377
|
+
export interface GetPlacementGroupsPlacementGroupMigrationsOutboundArgs {
|
|
3378
|
+
/**
|
|
3379
|
+
* The unique identifier for the Linode being migrated out of the placement group.
|
|
3380
|
+
*/
|
|
3381
|
+
linodeId: pulumi.Input<number>;
|
|
3382
|
+
}
|
|
3229
3383
|
export interface GetRegionResolver {
|
|
3230
3384
|
/**
|
|
3231
3385
|
* The IPv4 addresses for this region’s DNS resolvers, separated by commas.
|
|
@@ -5451,7 +5605,9 @@ export interface InstanceInterface {
|
|
|
5451
5605
|
*/
|
|
5452
5606
|
ipamAddress?: pulumi.Input<string>;
|
|
5453
5607
|
/**
|
|
5454
|
-
*
|
|
5608
|
+
* A set of reserved IPv4 addresses to assign to this Linode on creation.
|
|
5609
|
+
*
|
|
5610
|
+
* * **NOTE: IP reservation is not currently available to all users.**
|
|
5455
5611
|
*/
|
|
5456
5612
|
ipv4?: pulumi.Input<inputs.InstanceInterfaceIpv4>;
|
|
5457
5613
|
/**
|
|
@@ -5523,10 +5679,18 @@ export interface InstancePlacementGroup {
|
|
|
5523
5679
|
placementGroupType?: pulumi.Input<string>;
|
|
5524
5680
|
}
|
|
5525
5681
|
export interface InstanceSpecs {
|
|
5682
|
+
/**
|
|
5683
|
+
* The number of VPUs this Linode has access to.
|
|
5684
|
+
*/
|
|
5685
|
+
acceleratedDevices?: pulumi.Input<number>;
|
|
5526
5686
|
/**
|
|
5527
5687
|
* The amount of storage space, in GB. this Linode has access to. A typical Linode will divide this space between a primary disk with an image deployed to it, and a swap disk, usually 512 MB. This is the default configuration created when deploying a Linode with an image through POST /linode/instances.
|
|
5528
5688
|
*/
|
|
5529
5689
|
disk?: pulumi.Input<number>;
|
|
5690
|
+
/**
|
|
5691
|
+
* The number of GPUs this Linode has access to.
|
|
5692
|
+
*/
|
|
5693
|
+
gpus?: pulumi.Input<number>;
|
|
5530
5694
|
/**
|
|
5531
5695
|
* The amount of RAM, in MB, this Linode has access to. Typically a Linode will choose to boot with all of its available RAM, but this can be configured in a Config profile.
|
|
5532
5696
|
*/
|
|
@@ -5693,7 +5857,13 @@ export interface LkeNodePoolTaint {
|
|
|
5693
5857
|
value: pulumi.Input<string>;
|
|
5694
5858
|
}
|
|
5695
5859
|
export interface NetworkingIpAssignmentAssignment {
|
|
5860
|
+
/**
|
|
5861
|
+
* The IPv4 address or IPv6 range to assign.
|
|
5862
|
+
*/
|
|
5696
5863
|
address: pulumi.Input<string>;
|
|
5864
|
+
/**
|
|
5865
|
+
* The ID of the Linode to which the IP address will be assigned.
|
|
5866
|
+
*/
|
|
5697
5867
|
linodeId: pulumi.Input<number>;
|
|
5698
5868
|
}
|
|
5699
5869
|
export interface NodeBalancerConfigNodeStatus {
|