@pulumi/github 6.2.2 → 6.2.3
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/enterpriseActionsPermissions.d.ts +7 -10
- package/enterpriseActionsPermissions.js +5 -8
- package/enterpriseActionsPermissions.js.map +1 -1
- package/package.json +2 -2
- package/release.d.ts +80 -0
- package/release.js +20 -0
- package/release.js.map +1 -1
|
@@ -11,14 +11,11 @@ import * as outputs from "./types/output";
|
|
|
11
11
|
* import * as pulumi from "@pulumi/pulumi";
|
|
12
12
|
* import * as github from "@pulumi/github";
|
|
13
13
|
*
|
|
14
|
-
* const example-enterprise = github.getEnterprise({
|
|
15
|
-
* slug: "my-enterprise",
|
|
16
|
-
* });
|
|
17
14
|
* const example-org = github.getOrganization({
|
|
18
15
|
* name: "my-org",
|
|
19
16
|
* });
|
|
20
17
|
* const test = new github.EnterpriseActionsPermissions("test", {
|
|
21
|
-
*
|
|
18
|
+
* enterpriseSlug: "my-enterprise",
|
|
22
19
|
* allowedActions: "selected",
|
|
23
20
|
* enabledOrganizations: "selected",
|
|
24
21
|
* allowedActionsConfig: {
|
|
@@ -76,9 +73,9 @@ export declare class EnterpriseActionsPermissions extends pulumi.CustomResource
|
|
|
76
73
|
*/
|
|
77
74
|
readonly enabledOrganizationsConfig: pulumi.Output<outputs.EnterpriseActionsPermissionsEnabledOrganizationsConfig | undefined>;
|
|
78
75
|
/**
|
|
79
|
-
* The
|
|
76
|
+
* The slug of the enterprise.
|
|
80
77
|
*/
|
|
81
|
-
readonly
|
|
78
|
+
readonly enterpriseSlug: pulumi.Output<string>;
|
|
82
79
|
/**
|
|
83
80
|
* Create a EnterpriseActionsPermissions resource with the given unique name, arguments, and options.
|
|
84
81
|
*
|
|
@@ -109,9 +106,9 @@ export interface EnterpriseActionsPermissionsState {
|
|
|
109
106
|
*/
|
|
110
107
|
enabledOrganizationsConfig?: pulumi.Input<inputs.EnterpriseActionsPermissionsEnabledOrganizationsConfig>;
|
|
111
108
|
/**
|
|
112
|
-
* The
|
|
109
|
+
* The slug of the enterprise.
|
|
113
110
|
*/
|
|
114
|
-
|
|
111
|
+
enterpriseSlug?: pulumi.Input<string>;
|
|
115
112
|
}
|
|
116
113
|
/**
|
|
117
114
|
* The set of arguments for constructing a EnterpriseActionsPermissions resource.
|
|
@@ -134,7 +131,7 @@ export interface EnterpriseActionsPermissionsArgs {
|
|
|
134
131
|
*/
|
|
135
132
|
enabledOrganizationsConfig?: pulumi.Input<inputs.EnterpriseActionsPermissionsEnabledOrganizationsConfig>;
|
|
136
133
|
/**
|
|
137
|
-
* The
|
|
134
|
+
* The slug of the enterprise.
|
|
138
135
|
*/
|
|
139
|
-
|
|
136
|
+
enterpriseSlug: pulumi.Input<string>;
|
|
140
137
|
}
|
|
@@ -15,14 +15,11 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
16
16
|
* import * as github from "@pulumi/github";
|
|
17
17
|
*
|
|
18
|
-
* const example-enterprise = github.getEnterprise({
|
|
19
|
-
* slug: "my-enterprise",
|
|
20
|
-
* });
|
|
21
18
|
* const example-org = github.getOrganization({
|
|
22
19
|
* name: "my-org",
|
|
23
20
|
* });
|
|
24
21
|
* const test = new github.EnterpriseActionsPermissions("test", {
|
|
25
|
-
*
|
|
22
|
+
* enterpriseSlug: "my-enterprise",
|
|
26
23
|
* allowedActions: "selected",
|
|
27
24
|
* enabledOrganizations: "selected",
|
|
28
25
|
* allowedActionsConfig: {
|
|
@@ -79,21 +76,21 @@ class EnterpriseActionsPermissions extends pulumi.CustomResource {
|
|
|
79
76
|
resourceInputs["allowedActionsConfig"] = state ? state.allowedActionsConfig : undefined;
|
|
80
77
|
resourceInputs["enabledOrganizations"] = state ? state.enabledOrganizations : undefined;
|
|
81
78
|
resourceInputs["enabledOrganizationsConfig"] = state ? state.enabledOrganizationsConfig : undefined;
|
|
82
|
-
resourceInputs["
|
|
79
|
+
resourceInputs["enterpriseSlug"] = state ? state.enterpriseSlug : undefined;
|
|
83
80
|
}
|
|
84
81
|
else {
|
|
85
82
|
const args = argsOrState;
|
|
86
83
|
if ((!args || args.enabledOrganizations === undefined) && !opts.urn) {
|
|
87
84
|
throw new Error("Missing required property 'enabledOrganizations'");
|
|
88
85
|
}
|
|
89
|
-
if ((!args || args.
|
|
90
|
-
throw new Error("Missing required property '
|
|
86
|
+
if ((!args || args.enterpriseSlug === undefined) && !opts.urn) {
|
|
87
|
+
throw new Error("Missing required property 'enterpriseSlug'");
|
|
91
88
|
}
|
|
92
89
|
resourceInputs["allowedActions"] = args ? args.allowedActions : undefined;
|
|
93
90
|
resourceInputs["allowedActionsConfig"] = args ? args.allowedActionsConfig : undefined;
|
|
94
91
|
resourceInputs["enabledOrganizations"] = args ? args.enabledOrganizations : undefined;
|
|
95
92
|
resourceInputs["enabledOrganizationsConfig"] = args ? args.enabledOrganizationsConfig : undefined;
|
|
96
|
-
resourceInputs["
|
|
93
|
+
resourceInputs["enterpriseSlug"] = args ? args.enterpriseSlug : undefined;
|
|
97
94
|
}
|
|
98
95
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
99
96
|
super(EnterpriseActionsPermissions.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enterpriseActionsPermissions.js","sourceRoot":"","sources":["../enterpriseActionsPermissions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"enterpriseActionsPermissions.js","sourceRoot":"","sources":["../enterpriseActionsPermissions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,MAAa,4BAA6B,SAAQ,MAAM,CAAC,cAAc;IACnE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyC,EAAE,IAAmC;QACvI,OAAO,IAAI,4BAA4B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnF,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,4BAA4B,CAAC,YAAY,CAAC;IAC7E,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAkF,EAAE,IAAmC;QAC7I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4D,CAAC;YAC3E,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,4BAA4B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/E;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,oBAAoB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjE,MAAM,IAAI,KAAK,CAAC,kDAAkD,CAAC,CAAC;aACvE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,4BAA4B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7E;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,4BAA4B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjF,CAAC;;AAnFL,oEAoFC;AAtEG,gBAAgB;AACO,yCAAY,GAAG,wEAAwE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/github",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.3",
|
|
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.2.
|
|
26
|
+
"version": "6.2.3"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/release.d.ts
CHANGED
|
@@ -68,10 +68,18 @@ export declare class Release extends pulumi.CustomResource {
|
|
|
68
68
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
69
69
|
*/
|
|
70
70
|
static isInstance(obj: any): obj is Release;
|
|
71
|
+
/**
|
|
72
|
+
* URL that can be provided to API calls displaying the attached assets to this release.
|
|
73
|
+
*/
|
|
74
|
+
readonly assetsUrl: pulumi.Output<string>;
|
|
71
75
|
/**
|
|
72
76
|
* Text describing the contents of the tag.
|
|
73
77
|
*/
|
|
74
78
|
readonly body: pulumi.Output<string | undefined>;
|
|
79
|
+
/**
|
|
80
|
+
* This is the date of the commit used for the release, and not the date when the release was drafted or published.
|
|
81
|
+
*/
|
|
82
|
+
readonly createdAt: pulumi.Output<string>;
|
|
75
83
|
/**
|
|
76
84
|
* If specified, a discussion of the specified category is created and linked to the release. The value must be a category that already exists in the repository. For more information, see [Managing categories for discussions in your repository](https://docs.github.com/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository).
|
|
77
85
|
*/
|
|
@@ -85,14 +93,30 @@ export declare class Release extends pulumi.CustomResource {
|
|
|
85
93
|
* Set to `true` to automatically generate the name and body for this release. If `name` is specified, the specified `name` will be used; otherwise, a name will be automatically generated. If `body` is specified, the `body` will be pre-pended to the automatically generated notes.
|
|
86
94
|
*/
|
|
87
95
|
readonly generateReleaseNotes: pulumi.Output<boolean | undefined>;
|
|
96
|
+
/**
|
|
97
|
+
* URL of the release in GitHub.
|
|
98
|
+
*/
|
|
99
|
+
readonly htmlUrl: pulumi.Output<string>;
|
|
88
100
|
/**
|
|
89
101
|
* The name of the release.
|
|
90
102
|
*/
|
|
91
103
|
readonly name: pulumi.Output<string>;
|
|
104
|
+
/**
|
|
105
|
+
* GraphQL global node id for use with v4 API
|
|
106
|
+
*/
|
|
107
|
+
readonly nodeId: pulumi.Output<string>;
|
|
92
108
|
/**
|
|
93
109
|
* Set to `false` to identify the release as a full release.
|
|
94
110
|
*/
|
|
95
111
|
readonly prerelease: pulumi.Output<boolean | undefined>;
|
|
112
|
+
/**
|
|
113
|
+
* This is the date when the release was published. This will be empty if the release is a draft.
|
|
114
|
+
*/
|
|
115
|
+
readonly publishedAt: pulumi.Output<string>;
|
|
116
|
+
/**
|
|
117
|
+
* The ID of the release.
|
|
118
|
+
*/
|
|
119
|
+
readonly releaseId: pulumi.Output<number>;
|
|
96
120
|
/**
|
|
97
121
|
* The name of the repository.
|
|
98
122
|
*/
|
|
@@ -101,10 +125,26 @@ export declare class Release extends pulumi.CustomResource {
|
|
|
101
125
|
* The name of the tag.
|
|
102
126
|
*/
|
|
103
127
|
readonly tagName: pulumi.Output<string>;
|
|
128
|
+
/**
|
|
129
|
+
* URL that can be provided to API calls to fetch the release TAR archive.
|
|
130
|
+
*/
|
|
131
|
+
readonly tarballUrl: pulumi.Output<string>;
|
|
104
132
|
/**
|
|
105
133
|
* The branch name or commit SHA the tag is created from. Defaults to the default branch of the repository.
|
|
106
134
|
*/
|
|
107
135
|
readonly targetCommitish: pulumi.Output<string | undefined>;
|
|
136
|
+
/**
|
|
137
|
+
* URL that can be provided to API calls to upload assets.
|
|
138
|
+
*/
|
|
139
|
+
readonly uploadUrl: pulumi.Output<string>;
|
|
140
|
+
/**
|
|
141
|
+
* URL that can be provided to API calls that reference this release.
|
|
142
|
+
*/
|
|
143
|
+
readonly url: pulumi.Output<string>;
|
|
144
|
+
/**
|
|
145
|
+
* URL that can be provided to API calls to fetch the release ZIP archive.
|
|
146
|
+
*/
|
|
147
|
+
readonly zipballUrl: pulumi.Output<string>;
|
|
108
148
|
/**
|
|
109
149
|
* Create a Release resource with the given unique name, arguments, and options.
|
|
110
150
|
*
|
|
@@ -118,10 +158,18 @@ export declare class Release extends pulumi.CustomResource {
|
|
|
118
158
|
* Input properties used for looking up and filtering Release resources.
|
|
119
159
|
*/
|
|
120
160
|
export interface ReleaseState {
|
|
161
|
+
/**
|
|
162
|
+
* URL that can be provided to API calls displaying the attached assets to this release.
|
|
163
|
+
*/
|
|
164
|
+
assetsUrl?: pulumi.Input<string>;
|
|
121
165
|
/**
|
|
122
166
|
* Text describing the contents of the tag.
|
|
123
167
|
*/
|
|
124
168
|
body?: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* This is the date of the commit used for the release, and not the date when the release was drafted or published.
|
|
171
|
+
*/
|
|
172
|
+
createdAt?: pulumi.Input<string>;
|
|
125
173
|
/**
|
|
126
174
|
* If specified, a discussion of the specified category is created and linked to the release. The value must be a category that already exists in the repository. For more information, see [Managing categories for discussions in your repository](https://docs.github.com/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository).
|
|
127
175
|
*/
|
|
@@ -135,14 +183,30 @@ export interface ReleaseState {
|
|
|
135
183
|
* Set to `true` to automatically generate the name and body for this release. If `name` is specified, the specified `name` will be used; otherwise, a name will be automatically generated. If `body` is specified, the `body` will be pre-pended to the automatically generated notes.
|
|
136
184
|
*/
|
|
137
185
|
generateReleaseNotes?: pulumi.Input<boolean>;
|
|
186
|
+
/**
|
|
187
|
+
* URL of the release in GitHub.
|
|
188
|
+
*/
|
|
189
|
+
htmlUrl?: pulumi.Input<string>;
|
|
138
190
|
/**
|
|
139
191
|
* The name of the release.
|
|
140
192
|
*/
|
|
141
193
|
name?: pulumi.Input<string>;
|
|
194
|
+
/**
|
|
195
|
+
* GraphQL global node id for use with v4 API
|
|
196
|
+
*/
|
|
197
|
+
nodeId?: pulumi.Input<string>;
|
|
142
198
|
/**
|
|
143
199
|
* Set to `false` to identify the release as a full release.
|
|
144
200
|
*/
|
|
145
201
|
prerelease?: pulumi.Input<boolean>;
|
|
202
|
+
/**
|
|
203
|
+
* This is the date when the release was published. This will be empty if the release is a draft.
|
|
204
|
+
*/
|
|
205
|
+
publishedAt?: pulumi.Input<string>;
|
|
206
|
+
/**
|
|
207
|
+
* The ID of the release.
|
|
208
|
+
*/
|
|
209
|
+
releaseId?: pulumi.Input<number>;
|
|
146
210
|
/**
|
|
147
211
|
* The name of the repository.
|
|
148
212
|
*/
|
|
@@ -151,10 +215,26 @@ export interface ReleaseState {
|
|
|
151
215
|
* The name of the tag.
|
|
152
216
|
*/
|
|
153
217
|
tagName?: pulumi.Input<string>;
|
|
218
|
+
/**
|
|
219
|
+
* URL that can be provided to API calls to fetch the release TAR archive.
|
|
220
|
+
*/
|
|
221
|
+
tarballUrl?: pulumi.Input<string>;
|
|
154
222
|
/**
|
|
155
223
|
* The branch name or commit SHA the tag is created from. Defaults to the default branch of the repository.
|
|
156
224
|
*/
|
|
157
225
|
targetCommitish?: pulumi.Input<string>;
|
|
226
|
+
/**
|
|
227
|
+
* URL that can be provided to API calls to upload assets.
|
|
228
|
+
*/
|
|
229
|
+
uploadUrl?: pulumi.Input<string>;
|
|
230
|
+
/**
|
|
231
|
+
* URL that can be provided to API calls that reference this release.
|
|
232
|
+
*/
|
|
233
|
+
url?: pulumi.Input<string>;
|
|
234
|
+
/**
|
|
235
|
+
* URL that can be provided to API calls to fetch the release ZIP archive.
|
|
236
|
+
*/
|
|
237
|
+
zipballUrl?: pulumi.Input<string>;
|
|
158
238
|
}
|
|
159
239
|
/**
|
|
160
240
|
* The set of arguments for constructing a Release resource.
|
package/release.js
CHANGED
|
@@ -86,16 +86,26 @@ class Release extends pulumi.CustomResource {
|
|
|
86
86
|
opts = opts || {};
|
|
87
87
|
if (opts.id) {
|
|
88
88
|
const state = argsOrState;
|
|
89
|
+
resourceInputs["assetsUrl"] = state ? state.assetsUrl : undefined;
|
|
89
90
|
resourceInputs["body"] = state ? state.body : undefined;
|
|
91
|
+
resourceInputs["createdAt"] = state ? state.createdAt : undefined;
|
|
90
92
|
resourceInputs["discussionCategoryName"] = state ? state.discussionCategoryName : undefined;
|
|
91
93
|
resourceInputs["draft"] = state ? state.draft : undefined;
|
|
92
94
|
resourceInputs["etag"] = state ? state.etag : undefined;
|
|
93
95
|
resourceInputs["generateReleaseNotes"] = state ? state.generateReleaseNotes : undefined;
|
|
96
|
+
resourceInputs["htmlUrl"] = state ? state.htmlUrl : undefined;
|
|
94
97
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
98
|
+
resourceInputs["nodeId"] = state ? state.nodeId : undefined;
|
|
95
99
|
resourceInputs["prerelease"] = state ? state.prerelease : undefined;
|
|
100
|
+
resourceInputs["publishedAt"] = state ? state.publishedAt : undefined;
|
|
101
|
+
resourceInputs["releaseId"] = state ? state.releaseId : undefined;
|
|
96
102
|
resourceInputs["repository"] = state ? state.repository : undefined;
|
|
97
103
|
resourceInputs["tagName"] = state ? state.tagName : undefined;
|
|
104
|
+
resourceInputs["tarballUrl"] = state ? state.tarballUrl : undefined;
|
|
98
105
|
resourceInputs["targetCommitish"] = state ? state.targetCommitish : undefined;
|
|
106
|
+
resourceInputs["uploadUrl"] = state ? state.uploadUrl : undefined;
|
|
107
|
+
resourceInputs["url"] = state ? state.url : undefined;
|
|
108
|
+
resourceInputs["zipballUrl"] = state ? state.zipballUrl : undefined;
|
|
99
109
|
}
|
|
100
110
|
else {
|
|
101
111
|
const args = argsOrState;
|
|
@@ -114,7 +124,17 @@ class Release extends pulumi.CustomResource {
|
|
|
114
124
|
resourceInputs["repository"] = args ? args.repository : undefined;
|
|
115
125
|
resourceInputs["tagName"] = args ? args.tagName : undefined;
|
|
116
126
|
resourceInputs["targetCommitish"] = args ? args.targetCommitish : undefined;
|
|
127
|
+
resourceInputs["assetsUrl"] = undefined /*out*/;
|
|
128
|
+
resourceInputs["createdAt"] = undefined /*out*/;
|
|
117
129
|
resourceInputs["etag"] = undefined /*out*/;
|
|
130
|
+
resourceInputs["htmlUrl"] = undefined /*out*/;
|
|
131
|
+
resourceInputs["nodeId"] = undefined /*out*/;
|
|
132
|
+
resourceInputs["publishedAt"] = undefined /*out*/;
|
|
133
|
+
resourceInputs["releaseId"] = undefined /*out*/;
|
|
134
|
+
resourceInputs["tarballUrl"] = undefined /*out*/;
|
|
135
|
+
resourceInputs["uploadUrl"] = undefined /*out*/;
|
|
136
|
+
resourceInputs["url"] = undefined /*out*/;
|
|
137
|
+
resourceInputs["zipballUrl"] = undefined /*out*/;
|
|
118
138
|
}
|
|
119
139
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
120
140
|
super(Release.__pulumiType, name, resourceInputs, opts);
|
package/release.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"release.js","sourceRoot":"","sources":["../release.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoDG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;
|
|
1
|
+
{"version":3,"file":"release.js","sourceRoot":"","sources":["../release.ts"],"names":[],"mappings":"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"}
|