@pulumi/archive 0.2.0-alpha.1726031707 → 0.2.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 +3 -3
- package/getFile.d.ts +3 -3
- package/package.json +2 -2
package/file.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ export declare class File extends pulumi.CustomResource {
|
|
|
85
85
|
*/
|
|
86
86
|
readonly sources: pulumi.Output<outputs.FileSource[] | undefined>;
|
|
87
87
|
/**
|
|
88
|
-
* The type of archive to generate. NOTE: `zip` is supported.
|
|
88
|
+
* The type of archive to generate. NOTE: `zip` and `tar.gz` is supported.
|
|
89
89
|
*/
|
|
90
90
|
readonly type: pulumi.Output<string>;
|
|
91
91
|
/**
|
|
@@ -166,7 +166,7 @@ export interface FileState {
|
|
|
166
166
|
*/
|
|
167
167
|
sources?: pulumi.Input<pulumi.Input<inputs.FileSource>[]>;
|
|
168
168
|
/**
|
|
169
|
-
* The type of archive to generate. NOTE: `zip` is supported.
|
|
169
|
+
* The type of archive to generate. NOTE: `zip` and `tar.gz` is supported.
|
|
170
170
|
*/
|
|
171
171
|
type?: pulumi.Input<string>;
|
|
172
172
|
}
|
|
@@ -211,7 +211,7 @@ export interface FileArgs {
|
|
|
211
211
|
*/
|
|
212
212
|
sources?: pulumi.Input<pulumi.Input<inputs.FileSource>[]>;
|
|
213
213
|
/**
|
|
214
|
-
* The type of archive to generate. NOTE: `zip` is supported.
|
|
214
|
+
* The type of archive to generate. NOTE: `zip` and `tar.gz` is supported.
|
|
215
215
|
*/
|
|
216
216
|
type: pulumi.Input<string>;
|
|
217
217
|
}
|
package/getFile.d.ts
CHANGED
|
@@ -46,7 +46,7 @@ export interface GetFileArgs {
|
|
|
46
46
|
*/
|
|
47
47
|
sources?: inputs.GetFileSource[];
|
|
48
48
|
/**
|
|
49
|
-
* The type of archive to generate. NOTE: `zip` is supported.
|
|
49
|
+
* The type of archive to generate. NOTE: `zip` and `tar.gz` is supported.
|
|
50
50
|
*/
|
|
51
51
|
type: string;
|
|
52
52
|
}
|
|
@@ -123,7 +123,7 @@ export interface GetFileResult {
|
|
|
123
123
|
*/
|
|
124
124
|
readonly sources?: outputs.GetFileSource[];
|
|
125
125
|
/**
|
|
126
|
-
* The type of archive to generate. NOTE: `zip` is supported.
|
|
126
|
+
* The type of archive to generate. NOTE: `zip` and `tar.gz` is supported.
|
|
127
127
|
*/
|
|
128
128
|
readonly type: string;
|
|
129
129
|
}
|
|
@@ -172,7 +172,7 @@ export interface GetFileOutputArgs {
|
|
|
172
172
|
*/
|
|
173
173
|
sources?: pulumi.Input<pulumi.Input<inputs.GetFileSourceArgs>[]>;
|
|
174
174
|
/**
|
|
175
|
-
* The type of archive to generate. NOTE: `zip` is supported.
|
|
175
|
+
* The type of archive to generate. NOTE: `zip` and `tar.gz` is supported.
|
|
176
176
|
*/
|
|
177
177
|
type: pulumi.Input<string>;
|
|
178
178
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/archive",
|
|
3
|
-
"version": "0.2.0
|
|
3
|
+
"version": "0.2.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.2.0
|
|
25
|
+
"version": "0.2.0"
|
|
26
26
|
}
|
|
27
27
|
}
|