@pulumi/linode 4.37.0-alpha.1744183273 → 4.37.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.
@@ -1,4 +1,5 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
2
3
  /**
3
4
  * Provides information about a Linode Networking IP Address
4
5
  * For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-ip).
@@ -31,7 +32,7 @@ export interface GetNetworkingIpArgs {
31
32
  */
32
33
  export interface GetNetworkingIpResult {
33
34
  /**
34
- * The IP address.
35
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
35
36
  */
36
37
  readonly address: string;
37
38
  /**
@@ -71,6 +72,10 @@ export interface GetNetworkingIpResult {
71
72
  * The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
72
73
  */
73
74
  readonly type: string;
75
+ /**
76
+ * Contains information about the NAT 1:1 mapping of a public IP address to a VPC subnet.
77
+ */
78
+ readonly vpcNat11: outputs.GetNetworkingIpVpcNat11;
74
79
  }
75
80
  /**
76
81
  * Provides information about a Linode Networking IP Address
@@ -1 +1 @@
1
- {"version":3,"file":"getNetworkingIp.js","sourceRoot":"","sources":["../getNetworkingIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC;AA0DD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAAiC;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC"}
1
+ {"version":3,"file":"getNetworkingIp.js","sourceRoot":"","sources":["../getNetworkingIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC;AA8DD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAAiC;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC"}
package/lkeNodePool.d.ts CHANGED
@@ -35,12 +35,12 @@ export declare class LkeNodePool extends pulumi.CustomResource {
35
35
  * The disk encryption policy for nodes in this pool.
36
36
  */
37
37
  readonly diskEncryption: pulumi.Output<string>;
38
+ /**
39
+ * The k8s version of the nodes in this node pool. For LKE enterprise only and may not currently available to all users even under v4beta.
40
+ */
41
+ readonly k8sVersion: pulumi.Output<string>;
38
42
  /**
39
43
  * A map attribute containing key-value pairs to be added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
40
- *
41
- * * `autoscaler` - (Optional) If defined, an autoscaler will be enabled with the given configuration.
42
- *
43
- * * `taint` - (Optional) Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
44
44
  */
