@pulumi/linode 5.5.0-alpha.1762410273 → 5.5.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.
Files changed (57) hide show
  1. package/accountSettings.d.ts +12 -0
  2. package/accountSettings.js +2 -0
  3. package/accountSettings.js.map +1 -1
  4. package/databaseMysqlV2.d.ts +37 -0
  5. package/databaseMysqlV2.js +37 -0
  6. package/databaseMysqlV2.js.map +1 -1
  7. package/databasePostgresqlV2.d.ts +37 -0
  8. package/databasePostgresqlV2.js +37 -0
  9. package/databasePostgresqlV2.js.map +1 -1
  10. package/firewall.d.ts +12 -0
  11. package/firewall.js +2 -0
  12. package/firewall.js.map +1 -1
  13. package/firewallSettings.d.ts +72 -0
  14. package/firewallSettings.js +71 -0
  15. package/firewallSettings.js.map +1 -0
  16. package/getAccountSettings.d.ts +4 -0
  17. package/getAccountSettings.js.map +1 -1
  18. package/getFirewall.d.ts +4 -0
  19. package/getFirewall.js.map +1 -1
  20. package/getFirewallSettings.d.ts +14 -0
  21. package/getFirewallSettings.js +18 -0
  22. package/getFirewallSettings.js.map +1 -0
  23. package/getFirewallTemplate.d.ts +82 -0
  24. package/getFirewallTemplate.js +56 -0
  25. package/getFirewallTemplate.js.map +1 -0
  26. package/getFirewallTemplates.d.ts +97 -0
  27. package/getFirewallTemplates.js +96 -0
  28. package/getFirewallTemplates.js.map +1 -0
  29. package/getNetworkingIp.d.ts +4 -0
  30. package/getNetworkingIp.js.map +1 -1
  31. package/getVolume.d.ts +1 -1
  32. package/getVpcSubnet.d.ts +4 -1
  33. package/getVpcSubnet.js.map +1 -1
  34. package/getVpcSubnets.d.ts +1 -1
  35. package/index.d.ts +15 -0
  36. package/index.js +24 -4
  37. package/index.js.map +1 -1
  38. package/instance.d.ts +33 -3
  39. package/instance.js +4 -0
  40. package/instance.js.map +1 -1
  41. package/interface.d.ts +254 -0
  42. package/interface.js +206 -0
  43. package/interface.js.map +1 -0
  44. package/networkingIpAssignment.d.ts +19 -0
  45. package/networkingIpAssignment.js +19 -0
  46. package/networkingIpAssignment.js.map +1 -1
  47. package/nodeBalancer.d.ts +14 -0
  48. package/nodeBalancer.js +14 -0
  49. package/nodeBalancer.js.map +1 -1
  50. package/objectStorageBucket.d.ts +3 -3
  51. package/package.json +2 -2
  52. package/stackScript.d.ts +1 -1
  53. package/stackScript.js +1 -1
  54. package/types/input.d.ts +440 -14
  55. package/types/output.d.ts +424 -8
  56. package/volume.d.ts +3 -3
  57. package/vpcSubnet.d.ts +2 -2
