@pulumi/archive 0.3.0-alpha.1733375484 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/file.d.ts +1 -1
- package/file.js +1 -1
- package/getFile.d.ts +2 -2
- package/getFile.js +2 -2
- package/package.json +2 -2
package/file.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* Generates an archive from content, a file, or directory of files.
|
|
6
6
|
*/
|
|
7
7
|
export declare class File extends pulumi.CustomResource {
|
|
8
8
|
/**
|
package/file.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.File = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Generates an archive from content, a file, or directory of files.
|
|
10
10
|
*/
|
|
11
11
|
class File extends pulumi.CustomResource {
|
|
12
12
|
/**
|
package/getFile.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
-
* Generates an archive from content, a file, or directory of files.
|
|
5
|
+
* Generates an archive from content, a file, or directory of files. The archive is built during the pulumi preview, so you must persist the archive through to the pulumi up. See the `archive.File` resource for an alternative if you cannot persist the file, such as in a multi-phase CI or build server context.
|
|
6
6
|
*/
|
|
7
7
|
export declare function getFile(args: GetFileArgs, opts?: pulumi.InvokeOptions): Promise<GetFileResult>;
|
|
8
8
|
/**
|
|
@@ -128,7 +128,7 @@ export interface GetFileResult {
|
|
|
128
128
|
readonly type: string;
|
|
129
129
|
}
|
|
130
130
|
/**
|
|
131
|
-
* Generates an archive from content, a file, or directory of files.
|
|
131
|
+
* Generates an archive from content, a file, or directory of files. The archive is built during the pulumi preview, so you must persist the archive through to the pulumi up. See the `archive.File` resource for an alternative if you cannot persist the file, such as in a multi-phase CI or build server context.
|
|
132
132
|
*/
|
|
133
133
|
export declare function getFileOutput(args: GetFileOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFileResult>;
|
|
134
134
|
/**
|
package/getFile.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getFileOutput = exports.getFile = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Generates an archive from content, a file, or directory of files.
|
|
9
|
+
* Generates an archive from content, a file, or directory of files. The archive is built during the pulumi preview, so you must persist the archive through to the pulumi up. See the `archive.File` resource for an alternative if you cannot persist the file, such as in a multi-phase CI or build server context.
|
|
10
10
|
*/
|
|
11
11
|
function getFile(args, opts) {
|
|
12
12
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -25,7 +25,7 @@ function getFile(args, opts) {
|
|
|
25
25
|
}
|
|
26
26
|
exports.getFile = getFile;
|
|
27
27
|
/**
|
|
28
|
-
* Generates an archive from content, a file, or directory of files.
|
|
28
|
+
* Generates an archive from content, a file, or directory of files. The archive is built during the pulumi preview, so you must persist the archive through to the pulumi up. See the `archive.File` resource for an alternative if you cannot persist the file, such as in a multi-phase CI or build server context.
|
|
29
29
|
*/
|
|
30
30
|
function getFileOutput(args, opts) {
|
|
31
31
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/archive",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Archive cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"pulumi": {
|
|
23
23
|
"resource": true,
|
|
24
24
|
"name": "archive",
|
|
25
|
-
"version": "0.3.0
|
|
25
|
+
"version": "0.3.0"
|
|
26
26
|
}
|
|
27
27
|
}
|