@pulumi/linode 4.15.0-alpha.1709121591 → 4.15.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/domain.d.ts CHANGED
@@ -95,9 +95,9 @@ export declare class Domain extends pulumi.CustomResource {
95
95
  */
96
96
  readonly status: pulumi.Output<string>;
97
97
  /**
98
- * A list of tags applied to this object. Tags are for organizational purposes only.
98
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
99
99
  */
100
- readonly tags: pulumi.Output<string[] | undefined>;
100
+ readonly tags: pulumi.Output<string[]>;
101
101
  /**
102
102
  * 'Time to Live' - the amount of time in seconds that this Domain's records may be cached by resolvers or other domain servers. Valid values are 0, 30, 120, 300, 3600, 7200, 14400, 28800, 57600, 86400, 172800, 345600, 604800, 1209600, and 2419200 - any other value will be rounded to the nearest valid value.
103
103
  */
@@ -162,7 +162,7 @@ export interface DomainState {
162
162
  */
163
163
  status?: pulumi.Input<string>;
164
164
  /**
165
- * A list of tags applied to this object. Tags are for organizational purposes only.
165
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
166
166
  */
167
167
  tags?: pulumi.Input<pulumi.Input<string>[]>;
168
168
  /**
@@ -221,7 +221,7 @@ export interface DomainArgs {
221
221
  */
222
222
  status?: pulumi.Input<string>;
223
223
  /**
224
- * A list of tags applied to this object. Tags are for organizational purposes only.
224
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
225
225
  */
226
226
  tags?: pulumi.Input<pulumi.Input<string>[]>;
227
227
  /**
package/firewall.d.ts CHANGED
@@ -137,9 +137,9 @@ export declare class Firewall extends pulumi.CustomResource {
137
137
  */
138
138
  readonly status: pulumi.Output<string>;
139
139
  /**
140
- * A list of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
140
+ * A list of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
141
141
  */
142
- readonly tags: pulumi.Output<string[] | undefined>;
142
+ readonly tags: pulumi.Output<string[]>;
143
143
  /**
144
144
  * When this firewall was last updated
145
145
  */
@@ -206,7 +206,7 @@ export interface FirewallState {
206
206
  */
207
207
  status?: pulumi.Input<string>;
208
208
  /**
209
- * A list of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
209
+ * A list of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
210
210
  */
211
211
  tags?: pulumi.Input<pulumi.Input<string>[]>;
212
212
  /**
@@ -255,7 +255,7 @@ export interface FirewallArgs {
255
255
  */
256
256
  outbounds?: pulumi.Input<pulumi.Input<inputs.FirewallOutbound>[]>;
257
257
  /**
258
- * A list of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
258
+ * A list of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
259
259
  */
260
260
  tags?: pulumi.Input<pulumi.Input<string>[]>;
261
261
  }
package/getDomain.d.ts CHANGED
@@ -81,7 +81,7 @@ export interface GetDomainResult {
81
81
  */
82
82
  readonly status: string;
83
83
  /**
84
- * An array of tags applied to this object.
84
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
85
85
  */
86
86
  readonly tags: string[];
87
87
  /**
package/getFirewall.d.ts CHANGED
@@ -68,7 +68,7 @@ export interface GetFirewallResult {
68
68
  */
69
69
  readonly status: string;
70
70
  /**
71
- * The tags applied to the firewall.
71
+ * The tags applied to the firewall. Tags are case-insensitive and are for organizational purposes only.
72
72
  */
73
73
  readonly tags: string[];
74
74
  /**
@@ -18,7 +18,7 @@ import * as outputs from "./types/output";
18
18
  * values: ["us-mia"],
19
19
  * }],
20
20
  * });
21
- * export const ranges = data.linode_ipv4_ranges["filtered-ranges"].ranges;
21
+ * export const ranges = filtered_ranges;
22
22
  * ```
23
23
  *
24
24
  * ## Filterable Fields
@@ -64,7 +64,7 @@ export interface GetIpv6RangesResult {
64
64
  * values: ["us-mia"],
65
65
  * }],
66
66
  * });
67
- * export const ranges = data.linode_ipv4_ranges["filtered-ranges"].ranges;
67
+ * export const ranges = filtered_ranges;
68
68
  * ```
69
69
  *
70
70
  * ## Filterable Fields
package/getIpv6Ranges.js CHANGED
@@ -22,7 +22,7 @@ const utilities = require("./utilities");
22
22
  * values: ["us-mia"],
23
23
  * }],
24
24
  * });
25
- * export const ranges = data.linode_ipv4_ranges["filtered-ranges"].ranges;
25
+ * export const ranges = filtered_ranges;
26
26
  * ```
27
27
  *
28
28
  * ## Filterable Fields
@@ -61,7 +61,7 @@ exports.getIpv6Ranges = getIpv6Ranges;
61
61
  * values: ["us-mia"],
62
62
  * }],
63
63
  * });
64
- * export const ranges = data.linode_ipv4_ranges["filtered-ranges"].ranges;
64
+ * export const ranges = filtered_ranges;
65
65
  * ```
66
66
  *
67
67
  * ## Filterable Fields
@@ -76,7 +76,7 @@ export interface GetLkeClusterResult {
76
76
  */
77
77
  readonly status: string;
78
78
  /**
79
- * An array of tags applied to this object. Tags are for organizational purposes only.
79
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
80
80
  */
81
81
  readonly tags: string[];
82
82
  /**
@@ -64,7 +64,7 @@ export interface GetNodeBalancerResult {
64
64
  */
65
65
  readonly region: string;
66
66
  /**
67
- * The tags applied to the firewall.
67
+ * The tags applied to the firewall. Tags are case-insensitive and are for organizational purposes only.
68
68
  */
69
69
  readonly tags: string[];
70
70
  readonly transfers: outputs.GetNodeBalancerTransfer[];
package/getVolume.d.ts CHANGED
@@ -62,7 +62,7 @@ export interface GetVolumeResult {
62
62
  */
63
63
  readonly status: string;
64
64
  /**
65
- * An array of tags applied to this object.
65
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
66
66
  */
67
67
  readonly tags: string[];
68
68
  /**
package/instance.d.ts CHANGED
@@ -247,9 +247,9 @@ export declare class Instance extends pulumi.CustomResource {
247
247
  */
248
248
  readonly swapSize: pulumi.Output<number>;
249
249
  /**
250
- * A list of tags applied to this object. Tags are for organizational purposes only.
250
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
251
251
  */
252
- readonly tags: pulumi.Output<string[] | undefined>;
252
+ readonly tags: pulumi.Output<string[]>;
253
253
  /**
254
254
  * The Linode type defines the pricing, CPU, disk, and RAM specs of the instance. Examples are `"g6-nanode-1"`, `"g6-standard-2"`, `"g6-highmem-16"`, `"g6-dedicated-16"`, etc. See all types [here](https://api.linode.com/v4/linode/types).
255
255
  *
@@ -427,7 +427,7 @@ export interface InstanceState {
427
427
  */
428
428
  swapSize?: pulumi.Input<number>;
429
429
  /**
430
- * A list of tags applied to this object. Tags are for organizational purposes only.
430
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
431
431
  */
432
432
  tags?: pulumi.Input<pulumi.Input<string>[]>;
433
433
  /**
@@ -563,7 +563,7 @@ export interface InstanceArgs {
563
563
  */
564
564
  swapSize?: pulumi.Input<number>;
565
565
  /**
566
- * A list of tags applied to this object. Tags are for organizational purposes only.
566
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
567
567
  */
568
568
  tags?: pulumi.Input<pulumi.Input<string>[]>;
569
569
  /**
package/lkeCluster.d.ts CHANGED
@@ -67,9 +67,9 @@ export declare class LkeCluster extends pulumi.CustomResource {
67
67
  */
68
68
  readonly status: pulumi.Output<string>;
69
69
  /**
70
- * An array of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
70
+ * An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
71
71
  */
72
- readonly tags: pulumi.Output<string[] | undefined>;
72
+ readonly tags: pulumi.Output<string[]>;
73
73
  /**
74
74
  * Create a LkeCluster resource with the given unique name, arguments, and options.
75
75
  *
@@ -124,7 +124,7 @@ export interface LkeClusterState {
124
124
  */
125
125
  status?: pulumi.Input<string>;
126
126
  /**
127
- * An array of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
127
+ * An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
128
128
  */
129
129
  tags?: pulumi.Input<pulumi.Input<string>[]>;
130
130
  }
@@ -157,7 +157,7 @@ export interface LkeClusterArgs {
157
157
  */
158
158
  region: pulumi.Input<string>;
159
159
  /**
160
- * An array of tags applied to the Kubernetes cluster. Tags are for organizational purposes only.
160
+ * An array of tags applied to the Kubernetes cluster. Tags are case-insensitive and are for organizational purposes only.
161
161
  */
162
162
  tags?: pulumi.Input<pulumi.Input<string>[]>;
163
163
  }
package/nodeBalancer.d.ts CHANGED
@@ -84,7 +84,7 @@ export declare class NodeBalancer extends pulumi.CustomResource {
84
84
  */
85
85
  readonly region: pulumi.Output<string>;
86
86
  /**
87
- * A list of tags applied to this object. Tags are for organizational purposes only.
87
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
88
88
  */
89
89
  readonly tags: pulumi.Output<string[]>;
90
90
  /**
@@ -147,7 +147,7 @@ export interface NodeBalancerState {
147
147
  */
148
148
  region?: pulumi.Input<string>;
149
149
  /**
150
- * A list of tags applied to this object. Tags are for organizational purposes only.
150
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
151
151
  */
152
152
  tags?: pulumi.Input<pulumi.Input<string>[]>;
153
153
  /**
@@ -182,7 +182,7 @@ export interface NodeBalancerArgs {
182
182
  */
183
183
  region?: pulumi.Input<string>;
184
184
  /**
185
- * A list of tags applied to this object. Tags are for organizational purposes only.
185
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
186
186
  */
187
187
  tags?: pulumi.Input<pulumi.Input<string>[]>;
188
188
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/linode",
3
- "version": "v4.15.0-alpha.1709121591+ae787a14",
3
+ "version": "v4.15.0",
4
4
  "description": "A Pulumi package for creating and managing linode cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
package/types/input.d.ts CHANGED
@@ -608,7 +608,7 @@ export interface GetDomainsDomain {
608
608
  */
609
609
  status?: string;
610
610
  /**
611
- * An array of tags applied to this object.
611
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
612
612
  */
613
613
  tags?: string[];
614
614
  /**
@@ -666,7 +666,7 @@ export interface GetDomainsDomainArgs {
666
666
  */
667
667
  status?: pulumi.Input<string>;
668
668
  /**
669
- * An array of tags applied to this object.
669
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
670
670
  */
671
671
  tags?: pulumi.Input<pulumi.Input<string>[]>;
672
672
  /**
@@ -784,7 +784,7 @@ export interface GetFirewallsFirewall {
784
784
  */
785
785
  status?: string;
786
786
  /**
787
- * An array of tags applied to this object. Tags are for organizational purposes only.
787
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
788
788
  */
789
789
  tags?: string[];
790
790
  /**
@@ -842,7 +842,7 @@ export interface GetFirewallsFirewallArgs {
842
842
  */
843
843
  status?: pulumi.Input<string>;
844
844
  /**
845
- * An array of tags applied to this object. Tags are for organizational purposes only.
845
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
846
846
  */
847
847
  tags?: pulumi.Input<pulumi.Input<string>[]>;
848
848
  /**
@@ -1546,7 +1546,7 @@ export interface GetLkeClusterPool {
1546
1546
  */
1547
1547
  nodes?: inputs.GetLkeClusterPoolNode[];
1548
1548
  /**
1549
- * An array of tags applied to this object. Tags are for organizational purposes only.
1549
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
1550
1550
  */
1551
1551
  tags?: string[];
1552
1552
  /**
@@ -1576,7 +1576,7 @@ export interface GetLkeClusterPoolArgs {
1576
1576
  */
1577
1577
  nodes?: pulumi.Input<pulumi.Input<inputs.GetLkeClusterPoolNodeArgs>[]>;
1578
1578
  /**
1579
- * An array of tags applied to this object. Tags are for organizational purposes only.
1579
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
1580
1580
  */
1581
1581
  tags?: pulumi.Input<pulumi.Input<string>[]>;
1582
1582
  /**
@@ -1718,7 +1718,7 @@ export interface GetLkeClustersLkeCluster {
1718
1718
  */
1719
1719
  status?: string;
1720
1720
  /**
1721
- * An array of tags applied to this object. Tags are for organizational purposes only.
1721
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
1722
1722
  */
1723
1723
  tags?: string[];
1724
1724
  /**
@@ -1756,7 +1756,7 @@ export interface GetLkeClustersLkeClusterArgs {
1756
1756
  */
1757
1757
  status?: pulumi.Input<string>;
1758
1758
  /**
1759
- * An array of tags applied to this object. Tags are for organizational purposes only.
1759
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
1760
1760
  */
1761
1761
  tags?: pulumi.Input<pulumi.Input<string>[]>;
1762
1762
  /**
@@ -1810,7 +1810,7 @@ export interface GetNodeBalancerFirewall {
1810
1810
  */
1811
1811
  status?: string;
1812
1812
  /**
1813
- * The tags applied to the firewall.
1813
+ * The tags applied to the firewall. Tags are case-insensitive and are for organizational purposes only.
1814
1814
  */
1815
1815
  tags?: string[];
1816
1816
  /**
@@ -1852,7 +1852,7 @@ export interface GetNodeBalancerFirewallArgs {
1852
1852
  */
1853
1853
  status?: pulumi.Input<string>;
1854
1854
  /**
1855
- * The tags applied to the firewall.
1855
+ * The tags applied to the firewall. Tags are case-insensitive and are for organizational purposes only.
1856
1856
  */
1857
1857
  tags?: pulumi.Input<pulumi.Input<string>[]>;
1858
1858
  /**
@@ -2226,7 +2226,7 @@ export interface GetNodebalancersNodebalancer {
2226
2226
  */
2227
2227
  region?: string;
2228
2228
  /**
2229
- * A list of tags applied to this object. Tags are for organizational purposes only.
2229
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
2230
2230
  */
2231
2231
  tags?: string[];
2232
2232
  /**
@@ -2272,7 +2272,7 @@ export interface GetNodebalancersNodebalancerArgs {
2272
2272
  */
2273
2273
  region?: pulumi.Input<string>;
2274
2274
  /**
2275
- * A list of tags applied to this object. Tags are for organizational purposes only.
2275
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
2276
2276
  */
2277
2277
  tags?: pulumi.Input<pulumi.Input<string>[]>;
2278
2278
  /**
@@ -3586,7 +3586,7 @@ export interface GetVolumesVolume {
3586
3586
  */
3587
3587
  status?: string;
3588
3588
  /**
3589
- * An array of tags applied to this object.
3589
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
3590
3590
  */
3591
3591
  tags?: string[];
3592
3592
  /**
@@ -3628,7 +3628,7 @@ export interface GetVolumesVolumeArgs {
3628
3628
  */
3629
3629
  status?: pulumi.Input<string>;
3630
3630
  /**
3631
- * An array of tags applied to this object.
3631
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
3632
3632
  */
3633
3633
  tags?: pulumi.Input<pulumi.Input<string>[]>;
3634
3634
  /**
@@ -4367,7 +4367,7 @@ export interface NodeBalancerFirewall {
4367
4367
  */
4368
4368
  status: pulumi.Input<string>;
4369
4369
  /**
4370
- * A list of tags applied to this object. Tags are for organizational purposes only.
4370
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
4371
4371
  */
4372
4372
  tags: pulumi.Input<pulumi.Input<string>[]>;
4373
4373
  /**
package/types/output.d.ts CHANGED
@@ -417,7 +417,7 @@ export interface GetDomainsDomain {
417
417
  */
418
418
  status: string;
419
419
  /**
420
- * An array of tags applied to this object.
420
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
421
421
  */
422
422
  tags: string[];
423
423
  /**
@@ -581,7 +581,7 @@ export interface GetFirewallsFirewall {
581
581
  */
582
582
  status: string;
583
583
  /**
584
- * An array of tags applied to this object. Tags are for organizational purposes only.
584
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
585
585
  */
586
586
  tags: string[];
587
587
  /**
@@ -1403,7 +1403,7 @@ export interface GetInstancesInstance {
1403
1403
  */
1404
1404
  swapSize: number;
1405
1405
  /**
1406
- * A list of tags applied to this object. Tags are for organizational purposes only.
1406
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
1407
1407
  */
1408
1408
  tags: string[];
1409
1409
  /**
@@ -1872,7 +1872,7 @@ export interface GetLkeClusterPool {
1872
1872
  */
1873
1873
  nodes?: outputs.GetLkeClusterPoolNode[];
1874
1874
  /**
1875
- * An array of tags applied to this object. Tags are for organizational purposes only.
1875
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
1876
1876
  */
1877
1877
  tags: string[];
1878
1878
  /**
@@ -1962,7 +1962,7 @@ export interface GetLkeClustersLkeCluster {
1962
1962
  */
1963
1963
  status: string;
1964
1964
  /**
1965
- * An array of tags applied to this object. Tags are for organizational purposes only.
1965
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
1966
1966
  */
1967
1967
  tags: string[];
1968
1968
  /**
@@ -2026,7 +2026,7 @@ export interface GetNodeBalancerFirewall {
2026
2026
  */
2027
2027
  status: string;
2028
2028
  /**
2029
- * The tags applied to the firewall.
2029
+ * The tags applied to the firewall. Tags are case-insensitive and are for organizational purposes only.
2030
2030
  */
2031
2031
  tags: string[];
2032
2032
  /**
@@ -2248,7 +2248,7 @@ export interface GetNodebalancersNodebalancer {
2248
2248
  */
2249
2249
  region: string;
2250
2250
  /**
2251
- * A list of tags applied to this object. Tags are for organizational purposes only.
2251
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
2252
2252
  */
2253
2253
  tags: string[];
2254
2254
  /**
@@ -3009,7 +3009,7 @@ export interface GetVolumesVolume {
3009
3009
  */
3010
3010
  status: string;
3011
3011
  /**
3012
- * An array of tags applied to this object.
3012
+ * An array of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
3013
3013
  */
3014
3014
  tags: string[];
3015
3015
  /**
@@ -3668,7 +3668,7 @@ export interface NodeBalancerFirewall {
3668
3668
  */
3669
3669
  status: string;
3670
3670
  /**
3671
- * A list of tags applied to this object. Tags are for organizational purposes only.
3671
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
3672
3672
  */
3673
3673
  tags: string[];
3674
3674
  /**
package/volume.d.ts CHANGED
@@ -61,7 +61,7 @@ export declare class Volume extends pulumi.CustomResource {
61
61
  */
62
62
  readonly status: pulumi.Output<string>;
63
63
  /**
64
- * A list of tags applied to this object. Tags are for organizational purposes only.
64
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
65
65
  */
66
66
  readonly tags: pulumi.Output<string[]>;
67
67
  readonly timeouts: pulumi.Output<outputs.VolumeTimeouts | undefined>;
@@ -109,7 +109,7 @@ export interface VolumeState {
109
109
  */
110
110
  status?: pulumi.Input<string>;
111
111
  /**
112
- * A list of tags applied to this object. Tags are for organizational purposes only.
112
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
113
113
  */
114
114
  tags?: pulumi.Input<pulumi.Input<string>[]>;
115
115
  timeouts?: pulumi.Input<inputs.VolumeTimeouts>;
@@ -141,7 +141,7 @@ export interface VolumeArgs {
141
141
  */
142
142
  sourceVolumeId?: pulumi.Input<number>;
143
143
  /**
144
- * A list of tags applied to this object. Tags are for organizational purposes only.
144
+ * A list of tags applied to this object. Tags are case-insensitive and are for organizational purposes only.
145
145
  */
146
146
  tags?: pulumi.Input<pulumi.Input<string>[]>;
147
147
  timeouts?: pulumi.Input<inputs.VolumeTimeouts>;