@pulumi/linode 4.7.0 → 4.8.0-alpha.1696441746
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/instance.d.ts +9 -9
- package/package.json +1 -1
- package/types/input.d.ts +3 -3
- package/types/output.d.ts +3 -3
package/instance.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
63
63
|
*/
|
|
64
64
|
readonly alerts: pulumi.Output<outputs.InstanceAlerts>;
|
|
65
65
|
/**
|
|
66
|
-
* A list of SSH public keys to deploy for the root user on the newly created Linode. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
66
|
+
* A list of SSH public keys to deploy for the root user on the newly created Linode. Only accepted if `image` is provided. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
67
67
|
*/
|
|
68
68
|
readonly authorizedKeys: pulumi.Output<string[] | undefined>;
|
|
69
69
|
/**
|
|
@@ -115,7 +115,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
115
115
|
*/
|
|
116
116
|
readonly hostUuid: pulumi.Output<string>;
|
|
117
117
|
/**
|
|
118
|
-
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with
|
|
118
|
+
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with private/. See /images for more information on the Images available for you to use. Examples are `linode/debian9`, `linode/fedora28`, `linode/ubuntu16.04lts`, `linode/arch`, and `private/12345`. See all images [here](https://api.linode.com/v4/images). *Changing `image` forces the creation of a new Linode Instance.*
|
|
119
119
|
*/
|
|
120
120
|
readonly image: pulumi.Output<string | undefined>;
|
|
121
121
|
/**
|
|
@@ -170,7 +170,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
170
170
|
*/
|
|
171
171
|
readonly resizeDisk: pulumi.Output<boolean | undefined>;
|
|
172
172
|
/**
|
|
173
|
-
* 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
|
|
173
|
+
* 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.*
|
|
174
174
|
*/
|
|
175
175
|
readonly rootPass: pulumi.Output<string | undefined>;
|
|
176
176
|
/**
|
|
@@ -231,7 +231,7 @@ export interface InstanceState {
|
|
|
231
231
|
*/
|
|
232
232
|
alerts?: pulumi.Input<inputs.InstanceAlerts>;
|
|
233
233
|
/**
|
|
234
|
-
* A list of SSH public keys to deploy for the root user on the newly created Linode. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
234
|
+
* A list of SSH public keys to deploy for the root user on the newly created Linode. Only accepted if `image` is provided. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
235
235
|
*/
|
|
236
236
|
authorizedKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
237
237
|
/**
|
|
@@ -283,7 +283,7 @@ export interface InstanceState {
|
|
|
283
283
|
*/
|
|
284
284
|
hostUuid?: pulumi.Input<string>;
|
|
285
285
|
/**
|
|
286
|
-
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with
|
|
286
|
+
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with private/. See /images for more information on the Images available for you to use. Examples are `linode/debian9`, `linode/fedora28`, `linode/ubuntu16.04lts`, `linode/arch`, and `private/12345`. See all images [here](https://api.linode.com/v4/images). *Changing `image` forces the creation of a new Linode Instance.*
|
|
287
287
|
*/
|
|
288
288
|
image?: pulumi.Input<string>;
|
|
289
289
|
/**
|
|
@@ -338,7 +338,7 @@ export interface InstanceState {
|
|
|
338
338
|
*/
|
|
339
339
|
resizeDisk?: pulumi.Input<boolean>;
|
|
340
340
|
/**
|
|
341
|
-
* 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
|
|
341
|
+
* 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.*
|
|
342
342
|
*/
|
|
343
343
|
rootPass?: pulumi.Input<string>;
|
|
344
344
|
/**
|
|
@@ -391,7 +391,7 @@ export interface InstanceArgs {
|
|
|
391
391
|
*/
|
|
392
392
|
alerts?: pulumi.Input<inputs.InstanceAlerts>;
|
|
393
393
|
/**
|
|
394
|
-
* A list of SSH public keys to deploy for the root user on the newly created Linode. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
394
|
+
* A list of SSH public keys to deploy for the root user on the newly created Linode. Only accepted if `image` is provided. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
395
395
|
*/
|
|
396
396
|
authorizedKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
397
397
|
/**
|
|
@@ -431,7 +431,7 @@ export interface InstanceArgs {
|
|
|
431
431
|
*/
|
|
432
432
|
group?: pulumi.Input<string>;
|
|
433
433
|
/**
|
|
434
|
-
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with
|
|
434
|
+
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with private/. See /images for more information on the Images available for you to use. Examples are `linode/debian9`, `linode/fedora28`, `linode/ubuntu16.04lts`, `linode/arch`, and `private/12345`. See all images [here](https://api.linode.com/v4/images). *Changing `image` forces the creation of a new Linode Instance.*
|
|
435
435
|
*/
|
|
436
436
|
image?: pulumi.Input<string>;
|
|
437
437
|
/**
|
|
@@ -470,7 +470,7 @@ export interface InstanceArgs {
|
|
|
470
470
|
*/
|
|
471
471
|
resizeDisk?: pulumi.Input<boolean>;
|
|
472
472
|
/**
|
|
473
|
-
* 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
|
|
473
|
+
* 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.*
|
|
474
474
|
*/
|
|
475
475
|
rootPass?: pulumi.Input<string>;
|
|
476
476
|
/**
|
package/package.json
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -2554,7 +2554,7 @@ export interface InstanceConfigInterface {
|
|
|
2554
2554
|
}
|
|
2555
2555
|
export interface InstanceDisk {
|
|
2556
2556
|
/**
|
|
2557
|
-
* A list of SSH public keys to deploy for the root user on the newly created Linode. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
2557
|
+
* A list of SSH public keys to deploy for the root user on the newly created Linode. Only accepted if `image` is provided. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
2558
2558
|
*/
|
|
2559
2559
|
authorizedKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2560
2560
|
/**
|
|
@@ -2570,7 +2570,7 @@ export interface InstanceDisk {
|
|
|
2570
2570
|
*/
|
|
2571
2571
|
id?: pulumi.Input<number>;
|
|
2572
2572
|
/**
|
|
2573
|
-
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with
|
|
2573
|
+
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with private/. See /images for more information on the Images available for you to use. Examples are `linode/debian9`, `linode/fedora28`, `linode/ubuntu16.04lts`, `linode/arch`, and `private/12345`. See all images [here](https://api.linode.com/v4/images). *Changing `image` forces the creation of a new Linode Instance.*
|
|
2574
2574
|
*/
|
|
2575
2575
|
image?: pulumi.Input<string>;
|
|
2576
2576
|
/**
|
|
@@ -2582,7 +2582,7 @@ export interface InstanceDisk {
|
|
|
2582
2582
|
*/
|
|
2583
2583
|
readOnly?: pulumi.Input<boolean>;
|
|
2584
2584
|
/**
|
|
2585
|
-
* 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
|
|
2585
|
+
* 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.*
|
|
2586
2586
|
*/
|
|
2587
2587
|
rootPass?: pulumi.Input<string>;
|
|
2588
2588
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -2432,7 +2432,7 @@ export interface InstanceConfigInterface {
|
|
|
2432
2432
|
}
|
|
2433
2433
|
export interface InstanceDisk {
|
|
2434
2434
|
/**
|
|
2435
|
-
* A list of SSH public keys to deploy for the root user on the newly created Linode. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
2435
|
+
* A list of SSH public keys to deploy for the root user on the newly created Linode. Only accepted if `image` is provided. *This value can not be imported.* *Changing `authorizedKeys` forces the creation of a new Linode Instance.*
|
|
2436
2436
|
*/
|
|
2437
2437
|
authorizedKeys?: string[];
|
|
2438
2438
|
/**
|
|
@@ -2448,7 +2448,7 @@ export interface InstanceDisk {
|
|
|
2448
2448
|
*/
|
|
2449
2449
|
id: number;
|
|
2450
2450
|
/**
|
|
2451
|
-
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with
|
|
2451
|
+
* An Image ID to deploy the Disk from. Official Linode Images start with linode/, while your Images start with private/. See /images for more information on the Images available for you to use. Examples are `linode/debian9`, `linode/fedora28`, `linode/ubuntu16.04lts`, `linode/arch`, and `private/12345`. See all images [here](https://api.linode.com/v4/images). *Changing `image` forces the creation of a new Linode Instance.*
|
|
2452
2452
|
*/
|
|
2453
2453
|
image: string;
|
|
2454
2454
|
/**
|
|
@@ -2460,7 +2460,7 @@ export interface InstanceDisk {
|
|
|
2460
2460
|
*/
|
|
2461
2461
|
readOnly: boolean;
|
|
2462
2462
|
/**
|
|
2463
|
-
* 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
|
|
2463
|
+
* 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.*
|
|
2464
2464
|
*/
|
|
2465
2465
|
rootPass?: string;
|
|
2466
2466
|
/**
|