@@ -0,0 +1,82 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ /**
4
+ * Provides information about a Linode Firewall Template.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * The following example shows how one might use this data source to access information about a specific Firewall Template:
9
+ *
10
+ * ```typescript
11
+ * import * as pulumi from "@pulumi/pulumi";
12
+ * import * as linode from "@pulumi/linode";
13
+ *
14
+ * const public_template = linode.getFirewallTemplate({
15
+ * slug: "public",
16
+ * });
17
+ * export const firewallTemplateId = public_template.then(public_template => public_template.id);
18
+ * ```
19
+ */
20
+ export declare function getFirewallTemplate(args: GetFirewallTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetFirewallTemplateResult>;
21
+ /**
22
+ * A collection of arguments for invoking getFirewallTemplate.
23
+ */
24
+ export interface GetFirewallTemplateArgs {
25
+ /**
26
+ * The slug of the firewall template.
27
+ */
28
+ slug: string;
29
+ }
30
+ /**
31
+ * A collection of values returned by getFirewallTemplate.
32
+ */
33
+ export interface GetFirewallTemplateResult {
34
+ /**
35
+ * The computed ID of the data source, which matches the `slug` attribute.
36
+ */
37
+ readonly id: string;
38
+ /**
39
+ * The default behavior for inbound traffic. This can be overridden by individual firewall rules.
40
+ */
41
+ readonly inboundPolicy: string;
42
+ /**
43
+ * A list of firewall rules specifying allowed inbound network traffic.
44
+ */
45
+ readonly inbounds: outputs.GetFirewallTemplateInbound[];
46
+ /**
47
+ * The default behavior for outbound traffic. This can be overridden by individual firewall rules.
48
+ */
49
+ readonly outboundPolicy: string;
50
+ /**
51
+ * A list of firewall rules specifying allowed outbound network traffic.
52
+ */
53
+ readonly outbounds: outputs.GetFirewallTemplateOutbound[];
54
+ readonly slug: string;
55
+ }
56
+ /**
57
+ * Provides information about a Linode Firewall Template.
58
+ *
59
+ * ## Example Usage
60
+ *
61
+ * The following example shows how one might use this data source to access information about a specific Firewall Template:
62
+ *
63
+ * ```typescript
64
+ * import * as pulumi from "@pulumi/pulumi";
65
+ * import * as linode from "@pulumi/linode";
66
+ *
67
+ * const public_template = linode.getFirewallTemplate({
68
+ * slug: "public",
69
+ * });
70
+ * export const firewallTemplateId = public_template.then(public_template => public_template.id);
71
+ * ```
72
+ */
73
+ export declare function getFirewallTemplateOutput(args: GetFirewallTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFirewallTemplateResult>;
74
+ /**
75
+ * A collection of arguments for invoking getFirewallTemplate.
76
+ */
77
+ export interface GetFirewallTemplateOutputArgs {
78
+ /**
79
+ * The slug of the firewall template.
80
+ */
81
+ slug: pulumi.Input<string>;
82
+ }
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getFirewallTemplateOutput = exports.getFirewallTemplate = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides information about a Linode Firewall Template.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * The following example shows how one might use this data source to access information about a specific Firewall Template:
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as linode from "@pulumi/linode";
18
+ *
19
+ * const public_template = linode.getFirewallTemplate({
20
+ * slug: "public",
21
+ * });
22
+ * export const firewallTemplateId = public_template.then(public_template => public_template.id);
23
+ * ```
24
+ */
25
+ function getFirewallTemplate(args, opts) {
26
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
27
+ return pulumi.runtime.invoke("linode:index/getFirewallTemplate:getFirewallTemplate", {
28
+ "slug": args.slug,
29
+ }, opts);
30
+ }
31
+ exports.getFirewallTemplate = getFirewallTemplate;
32
+ /**
33
+ * Provides information about a Linode Firewall Template.
34
+ *
35
+ * ## Example Usage
36
+ *
37
+ * The following example shows how one might use this data source to access information about a specific Firewall Template:
38
+ *
39
+ * ```typescript
40
+ * import * as pulumi from "@pulumi/pulumi";
41
+ * import * as linode from "@pulumi/linode";
42
+ *
43
+ * const public_template = linode.getFirewallTemplate({
44
+ * slug: "public",
45
+ * });
46
+ * export const firewallTemplateId = public_template.then(public_template => public_template.id);
47
+ * ```
48
+ */
49
+ function getFirewallTemplateOutput(args, opts) {
50
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
51
+ return pulumi.runtime.invokeOutput("linode:index/getFirewallTemplate:getFirewallTemplate", {
52
+ "slug": args.slug,
53
+ }, opts);
54
+ }
55
+ exports.getFirewallTemplateOutput = getFirewallTemplateOutput;
56
+ //# sourceMappingURL=getFirewallTemplate.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getFirewallTemplate.js","sourceRoot":"","sources":["../getFirewallTemplate.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC;AAsCD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAAiC;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sDAAsD,EAAE;QACvF,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8DAKC"}
@@ -0,0 +1,97 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * Provides information about all Linode Firewall Templates.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * The following example shows how one might use this data source to list all available Firewall Templates:
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as linode from "@pulumi/linode";
14
+ *
15
+ * const all = linode.getFirewallTemplates({});
16
+ * export const firewallTemplateSlugs = all.then(all => all.firewallTemplates);
17
+ * ```
18
+ *
19
+ * Or with some filters to get a subset of the results.
20
+ *
21
+ * ```typescript
22
+ * import * as pulumi from "@pulumi/pulumi";
23
+ * import * as linode from "@pulumi/linode";
24
+ *
25
+ * const filtered = linode.getFirewallTemplates({
26
+ * filters: [{
27
+ * name: "slug",
28
+ * values: ["public"],
29
+ * matchBy: "exact",
30
+ * }],
31
+ * });
32
+ * export const firewallTemplateSlugs = filtered.then(filtered => filtered.firewallTemplates);
33
+ * ```
34
+ *
35
+ * ## Filterable Fields
36
+ *
37
+ * * `slug`
38
+ */
39
+ export declare function getFirewallTemplates(args?: GetFirewallTemplatesArgs, opts?: pulumi.InvokeOptions): Promise<GetFirewallTemplatesResult>;
40
+ /**
41
+ * A collection of arguments for invoking getFirewallTemplates.
42
+ */
43
+ export interface GetFirewallTemplatesArgs {
44
+ filters?: inputs.GetFirewallTemplatesFilter[];
45
+ firewallTemplates?: inputs.GetFirewallTemplatesFirewallTemplate[];
46
+ }
47
+ /**
48
+ * A collection of values returned by getFirewallTemplates.
49
+ */
50
+ export interface GetFirewallTemplatesResult {
51
+ readonly filters?: outputs.GetFirewallTemplatesFilter[];
52
+ readonly firewallTemplates?: outputs.GetFirewallTemplatesFirewallTemplate[];
53
+ readonly id: string;
54
+ }
55
+ /**
56
+ * Provides information about all Linode Firewall Templates.
57
+ *
58
+ * ## Example Usage
59
+ *
60
+ * The following example shows how one might use this data source to list all available Firewall Templates:
61
+ *
62
+ * ```typescript
63
+ * import * as pulumi from "@pulumi/pulumi";
64
+ * import * as linode from "@pulumi/linode";
65
+ *
66
+ * const all = linode.getFirewallTemplates({});
67
+ * export const firewallTemplateSlugs = all.then(all => all.firewallTemplates);
68
+ * ```
69
+ *
70
+ * Or with some filters to get a subset of the results.
71
+ *
72
+ * ```typescript
73
+ * import * as pulumi from "@pulumi/pulumi";
74
+ * import * as linode from "@pulumi/linode";
75
+ *
76
+ * const filtered = linode.getFirewallTemplates({
77
+ * filters: [{
78
+ * name: "slug",
79
+ * values: ["public"],
80
+ * matchBy: "exact",
81
+ * }],
82
+ * });
83
+ * export const firewallTemplateSlugs = filtered.then(filtered => filtered.firewallTemplates);
84
+ * ```
85
+ *
86
+ * ## Filterable Fields
87
+ *
88
+ * * `slug`
89
+ */
90
+ export declare function getFirewallTemplatesOutput(args?: GetFirewallTemplatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFirewallTemplatesResult>;
91
+ /**
92
+ * A collection of arguments for invoking getFirewallTemplates.
93
+ */
94
+ export interface GetFirewallTemplatesOutputArgs {
95
+ filters?: pulumi.Input<pulumi.Input<inputs.GetFirewallTemplatesFilterArgs>[]>;
96
+ firewallTemplates?: pulumi.Input<pulumi.Input<inputs.GetFirewallTemplatesFirewallTemplateArgs>[]>;
97
+ }
@@ -0,0 +1,96 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by pulumi-language-nodejs. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.getFirewallTemplatesOutput = exports.getFirewallTemplates = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Provides information about all Linode Firewall Templates.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * The following example shows how one might use this data source to list all available Firewall Templates:
14
+ *
15
+ * ```typescript
16
+ * import * as pulumi from "@pulumi/pulumi";
17
+ * import * as linode from "@pulumi/linode";
18
+ *
19
+ * const all = linode.getFirewallTemplates({});
20
+ * export const firewallTemplateSlugs = all.then(all => all.firewallTemplates);
21
+ * ```
22
+ *
23
+ * Or with some filters to get a subset of the results.
24
+ *
25
+ * ```typescript
26
+ * import * as pulumi from "@pulumi/pulumi";
27
+ * import * as linode from "@pulumi/linode";
28
+ *
29
+ * const filtered = linode.getFirewallTemplates({
30
+ * filters: [{
31
+ * name: "slug",
32
+ * values: ["public"],
33
+ * matchBy: "exact",
34
+ * }],
35
+ * });
36
+ * export const firewallTemplateSlugs = filtered.then(filtered => filtered.firewallTemplates);
37
+ * ```
38
+ *
39
+ * ## Filterable Fields
40
+ *
41
+ * * `slug`
42
+ */
43
+ function getFirewallTemplates(args, opts) {
44
+ args = args || {};
45
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
46
+ return pulumi.runtime.invoke("linode:index/getFirewallTemplates:getFirewallTemplates", {
47
+ "filters": args.filters,
48
+ "firewallTemplates": args.firewallTemplates,
49
+ }, opts);
50
+ }
51
+ exports.getFirewallTemplates = getFirewallTemplates;
52
+ /**
53
+ * Provides information about all Linode Firewall Templates.
54
+ *
55
+ * ## Example Usage
56
+ *
57
+ * The following example shows how one might use this data source to list all available Firewall Templates:
58
+ *
59
+ * ```typescript
60
+ * import * as pulumi from "@pulumi/pulumi";
61
+ * import * as linode from "@pulumi/linode";
62
+ *
63
+ * const all = linode.getFirewallTemplates({});
64
+ * export const firewallTemplateSlugs = all.then(all => all.firewallTemplates);
65
+ * ```
66
+ *
67
+ * Or with some filters to get a subset of the results.
68
+ *
69
+ * ```typescript
70
+ * import * as pulumi from "@pulumi/pulumi";
71
+ * import * as linode from "@pulumi/linode";
72
+ *
73
+ * const filtered = linode.getFirewallTemplates({
74
+ * filters: [{
75
+ * name: "slug",
76
+ * values: ["public"],
77
+ * matchBy: "exact",
78
+ * }],
79
+ * });
80
+ * export const firewallTemplateSlugs = filtered.then(filtered => filtered.firewallTemplates);
81
+ * ```
82
+ *
83
+ * ## Filterable Fields
84
+ *
85
+ * * `slug`
86
+ */
87
+ function getFirewallTemplatesOutput(args, opts) {
88
+ args = args || {};
89
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
90
+ return pulumi.runtime.invokeOutput("linode:index/getFirewallTemplates:getFirewallTemplates", {
91
+ "filters": args.filters,
92
+ "firewallTemplates": args.firewallTemplates,
93
+ }, opts);
94
+ }
95
+ exports.getFirewallTemplatesOutput = getFirewallTemplatesOutput;
96
+ //# sourceMappingURL=getFirewallTemplates.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getFirewallTemplates.js","sourceRoot":"","sources":["../getFirewallTemplates.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;AAkBD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,SAAgB,0BAA0B,CAAC,IAAqC,EAAE,IAAiC;IAC/G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wDAAwD,EAAE;QACzF,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gEAOC"}
@@ -40,6 +40,10 @@ export interface GetNetworkingIpResult {
40
40
  */
41
41
  readonly gateway: string;
42
42
  readonly id: string;
43
+ /**
44
+ * The ID of the interface this address is assigned to.
45
+ */
46
+ readonly interfaceId: number;
43
47
  /**
44
48
  * The ID of the Linode this address currently belongs to.
45
49
  */
@@ -1 +1 @@
1
- {"version":3,"file":"getNetworkingIp.js","sourceRoot":"","sources":["../getNetworkingIp.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,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"}
1
+ {"version":3,"file":"getNetworkingIp.js","sourceRoot":"","sources":["../getNetworkingIp.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,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;AAkED;;;;;;;;;;;;;;;;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/getVolume.d.ts CHANGED
@@ -35,7 +35,7 @@ export interface GetVolumeResult {
35
35
  */
36
36
  readonly created: string;
37
37
  /**
38
- * Whether Block Storage Disk Encryption is enabled or disabled on this Volume. Note: Block Storage Disk Encryption is not currently available to all users.
38
+ * Whether Block Storage Disk Encryption is enabled or disabled on this Volume.
39
39
  */
40
40
  readonly encryption: string;
41
41
  /**
package/getVpcSubnet.d.ts CHANGED
@@ -49,6 +49,9 @@ export interface GetVpcSubnetResult {
49
49
  * The date and time when the VPC Subnet was created.
50
50
  */
51
51
  readonly created: string;
52
+ /**
53
+ * ID of the interface.
54
+ */
52
55
  readonly id: string;
53
56
  /**
54
57
  * The IPv4 range of this subnet in CIDR format.
@@ -60,7 +63,7 @@ export interface GetVpcSubnetResult {
60
63
  */
61
64
  readonly label: string;
62
65
  /**
63
- * A list of Linode IDs that added to this subnet.
66
+ * A list of Linodes added to this subnet.
64
67
  */
65
68
  readonly linodes: outputs.GetVpcSubnetLinode[];
66
69
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"getVpcSubnet.js","sourceRoot":"","sources":["../getVpcSubnet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;AA4CD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wCAAwC,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC"}
1
+ {"version":3,"file":"getVpcSubnet.js","sourceRoot":"","sources":["../getVpcSubnet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;AA+CD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wCAAwC,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC"}
@@ -59,7 +59,7 @@ export interface GetVpcSubnetsArgs {
59
59
  export interface GetVpcSubnetsResult {
60
60
  readonly filters?: outputs.GetVpcSubnetsFilter[];
61
61
  /**
62
- * The unique id of the VPC subnet.
62
+ * ID of the interface.
63
63
  */
64
64
  readonly id: string;
65
65
  readonly vpcId: number;
package/index.d.ts CHANGED
@@ -28,6 +28,9 @@ export declare const Firewall: typeof import("./firewall").Firewall;
28
28
  export { FirewallDeviceArgs, FirewallDeviceState } from "./firewallDevice";
29
29
  export type FirewallDevice = import("./firewallDevice").FirewallDevice;
30
30
  export declare const FirewallDevice: typeof import("./firewallDevice").FirewallDevice;
31
+ export { FirewallSettingsArgs, FirewallSettingsState } from "./firewallSettings";
32
+ export type FirewallSettings = import("./firewallSettings").FirewallSettings;
33
+ export declare const FirewallSettings: typeof import("./firewallSettings").FirewallSettings;
31
34
  export { GetAccountResult } from "./getAccount";
32
35
  export declare const getAccount: typeof import("./getAccount").getAccount;
33
36
  export declare const getAccountOutput: typeof import("./getAccount").getAccountOutput;
@@ -97,6 +100,15 @@ export declare const getDomainsOutput: typeof import("./getDomains").getDomainsO
97
100
  export { GetFirewallArgs, GetFirewallResult, GetFirewallOutputArgs } from "./getFirewall";
98
101
  export declare const getFirewall: typeof import("./getFirewall").getFirewall;
99
102
  export declare const getFirewallOutput: typeof import("./getFirewall").getFirewallOutput;
103
+ export { GetFirewallSettingsResult } from "./getFirewallSettings";
104
+ export declare const getFirewallSettings: typeof import("./getFirewallSettings").getFirewallSettings;
105
+ export declare const getFirewallSettingsOutput: typeof import("./getFirewallSettings").getFirewallSettingsOutput;
106
+ export { GetFirewallTemplateArgs, GetFirewallTemplateResult, GetFirewallTemplateOutputArgs } from "./getFirewallTemplate";
107
+ export declare const getFirewallTemplate: typeof import("./getFirewallTemplate").getFirewallTemplate;
108
+ export declare const getFirewallTemplateOutput: typeof import("./getFirewallTemplate").getFirewallTemplateOutput;
109
+ export { GetFirewallTemplatesArgs, GetFirewallTemplatesResult, GetFirewallTemplatesOutputArgs } from "./getFirewallTemplates";
110
+ export declare const getFirewallTemplates: typeof import("./getFirewallTemplates").getFirewallTemplates;
111
+ export declare const getFirewallTemplatesOutput: typeof import("./getFirewallTemplates").getFirewallTemplatesOutput;
100
112
  export { GetFirewallsArgs, GetFirewallsResult, GetFirewallsOutputArgs } from "./getFirewalls";
101
113
  export declare const getFirewalls: typeof import("./getFirewalls").getFirewalls;
102
114
  export declare const getFirewallsOutput: typeof import("./getFirewalls").getFirewallsOutput;
@@ -277,6 +289,9 @@ export declare const InstanceIp: typeof import("./instanceIp").InstanceIp;
277
289
  export { InstanceSharedIpsArgs, InstanceSharedIpsState } from "./instanceSharedIps";
278
290
  export type InstanceSharedIps = import("./instanceSharedIps").InstanceSharedIps;
279
291
  export declare const InstanceSharedIps: typeof import("./instanceSharedIps").InstanceSharedIps;
292
+ export { InterfaceArgs, InterfaceState } from "./interface";
293
+ export type Interface = import("./interface").Interface;
294
+ export declare const Interface: typeof import("./interface").Interface;
280
295
  export { Ipv6RangeArgs, Ipv6RangeState } from "./ipv6Range";
281
296
  export type Ipv6Range = import("./ipv6Range").Ipv6Range;
282
297
  export declare const Ipv6Range: typeof import("./ipv6Range").Ipv6Range;
package/index.js CHANGED
@@ -16,10 +16,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
17
17
  };
18
18
  Object.defineProperty(exports, "__esModule", { value: true });
19
- exports.getDomainRecordOutput = exports.getDomainRecord = exports.getDomainOutput = exports.getDomain = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabasePostgresqlV2Output = exports.getDatabasePostgresqlV2 = exports.getDatabasePostgresqlConfigOutput = exports.getDatabasePostgresqlConfig = exports.getDatabasePostgresqlOutput = exports.getDatabasePostgresql = exports.getDatabaseMysqlV2Output = exports.getDatabaseMysqlV2 = exports.getDatabaseMysqlConfigOutput = exports.getDatabaseMysqlConfig = exports.getDatabaseMysqlBackupsOutput = exports.getDatabaseMysqlBackups = exports.getDatabaseMysqlOutput = exports.getDatabaseMysql = exports.getDatabaseEnginesOutput = exports.getDatabaseEngines = exports.getDatabaseBackupsOutput = exports.getDatabaseBackups = exports.getChildAccountsOutput = exports.getChildAccounts = exports.getChildAccountOutput = exports.getChildAccount = exports.getAccountSettingsOutput = exports.getAccountSettings = exports.getAccountLoginsOutput = exports.getAccountLogins = exports.getAccountLoginOutput = exports.getAccountLogin = exports.getAccountAvailabilityOutput = exports.getAccountAvailability = exports.getAccountAvailabilitiesOutput = exports.getAccountAvailabilities = exports.getAccountOutput = exports.getAccount = exports.FirewallDevice = exports.Firewall = exports.DomainRecord = exports.Domain = exports.DatabasePostgresqlV2 = exports.DatabasePostgresql = exports.DatabaseMysqlV2 = exports.DatabaseMysql = exports.DatabaseAccessControls = exports.AccountSettings = void 0;
20
- exports.getNetworkingIpOutput = exports.getNetworkingIp = exports.getNetworkTransferPricesOutput = exports.getNetworkTransferPrices = exports.getNbTypesOutput = exports.getNbTypes = exports.getMaintenancePoliciesOutput = exports.getMaintenancePolicies = exports.getLkeVersionsOutput = exports.getLkeVersions = exports.getLkeVersionOutput = exports.getLkeVersion = exports.getLkeTypesOutput = exports.getLkeTypes = exports.getLkeClustersOutput = exports.getLkeClusters = exports.getLkeClusterOutput = exports.getLkeCluster = exports.getLinodeObjectStorageBucketOutput = exports.getLinodeObjectStorageBucket = exports.getKernelsOutput = exports.getKernels = exports.getKernelOutput = exports.getKernel = exports.getIpv6RangesOutput = exports.getIpv6Ranges = exports.getIpv6RangeOutput = exports.getIpv6Range = exports.getInstancesOutput = exports.getInstances = exports.getInstanceTypesOutput = exports.getInstanceTypes = exports.getInstanceTypeOutput = exports.getInstanceType = exports.getInstanceNetworkingOutput = exports.getInstanceNetworking = exports.getInstanceBackupsOutput = exports.getInstanceBackups = exports.getImagesOutput = exports.getImages = exports.getImageOutput = exports.getImage = exports.getFirewallsOutput = exports.getFirewalls = exports.getFirewallOutput = exports.getFirewall = exports.getDomainsOutput = exports.getDomains = exports.getDomainZonefileOutput = exports.getDomainZonefile = void 0;
21
- exports.getVolumeOutput = exports.getVolume = exports.getVlansOutput = exports.getVlans = exports.getUsersOutput = exports.getUsers = exports.getUserOutput = exports.getUser = exports.getStackScriptsOutput = exports.getStackScripts = exports.getStackScriptOutput = exports.getStackScript = exports.getSshkeysOutput = exports.getSshkeys = exports.getSshKeyOutput = exports.getSshKey = exports.getRegionsOutput = exports.getRegions = exports.getRegionOutput = exports.getRegion = exports.getProfileOutput = exports.getProfile = exports.getPlacementGroupsOutput = exports.getPlacementGroups = exports.getPlacementGroupOutput = exports.getPlacementGroup = exports.getObjectStorageQuotasOutput = exports.getObjectStorageQuotas = exports.getObjectStorageQuotaOutput = exports.getObjectStorageQuota = exports.getObjectStorageEndpointsOutput = exports.getObjectStorageEndpoints = exports.getObjectStorageClusterOutput = exports.getObjectStorageCluster = exports.getNodebalancersOutput = exports.getNodebalancers = exports.getNodebalancerVpcsOutput = exports.getNodebalancerVpcs = exports.getNodebalancerVpcOutput = exports.getNodebalancerVpc = exports.getNodebalancerConfigsOutput = exports.getNodebalancerConfigs = exports.getNodeBalancerNodeOutput = exports.getNodeBalancerNode = exports.getNodeBalancerConfigOutput = exports.getNodeBalancerConfig = exports.getNodeBalancerOutput = exports.getNodeBalancer = exports.getNetworkingIpsOutput = exports.getNetworkingIps = void 0;
22
- exports.types = exports.config = exports.VpcSubnet = exports.Vpc = exports.Volume = exports.User = exports.Token = exports.StackScript = exports.SshKey = exports.ReservedIpAssignment = exports.Rdns = exports.PlacementGroupAssignment = exports.PlacementGroup = exports.ObjectStorageObject = exports.ObjectStorageKey = exports.ObjectStorageBucket = exports.NodeBalancerNode = exports.NodeBalancerConfig = exports.NodeBalancer = exports.NetworkingIpAssignment = exports.NetworkingIp = exports.LkeNodePool = exports.LkeCluster = exports.Ipv6Range = exports.InstanceSharedIps = exports.InstanceIp = exports.InstanceDisk = exports.InstanceConfig = exports.Instance = exports.Image = exports.getVpcsOutput = exports.getVpcs = exports.getVpcSubnetsOutput = exports.getVpcSubnets = exports.getVpcSubnetOutput = exports.getVpcSubnet = exports.getVpcIpsOutput = exports.getVpcIps = exports.getVpcOutput = exports.getVpc = exports.getVolumesOutput = exports.getVolumes = exports.getVolumeTypesOutput = exports.getVolumeTypes = void 0;
19
+ exports.getDomainRecord = exports.getDomainOutput = exports.getDomain = exports.getDatabasesOutput = exports.getDatabases = exports.getDatabasePostgresqlV2Output = exports.getDatabasePostgresqlV2 = exports.getDatabasePostgresqlConfigOutput = exports.getDatabasePostgresqlConfig = exports.getDatabasePostgresqlOutput = exports.getDatabasePostgresql = exports.getDatabaseMysqlV2Output = exports.getDatabaseMysqlV2 = exports.getDatabaseMysqlConfigOutput = exports.getDatabaseMysqlConfig = exports.getDatabaseMysqlBackupsOutput = exports.getDatabaseMysqlBackups = exports.getDatabaseMysqlOutput = exports.getDatabaseMysql = exports.getDatabaseEnginesOutput = exports.getDatabaseEngines = exports.getDatabaseBackupsOutput = exports.getDatabaseBackups = exports.getChildAccountsOutput = exports.getChildAccounts = exports.getChildAccountOutput = exports.getChildAccount = exports.getAccountSettingsOutput = exports.getAccountSettings = exports.getAccountLoginsOutput = exports.getAccountLogins = exports.getAccountLoginOutput = exports.getAccountLogin = exports.getAccountAvailabilityOutput = exports.getAccountAvailability = exports.getAccountAvailabilitiesOutput = exports.getAccountAvailabilities = exports.getAccountOutput = exports.getAccount = exports.FirewallSettings = exports.FirewallDevice = exports.Firewall = exports.DomainRecord = exports.Domain = exports.DatabasePostgresqlV2 = exports.DatabasePostgresql = exports.DatabaseMysqlV2 = exports.DatabaseMysql = exports.DatabaseAccessControls = exports.AccountSettings = void 0;
20
+ exports.getMaintenancePolicies = exports.getLkeVersionsOutput = exports.getLkeVersions = exports.getLkeVersionOutput = exports.getLkeVersion = exports.getLkeTypesOutput = exports.getLkeTypes = exports.getLkeClustersOutput = exports.getLkeClusters = exports.getLkeClusterOutput = exports.getLkeCluster = exports.getLinodeObjectStorageBucketOutput = exports.getLinodeObjectStorageBucket = exports.getKernelsOutput = exports.getKernels = exports.getKernelOutput = exports.getKernel = exports.getIpv6RangesOutput = exports.getIpv6Ranges = exports.getIpv6RangeOutput = exports.getIpv6Range = exports.getInstancesOutput = exports.getInstances = exports.getInstanceTypesOutput = exports.getInstanceTypes = exports.getInstanceTypeOutput = exports.getInstanceType = exports.getInstanceNetworkingOutput = exports.getInstanceNetworking = exports.getInstanceBackupsOutput = exports.getInstanceBackups = exports.getImagesOutput = exports.getImages = exports.getImageOutput = exports.getImage = exports.getFirewallsOutput = exports.getFirewalls = exports.getFirewallTemplatesOutput = exports.getFirewallTemplates = exports.getFirewallTemplateOutput = exports.getFirewallTemplate = exports.getFirewallSettingsOutput = exports.getFirewallSettings = exports.getFirewallOutput = exports.getFirewall = exports.getDomainsOutput = exports.getDomains = exports.getDomainZonefileOutput = exports.getDomainZonefile = exports.getDomainRecordOutput = void 0;
21
+ exports.getUser = exports.getStackScriptsOutput = exports.getStackScripts = exports.getStackScriptOutput = exports.getStackScript = exports.getSshkeysOutput = exports.getSshkeys = exports.getSshKeyOutput = exports.getSshKey = exports.getRegionsOutput = exports.getRegions = exports.getRegionOutput = exports.getRegion = exports.getProfileOutput = exports.getProfile = exports.getPlacementGroupsOutput = exports.getPlacementGroups = exports.getPlacementGroupOutput = exports.getPlacementGroup = exports.getObjectStorageQuotasOutput = exports.getObjectStorageQuotas = exports.getObjectStorageQuotaOutput = exports.getObjectStorageQuota = exports.getObjectStorageEndpointsOutput = exports.getObjectStorageEndpoints = exports.getObjectStorageClusterOutput = exports.getObjectStorageCluster = exports.getNodebalancersOutput = exports.getNodebalancers = exports.getNodebalancerVpcsOutput = exports.getNodebalancerVpcs = exports.getNodebalancerVpcOutput = exports.getNodebalancerVpc = exports.getNodebalancerConfigsOutput = exports.getNodebalancerConfigs = exports.getNodeBalancerNodeOutput = exports.getNodeBalancerNode = exports.getNodeBalancerConfigOutput = exports.getNodeBalancerConfig = exports.getNodeBalancerOutput = exports.getNodeBalancer = exports.getNetworkingIpsOutput = exports.getNetworkingIps = exports.getNetworkingIpOutput = exports.getNetworkingIp = exports.getNetworkTransferPricesOutput = exports.getNetworkTransferPrices = exports.getNbTypesOutput = exports.getNbTypes = exports.getMaintenancePoliciesOutput = void 0;
22
+ exports.VpcSubnet = exports.Vpc = exports.Volume = exports.User = exports.Token = exports.StackScript = exports.SshKey = exports.ReservedIpAssignment = exports.Rdns = exports.PlacementGroupAssignment = exports.PlacementGroup = exports.ObjectStorageObject = exports.ObjectStorageKey = exports.ObjectStorageBucket = exports.NodeBalancerNode = exports.NodeBalancerConfig = exports.NodeBalancer = exports.NetworkingIpAssignment = exports.NetworkingIp = exports.LkeNodePool = exports.LkeCluster = exports.Ipv6Range = exports.Interface = exports.InstanceSharedIps = exports.InstanceIp = exports.InstanceDisk = exports.InstanceConfig = exports.Instance = exports.Image = exports.getVpcsOutput = exports.getVpcs = exports.getVpcSubnetsOutput = exports.getVpcSubnets = exports.getVpcSubnetOutput = exports.getVpcSubnet = exports.getVpcIpsOutput = exports.getVpcIps = exports.getVpcOutput = exports.getVpc = exports.getVolumesOutput = exports.getVolumes = exports.getVolumeTypesOutput = exports.getVolumeTypes = exports.getVolumeOutput = exports.getVolume = exports.getVlansOutput = exports.getVlans = exports.getUsersOutput = exports.getUsers = exports.getUserOutput = void 0;
23
+ exports.types = exports.config = void 0;
23
24
  const pulumi = require("@pulumi/pulumi");
24
25
  const utilities = require("./utilities");
25
26
  exports.AccountSettings = null;
@@ -42,6 +43,8 @@ exports.Firewall = null;
42
43
  utilities.lazyLoad(exports, ["Firewall"], () => require("./firewall"));
43
44
  exports.FirewallDevice = null;
44
45
  utilities.lazyLoad(exports, ["FirewallDevice"], () => require("./firewallDevice"));
46
+ exports.FirewallSettings = null;
47
+ utilities.lazyLoad(exports, ["FirewallSettings"], () => require("./firewallSettings"));
45
48
  exports.getAccount = null;
46
49
  exports.getAccountOutput = null;
47
50
  utilities.lazyLoad(exports, ["getAccount", "getAccountOutput"], () => require("./getAccount"));
@@ -111,6 +114,15 @@ utilities.lazyLoad(exports, ["getDomains", "getDomainsOutput"], () => require(".
111
114
  exports.getFirewall = null;
112
115
  exports.getFirewallOutput = null;
113
116
  utilities.lazyLoad(exports, ["getFirewall", "getFirewallOutput"], () => require("./getFirewall"));
117
+ exports.getFirewallSettings = null;
118
+ exports.getFirewallSettingsOutput = null;
119
+ utilities.lazyLoad(exports, ["getFirewallSettings", "getFirewallSettingsOutput"], () => require("./getFirewallSettings"));
120
+ exports.getFirewallTemplate = null;
121
+ exports.getFirewallTemplateOutput = null;
122
+ utilities.lazyLoad(exports, ["getFirewallTemplate", "getFirewallTemplateOutput"], () => require("./getFirewallTemplate"));
123
+ exports.getFirewallTemplates = null;
124
+ exports.getFirewallTemplatesOutput = null;
125
+ utilities.lazyLoad(exports, ["getFirewallTemplates", "getFirewallTemplatesOutput"], () => require("./getFirewallTemplates"));
114
126
  exports.getFirewalls = null;
115
127
  exports.getFirewallsOutput = null;
116
128
  utilities.lazyLoad(exports, ["getFirewalls", "getFirewallsOutput"], () => require("./getFirewalls"));
@@ -285,6 +297,8 @@ exports.InstanceIp = null;
285
297
  utilities.lazyLoad(exports, ["InstanceIp"], () => require("./instanceIp"));
286
298
  exports.InstanceSharedIps = null;
287
299
  utilities.lazyLoad(exports, ["InstanceSharedIps"], () => require("./instanceSharedIps"));
300
+ exports.Interface = null;
301
+ utilities.lazyLoad(exports, ["Interface"], () => require("./interface"));
288
302
  exports.Ipv6Range = null;
289
303
  utilities.lazyLoad(exports, ["Ipv6Range"], () => require("./ipv6Range"));
290
304
  exports.LkeCluster = null;
@@ -360,6 +374,8 @@ const _module = {
360
374
  return new exports.Firewall(name, undefined, { urn });
361
375
  case "linode:index/firewallDevice:FirewallDevice":
362
376
  return new exports.FirewallDevice(name, undefined, { urn });
377
+ case "linode:index/firewallSettings:FirewallSettings":
378
+ return new exports.FirewallSettings(name, undefined, { urn });
363
379
  case "linode:index/image:Image":
364
380
  return new exports.Image(name, undefined, { urn });
365
381
  case "linode:index/instance:Instance":
@@ -372,6 +388,8 @@ const _module = {
372
388
  return new exports.InstanceIp(name, undefined, { urn });
373
389
  case "linode:index/instanceSharedIps:InstanceSharedIps":
374
390
  return new exports.InstanceSharedIps(name, undefined, { urn });
391
+ case "linode:index/interface:Interface":
392
+ return new exports.Interface(name, undefined, { urn });
375
393
  case "linode:index/ipv6Range:Ipv6Range":
376
394
  return new exports.Ipv6Range(name, undefined, { urn });
377
395
  case "linode:index/lkeCluster:LkeCluster":
@@ -431,12 +449,14 @@ pulumi.runtime.registerResourceModule("linode", "index/domain", _module);
431
449
  pulumi.runtime.registerResourceModule("linode", "index/domainRecord", _module);
432
450
  pulumi.runtime.registerResourceModule("linode", "index/firewall", _module);
433
451
  pulumi.runtime.registerResourceModule("linode", "index/firewallDevice", _module);
452
+ pulumi.runtime.registerResourceModule("linode", "index/firewallSettings", _module);
434
453
  pulumi.runtime.registerResourceModule("linode", "index/image", _module);
435
454
  pulumi.runtime.registerResourceModule("linode", "index/instance", _module);
436
455
  pulumi.runtime.registerResourceModule("linode", "index/instanceConfig", _module);
437
456
  pulumi.runtime.registerResourceModule("linode", "index/instanceDisk", _module);
438
457
  pulumi.runtime.registerResourceModule("linode", "index/instanceIp", _module);
439
458
  pulumi.runtime.registerResourceModule("linode", "index/instanceSharedIps", _module);
459
+ pulumi.runtime.registerResourceModule("linode", "index/interface", _module);
440
460
  pulumi.runtime.registerResourceModule("linode", "index/ipv6Range", _module);
441
461
  pulumi.runtime.registerResourceModule("linode", "index/lkeCluster", _module);
442
462
  pulumi.runtime.registerResourceModule("linode", "index/lkeNodePool", _module);