@pulumi/github 6.12.0 → 6.12.1-alpha.1770868941

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.
@@ -50,7 +50,7 @@ export declare class EmuGroupMapping extends pulumi.CustomResource {
50
50
  /**
51
51
  * ID of the GitHub team.
52
52
  */
53
- readonly teamId: pulumi.Output<string>;
53
+ readonly teamId: pulumi.Output<number>;
54
54
  /**
55
55
  * Slug of the GitHub team
56
56
  */
@@ -80,7 +80,7 @@ export interface EmuGroupMappingState {
80
80
  /**
81
81
  * ID of the GitHub team.
82
82
  */
83
- teamId?: pulumi.Input<string>;
83
+ teamId?: pulumi.Input<number>;
84
84
  /**
85
85
  * Slug of the GitHub team
86
86
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/github",
3
- "version": "6.12.0",
3
+ "version": "6.12.1-alpha.1770868941",
4
4
  "description": "A Pulumi package for creating and managing github cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "github",
26
- "version": "6.12.0"
26
+ "version": "6.12.1-alpha.1770868941"
27
27
  }
28
28
  }
@@ -3,12 +3,13 @@ import * as pulumi from "@pulumi/pulumi";
3
3
  * ## Example Usage
4
4
  *
5
5
  * ### Existing Branch
6
+ *
6
7
  * ```typescript
7
8
  * import * as pulumi from "@pulumi/pulumi";
8
9
  * import * as github from "@pulumi/github";
9
10
  *
10
11
  * const foo = new github.Repository("foo", {
11
- * name: "tf-acc-test-%s",
12
+ * name: "example",
12
13
  * autoInit: true,
13
14
  * });
14
15
  * const fooRepositoryFile = new github.RepositoryFile("foo", {
@@ -24,12 +25,13 @@ import * as pulumi from "@pulumi/pulumi";
24
25
  * ```
25
26
  *
26
27
  * ### Auto Created Branch
28
+ *
27
29
  * ```typescript
28
30
  * import * as pulumi from "@pulumi/pulumi";
29
31
  * import * as github from "@pulumi/github";
30
32
  *
31
33
  * const foo = new github.Repository("foo", {
32
- * name: "tf-acc-test-%s",
34
+ * name: "example",
33
35
  * autoInit: true,
34
36
  * });
35
37
  * const fooRepositoryFile = new github.RepositoryFile("foo", {
@@ -47,15 +49,16 @@ import * as pulumi from "@pulumi/pulumi";
47
49
  *
48
50
  * ## Import
49
51
  *
50
- * Repository files can be imported using a combination of the `repo` and `file`, e.g.
52
+ * Repository files can be imported using a combination of the `repo`, `file` and `branch` or empty branch for the default branch, e.g.
51
53
  *
52
54
  * ```sh
53
- * $ pulumi import github:index/repositoryFile:RepositoryFile gitignore example/.gitignore
55
+ * $ pulumi import github:index/repositoryFile:RepositoryFile gitignore example:.gitignore:feature-branch
54
56
  * ```
55
- * To import a file from a branch other than the default branch, append `:` and the branch name, e.g.
57
+ *
58
+ * and using default branch:
56
59
  *
57
60
  * ```sh
58
- * $ pulumi import github:index/repositoryFile:RepositoryFile gitignore example/.gitignore:dev
61
+ * $ pulumi import github:index/repositoryFile:RepositoryFile gitignore example:.gitignore:
59
62
  * ```
60
63
  */
61
64
  export declare class RepositoryFile extends pulumi.CustomResource {
@@ -75,22 +78,28 @@ export declare class RepositoryFile extends pulumi.CustomResource {
75
78
  */
76
79
  static isInstance(obj: any): obj is RepositoryFile;
77
80
  /**
78
- * Automatically create the branch if it could not be found. Defaults to false. Subsequent reads if the branch is deleted will occur from 'autocreate_branch_source_branch'.
81
+ * **Deprecated** Automatically create the branch if it could not be found. Defaults to false. Subsequent reads if the branch is deleted will occur from 'autocreate_branch_source_branch'. Use the `github.Branch` resource instead.
82
+ *
83
+ * @deprecated Use `github.Branch` resource instead
79
84
  */
80
85
  readonly autocreateBranch: pulumi.Output<boolean | undefined>;
81
86
  /**
82
- * The branch name to start from, if 'autocreate_branch' is set. Defaults to 'main'.
87
+ * **Deprecated** The branch name to start from, if 'autocreate_branch' is set. Defaults to 'main'. Use the `github.Branch` resource instead.
88
+ *
89
+ * @deprecated Use `github.Branch` resource instead
83
90
  */
84
91
  readonly autocreateBranchSourceBranch: pulumi.Output<string | undefined>;
85
92
  /**
86
- * The commit hash to start from, if 'autocreate_branch' is set. Defaults to the tip of 'autocreate_branch_source_branch'. If provided, 'autocreate_branch_source_branch' is ignored.
93
+ * **Deprecated** The commit hash to start from, if 'autocreate_branch' is set. Defaults to the tip of 'autocreate_branch_source_branch'. If provided, 'autocreate_branch_source_branch' is ignored. Use the `github.Branch` resource instead.
94
+ *
95
+ * @deprecated Use `github.Branch` resource instead
87
96
  */
88
97
  readonly autocreateBranchSourceSha: pulumi.Output<string>;
89
98
  /**
90
99
  * Git branch (defaults to the repository's default branch).
91
100
  * The branch must already exist, it will only be created automatically if 'autocreate_branch' is set true.
92
101
  */
93
- readonly branch: pulumi.Output<string | undefined>;
102
+ readonly branch: pulumi.Output<string>;
94
103
  /**
95
104
  * Committer author name to use. **NOTE:** GitHub app users may omit author and email information so GitHub can verify commits as the GitHub App. This maybe useful when a branch protection rule requires signed commits.
96
105
  */
@@ -127,6 +136,10 @@ export declare class RepositoryFile extends pulumi.CustomResource {
127
136
  * The repository to create the file in.
128
137
  */
129
138
  readonly repository: pulumi.Output<string>;
139
+ /**
140
+ * The ID of the repository.
141
+ */
142
+ readonly repositoryId: pulumi.Output<number>;
130
143
  /**
131
144
  * The SHA blob of the file.
132
145
  */
@@ -145,15 +158,21 @@ export declare class RepositoryFile extends pulumi.CustomResource {
145
158
  */
146
159
  export interface RepositoryFileState {
147
160
  /**
148
- * Automatically create the branch if it could not be found. Defaults to false. Subsequent reads if the branch is deleted will occur from 'autocreate_branch_source_branch'.
161
+ * **Deprecated** Automatically create the branch if it could not be found. Defaults to false. Subsequent reads if the branch is deleted will occur from 'autocreate_branch_source_branch'. Use the `github.Branch` resource instead.
162
+ *
163
+ * @deprecated Use `github.Branch` resource instead
149
164
  */
150
165
  autocreateBranch?: pulumi.Input<boolean>;
151
166
  /**
152
- * The branch name to start from, if 'autocreate_branch' is set. Defaults to 'main'.
167
+ * **Deprecated** The branch name to start from, if 'autocreate_branch' is set. Defaults to 'main'. Use the `github.Branch` resource instead.
168
+ *
169
+ * @deprecated Use `github.Branch` resource instead
153
170
  */
154
171
  autocreateBranchSourceBranch?: pulumi.Input<string>;
155
172
  /**
156
- * The commit hash to start from, if 'autocreate_branch' is set. Defaults to the tip of 'autocreate_branch_source_branch'. If provided, 'autocreate_branch_source_branch' is ignored.
173
+ * **Deprecated** The commit hash to start from, if 'autocreate_branch' is set. Defaults to the tip of 'autocreate_branch_source_branch'. If provided, 'autocreate_branch_source_branch' is ignored. Use the `github.Branch` resource instead.
174
+ *
175
+ * @deprecated Use `github.Branch` resource instead
157
176
  */
158
177
  autocreateBranchSourceSha?: pulumi.Input<string>;
159
178
  /**
@@ -197,6 +216,10 @@ export interface RepositoryFileState {
197
216
  * The repository to create the file in.
198
217
  */
199
218
  repository?: pulumi.Input<string>;
219
+ /**
220
+ * The ID of the repository.
221
+ */
222
+ repositoryId?: pulumi.Input<number>;
200
223
  /**
201
224
  * The SHA blob of the file.
202
225
  */
@@ -207,15 +230,21 @@ export interface RepositoryFileState {
207
230
  */
208
231
  export interface RepositoryFileArgs {
209
232
  /**
210
- * Automatically create the branch if it could not be found. Defaults to false. Subsequent reads if the branch is deleted will occur from 'autocreate_branch_source_branch'.
233
+ * **Deprecated** Automatically create the branch if it could not be found. Defaults to false. Subsequent reads if the branch is deleted will occur from 'autocreate_branch_source_branch'. Use the `github.Branch` resource instead.
234
+ *
235
+ * @deprecated Use `github.Branch` resource instead
211
236
  */
212
237
  autocreateBranch?: pulumi.Input<boolean>;
213
238
  /**
214
- * The branch name to start from, if 'autocreate_branch' is set. Defaults to 'main'.
239
+ * **Deprecated** The branch name to start from, if 'autocreate_branch' is set. Defaults to 'main'. Use the `github.Branch` resource instead.
240
+ *
241
+ * @deprecated Use `github.Branch` resource instead
215
242
  */
216
243
  autocreateBranchSourceBranch?: pulumi.Input<string>;
217
244
  /**
218
- * The commit hash to start from, if 'autocreate_branch' is set. Defaults to the tip of 'autocreate_branch_source_branch'. If provided, 'autocreate_branch_source_branch' is ignored.
245
+ * **Deprecated** The commit hash to start from, if 'autocreate_branch' is set. Defaults to the tip of 'autocreate_branch_source_branch'. If provided, 'autocreate_branch_source_branch' is ignored. Use the `github.Branch` resource instead.
246
+ *
247
+ * @deprecated Use `github.Branch` resource instead
219
248
  */
220
249
  autocreateBranchSourceSha?: pulumi.Input<string>;
221
250
  /**
package/repositoryFile.js CHANGED
@@ -9,12 +9,13 @@ const utilities = require("./utilities");
9
9
  * ## Example Usage
10
10
  *
11
11
  * ### Existing Branch
12
+ *
12
13
  * ```typescript
13
14
  * import * as pulumi from "@pulumi/pulumi";
14
15
  * import * as github from "@pulumi/github";
15
16
  *
16
17
  * const foo = new github.Repository("foo", {
17
- * name: "tf-acc-test-%s",
18
+ * name: "example",
18
19
  * autoInit: true,
19
20
  * });
20
21
  * const fooRepositoryFile = new github.RepositoryFile("foo", {
@@ -30,12 +31,13 @@ const utilities = require("./utilities");
30
31
  * ```
31
32
  *
32
33
  * ### Auto Created Branch
34
+ *
33
35
  * ```typescript
34
36
  * import * as pulumi from "@pulumi/pulumi";
35
37
  * import * as github from "@pulumi/github";
36
38
  *
37
39
  * const foo = new github.Repository("foo", {
38
- * name: "tf-acc-test-%s",
40
+ * name: "example",
39
41
  * autoInit: true,
40
42
  * });
41
43
  * const fooRepositoryFile = new github.RepositoryFile("foo", {
@@ -53,15 +55,16 @@ const utilities = require("./utilities");
53
55
  *
54
56
  * ## Import
55
57
  *
56
- * Repository files can be imported using a combination of the `repo` and `file`, e.g.
58
+ * Repository files can be imported using a combination of the `repo`, `file` and `branch` or empty branch for the default branch, e.g.
57
59
  *
58
60
  * ```sh
59
- * $ pulumi import github:index/repositoryFile:RepositoryFile gitignore example/.gitignore
61
+ * $ pulumi import github:index/repositoryFile:RepositoryFile gitignore example:.gitignore:feature-branch
60
62
  * ```
61
- * To import a file from a branch other than the default branch, append `:` and the branch name, e.g.
63
+ *
64
+ * and using default branch:
62
65
  *
63
66
  * ```sh
64
- * $ pulumi import github:index/repositoryFile:RepositoryFile gitignore example/.gitignore:dev
67
+ * $ pulumi import github:index/repositoryFile:RepositoryFile gitignore example:.gitignore:
65
68
  * ```
66
69
  */
67
70
  class RepositoryFile extends pulumi.CustomResource {
@@ -105,6 +108,7 @@ class RepositoryFile extends pulumi.CustomResource {
105
108
  resourceInputs["overwriteOnCreate"] = state?.overwriteOnCreate;
106
109
  resourceInputs["ref"] = state?.ref;
107
110
  resourceInputs["repository"] = state?.repository;
111
+ resourceInputs["repositoryId"] = state?.repositoryId;
108
112
  resourceInputs["sha"] = state?.sha;
109
113
  }
110
114
  else {
@@ -131,6 +135,7 @@ class RepositoryFile extends pulumi.CustomResource {
131
135
  resourceInputs["repository"] = args?.repository;
132
136
  resourceInputs["commitSha"] = undefined /*out*/;
133
137
  resourceInputs["ref"] = undefined /*out*/;
138
+ resourceInputs["repositoryId"] = undefined /*out*/;
134
139
  resourceInputs["sha"] = undefined /*out*/;
135
140
  }
136
141
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
@@ -1 +1 @@
1
- {"version":3,"file":"repositoryFile.js","sourceRoot":"","sources":["../repositoryFile.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"repositoryFile.js","sourceRoot":"","sources":["../repositoryFile.ts"],"names":[],"mappings":"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"}