@pulumi/archive 0.1.0-alpha.1722056963 → 0.1.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
|
@@ -25,7 +25,7 @@ export declare class File extends pulumi.CustomResource {
|
|
|
25
25
|
*/
|
|
26
26
|
readonly excludeSymlinkDirectories: pulumi.Output<boolean | undefined>;
|
|
27
27
|
/**
|
|
28
|
-
* Specify files to ignore when reading the `sourceDir`.
|
|
28
|
+
* Specify files/directories to ignore when reading the `sourceDir`. Supports glob file matching patterns including doublestar/globstar (`**`) patterns.
|
|
29
29
|
*/
|
|
30
30
|
readonly excludes: pulumi.Output<string[] | undefined>;
|
|
31
31
|
/**
|
|
@@ -106,7 +106,7 @@ export interface FileState {
|
|
|
106
106
|
*/
|
|
107
107
|
excludeSymlinkDirectories?: pulumi.Input<boolean>;
|
|
108
108
|
/**
|
|
109
|
-
* Specify files to ignore when reading the `sourceDir`.
|
|
109
|
+
* Specify files/directories to ignore when reading the `sourceDir`. Supports glob file matching patterns including doublestar/globstar (`**`) patterns.
|
|
110
110
|
*/
|
|
111
111
|
excludes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
112
112
|
/**
|
|
@@ -179,7 +179,7 @@ export interface FileArgs {
|
|
|
179
179
|
*/
|
|
180
180
|
excludeSymlinkDirectories?: pulumi.Input<boolean>;
|
|
181
181
|
/**
|
|
182
|
-
* Specify files to ignore when reading the `sourceDir`.
|
|
182
|
+
* Specify files/directories to ignore when reading the `sourceDir`. Supports glob file matching patterns including doublestar/globstar (`**`) patterns.
|
|
183
183
|
*/
|
|
184
184
|
excludes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
185
185
|
/**
|
package/getFile.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export interface GetFileArgs {
|
|
|
14
14
|
*/
|
|
15
15
|
excludeSymlinkDirectories?: boolean;
|
|
16
16
|
/**
|
|
17
|
-
* Specify files to ignore when reading the `sourceDir`.
|
|
17
|
+
* Specify files/directories to ignore when reading the `sourceDir`. Supports glob file matching patterns including doublestar/globstar (`**`) patterns.
|
|
18
18
|
*/
|
|
19
19
|
excludes?: string[];
|
|
20
20
|
/**
|
|
@@ -59,7 +59,7 @@ export interface GetFileResult {
|
|
|
59
59
|
*/
|
|
60
60
|
readonly excludeSymlinkDirectories?: boolean;
|
|
61
61
|
/**
|
|
62
|
-
* Specify files to ignore when reading the `sourceDir`.
|
|
62
|
+
* Specify files/directories to ignore when reading the `sourceDir`. Supports glob file matching patterns including doublestar/globstar (`**`) patterns.
|
|
63
63
|
*/
|
|
64
64
|
readonly excludes?: string[];
|
|
65
65
|
/**
|
|
@@ -140,7 +140,7 @@ export interface GetFileOutputArgs {
|
|
|
140
140
|
*/
|
|
141
141
|
excludeSymlinkDirectories?: pulumi.Input<boolean>;
|
|
142
142
|
/**
|
|
143
|
-
* Specify files to ignore when reading the `sourceDir`.
|
|
143
|
+
* Specify files/directories to ignore when reading the `sourceDir`. Supports glob file matching patterns including doublestar/globstar (`**`) patterns.
|
|
144
144
|
*/
|
|
145
145
|
excludes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
146
146
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/archive",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.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.1.0
|
|
25
|
+
"version": "0.1.0"
|
|
26
26
|
}
|
|
27
27
|
}
|