45
45
  readonly labels: pulumi.Output<{
46
46
  [key: string]: string;
@@ -66,6 +66,14 @@ export declare class LkeNodePool extends pulumi.CustomResource {
66
66
  * A Linode Type for all nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
67
67
  */
68
68
  readonly type: pulumi.Output<string>;
69
+ /**
70
+ * The strategy for updating the node pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
71
+ *
72
+ * * `autoscaler` - (Optional) If defined, an autoscaler will be enabled with the given configuration.
73
+ *
74
+ * * `taint` - (Optional) Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
75
+ */
76
+ readonly updateStrategy: pulumi.Output<string>;
69
77
  /**
70
78
  * Create a LkeNodePool resource with the given unique name, arguments, and options.
71
79
  *
@@ -88,12 +96,12 @@ export interface LkeNodePoolState {
88
96
  * The disk encryption policy for nodes in this pool.
89
97
  */
90
98
  diskEncryption?: pulumi.Input<string>;
99
+ /**
100
+ * The k8s version of the nodes in this node pool. For LKE enterprise only and may not currently available to all users even under v4beta.
101
+ */
102
+ k8sVersion?: pulumi.Input<string>;
91
103
  /**
92
104
  * A map attribute containing key-value pairs to be added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
93
- *
94
- * * `autoscaler` - (Optional) If defined, an autoscaler will be enabled with the given configuration.
95
- *
96
- * * `taint` - (Optional) Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
97
105
  */
98
106
  labels?: pulumi.Input<{
99
107
  [key: string]: pulumi.Input<string>;
@@ -119,6 +127,14 @@ export interface LkeNodePoolState {
119
127
  * A Linode Type for all nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
120
128
  */
121
129
  type?: pulumi.Input<string>;
130
+ /**
131
+ * The strategy for updating the node pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
132
+ *
133
+ * * `autoscaler` - (Optional) If defined, an autoscaler will be enabled with the given configuration.
134
+ *
135
+ * * `taint` - (Optional) Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
136
+ */
137
+ updateStrategy?: pulumi.Input<string>;
122
138
  }
123
139
  /**
124
140
  * The set of arguments for constructing a LkeNodePool resource.
@@ -129,12 +145,12 @@ export interface LkeNodePoolArgs {
129
145
  * ID of the LKE Cluster where to create the current Node Pool.
130
146
  */
131
147
  clusterId: pulumi.Input<number>;
148
+ /**
149
+ * The k8s version of the nodes in this node pool. For LKE enterprise only and may not currently available to all users even under v4beta.
150
+ */
151
+ k8sVersion?: pulumi.Input<string>;
132
152
  /**
133
153
  * A map attribute containing key-value pairs to be added as labels to nodes in the node pool. Labels help classify your nodes and to easily select subsets of objects. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
134
- *
135
- * * `autoscaler` - (Optional) If defined, an autoscaler will be enabled with the given configuration.
136
- *
137
- * * `taint` - (Optional) Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
138
154
  */
139
155
  labels?: pulumi.Input<{
140
156
  [key: string]: pulumi.Input<string>;
@@ -156,4 +172,12 @@ export interface LkeNodePoolArgs {
156
172
  * A Linode Type for all nodes in the Node Pool. See all node types [here](https://api.linode.com/v4/linode/types).
157
173
  */
158
174
  type: pulumi.Input<string>;
175
+ /**
176
+ * The strategy for updating the node pool k8s version. For LKE enterprise only and may not currently available to all users even under v4beta.
177
+ *
178
+ * * `autoscaler` - (Optional) If defined, an autoscaler will be enabled with the given configuration.
179
+ *
180
+ * * `taint` - (Optional) Kubernetes taints to add to node pool nodes. Taints help control how pods are scheduled onto nodes, specifically allowing them to repel certain pods. To learn more, review [Add Labels and Taints to your LKE Node Pools](https://www.linode.com/docs/products/compute/kubernetes/guides/deploy-and-manage-cluster-with-the-linode-api/#add-labels-and-taints-to-your-lke-node-pools).
181
+ */
182
+ updateStrategy?: pulumi.Input<string>;
159
183
  }
package/lkeNodePool.js CHANGED
@@ -45,12 +45,14 @@ class LkeNodePool extends pulumi.CustomResource {
45
45
  resourceInputs["autoscaler"] = state ? state.autoscaler : undefined;
46
46
  resourceInputs["clusterId"] = state ? state.clusterId : undefined;
47
47
  resourceInputs["diskEncryption"] = state ? state.diskEncryption : undefined;
48
+ resourceInputs["k8sVersion"] = state ? state.k8sVersion : undefined;
48
49
  resourceInputs["labels"] = state ? state.labels : undefined;
49
50
  resourceInputs["nodeCount"] = state ? state.nodeCount : undefined;
50
51
  resourceInputs["nodes"] = state ? state.nodes : undefined;
51
52
  resourceInputs["tags"] = state ? state.tags : undefined;
52
53
  resourceInputs["taints"] = state ? state.taints : undefined;
53
54
  resourceInputs["type"] = state ? state.type : undefined;
55
+ resourceInputs["updateStrategy"] = state ? state.updateStrategy : undefined;
54
56
  }
55
57
  else {
56
58
  const args = argsOrState;
@@ -62,11 +64,13 @@ class LkeNodePool extends pulumi.CustomResource {
62
64
  }
63
65
  resourceInputs["autoscaler"] = args ? args.autoscaler : undefined;
64
66
  resourceInputs["clusterId"] = args ? args.clusterId : undefined;
67
+ resourceInputs["k8sVersion"] = args ? args.k8sVersion : undefined;
65
68
  resourceInputs["labels"] = args ? args.labels : undefined;
66
69
  resourceInputs["nodeCount"] = args ? args.nodeCount : undefined;
67
70
  resourceInputs["tags"] = args ? args.tags : undefined;
68
71
  resourceInputs["taints"] = args ? args.taints : undefined;
69
72
  resourceInputs["type"] = args ? args.type : undefined;
73
+ resourceInputs["updateStrategy"] = args ? args.updateStrategy : undefined;
70
74
  resourceInputs["diskEncryption"] = undefined /*out*/;
71
75
  resourceInputs["nodes"] = undefined /*out*/;
72
76
  }
@@ -1 +1 @@
1
- {"version":3,"file":"lkeNodePool.js","sourceRoot":"","sources":["../lkeNodePool.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"lkeNodePool.js","sourceRoot":"","sources":["../lkeNodePool.ts"],"names":[],"mappings":"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"}
package/networkingIp.d.ts CHANGED
@@ -1,4 +1,6 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
2
4
  /**
3
5
  * Manages allocation of reserved IPv4 address in a region and optionally assigning the reserved address to a Linode instance.
4
6
  *
@@ -42,17 +44,29 @@ export declare class NetworkingIp extends pulumi.CustomResource {
42
44
  */
43
45
  static isInstance(obj: any): obj is NetworkingIp;
44
46
  /**
45
- * The IP address.
47
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
46
48
  */
47
49
  readonly address: pulumi.Output<string>;
48
50
  /**
49
- * The ID of the Linode to which the IP address will be assigned. Conflicts with `region`.
51
+ * The default gateway for this address.
52
+ */
53
+ readonly gateway: pulumi.Output<string>;
54
+ /**
55
+ * The ID of the Linode to which the IP address will be assigned. Updating this field on an ephemeral IP will trigger a recreation. Conflicts with `region`.
50
56
  */
51
57
  readonly linodeId: pulumi.Output<number>;
58
+ /**
59
+ * The number of bits set in the subnet mask.
60
+ */
61
+ readonly prefix: pulumi.Output<number>;
52
62
  /**
53
63
  * Whether the IP address is public. Defaults to true.
54
64
  */
55
65
  readonly public: pulumi.Output<boolean>;
66
+ /**
67
+ * The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.
68
+ */
69
+ readonly rdns: pulumi.Output<string>;
56
70
  /**
57
71
  * The region for the reserved IPv4 address. Required when reserved is true and linodeId is not set.
58
72
  */
@@ -61,10 +75,18 @@ export declare class NetworkingIp extends pulumi.CustomResource {
61
75
  * Whether the IPv4 address should be reserved.
62
76
  */
63
77
  readonly reserved: pulumi.Output<boolean>;
78
+ /**
79
+ * The mask that separates host bits from network bits for this address.
80
+ */
81
+ readonly subnetMask: pulumi.Output<string>;
64
82
  /**
65
83
  * The type of IP address. (ipv4, ipv6, etc.)
66
84
  */
67
85
  readonly type: pulumi.Output<string>;
86
+ /**
87
+ * Contains information about the NAT 1:1 mapping of a public IP address to a VPC subnet.
88
+ */
89
+ readonly vpcNat11: pulumi.Output<outputs.NetworkingIpVpcNat11>;
68
90
  /**
69
91
  * Create a NetworkingIp resource with the given unique name, arguments, and options.
70
92
  *
@@ -79,17 +101,29 @@ export declare class NetworkingIp extends pulumi.CustomResource {
79
101
  */
80
102
  export interface NetworkingIpState {
81
103
  /**
82
- * The IP address.
104
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
83
105
  */
84
106
  address?: pulumi.Input<string>;
85
107
  /**
86
- * The ID of the Linode to which the IP address will be assigned. Conflicts with `region`.
108
+ * The default gateway for this address.
109
+ */
110
+ gateway?: pulumi.Input<string>;
111
+ /**
112
+ * The ID of the Linode to which the IP address will be assigned. Updating this field on an ephemeral IP will trigger a recreation. Conflicts with `region`.
87
113
  */
88
114
  linodeId?: pulumi.Input<number>;
115
+ /**
116
+ * The number of bits set in the subnet mask.
117
+ */
118
+ prefix?: pulumi.Input<number>;
89
119
  /**
90
120
  * Whether the IP address is public. Defaults to true.
91
121
  */
92
122
  public?: pulumi.Input<boolean>;
123
+ /**
124
+ * The reverse DNS assigned to this address. For public IPv4 addresses, this will be set to a default value provided by Linode if not explicitly set.
125
+ */
126
+ rdns?: pulumi.Input<string>;
93
127
  /**
94
128
  * The region for the reserved IPv4 address. Required when reserved is true and linodeId is not set.
95
129
  */
@@ -98,17 +132,25 @@ export interface NetworkingIpState {
98
132
  * Whether the IPv4 address should be reserved.
99
133
  */
100
134
  reserved?: pulumi.Input<boolean>;
135
+ /**
136
+ * The mask that separates host bits from network bits for this address.
137
+ */
138
+ subnetMask?: pulumi.Input<string>;
101
139
  /**
102
140
  * The type of IP address. (ipv4, ipv6, etc.)
103
141
  */
104
142
  type?: pulumi.Input<string>;
143
+ /**
144
+ * Contains information about the NAT 1:1 mapping of a public IP address to a VPC subnet.
145
+ */
146
+ vpcNat11?: pulumi.Input<inputs.NetworkingIpVpcNat11>;
105
147
  }
106
148
  /**
107
149
  * The set of arguments for constructing a NetworkingIp resource.
108
150
  */
109
151
  export interface NetworkingIpArgs {
110
152
  /**
111
- * The ID of the Linode to which the IP address will be assigned. Conflicts with `region`.
153
+ * The ID of the Linode to which the IP address will be assigned. Updating this field on an ephemeral IP will trigger a recreation. Conflicts with `region`.
112
154
  */
113
155
  linodeId?: pulumi.Input<number>;
114
156
  /**
package/networkingIp.js CHANGED
@@ -60,11 +60,16 @@ class NetworkingIp extends pulumi.CustomResource {
60
60
  if (opts.id) {
61
61
  const state = argsOrState;
62
62
  resourceInputs["address"] = state ? state.address : undefined;
63
+ resourceInputs["gateway"] = state ? state.gateway : undefined;
63
64
  resourceInputs["linodeId"] = state ? state.linodeId : undefined;
65
+ resourceInputs["prefix"] = state ? state.prefix : undefined;
64
66
  resourceInputs["public"] = state ? state.public : undefined;
67
+ resourceInputs["rdns"] = state ? state.rdns : undefined;
65
68
  resourceInputs["region"] = state ? state.region : undefined;
66
69
  resourceInputs["reserved"] = state ? state.reserved : undefined;
70
+ resourceInputs["subnetMask"] = state ? state.subnetMask : undefined;
67
71
  resourceInputs["type"] = state ? state.type : undefined;
72
+ resourceInputs["vpcNat11"] = state ? state.vpcNat11 : undefined;
68
73
  }
69
74
  else {
70
75
  const args = argsOrState;
@@ -74,6 +79,11 @@ class NetworkingIp extends pulumi.CustomResource {
74
79
  resourceInputs["reserved"] = args ? args.reserved : undefined;
75
80
  resourceInputs["type"] = args ? args.type : undefined;
76
81
  resourceInputs["address"] = undefined /*out*/;
82
+ resourceInputs["gateway"] = undefined /*out*/;
83
+ resourceInputs["prefix"] = undefined /*out*/;
84
+ resourceInputs["rdns"] = undefined /*out*/;
85
+ resourceInputs["subnetMask"] = undefined /*out*/;
86
+ resourceInputs["vpcNat11"] = undefined /*out*/;
77
87
  }
78
88
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
79
89
  super(NetworkingIp.__pulumiType, name, resourceInputs, opts);
@@ -1 +1 @@
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
+ {"version":3,"file":"networkingIp.js","sourceRoot":"","sources":["../networkingIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,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;IAuDD,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,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,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,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,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;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;YAC9C,cAAc,CAAC,SAAS,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC9C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACjD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAClD;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;;AAjHL,oCAkHC;AApGG,gBAAgB;AACO,yBAAY,GAAG,wCAAwC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/linode",
3
- "version": "4.37.0-alpha.1744183273",
3
+ "version": "4.37.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.37.0-alpha.1744183273"
26
+ "version": "4.37.0"
27
27
  }
28
28
  }
package/types/input.d.ts CHANGED
@@ -2566,7 +2566,7 @@ export interface GetNetworkingIpsFilterArgs {
2566
2566
  }
2567
2567
  export interface GetNetworkingIpsIpAddress {
2568
2568
  /**
2569
- * The IP address.
2569
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
2570
2570
  */
2571
2571
  address?: string;
2572
2572
  /**
@@ -2605,10 +2605,14 @@ export interface GetNetworkingIpsIpAddress {
2605
2605
  * The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
2606
2606
  */
2607
2607
  type?: string;
2608
+ /**
2609
+ * Contains information about the NAT 1:1 mapping of a public IP address to a VPC subnet.
2610
+ */
2611
+ vpcNat11?: inputs.GetNetworkingIpsIpAddressVpcNat11;
2608
2612
  }
2609
2613
  export interface GetNetworkingIpsIpAddressArgs {
2610
2614
  /**
2611
- * The IP address.
2615
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
2612
2616
  */
2613
2617
  address?: pulumi.Input<string>;
2614
2618
  /**
@@ -2647,6 +2651,38 @@ export interface GetNetworkingIpsIpAddressArgs {
2647
2651
  * The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
2648
2652
  */
2649
2653
  type?: pulumi.Input<string>;
2654
+ /**
2655
+ * Contains information about the NAT 1:1 mapping of a public IP address to a VPC subnet.
2656
+ */
2657
+ vpcNat11?: pulumi.Input<inputs.GetNetworkingIpsIpAddressVpcNat11Args>;
2658
+ }
2659
+ export interface GetNetworkingIpsIpAddressVpcNat11 {
2660
+ /**
2661
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
2662
+ */
2663
+ address: string;
2664
+ /**
2665
+ * The `id` of the VPC Subnet for this Interface.
2666
+ */
2667
+ subnetId: number;
2668
+ /**
2669
+ * The `id` of the VPC configured for this Interface.
2670
+ */
2671
+ vpcId: number;
2672
+ }
2673
+ export interface GetNetworkingIpsIpAddressVpcNat11Args {
2674
+ /**
2675
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
2676
+ */
2677
+ address: pulumi.Input<string>;
2678
+ /**
2679
+ * The `id` of the VPC Subnet for this Interface.
2680
+ */
2681
+ subnetId: pulumi.Input<number>;
2682
+ /**
2683
+ * The `id` of the VPC configured for this Interface.
2684
+ */
2685
+ vpcId: pulumi.Input<number>;
2650
2686
  }
2651
2687
  export interface GetNodeBalancerFirewall {
2652
2688
  /**
@@ -6050,11 +6086,11 @@ export interface LkeNodePoolAutoscaler {
6050
6086
  /**
6051
6087
  * The maximum number of nodes to autoscale to.
6052
6088
  */
6053
- max: pulumi.Input<number>;
6089
+ max?: pulumi.Input<number>;
6054
6090
  /**
6055
6091
  * The minimum number of nodes to autoscale to.
6056
6092
  */
6057
- min: pulumi.Input<number>;
6093
+ min?: pulumi.Input<number>;
6058
6094
  }
6059
6095
  export interface LkeNodePoolNode {
6060
6096
  /**
@@ -6094,6 +6130,20 @@ export interface NetworkingIpAssignmentAssignment {
6094
6130
  */
6095
6131
  linodeId: pulumi.Input<number>;
6096
6132
  }
6133
+ export interface NetworkingIpVpcNat11 {
6134
+ /**
6135
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
6136
+ */
6137
+ address: pulumi.Input<string>;
6138
+ /**
6139
+ * The `id` of the VPC Subnet for this Interface.
6140
+ */
6141
+ subnetId: pulumi.Input<number>;
6142
+ /**
6143
+ * The `id` of the VPC configured for this Interface.
6144
+ */
6145
+ vpcId: pulumi.Input<number>;
6146
+ }
6097
6147
  export interface NodeBalancerConfigNodeStatus {
6098
6148
  /**
6099
6149
  * The number of backends considered to be 'DOWN' and unhealthy. These are not in rotation, and not serving requests.
package/types/output.d.ts CHANGED
@@ -2569,6 +2569,20 @@ export interface GetNetworkTransferPricesTypeRegionPrice {
2569
2569
  id: string;
2570
2570
  monthly: number;
2571
2571
  }
2572
+ export interface GetNetworkingIpVpcNat11 {
2573
+ /**
2574
+ * The IP Address to access. The address must be associated with the account and a resource that the user has access to view.
2575
+ */
2576
+ address: string;
2577
+ /**
2578
+ * The `id` of the VPC Subnet for this Interface.
2579
+ */
2580
+ subnetId: number;
2581
+ /**
2582
+ * The `id` of the VPC configured for this Interface.
2583
+ */
2584
+ vpcId: number;
2585
+ }
2572
2586
  export interface GetNetworkingIpsFilter {
2573
2587
  /**
2574
2588
  * The method to match the field by. (`exact`, `regex`, `substring`; default `exact`)
@@ -2585,7 +2599,7 @@ export interface GetNetworkingIpsFilter {
2585
2599
  }
2586
2600
  export interface GetNetworkingIpsIpAddress {
2587
2601
  /**
2588
- * The IP address.
2602
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
2589
2603
  */
2590
2604
  address: string;
2591
2605
  /**
@@ -2624,6 +2638,24 @@ export interface GetNetworkingIpsIpAddress {
2624
2638
  * The type of address this is (ipv4, ipv6, ipv6/pool, ipv6/range).
2625
2639
  */
2626
2640
  type: string;
2641
+ /**
2642
+ * Contains information about the NAT 1:1 mapping of a public IP address to a VPC subnet.
2643
+ */
2644
+ vpcNat11: outputs.GetNetworkingIpsIpAddressVpcNat11;
2645
+ }
2646
+ export interface GetNetworkingIpsIpAddressVpcNat11 {
2647
+ /**
2648
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
2649
+ */
2650
+ address: string;
2651
+ /**
2652
+ * The `id` of the VPC Subnet for this Interface.
2653
+ */
2654
+ subnetId: number;
2655
+ /**
2656
+ * The `id` of the VPC configured for this Interface.
2657
+ */
2658
+ vpcId: number;
2627
2659
  }
2628
2660
  export interface GetNodeBalancerConfigNodeStatus {
2629
2661
  /**
@@ -4796,11 +4828,11 @@ export interface LkeNodePoolAutoscaler {
4796
4828
  /**
4797
4829
  * The maximum number of nodes to autoscale to.
4798
4830
  */
4799
- max: number;
4831
+ max?: number;
4800
4832
  /**
4801
4833
  * The minimum number of nodes to autoscale to.
4802
4834
  */
4803
- min: number;
4835
+ min?: number;
4804
4836
  }
4805
4837
  export interface LkeNodePoolNode {
4806
4838
  /**
@@ -4840,6 +4872,20 @@ export interface NetworkingIpAssignmentAssignment {
4840
4872
  */
4841
4873
  linodeId: number;
4842
4874
  }
4875
+ export interface NetworkingIpVpcNat11 {
4876
+ /**
4877
+ * The IPv4 address that is configured as a 1:1 NAT for this VPC interface.
4878
+ */
4879
+ address: string;
4880
+ /**
4881
+ * The `id` of the VPC Subnet for this Interface.
4882
+ */
4883
+ subnetId: number;
4884
+ /**
4885
+ * The `id` of the VPC configured for this Interface.
4886
+ */
4887
+ vpcId: number;
4888
+ }
4843
4889
  export interface NodeBalancerConfigNodeStatus {
4844
4890
  /**
4845
4891
  * The number of backends considered to be 'DOWN' and unhealthy. These are not in rotation, and not serving requests.