@pulumi/linode 4.29.0-alpha.1730180469 → 4.29.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/config/vars.d.ts +4 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/getLkeTypes.d.ts +33 -0
- package/getLkeTypes.js +30 -0
- package/getLkeTypes.js.map +1 -0
- package/getNbTypes.d.ts +33 -0
- package/getNbTypes.js +30 -0
- package/getNbTypes.js.map +1 -0
- package/getNetworkTransferPrices.d.ts +33 -0
- package/getNetworkTransferPrices.js +30 -0
- package/getNetworkTransferPrices.js.map +1 -0
- package/getVolume.d.ts +4 -0
- package/getVolume.js.map +1 -1
- package/getVolumeTypes.d.ts +33 -0
- package/getVolumeTypes.js +30 -0
- package/getVolumeTypes.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +15 -3
- package/index.js.map +1 -1
- package/instance.d.ts +8 -0
- package/instance.js +2 -0
- package/instance.js.map +1 -1
- package/package.json +2 -2
- package/provider.d.ts +8 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/types/input.d.ts +392 -0
- package/types/output.d.ts +212 -0
- package/volume.d.ts +12 -0
- package/volume.js +2 -0
- package/volume.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -1600,6 +1600,10 @@ export interface GetInstancesInstance {
|
|
|
1600
1600
|
* The Label of the Instance Config that should be used to boot the Linode instance.
|
|
1601
1601
|
*/
|
|
1602
1602
|
bootConfigLabel: string;
|
|
1603
|
+
/**
|
|
1604
|
+
* A list of capabilities of this Linode instance.
|
|
1605
|
+
*/
|
|
1606
|
+
capabilities: string[];
|
|
1603
1607
|
/**
|
|
1604
1608
|
* Configuration profiles define the VM settings and boot behavior of the Linode Instance.
|
|
1605
1609
|
*/
|
|
@@ -2314,12 +2318,147 @@ export interface GetLkeClustersLkeClusterControlPlane {
|
|
|
2314
2318
|
*/
|
|
2315
2319
|
highAvailability: boolean;
|
|
2316
2320
|
}
|
|
2321
|
+
export interface GetLkeTypesFilter {
|
|
2322
|
+
/**
|
|
2323
|
+
* The type of comparison to use for this filter.
|
|
2324
|
+
*/
|
|
2325
|
+
matchBy?: string;
|
|
2326
|
+
/**
|
|
2327
|
+
* The name of the attribute to filter on.
|
|
2328
|
+
*/
|
|
2329
|
+
name: string;
|
|
2330
|
+
/**
|
|
2331
|
+
* The value(s) to be used in the filter.
|
|
2332
|
+
*/
|
|
2333
|
+
values: string[];
|
|
2334
|
+
}
|
|
2335
|
+
export interface GetLkeTypesType {
|
|
2336
|
+
/**
|
|
2337
|
+
* The unique ID assigned to this LKE Type.
|
|
2338
|
+
*/
|
|
2339
|
+
id: string;
|
|
2340
|
+
/**
|
|
2341
|
+
* The LKE Type's label.
|
|
2342
|
+
*/
|
|
2343
|
+
label: string;
|
|
2344
|
+
/**
|
|
2345
|
+
* Cost in US dollars, broken down into hourly and monthly charges.
|
|
2346
|
+
*/
|
|
2347
|
+
prices: outputs.GetLkeTypesTypePrice[];
|
|
2348
|
+
/**
|
|
2349
|
+
* A list of region-specific prices for this LKE Type.
|
|
2350
|
+
*/
|
|
2351
|
+
regionPrices: outputs.GetLkeTypesTypeRegionPrice[];
|
|
2352
|
+
/**
|
|
2353
|
+
* The monthly outbound transfer amount, in MB.
|
|
2354
|
+
*/
|
|
2355
|
+
transfer: number;
|
|
2356
|
+
}
|
|
2357
|
+
export interface GetLkeTypesTypePrice {
|
|
2358
|
+
hourly: number;
|
|
2359
|
+
monthly: number;
|
|
2360
|
+
}
|
|
2361
|
+
export interface GetLkeTypesTypeRegionPrice {
|
|
2362
|
+
hourly: number;
|
|
2363
|
+
id: string;
|
|
2364
|
+
monthly: number;
|
|
2365
|
+
}
|
|
2317
2366
|
export interface GetLkeVersionsVersion {
|
|
2318
2367
|
/**
|
|
2319
2368
|
* The Kubernetes version numbers available for deployment to a Kubernetes cluster in the format of [major].[minor], and the latest supported patch version.
|
|
2320
2369
|
*/
|
|
2321
2370
|
id: string;
|
|
2322
2371
|
}
|
|
2372
|
+
export interface GetNbTypesFilter {
|
|
2373
|
+
/**
|
|
2374
|
+
* The type of comparison to use for this filter.
|
|
2375
|
+
*/
|
|
2376
|
+
matchBy?: string;
|
|
2377
|
+
/**
|
|
2378
|
+
* The name of the attribute to filter on.
|
|
2379
|
+
*/
|
|
2380
|
+
name: string;
|
|
2381
|
+
/**
|
|
2382
|
+
* The value(s) to be used in the filter.
|
|
2383
|
+
*/
|
|
2384
|
+
values: string[];
|
|
2385
|
+
}
|
|
2386
|
+
export interface GetNbTypesType {
|
|
2387
|
+
/**
|
|
2388
|
+
* The unique ID assigned to this Node Balancer Type.
|
|
2389
|
+
*/
|
|
2390
|
+
id: string;
|
|
2391
|
+
/**
|
|
2392
|
+
* The Node Balancer Type's label.
|
|
2393
|
+
*/
|
|
2394
|
+
label: string;
|
|
2395
|
+
/**
|
|
2396
|
+
* Cost in US dollars, broken down into hourly and monthly charges.
|
|
2397
|
+
*/
|
|
2398
|
+
prices: outputs.GetNbTypesTypePrice[];
|
|
2399
|
+
/**
|
|
2400
|
+
* A list of region-specific prices for this Node Balancer Type.
|
|
2401
|
+
*/
|
|
2402
|
+
regionPrices: outputs.GetNbTypesTypeRegionPrice[];
|
|
2403
|
+
/**
|
|
2404
|
+
* The monthly outbound transfer amount, in MB.
|
|
2405
|
+
*/
|
|
2406
|
+
transfer: number;
|
|
2407
|
+
}
|
|
2408
|
+
export interface GetNbTypesTypePrice {
|
|
2409
|
+
hourly: number;
|
|
2410
|
+
monthly: number;
|
|
2411
|
+
}
|
|
2412
|
+
export interface GetNbTypesTypeRegionPrice {
|
|
2413
|
+
hourly: number;
|
|
2414
|
+
id: string;
|
|
2415
|
+
monthly: number;
|
|
2416
|
+
}
|
|
2417
|
+
export interface GetNetworkTransferPricesFilter {
|
|
2418
|
+
/**
|
|
2419
|
+
* The type of comparison to use for this filter.
|
|
2420
|
+
*/
|
|
2421
|
+
matchBy?: string;
|
|
2422
|
+
/**
|
|
2423
|
+
* The name of the attribute to filter on.
|
|
2424
|
+
*/
|
|
2425
|
+
name: string;
|
|
2426
|
+
/**
|
|
2427
|
+
* The value(s) to be used in the filter.
|
|
2428
|
+
*/
|
|
2429
|
+
values: string[];
|
|
2430
|
+
}
|
|
2431
|
+
export interface GetNetworkTransferPricesType {
|
|
2432
|
+
/**
|
|
2433
|
+
* The unique ID assigned to this Network Transfer Price.
|
|
2434
|
+
*/
|
|
2435
|
+
id: string;
|
|
2436
|
+
/**
|
|
2437
|
+
* The Network Transfer Price's label.
|
|
2438
|
+
*/
|
|
2439
|
+
label: string;
|
|
2440
|
+
/**
|
|
2441
|
+
* Cost in US dollars, broken down into hourly and monthly charges.
|
|
2442
|
+
*/
|
|
2443
|
+
prices: outputs.GetNetworkTransferPricesTypePrice[];
|
|
2444
|
+
/**
|
|
2445
|
+
* A list of region-specific prices for this Network Transfer Price.
|
|
2446
|
+
*/
|
|
2447
|
+
regionPrices: outputs.GetNetworkTransferPricesTypeRegionPrice[];
|
|
2448
|
+
/**
|
|
2449
|
+
* The monthly outbound transfer amount, in MB.
|
|
2450
|
+
*/
|
|
2451
|
+
transfer: number;
|
|
2452
|
+
}
|
|
2453
|
+
export interface GetNetworkTransferPricesTypePrice {
|
|
2454
|
+
hourly: number;
|
|
2455
|
+
monthly: number;
|
|
2456
|
+
}
|
|
2457
|
+
export interface GetNetworkTransferPricesTypeRegionPrice {
|
|
2458
|
+
hourly: number;
|
|
2459
|
+
id: string;
|
|
2460
|
+
monthly: number;
|
|
2461
|
+
}
|
|
2323
2462
|
export interface GetNodeBalancerConfigNodeStatus {
|
|
2324
2463
|
/**
|
|
2325
2464
|
* The number of backends considered to be 'DOWN' and unhealthy. These are not in rotation, and not serving requests.
|
|
@@ -3413,6 +3552,51 @@ export interface GetVlansVlan {
|
|
|
3413
3552
|
*/
|
|
3414
3553
|
region: string;
|
|
3415
3554
|
}
|
|
3555
|
+
export interface GetVolumeTypesFilter {
|
|
3556
|
+
/**
|
|
3557
|
+
* The type of comparison to use for this filter.
|
|
3558
|
+
*/
|
|
3559
|
+
matchBy?: string;
|
|
3560
|
+
/**
|
|
3561
|
+
* The name of the attribute to filter on.
|
|
3562
|
+
*/
|
|
3563
|
+
name: string;
|
|
3564
|
+
/**
|
|
3565
|
+
* The value(s) to be used in the filter.
|
|
3566
|
+
*/
|
|
3567
|
+
values: string[];
|
|
3568
|
+
}
|
|
3569
|
+
export interface GetVolumeTypesType {
|
|
3570
|
+
/**
|
|
3571
|
+
* The unique ID assigned to this Volume Type.
|
|
3572
|
+
*/
|
|
3573
|
+
id: string;
|
|
3574
|
+
/**
|
|
3575
|
+
* The Volume Type's label.
|
|
3576
|
+
*/
|
|
3577
|
+
label: string;
|
|
3578
|
+
/**
|
|
3579
|
+
* Cost in US dollars, broken down into hourly and monthly charges.
|
|
3580
|
+
*/
|
|
3581
|
+
prices: outputs.GetVolumeTypesTypePrice[];
|
|
3582
|
+
/**
|
|
3583
|
+
* A list of region-specific prices for this Volume Type.
|
|
3584
|
+
*/
|
|
3585
|
+
regionPrices: outputs.GetVolumeTypesTypeRegionPrice[];
|
|
3586
|
+
/**
|
|
3587
|
+
* The monthly outbound transfer amount, in MB.
|
|
3588
|
+
*/
|
|
3589
|
+
transfer: number;
|
|
3590
|
+
}
|
|
3591
|
+
export interface GetVolumeTypesTypePrice {
|
|
3592
|
+
hourly: number;
|
|
3593
|
+
monthly: number;
|
|
3594
|
+
}
|
|
3595
|
+
export interface GetVolumeTypesTypeRegionPrice {
|
|
3596
|
+
hourly: number;
|
|
3597
|
+
id: string;
|
|
3598
|
+
monthly: number;
|
|
3599
|
+
}
|
|
3416
3600
|
export interface GetVolumesFilter {
|
|
3417
3601
|
/**
|
|
3418
3602
|
* The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
|
|
@@ -3432,6 +3616,10 @@ export interface GetVolumesVolume {
|
|
|
3432
3616
|
* When this Volume was created.
|
|
3433
3617
|
*/
|
|
3434
3618
|
created: string;
|
|
3619
|
+
/**
|
|
3620
|
+
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume. Note: Block Storage Disk Encryption is not currently available to all users.
|
|
3621
|
+
*/
|
|
3622
|
+
encryption: string;
|
|
3435
3623
|
/**
|
|
3436
3624
|
* The full filesystem path for the Volume based on the Volume's label. Path is /dev/disk/by-id/scsi-0LinodeVolume + Volume label.
|
|
3437
3625
|
*/
|
|
@@ -4198,6 +4386,12 @@ export interface LkeClusterPool {
|
|
|
4198
4386
|
* The ID of the node.
|
|
4199
4387
|
*/
|
|
4200
4388
|
id: number;
|
|
4389
|
+
/**
|
|
4390
|
+
* Key-value pairs added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects.
|
|
4391
|
+
*/
|
|
4392
|
+
labels?: {
|
|
4393
|
+
[key: string]: string;
|
|
4394
|
+
};
|
|
4201
4395
|
/**
|
|
4202
4396
|
* The nodes in the node pool.
|
|
4203
4397
|
*/
|
|
@@ -4206,6 +4400,10 @@ export interface LkeClusterPool {
|
|
|
4206
4400
|
* An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
|
|
4207
4401
|
*/
|
|
4208
4402
|
tags?: string[];
|
|
4403
|
+
/**
|
|
4404
|
+
* Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods.
|
|
4405
|
+
*/
|
|
4406
|
+
taints?: outputs.LkeClusterPoolTaint[];
|
|
4209
4407
|
/**
|
|
4210
4408
|
* A Linode Type for all of the nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
|
|
4211
4409
|
*/
|
|
@@ -4235,6 +4433,20 @@ export interface LkeClusterPoolNode {
|
|
|
4235
4433
|
*/
|
|
4236
4434
|
status: string;
|
|
4237
4435
|
}
|
|
4436
|
+
export interface LkeClusterPoolTaint {
|
|
4437
|
+
/**
|
|
4438
|
+
* The Kubernetes taint effect.
|
|
4439
|
+
*/
|
|
4440
|
+
effect: string;
|
|
4441
|
+
/**
|
|
4442
|
+
* The Kubernetes taint key.
|
|
4443
|
+
*/
|
|
4444
|
+
key: string;
|
|
4445
|
+
/**
|
|
4446
|
+
* The Kubernetes taint value.
|
|
4447
|
+
*/
|
|
4448
|
+
value: string;
|
|
4449
|
+
}
|
|
4238
4450
|
export interface LkeNodePoolAutoscaler {
|
|
4239
4451
|
/**
|
|
4240
4452
|
* The maximum number of nodes to autoscale to.
|
package/volume.d.ts
CHANGED
|
@@ -85,6 +85,10 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
85
85
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
86
86
|
*/
|
|
87
87
|
static isInstance(obj: any): obj is Volume;
|
|
88
|
+
/**
|
|
89
|
+
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume. Note: Block Storage Disk Encryption is not currently available to all users.
|
|
90
|
+
*/
|
|
91
|
+
readonly encryption: pulumi.Output<string>;
|
|
88
92
|
/**
|
|
89
93
|
* The full filesystem path for the Volume based on the Volume's label. The path is "/dev/disk/by-id/scsi-0Linode_Volume_" + the Volume label
|
|
90
94
|
*/
|
|
@@ -133,6 +137,10 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
133
137
|
* Input properties used for looking up and filtering Volume resources.
|
|
134
138
|
*/
|
|
135
139
|
export interface VolumeState {
|
|
140
|
+
/**
|
|
141
|
+
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume. Note: Block Storage Disk Encryption is not currently available to all users.
|
|
142
|
+
*/
|
|
143
|
+
encryption?: pulumi.Input<string>;
|
|
136
144
|
/**
|
|
137
145
|
* The full filesystem path for the Volume based on the Volume's label. The path is "/dev/disk/by-id/scsi-0Linode_Volume_" + the Volume label
|
|
138
146
|
*/
|
|
@@ -173,6 +181,10 @@ export interface VolumeState {
|
|
|
173
181
|
* The set of arguments for constructing a Volume resource.
|
|
174
182
|
*/
|
|
175
183
|
export interface VolumeArgs {
|
|
184
|
+
/**
|
|
185
|
+
* Whether Block Storage Disk Encryption is enabled or disabled on this Volume. Note: Block Storage Disk Encryption is not currently available to all users.
|
|
186
|
+
*/
|
|
187
|
+
encryption?: pulumi.Input<string>;
|
|
176
188
|
/**
|
|
177
189
|
* The label of the Linode Volume
|
|
178
190
|
*/
|
package/volume.js
CHANGED
|
@@ -101,6 +101,7 @@ class Volume extends pulumi.CustomResource {
|
|
|
101
101
|
opts = opts || {};
|
|
102
102
|
if (opts.id) {
|
|
103
103
|
const state = argsOrState;
|
|
104
|
+
resourceInputs["encryption"] = state ? state.encryption : undefined;
|
|
104
105
|
resourceInputs["filesystemPath"] = state ? state.filesystemPath : undefined;
|
|
105
106
|
resourceInputs["label"] = state ? state.label : undefined;
|
|
106
107
|
resourceInputs["linodeId"] = state ? state.linodeId : undefined;
|
|
@@ -116,6 +117,7 @@ class Volume extends pulumi.CustomResource {
|
|
|
116
117
|
if ((!args || args.label === undefined) && !opts.urn) {
|
|
117
118
|
throw new Error("Missing required property 'label'");
|
|
118
119
|
}
|
|
120
|
+
resourceInputs["encryption"] = args ? args.encryption : undefined;
|
|
119
121
|
resourceInputs["label"] = args ? args.label : undefined;
|
|
120
122
|
resourceInputs["linodeId"] = args ? args.linodeId : undefined;
|
|
121
123
|
resourceInputs["region"] = args ? args.region : undefined;
|
package/volume.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"volume.js","sourceRoot":"","sources":["../volume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmEG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"volume.js","sourceRoot":"","sources":["../volume.ts"],"names":[],"mappings":"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"}
|