@pulumi/linode 3.4.0 → 3.5.0-alpha.1636656818
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/README.md +1 -1
- package/getAccount.js.map +1 -1
- package/getDomain.d.ts +14 -0
- package/getDomain.js +5 -1
- package/getDomain.js.map +1 -1
- package/getDomainRecord.d.ts +18 -0
- package/getDomainRecord.js +5 -1
- package/getDomainRecord.js.map +1 -1
- package/getFirewall.d.ts +10 -0
- package/getFirewall.js +5 -1
- package/getFirewall.js.map +1 -1
- package/getImage.d.ts +10 -0
- package/getImage.js +5 -1
- package/getImage.js.map +1 -1
- package/getImages.d.ts +7 -0
- package/getImages.js +5 -1
- package/getImages.js.map +1 -1
- package/getInstanceBackups.d.ts +10 -0
- package/getInstanceBackups.js +5 -1
- package/getInstanceBackups.js.map +1 -1
- package/getInstanceType.d.ts +11 -0
- package/getInstanceType.js +5 -1
- package/getInstanceType.js.map +1 -1
- package/getInstances.d.ts +7 -0
- package/getInstances.js +5 -1
- package/getInstances.js.map +1 -1
- package/getKernel.d.ts +10 -0
- package/getKernel.js +5 -1
- package/getKernel.js.map +1 -1
- package/getLkeCluster.d.ts +10 -0
- package/getLkeCluster.js +5 -1
- package/getLkeCluster.js.map +1 -1
- package/getNetworkingIp.d.ts +10 -0
- package/getNetworkingIp.js +5 -1
- package/getNetworkingIp.js.map +1 -1
- package/getNodeBalancer.d.ts +10 -0
- package/getNodeBalancer.js +5 -1
- package/getNodeBalancer.js.map +1 -1
- package/getNodeBalancerConfig.d.ts +14 -0
- package/getNodeBalancerConfig.js +5 -1
- package/getNodeBalancerConfig.js.map +1 -1
- package/getNodeBalancerNode.d.ts +18 -0
- package/getNodeBalancerNode.js +5 -1
- package/getNodeBalancerNode.js.map +1 -1
- package/getObjectStorageCluster.d.ts +14 -0
- package/getObjectStorageCluster.js +5 -1
- package/getObjectStorageCluster.js.map +1 -1
- package/getRegion.d.ts +14 -0
- package/getRegion.js +5 -1
- package/getRegion.js.map +1 -1
- package/getSshKey.d.ts +10 -0
- package/getSshKey.js +5 -1
- package/getSshKey.js.map +1 -1
- package/getStackScript.d.ts +11 -0
- package/getStackScript.js +5 -1
- package/getStackScript.js.map +1 -1
- package/getUser.d.ts +10 -0
- package/getUser.js +5 -1
- package/getUser.js.map +1 -1
- package/getVlans.d.ts +7 -0
- package/getVlans.js +5 -1
- package/getVlans.js.map +1 -1
- package/getVolume.d.ts +10 -0
- package/getVolume.js +5 -1
- package/getVolume.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/types/input.d.ts +38 -0
package/README.md
CHANGED
package/getAccount.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAccount.js","sourceRoot":"","sources":["../getAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getAccount.js","sourceRoot":"","sources":["../getAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,SAAgB,UAAU,CAAC,IAA2B;IAClD,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE,EAClE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,gCAUC"}
|
package/getDomain.d.ts
CHANGED
|
@@ -82,3 +82,17 @@ export interface GetDomainResult {
|
|
|
82
82
|
readonly ttlSec: number;
|
|
83
83
|
readonly type: string;
|
|
84
84
|
}
|
|
85
|
+
export declare function getDomainOutput(args?: GetDomainOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDomainResult>;
|
|
86
|
+
/**
|
|
87
|
+
* A collection of arguments for invoking getDomain.
|
|
88
|
+
*/
|
|
89
|
+
export interface GetDomainOutputArgs {
|
|
90
|
+
/**
|
|
91
|
+
* The unique domain name of the Domain record to query.
|
|
92
|
+
*/
|
|
93
|
+
domain?: pulumi.Input<string>;
|
|
94
|
+
/**
|
|
95
|
+
* The unique numeric ID of the Domain record to query.
|
|
96
|
+
*/
|
|
97
|
+
id?: pulumi.Input<string>;
|
|
98
|
+
}
|
package/getDomain.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getDomain = void 0;
|
|
5
|
+
exports.getDomainOutput = exports.getDomain = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -69,4 +69,8 @@ function getDomain(args, opts) {
|
|
|
69
69
|
}, opts);
|
|
70
70
|
}
|
|
71
71
|
exports.getDomain = getDomain;
|
|
72
|
+
function getDomainOutput(args, opts) {
|
|
73
|
+
return pulumi.output(args).apply(a => getDomain(a, opts));
|
|
74
|
+
}
|
|
75
|
+
exports.getDomainOutput = getDomainOutput;
|
|
72
76
|
//# sourceMappingURL=getDomain.js.map
|
package/getDomain.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDomain.js","sourceRoot":"","sources":["../getDomain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getDomain.js","sourceRoot":"","sources":["../getDomain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,8BAaC;AAoCD,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7D,CAAC;AAFD,0CAEC"}
|
package/getDomainRecord.d.ts
CHANGED
|
@@ -82,3 +82,21 @@ export interface GetDomainRecordResult {
|
|
|
82
82
|
readonly type: string;
|
|
83
83
|
readonly weight: number;
|
|
84
84
|
}
|
|
85
|
+
export declare function getDomainRecordOutput(args: GetDomainRecordOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDomainRecordResult>;
|
|
86
|
+
/**
|
|
87
|
+
* A collection of arguments for invoking getDomainRecord.
|
|
88
|
+
*/
|
|
89
|
+
export interface GetDomainRecordOutputArgs {
|
|
90
|
+
/**
|
|
91
|
+
* The associated domain's unique ID.
|
|
92
|
+
*/
|
|
93
|
+
domainId: pulumi.Input<number>;
|
|
94
|
+
/**
|
|
95
|
+
* The unique ID of the Domain Record.
|
|
96
|
+
*/
|
|
97
|
+
id?: pulumi.Input<number>;
|
|
98
|
+
/**
|
|
99
|
+
* The name of the Record.
|
|
100
|
+
*/
|
|
101
|
+
name?: pulumi.Input<string>;
|
|
102
|
+
}
|
package/getDomainRecord.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getDomainRecord = void 0;
|
|
5
|
+
exports.getDomainRecordOutput = exports.getDomainRecord = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -67,4 +67,8 @@ function getDomainRecord(args, opts) {
|
|
|
67
67
|
}, opts);
|
|
68
68
|
}
|
|
69
69
|
exports.getDomainRecord = getDomainRecord;
|
|
70
|
+
function getDomainRecordOutput(args, opts) {
|
|
71
|
+
return pulumi.output(args).apply(a => getDomainRecord(a, opts));
|
|
72
|
+
}
|
|
73
|
+
exports.getDomainRecordOutput = getDomainRecordOutput;
|
|
70
74
|
//# sourceMappingURL=getDomainRecord.js.map
|
package/getDomainRecord.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDomainRecord.js","sourceRoot":"","sources":["../getDomainRecord.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getDomainRecord.js","sourceRoot":"","sources":["../getDomainRecord.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,0CAaC;AAsCD,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,sDAEC"}
|
package/getFirewall.d.ts
CHANGED
|
@@ -64,3 +64,13 @@ export interface GetFirewallResult {
|
|
|
64
64
|
*/
|
|
65
65
|
readonly tags: string[];
|
|
66
66
|
}
|
|
67
|
+
export declare function getFirewallOutput(args: GetFirewallOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFirewallResult>;
|
|
68
|
+
/**
|
|
69
|
+
* A collection of arguments for invoking getFirewall.
|
|
70
|
+
*/
|
|
71
|
+
export interface GetFirewallOutputArgs {
|
|
72
|
+
/**
|
|
73
|
+
* The Firewall's ID.
|
|
74
|
+
*/
|
|
75
|
+
id: pulumi.Input<number>;
|
|
76
|
+
}
|
package/getFirewall.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getFirewall = void 0;
|
|
5
|
+
exports.getFirewallOutput = exports.getFirewall = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -31,4 +31,8 @@ function getFirewall(args, opts) {
|
|
|
31
31
|
}, opts);
|
|
32
32
|
}
|
|
33
33
|
exports.getFirewall = getFirewall;
|
|
34
|
+
function getFirewallOutput(args, opts) {
|
|
35
|
+
return pulumi.output(args).apply(a => getFirewall(a, opts));
|
|
36
|
+
}
|
|
37
|
+
exports.getFirewallOutput = getFirewallOutput;
|
|
34
38
|
//# sourceMappingURL=getFirewall.js.map
|
package/getFirewall.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getFirewall.js","sourceRoot":"","sources":["../getFirewall.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,kCAWC"}
|
|
1
|
+
{"version":3,"file":"getFirewall.js","sourceRoot":"","sources":["../getFirewall.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,kCAWC;AAqDD,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/D,CAAC;AAFD,8CAEC"}
|
package/getImage.d.ts
CHANGED
|
@@ -65,3 +65,13 @@ export interface GetImageResult {
|
|
|
65
65
|
readonly type: string;
|
|
66
66
|
readonly vendor: string;
|
|
67
67
|
}
|
|
68
|
+
export declare function getImageOutput(args: GetImageOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetImageResult>;
|
|
69
|
+
/**
|
|
70
|
+
* A collection of arguments for invoking getImage.
|
|
71
|
+
*/
|
|
72
|
+
export interface GetImageOutputArgs {
|
|
73
|
+
/**
|
|
74
|
+
* The unique ID of this Image. The ID of private images begin with `private/` followed by the numeric identifier of the private image, for example `private/12345`.
|
|
75
|
+
*/
|
|
76
|
+
id: pulumi.Input<string>;
|
|
77
|
+
}
|
package/getImage.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getImage = void 0;
|
|
5
|
+
exports.getImageOutput = exports.getImage = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -56,4 +56,8 @@ function getImage(args, opts) {
|
|
|
56
56
|
}, opts);
|
|
57
57
|
}
|
|
58
58
|
exports.getImage = getImage;
|
|
59
|
+
function getImageOutput(args, opts) {
|
|
60
|
+
return pulumi.output(args).apply(a => getImage(a, opts));
|
|
61
|
+
}
|
|
62
|
+
exports.getImageOutput = getImageOutput;
|
|
59
63
|
//# sourceMappingURL=getImage.js.map
|
package/getImage.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getImage.js","sourceRoot":"","sources":["../getImage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getImage.js","sourceRoot":"","sources":["../getImage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,4BAWC;AA8BD,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5D,CAAC;AAFD,wCAEC"}
|
package/getImages.d.ts
CHANGED
|
@@ -89,3 +89,10 @@ export interface GetImagesResult {
|
|
|
89
89
|
readonly id: string;
|
|
90
90
|
readonly images: outputs.GetImagesImage[];
|
|
91
91
|
}
|
|
92
|
+
export declare function getImagesOutput(args?: GetImagesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetImagesResult>;
|
|
93
|
+
/**
|
|
94
|
+
* A collection of arguments for invoking getImages.
|
|
95
|
+
*/
|
|
96
|
+
export interface GetImagesOutputArgs {
|
|
97
|
+
filters?: pulumi.Input<pulumi.Input<inputs.GetImagesFilterArgs>[]>;
|
|
98
|
+
}
|
package/getImages.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getImages = void 0;
|
|
5
|
+
exports.getImagesOutput = exports.getImages = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -89,4 +89,8 @@ function getImages(args, opts) {
|
|
|
89
89
|
}, opts);
|
|
90
90
|
}
|
|
91
91
|
exports.getImages = getImages;
|
|
92
|
+
function getImagesOutput(args, opts) {
|
|
93
|
+
return pulumi.output(args).apply(a => getImages(a, opts));
|
|
94
|
+
}
|
|
95
|
+
exports.getImagesOutput = getImagesOutput;
|
|
92
96
|
//# sourceMappingURL=getImages.js.map
|
package/getImages.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getImages.js","sourceRoot":"","sources":["../getImages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsEG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,8BAYC"}
|
|
1
|
+
{"version":3,"file":"getImages.js","sourceRoot":"","sources":["../getImages.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsEG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,8BAYC;AAqBD,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7D,CAAC;AAFD,0CAEC"}
|
package/getInstanceBackups.d.ts
CHANGED
|
@@ -37,3 +37,13 @@ export interface GetInstanceBackupsResult {
|
|
|
37
37
|
readonly inProgresses: outputs.GetInstanceBackupsInProgress[];
|
|
38
38
|
readonly linodeId: number;
|
|
39
39
|
}
|
|
40
|
+
export declare function getInstanceBackupsOutput(args: GetInstanceBackupsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetInstanceBackupsResult>;
|
|
41
|
+
/**
|
|
42
|
+
* A collection of arguments for invoking getInstanceBackups.
|
|
43
|
+
*/
|
|
44
|
+
export interface GetInstanceBackupsOutputArgs {
|
|
45
|
+
/**
|
|
46
|
+
* The Linode instance's ID.
|
|
47
|
+
*/
|
|
48
|
+
linodeId: pulumi.Input<number>;
|
|
49
|
+
}
|
package/getInstanceBackups.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getInstanceBackups = void 0;
|
|
5
|
+
exports.getInstanceBackupsOutput = exports.getInstanceBackups = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -31,4 +31,8 @@ function getInstanceBackups(args, opts) {
|
|
|
31
31
|
}, opts);
|
|
32
32
|
}
|
|
33
33
|
exports.getInstanceBackups = getInstanceBackups;
|
|
34
|
+
function getInstanceBackupsOutput(args, opts) {
|
|
35
|
+
return pulumi.output(args).apply(a => getInstanceBackups(a, opts));
|
|
36
|
+
}
|
|
37
|
+
exports.getInstanceBackupsOutput = getInstanceBackupsOutput;
|
|
34
38
|
//# sourceMappingURL=getInstanceBackups.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInstanceBackups.js","sourceRoot":"","sources":["../getInstanceBackups.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,gDAWC"}
|
|
1
|
+
{"version":3,"file":"getInstanceBackups.js","sourceRoot":"","sources":["../getInstanceBackups.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,gDAWC;AA0BD,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,4DAEC"}
|
package/getInstanceType.d.ts
CHANGED
|
@@ -69,3 +69,14 @@ export interface GetInstanceTypeResult {
|
|
|
69
69
|
readonly transfer: number;
|
|
70
70
|
readonly vcpus: number;
|
|
71
71
|
}
|
|
72
|
+
export declare function getInstanceTypeOutput(args: GetInstanceTypeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetInstanceTypeResult>;
|
|
73
|
+
/**
|
|
74
|
+
* A collection of arguments for invoking getInstanceType.
|
|
75
|
+
*/
|
|
76
|
+
export interface GetInstanceTypeOutputArgs {
|
|
77
|
+
/**
|
|
78
|
+
* Label used to identify instance type
|
|
79
|
+
*/
|
|
80
|
+
id: pulumi.Input<string>;
|
|
81
|
+
label?: pulumi.Input<string>;
|
|
82
|
+
}
|
package/getInstanceType.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getInstanceType = void 0;
|
|
5
|
+
exports.getInstanceTypeOutput = exports.getInstanceType = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -61,4 +61,8 @@ function getInstanceType(args, opts) {
|
|
|
61
61
|
}, opts);
|
|
62
62
|
}
|
|
63
63
|
exports.getInstanceType = getInstanceType;
|
|
64
|
+
function getInstanceTypeOutput(args, opts) {
|
|
65
|
+
return pulumi.output(args).apply(a => getInstanceType(a, opts));
|
|
66
|
+
}
|
|
67
|
+
exports.getInstanceTypeOutput = getInstanceTypeOutput;
|
|
64
68
|
//# sourceMappingURL=getInstanceType.js.map
|
package/getInstanceType.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInstanceType.js","sourceRoot":"","sources":["../getInstanceType.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,0CAYC"}
|
|
1
|
+
{"version":3,"file":"getInstanceType.js","sourceRoot":"","sources":["../getInstanceType.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,0CAYC;AA6BD,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,sDAEC"}
|
package/getInstances.d.ts
CHANGED
|
@@ -18,3 +18,10 @@ export interface GetInstancesResult {
|
|
|
18
18
|
readonly id: string;
|
|
19
19
|
readonly instances: outputs.GetInstancesInstance[];
|
|
20
20
|
}
|
|
21
|
+
export declare function getInstancesOutput(args?: GetInstancesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetInstancesResult>;
|
|
22
|
+
/**
|
|
23
|
+
* A collection of arguments for invoking getInstances.
|
|
24
|
+
*/
|
|
25
|
+
export interface GetInstancesOutputArgs {
|
|
26
|
+
filters?: pulumi.Input<pulumi.Input<inputs.GetInstancesFilterArgs>[]>;
|
|
27
|
+
}
|
package/getInstances.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getInstances = void 0;
|
|
5
|
+
exports.getInstancesOutput = exports.getInstances = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
function getInstances(args, opts) {
|
|
@@ -18,4 +18,8 @@ function getInstances(args, opts) {
|
|
|
18
18
|
}, opts);
|
|
19
19
|
}
|
|
20
20
|
exports.getInstances = getInstances;
|
|
21
|
+
function getInstancesOutput(args, opts) {
|
|
22
|
+
return pulumi.output(args).apply(a => getInstances(a, opts));
|
|
23
|
+
}
|
|
24
|
+
exports.getInstancesOutput = getInstancesOutput;
|
|
21
25
|
//# sourceMappingURL=getInstances.js.map
|
package/getInstances.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInstances.js","sourceRoot":"","sources":["../getInstances.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,oCAYC"}
|
|
1
|
+
{"version":3,"file":"getInstances.js","sourceRoot":"","sources":["../getInstances.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,oCAYC;AAqBD,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAChE,CAAC;AAFD,gDAEC"}
|
package/getKernel.d.ts
CHANGED
|
@@ -55,3 +55,13 @@ export interface GetKernelResult {
|
|
|
55
55
|
readonly version: string;
|
|
56
56
|
readonly xen: boolean;
|
|
57
57
|
}
|
|
58
|
+
export declare function getKernelOutput(args: GetKernelOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetKernelResult>;
|
|
59
|
+
/**
|
|
60
|
+
* A collection of arguments for invoking getKernel.
|
|
61
|
+
*/
|
|
62
|
+
export interface GetKernelOutputArgs {
|
|
63
|
+
/**
|
|
64
|
+
* The unique ID of this Kernel.
|
|
65
|
+
*/
|
|
66
|
+
id: pulumi.Input<string>;
|
|
67
|
+
}
|
package/getKernel.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getKernel = void 0;
|
|
5
|
+
exports.getKernelOutput = exports.getKernel = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -50,4 +50,8 @@ function getKernel(args, opts) {
|
|
|
50
50
|
}, opts);
|
|
51
51
|
}
|
|
52
52
|
exports.getKernel = getKernel;
|
|
53
|
+
function getKernelOutput(args, opts) {
|
|
54
|
+
return pulumi.output(args).apply(a => getKernel(a, opts));
|
|
55
|
+
}
|
|
56
|
+
exports.getKernelOutput = getKernelOutput;
|
|
53
57
|
//# sourceMappingURL=getKernel.js.map
|
package/getKernel.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getKernel.js","sourceRoot":"","sources":["../getKernel.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getKernel.js","sourceRoot":"","sources":["../getKernel.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8BAWC;AA0BD,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7D,CAAC;AAFD,0CAEC"}
|
package/getLkeCluster.d.ts
CHANGED
|
@@ -62,3 +62,13 @@ export interface GetLkeClusterResult {
|
|
|
62
62
|
*/
|
|
63
63
|
readonly tags: string[];
|
|
64
64
|
}
|
|
65
|
+
export declare function getLkeClusterOutput(args: GetLkeClusterOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetLkeClusterResult>;
|
|
66
|
+
/**
|
|
67
|
+
* A collection of arguments for invoking getLkeCluster.
|
|
68
|
+
*/
|
|
69
|
+
export interface GetLkeClusterOutputArgs {
|
|
70
|
+
/**
|
|
71
|
+
* The LKE Cluster's ID.
|
|
72
|
+
*/
|
|
73
|
+
id: pulumi.Input<number>;
|
|
74
|
+
}
|
package/getLkeCluster.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getLkeCluster = void 0;
|
|
5
|
+
exports.getLkeClusterOutput = exports.getLkeCluster = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -31,4 +31,8 @@ function getLkeCluster(args, opts) {
|
|
|
31
31
|
}, opts);
|
|
32
32
|
}
|
|
33
33
|
exports.getLkeCluster = getLkeCluster;
|
|
34
|
+
function getLkeClusterOutput(args, opts) {
|
|
35
|
+
return pulumi.output(args).apply(a => getLkeCluster(a, opts));
|
|
36
|
+
}
|
|
37
|
+
exports.getLkeClusterOutput = getLkeClusterOutput;
|
|
34
38
|
//# sourceMappingURL=getLkeCluster.js.map
|
package/getLkeCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getLkeCluster.js","sourceRoot":"","sources":["../getLkeCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,sCAWC"}
|
|
1
|
+
{"version":3,"file":"getLkeCluster.js","sourceRoot":"","sources":["../getLkeCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,sCAWC;AAmDD,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACjE,CAAC;AAFD,kDAEC"}
|
package/getNetworkingIp.d.ts
CHANGED
|
@@ -64,3 +64,13 @@ export interface GetNetworkingIpResult {
|
|
|
64
64
|
readonly subnetMask: string;
|
|
65
65
|
readonly type: string;
|
|
66
66
|
}
|
|
67
|
+
export declare function getNetworkingIpOutput(args: GetNetworkingIpOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNetworkingIpResult>;
|
|
68
|
+
/**
|
|
69
|
+
* A collection of arguments for invoking getNetworkingIp.
|
|
70
|
+
*/
|
|
71
|
+
export interface GetNetworkingIpOutputArgs {
|
|
72
|
+
/**
|
|
73
|
+
* The IP Address to access. The address must be associated with the account and a resource that the user has access to view.
|
|
74
|
+
*/
|
|
75
|
+
address: pulumi.Input<string>;
|
|
76
|
+
}
|
package/getNetworkingIp.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getNetworkingIp = void 0;
|
|
5
|
+
exports.getNetworkingIpOutput = exports.getNetworkingIp = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -54,4 +54,8 @@ function getNetworkingIp(args, opts) {
|
|
|
54
54
|
}, opts);
|
|
55
55
|
}
|
|
56
56
|
exports.getNetworkingIp = getNetworkingIp;
|
|
57
|
+
function getNetworkingIpOutput(args, opts) {
|
|
58
|
+
return pulumi.output(args).apply(a => getNetworkingIp(a, opts));
|
|
59
|
+
}
|
|
60
|
+
exports.getNetworkingIpOutput = getNetworkingIpOutput;
|
|
57
61
|
//# sourceMappingURL=getNetworkingIp.js.map
|
package/getNetworkingIp.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNetworkingIp.js","sourceRoot":"","sources":["../getNetworkingIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getNetworkingIp.js","sourceRoot":"","sources":["../getNetworkingIp.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0CAWC;AA+BD,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,sDAEC"}
|
package/getNodeBalancer.d.ts
CHANGED
|
@@ -58,3 +58,13 @@ export interface GetNodeBalancerResult {
|
|
|
58
58
|
readonly transfers: outputs.GetNodeBalancerTransfer[];
|
|
59
59
|
readonly updated: string;
|
|
60
60
|
}
|
|
61
|
+
export declare function getNodeBalancerOutput(args: GetNodeBalancerOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNodeBalancerResult>;
|
|
62
|
+
/**
|
|
63
|
+
* A collection of arguments for invoking getNodeBalancer.
|
|
64
|
+
*/
|
|
65
|
+
export interface GetNodeBalancerOutputArgs {
|
|
66
|
+
/**
|
|
67
|
+
* The NodeBalancer's ID.
|
|
68
|
+
*/
|
|
69
|
+
id: pulumi.Input<number>;
|
|
70
|
+
}
|
package/getNodeBalancer.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getNodeBalancer = void 0;
|
|
5
|
+
exports.getNodeBalancerOutput = exports.getNodeBalancer = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -31,4 +31,8 @@ function getNodeBalancer(args, opts) {
|
|
|
31
31
|
}, opts);
|
|
32
32
|
}
|
|
33
33
|
exports.getNodeBalancer = getNodeBalancer;
|
|
34
|
+
function getNodeBalancerOutput(args, opts) {
|
|
35
|
+
return pulumi.output(args).apply(a => getNodeBalancer(a, opts));
|
|
36
|
+
}
|
|
37
|
+
exports.getNodeBalancerOutput = getNodeBalancerOutput;
|
|
34
38
|
//# sourceMappingURL=getNodeBalancer.js.map
|
package/getNodeBalancer.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNodeBalancer.js","sourceRoot":"","sources":["../getNodeBalancer.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0CAWC"}
|
|
1
|
+
{"version":3,"file":"getNodeBalancer.js","sourceRoot":"","sources":["../getNodeBalancer.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0CAWC;AA+CD,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,sDAEC"}
|
|
@@ -94,3 +94,17 @@ export interface GetNodeBalancerConfigResult {
|
|
|
94
94
|
*/
|
|
95
95
|
readonly stickiness: string;
|
|
96
96
|
}
|
|
97
|
+
export declare function getNodeBalancerConfigOutput(args: GetNodeBalancerConfigOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNodeBalancerConfigResult>;
|
|
98
|
+
/**
|
|
99
|
+
* A collection of arguments for invoking getNodeBalancerConfig.
|
|
100
|
+
*/
|
|
101
|
+
export interface GetNodeBalancerConfigOutputArgs {
|
|
102
|
+
/**
|
|
103
|
+
* The config's ID.
|
|
104
|
+
*/
|
|
105
|
+
id: pulumi.Input<number>;
|
|
106
|
+
/**
|
|
107
|
+
* The ID of the NodeBalancer that contains the config.
|
|
108
|
+
*/
|
|
109
|
+
nodebalancerId: pulumi.Input<number>;
|
|
110
|
+
}
|
package/getNodeBalancerConfig.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getNodeBalancerConfig = void 0;
|
|
5
|
+
exports.getNodeBalancerConfigOutput = exports.getNodeBalancerConfig = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -33,4 +33,8 @@ function getNodeBalancerConfig(args, opts) {
|
|
|
33
33
|
}, opts);
|
|
34
34
|
}
|
|
35
35
|
exports.getNodeBalancerConfig = getNodeBalancerConfig;
|
|
36
|
+
function getNodeBalancerConfigOutput(args, opts) {
|
|
37
|
+
return pulumi.output(args).apply(a => getNodeBalancerConfig(a, opts));
|
|
38
|
+
}
|
|
39
|
+
exports.getNodeBalancerConfigOutput = getNodeBalancerConfigOutput;
|
|
36
40
|
//# sourceMappingURL=getNodeBalancerConfig.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNodeBalancerConfig.js","sourceRoot":"","sources":["../getNodeBalancerConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,sDAYC"}
|
|
1
|
+
{"version":3,"file":"getNodeBalancerConfig.js","sourceRoot":"","sources":["../getNodeBalancerConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,sDAYC;AAkFD,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,qBAAqB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,kEAEC"}
|
package/getNodeBalancerNode.d.ts
CHANGED
|
@@ -61,3 +61,21 @@ export interface GetNodeBalancerNodeResult {
|
|
|
61
61
|
*/
|
|
62
62
|
readonly weight: number;
|
|
63
63
|
}
|
|
64
|
+
export declare function getNodeBalancerNodeOutput(args: GetNodeBalancerNodeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetNodeBalancerNodeResult>;
|
|
65
|
+
/**
|
|
66
|
+
* A collection of arguments for invoking getNodeBalancerNode.
|
|
67
|
+
*/
|
|
68
|
+
export interface GetNodeBalancerNodeOutputArgs {
|
|
69
|
+
/**
|
|
70
|
+
* The ID of the config that contains the Node.
|
|
71
|
+
*/
|
|
72
|
+
configId: pulumi.Input<number>;
|
|
73
|
+
/**
|
|
74
|
+
* The node's ID.
|
|
75
|
+
*/
|
|
76
|
+
id: pulumi.Input<number>;
|
|
77
|
+
/**
|
|
78
|
+
* The ID of the NodeBalancer that contains the node.
|
|
79
|
+
*/
|
|
80
|
+
nodebalancerId: pulumi.Input<number>;
|
|
81
|
+
}
|
package/getNodeBalancerNode.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getNodeBalancerNode = void 0;
|
|
5
|
+
exports.getNodeBalancerNodeOutput = exports.getNodeBalancerNode = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -35,4 +35,8 @@ function getNodeBalancerNode(args, opts) {
|
|
|
35
35
|
}, opts);
|
|
36
36
|
}
|
|
37
37
|
exports.getNodeBalancerNode = getNodeBalancerNode;
|
|
38
|
+
function getNodeBalancerNodeOutput(args, opts) {
|
|
39
|
+
return pulumi.output(args).apply(a => getNodeBalancerNode(a, opts));
|
|
40
|
+
}
|
|
41
|
+
exports.getNodeBalancerNodeOutput = getNodeBalancerNodeOutput;
|
|
38
42
|
//# sourceMappingURL=getNodeBalancerNode.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNodeBalancerNode.js","sourceRoot":"","sources":["../getNodeBalancerNode.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getNodeBalancerNode.js","sourceRoot":"","sources":["../getNodeBalancerNode.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,kDAaC;AAiDD,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvE,CAAC;AAFD,8DAEC"}
|
|
@@ -50,3 +50,17 @@ export interface GetObjectStorageClusterResult {
|
|
|
50
50
|
readonly staticSiteDomain: string;
|
|
51
51
|
readonly status: string;
|
|
52
52
|
}
|
|
53
|
+
export declare function getObjectStorageClusterOutput(args: GetObjectStorageClusterOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetObjectStorageClusterResult>;
|
|
54
|
+
/**
|
|
55
|
+
* A collection of arguments for invoking getObjectStorageCluster.
|
|
56
|
+
*/
|
|
57
|
+
export interface GetObjectStorageClusterOutputArgs {
|
|
58
|
+
domain?: pulumi.Input<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The unique ID of this cluster.
|
|
61
|
+
*/
|
|
62
|
+
id: pulumi.Input<string>;
|
|
63
|
+
region?: pulumi.Input<string>;
|
|
64
|
+
staticSiteDomain?: pulumi.Input<string>;
|
|
65
|
+
status?: pulumi.Input<string>;
|
|
66
|
+
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getObjectStorageCluster = void 0;
|
|
5
|
+
exports.getObjectStorageClusterOutput = exports.getObjectStorageCluster = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -48,4 +48,8 @@ function getObjectStorageCluster(args, opts) {
|
|
|
48
48
|
}, opts);
|
|
49
49
|
}
|
|
50
50
|
exports.getObjectStorageCluster = getObjectStorageCluster;
|
|
51
|
+
function getObjectStorageClusterOutput(args, opts) {
|
|
52
|
+
return pulumi.output(args).apply(a => getObjectStorageCluster(a, opts));
|
|
53
|
+
}
|
|
54
|
+
exports.getObjectStorageClusterOutput = getObjectStorageClusterOutput;
|
|
51
55
|
//# sourceMappingURL=getObjectStorageCluster.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getObjectStorageCluster.js","sourceRoot":"","sources":["../getObjectStorageCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getObjectStorageCluster.js","sourceRoot":"","sources":["../getObjectStorageCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,0DAeC;AA2BD,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,sEAEC"}
|
package/getRegion.d.ts
CHANGED
|
@@ -39,3 +39,17 @@ export interface GetRegionResult {
|
|
|
39
39
|
readonly country: string;
|
|
40
40
|
readonly id: string;
|
|
41
41
|
}
|
|
42
|
+
export declare function getRegionOutput(args: GetRegionOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRegionResult>;
|
|
43
|
+
/**
|
|
44
|
+
* A collection of arguments for invoking getRegion.
|
|
45
|
+
*/
|
|
46
|
+
export interface GetRegionOutputArgs {
|
|
47
|
+
/**
|
|
48
|
+
* The country the region resides in.
|
|
49
|
+
*/
|
|
50
|
+
country?: pulumi.Input<string>;
|
|
51
|
+
/**
|
|
52
|
+
* The code name of the region to select.
|
|
53
|
+
*/
|
|
54
|
+
id: pulumi.Input<string>;
|
|
55
|
+
}
|
package/getRegion.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getRegion = void 0;
|
|
5
|
+
exports.getRegionOutput = exports.getRegion = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -34,4 +34,8 @@ function getRegion(args, opts) {
|
|
|
34
34
|
}, opts);
|
|
35
35
|
}
|
|
36
36
|
exports.getRegion = getRegion;
|
|
37
|
+
function getRegionOutput(args, opts) {
|
|
38
|
+
return pulumi.output(args).apply(a => getRegion(a, opts));
|
|
39
|
+
}
|
|
40
|
+
exports.getRegionOutput = getRegionOutput;
|
|
37
41
|
//# sourceMappingURL=getRegion.js.map
|
package/getRegion.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getRegion.js","sourceRoot":"","sources":["../getRegion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getRegion.js","sourceRoot":"","sources":["../getRegion.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,8BAYC;AA2BD,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7D,CAAC;AAFD,0CAEC"}
|
package/getSshKey.d.ts
CHANGED
|
@@ -43,3 +43,13 @@ export interface GetSshKeyResult {
|
|
|
43
43
|
*/
|
|
44
44
|
readonly sshKey: string;
|
|
45
45
|
}
|
|
46
|
+
export declare function getSshKeyOutput(args: GetSshKeyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSshKeyResult>;
|
|
47
|
+
/**
|
|
48
|
+
* A collection of arguments for invoking getSshKey.
|
|
49
|
+
*/
|
|
50
|
+
export interface GetSshKeyOutputArgs {
|
|
51
|
+
/**
|
|
52
|
+
* The label of the SSH Key to select.
|
|
53
|
+
*/
|
|
54
|
+
label: pulumi.Input<string>;
|
|
55
|
+
}
|
package/getSshKey.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getSshKey = void 0;
|
|
5
|
+
exports.getSshKeyOutput = exports.getSshKey = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -33,4 +33,8 @@ function getSshKey(args, opts) {
|
|
|
33
33
|
}, opts);
|
|
34
34
|
}
|
|
35
35
|
exports.getSshKey = getSshKey;
|
|
36
|
+
function getSshKeyOutput(args, opts) {
|
|
37
|
+
return pulumi.output(args).apply(a => getSshKey(a, opts));
|
|
38
|
+
}
|
|
39
|
+
exports.getSshKeyOutput = getSshKeyOutput;
|
|
36
40
|
//# sourceMappingURL=getSshKey.js.map
|
package/getSshKey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSshKey.js","sourceRoot":"","sources":["../getSshKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getSshKey.js","sourceRoot":"","sources":["../getSshKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8BAWC;AA+BD,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7D,CAAC;AAFD,0CAEC"}
|
package/getStackScript.d.ts
CHANGED
|
@@ -87,3 +87,14 @@ export interface GetStackScriptResult {
|
|
|
87
87
|
readonly userGravatarId: string;
|
|
88
88
|
readonly username: string;
|
|
89
89
|
}
|
|
90
|
+
export declare function getStackScriptOutput(args: GetStackScriptOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetStackScriptResult>;
|
|
91
|
+
/**
|
|
92
|
+
* A collection of arguments for invoking getStackScript.
|
|
93
|
+
*/
|
|
94
|
+
export interface GetStackScriptOutputArgs {
|
|
95
|
+
/**
|
|
96
|
+
* The unique numeric ID of the StackScript to query.
|
|
97
|
+
*/
|
|
98
|
+
id: pulumi.Input<number>;
|
|
99
|
+
userDefinedFields?: pulumi.Input<pulumi.Input<inputs.GetStackScriptUserDefinedFieldArgs>[]>;
|
|
100
|
+
}
|
package/getStackScript.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getStackScript = void 0;
|
|
5
|
+
exports.getStackScriptOutput = exports.getStackScript = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -75,4 +75,8 @@ function getStackScript(args, opts) {
|
|
|
75
75
|
}, opts);
|
|
76
76
|
}
|
|
77
77
|
exports.getStackScript = getStackScript;
|
|
78
|
+
function getStackScriptOutput(args, opts) {
|
|
79
|
+
return pulumi.output(args).apply(a => getStackScript(a, opts));
|
|
80
|
+
}
|
|
81
|
+
exports.getStackScriptOutput = getStackScriptOutput;
|
|
78
82
|
//# sourceMappingURL=getStackScript.js.map
|
package/getStackScript.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStackScript.js","sourceRoot":"","sources":["../getStackScript.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,wCAYC"}
|
|
1
|
+
{"version":3,"file":"getStackScript.js","sourceRoot":"","sources":["../getStackScript.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwDG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,wCAYC;AAiCD,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,oDAEC"}
|
package/getUser.d.ts
CHANGED
|
@@ -47,3 +47,13 @@ export interface GetUserResult {
|
|
|
47
47
|
readonly sshKeys: string[];
|
|
48
48
|
readonly username: string;
|
|
49
49
|
}
|
|
50
|
+
export declare function getUserOutput(args: GetUserOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetUserResult>;
|
|
51
|
+
/**
|
|
52
|
+
* A collection of arguments for invoking getUser.
|
|
53
|
+
*/
|
|
54
|
+
export interface GetUserOutputArgs {
|
|
55
|
+
/**
|
|
56
|
+
* The unique username of this User.
|
|
57
|
+
*/
|
|
58
|
+
username: pulumi.Input<string>;
|
|
59
|
+
}
|
package/getUser.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getUser = void 0;
|
|
5
|
+
exports.getUserOutput = exports.getUser = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -42,4 +42,8 @@ function getUser(args, opts) {
|
|
|
42
42
|
}, opts);
|
|
43
43
|
}
|
|
44
44
|
exports.getUser = getUser;
|
|
45
|
+
function getUserOutput(args, opts) {
|
|
46
|
+
return pulumi.output(args).apply(a => getUser(a, opts));
|
|
47
|
+
}
|
|
48
|
+
exports.getUserOutput = getUserOutput;
|
|
45
49
|
//# sourceMappingURL=getUser.js.map
|
package/getUser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8BAA8B,EAAE;QACzD,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0BAWC;AA0BD,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3D,CAAC;AAFD,sCAEC"}
|
package/getVlans.d.ts
CHANGED
|
@@ -63,3 +63,10 @@ export interface GetVlansResult {
|
|
|
63
63
|
readonly id: string;
|
|
64
64
|
readonly vlans: outputs.GetVlansVlan[];
|
|
65
65
|
}
|
|
66
|
+
export declare function getVlansOutput(args?: GetVlansOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVlansResult>;
|
|
67
|
+
/**
|
|
68
|
+
* A collection of arguments for invoking getVlans.
|
|
69
|
+
*/
|
|
70
|
+
export interface GetVlansOutputArgs {
|
|
71
|
+
filters?: pulumi.Input<pulumi.Input<inputs.GetVlansFilterArgs>[]>;
|
|
72
|
+
}
|
package/getVlans.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getVlans = void 0;
|
|
5
|
+
exports.getVlansOutput = exports.getVlans = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -63,4 +63,8 @@ function getVlans(args, opts) {
|
|
|
63
63
|
}, opts);
|
|
64
64
|
}
|
|
65
65
|
exports.getVlans = getVlans;
|
|
66
|
+
function getVlansOutput(args, opts) {
|
|
67
|
+
return pulumi.output(args).apply(a => getVlans(a, opts));
|
|
68
|
+
}
|
|
69
|
+
exports.getVlansOutput = getVlansOutput;
|
|
66
70
|
//# sourceMappingURL=getVlans.js.map
|
package/getVlans.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVlans.js","sourceRoot":"","sources":["../getVlans.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,4BAYC"}
|
|
1
|
+
{"version":3,"file":"getVlans.js","sourceRoot":"","sources":["../getVlans.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,4BAYC;AAqBD,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5D,CAAC;AAFD,wCAEC"}
|
package/getVolume.d.ts
CHANGED
|
@@ -63,3 +63,13 @@ export interface GetVolumeResult {
|
|
|
63
63
|
readonly tags: string[];
|
|
64
64
|
readonly updated: string;
|
|
65
65
|
}
|
|
66
|
+
export declare function getVolumeOutput(args: GetVolumeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVolumeResult>;
|
|
67
|
+
/**
|
|
68
|
+
* A collection of arguments for invoking getVolume.
|
|
69
|
+
*/
|
|
70
|
+
export interface GetVolumeOutputArgs {
|
|
71
|
+
/**
|
|
72
|
+
* The unique numeric ID of the Volume record to query.
|
|
73
|
+
*/
|
|
74
|
+
id: pulumi.Input<number>;
|
|
75
|
+
}
|
package/getVolume.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getVolume = void 0;
|
|
5
|
+
exports.getVolumeOutput = exports.getVolume = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
@@ -56,4 +56,8 @@ function getVolume(args, opts) {
|
|
|
56
56
|
}, opts);
|
|
57
57
|
}
|
|
58
58
|
exports.getVolume = getVolume;
|
|
59
|
+
function getVolumeOutput(args, opts) {
|
|
60
|
+
return pulumi.output(args).apply(a => getVolume(a, opts));
|
|
61
|
+
}
|
|
62
|
+
exports.getVolumeOutput = getVolumeOutput;
|
|
59
63
|
//# sourceMappingURL=getVolume.js.map
|
package/getVolume.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVolume.js","sourceRoot":"","sources":["../getVolume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"getVolume.js","sourceRoot":"","sources":["../getVolume.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,SAAgB,SAAS,CAAC,IAAmB,EAAE,IAA2B;IACtE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;QACf,IAAI,CAAC,OAAO,GAAG,SAAS,CAAC,UAAU,EAAE,CAAC;KACzC;IACD,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,8BAWC;AA4BD,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,SAAS,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7D,CAAC;AAFD,0CAEC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/linode",
|
|
3
|
-
"version": "v3.
|
|
3
|
+
"version": "v3.5.0-alpha.1636656818+35a126ee",
|
|
4
4
|
"description": "A Pulumi package for creating and managing linode cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource linode v3.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource linode v3.5.0-alpha.1636656818+35a126ee"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
package/types/input.d.ts
CHANGED
|
@@ -81,6 +81,26 @@ export interface GetImagesFilter {
|
|
|
81
81
|
*/
|
|
82
82
|
values: string[];
|
|
83
83
|
}
|
|
84
|
+
export interface GetImagesFilterArgs {
|
|
85
|
+
/**
|
|
86
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
87
|
+
*/
|
|
88
|
+
name: pulumi.Input<string>;
|
|
89
|
+
/**
|
|
90
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
91
|
+
*/
|
|
92
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
93
|
+
}
|
|
94
|
+
export interface GetInstancesFilterArgs {
|
|
95
|
+
/**
|
|
96
|
+
* The name of the field to filter by. See the Filterable Fields section for a list of filterable fields.
|
|
97
|
+
*/
|
|
98
|
+
name: pulumi.Input<string>;
|
|
99
|
+
/**
|
|
100
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
101
|
+
*/
|
|
102
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
103
|
+
}
|
|
84
104
|
export interface GetInstancesFilter {
|
|
85
105
|
/**
|
|
86
106
|
* The name of the field to filter by. See the Filterable Fields section for a list of filterable fields.
|
|
@@ -91,6 +111,14 @@ export interface GetInstancesFilter {
|
|
|
91
111
|
*/
|
|
92
112
|
values: string[];
|
|
93
113
|
}
|
|
114
|
+
export interface GetStackScriptUserDefinedFieldArgs {
|
|
115
|
+
default?: pulumi.Input<string>;
|
|
116
|
+
example?: pulumi.Input<string>;
|
|
117
|
+
label?: pulumi.Input<string>;
|
|
118
|
+
manyOf?: pulumi.Input<string>;
|
|
119
|
+
name?: pulumi.Input<string>;
|
|
120
|
+
oneOf?: pulumi.Input<string>;
|
|
121
|
+
}
|
|
94
122
|
export interface GetStackScriptUserDefinedField {
|
|
95
123
|
default?: string;
|
|
96
124
|
example?: string;
|
|
@@ -109,6 +137,16 @@ export interface GetVlansFilter {
|
|
|
109
137
|
*/
|
|
110
138
|
values: string[];
|
|
111
139
|
}
|
|
140
|
+
export interface GetVlansFilterArgs {
|
|
141
|
+
/**
|
|
142
|
+
* The name of the field to filter by. See the Filterable Fields section for a complete list of filterable fields.
|
|
143
|
+
*/
|
|
144
|
+
name: pulumi.Input<string>;
|
|
145
|
+
/**
|
|
146
|
+
* A list of values for the filter to allow. These values should all be in string form.
|
|
147
|
+
*/
|
|
148
|
+
values: pulumi.Input<pulumi.Input<string>[]>;
|
|
149
|
+
}
|
|
112
150
|
export interface InstanceAlerts {
|
|
113
151
|
cpu?: pulumi.Input<number>;
|
|
114
152
|
io?: pulumi.Input<number>;
|