@pulumi/github 6.8.0-alpha.1761113005 → 6.8.0-alpha.1761189922
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/actionsOrganizationSecret.d.ts +3 -0
- package/actionsOrganizationSecret.js +2 -0
- package/actionsOrganizationSecret.js.map +1 -1
- package/actionsOrganizationSecretRepository.d.ts +89 -0
- package/actionsOrganizationSecretRepository.js +86 -0
- package/actionsOrganizationSecretRepository.js.map +1 -0
- package/config/vars.d.ts +1 -1
- package/getOrganizationCustomProperties.d.ts +122 -0
- package/getOrganizationCustomProperties.js +60 -0
- package/getOrganizationCustomProperties.js.map +1 -0
- package/getOrganizationCustomRole.d.ts +4 -0
- package/getOrganizationCustomRole.js +4 -0
- package/getOrganizationCustomRole.js.map +1 -1
- package/getOrganizationRepositoryRole.d.ts +82 -0
- package/getOrganizationRepositoryRole.js +54 -0
- package/getOrganizationRepositoryRole.js.map +1 -0
- package/getOrganizationRepositoryRoles.d.ts +65 -0
- package/getOrganizationRepositoryRoles.js +66 -0
- package/getOrganizationRepositoryRoles.js.map +1 -0
- package/getOrganizationRole.d.ts +82 -0
- package/getOrganizationRole.js +50 -0
- package/getOrganizationRole.js.map +1 -0
- package/getOrganizationRoleTeams.d.ts +85 -0
- package/getOrganizationRoleTeams.js +68 -0
- package/getOrganizationRoleTeams.js.map +1 -0
- package/getOrganizationRoleUsers.d.ts +81 -0
- package/getOrganizationRoleUsers.js +64 -0
- package/getOrganizationRoleUsers.js.map +1 -0
- package/getOrganizationRoles.d.ts +63 -0
- package/getOrganizationRoles.js +64 -0
- package/getOrganizationRoles.js.map +1 -0
- package/getOrganizationSecurityManagers.d.ts +41 -0
- package/getOrganizationSecurityManagers.js +42 -0
- package/getOrganizationSecurityManagers.js.map +1 -0
- package/getTeam.d.ts +4 -2
- package/getTeam.js.map +1 -1
- package/index.d.ts +45 -0
- package/index.js +64 -4
- package/index.js.map +1 -1
- package/organizationCustomProperties.d.ts +170 -0
- package/organizationCustomProperties.js +124 -0
- package/organizationCustomProperties.js.map +1 -0
- package/organizationCustomRole.d.ts +2 -0
- package/organizationCustomRole.js +2 -0
- package/organizationCustomRole.js.map +1 -1
- package/organizationProject.d.ts +2 -0
- package/organizationProject.js +2 -0
- package/organizationProject.js.map +1 -1
- package/organizationRepositoryRole.d.ts +121 -0
- package/organizationRepositoryRole.js +92 -0
- package/organizationRepositoryRole.js.map +1 -0
- package/organizationRole.d.ts +121 -0
- package/organizationRole.js +89 -0
- package/organizationRole.js.map +1 -0
- package/organizationRoleTeam.d.ts +83 -0
- package/organizationRoleTeam.js +80 -0
- package/organizationRoleTeam.js.map +1 -0
- package/organizationRoleTeamAssignment.d.ts +90 -0
- package/organizationRoleTeamAssignment.js +87 -0
- package/organizationRoleTeamAssignment.js.map +1 -0
- package/organizationRoleUser.d.ts +83 -0
- package/organizationRoleUser.js +80 -0
- package/organizationRoleUser.js.map +1 -0
- package/organizationRuleset.d.ts +8 -0
- package/organizationRuleset.js +8 -0
- package/organizationRuleset.js.map +1 -1
- package/package.json +2 -2
- package/projectCard.d.ts +2 -0
- package/projectCard.js +2 -0
- package/projectCard.js.map +1 -1
- package/projectColumn.d.ts +2 -0
- package/projectColumn.js +2 -0
- package/projectColumn.js.map +1 -1
- package/provider.d.ts +1 -1
- package/repository.d.ts +1 -1
- package/repositoryProject.d.ts +2 -0
- package/repositoryProject.js +2 -0
- package/repositoryProject.js.map +1 -1
- package/repositoryRuleset.d.ts +28 -3
- package/repositoryRuleset.js +25 -0
- package/repositoryRuleset.js.map +1 -1
- package/types/input.d.ts +44 -6
- package/types/output.d.ts +158 -15
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This resource allows you to create and manage custom properties for a GitHub organization.
|
|
4
|
+
*
|
|
5
|
+
* Custom properties enable you to add metadata to repositories within your organization. You can use custom properties to add context about repositories, such as who owns them, when they expire, or compliance requirements.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as github from "@pulumi/github";
|
|
12
|
+
*
|
|
13
|
+
* const environment = new github.OrganizationCustomProperties("environment", {
|
|
14
|
+
* propertyName: "environment",
|
|
15
|
+
* valueType: "single_select",
|
|
16
|
+
* required: true,
|
|
17
|
+
* description: "The deployment environment for this repository",
|
|
18
|
+
* defaultValue: "development",
|
|
19
|
+
* allowedValues: [
|
|
20
|
+
* "development",
|
|
21
|
+
* "staging",
|
|
22
|
+
* "production",
|
|
23
|
+
* ],
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* ### Text Property
|
|
28
|
+
*
|
|
29
|
+
* ```typescript
|
|
30
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
31
|
+
* import * as github from "@pulumi/github";
|
|
32
|
+
*
|
|
33
|
+
* const owner = new github.OrganizationCustomProperties("owner", {
|
|
34
|
+
* propertyName: "owner",
|
|
35
|
+
* valueType: "string",
|
|
36
|
+
* required: true,
|
|
37
|
+
* description: "The team or individual responsible for this repository",
|
|
38
|
+
* });
|
|
39
|
+
* ```
|
|
40
|
+
*
|
|
41
|
+
* ### Boolean Property
|
|
42
|
+
*
|
|
43
|
+
* ```typescript
|
|
44
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
45
|
+
* import * as github from "@pulumi/github";
|
|
46
|
+
*
|
|
47
|
+
* const archived = new github.OrganizationCustomProperties("archived", {
|
|
48
|
+
* propertyName: "archived",
|
|
49
|
+
* valueType: "true_false",
|
|
50
|
+
* required: false,
|
|
51
|
+
* description: "Whether this repository is archived",
|
|
52
|
+
* defaultValue: "false",
|
|
53
|
+
* });
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* ## Import
|
|
57
|
+
*
|
|
58
|
+
* Organization custom properties can be imported using the property name:
|
|
59
|
+
*
|
|
60
|
+
* ```sh
|
|
61
|
+
* $ pulumi import github:index/organizationCustomProperties:OrganizationCustomProperties environment environment
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
64
|
+
export declare class OrganizationCustomProperties extends pulumi.CustomResource {
|
|
65
|
+
/**
|
|
66
|
+
* Get an existing OrganizationCustomProperties resource's state with the given name, ID, and optional extra
|
|
67
|
+
* properties used to qualify the lookup.
|
|
68
|
+
*
|
|
69
|
+
* @param name The _unique_ name of the resulting resource.
|
|
70
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
71
|
+
* @param state Any extra arguments used during the lookup.
|
|
72
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
73
|
+
*/
|
|
74
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OrganizationCustomPropertiesState, opts?: pulumi.CustomResourceOptions): OrganizationCustomProperties;
|
|
75
|
+
/**
|
|
76
|
+
* Returns true if the given object is an instance of OrganizationCustomProperties. This is designed to work even
|
|
77
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
78
|
+
*/
|
|
79
|
+
static isInstance(obj: any): obj is OrganizationCustomProperties;
|
|
80
|
+
/**
|
|
81
|
+
* List of allowed values for the custom property. Only applicable when `valueType` is `singleSelect` or `multiSelect`.
|
|
82
|
+
*/
|
|
83
|
+
readonly allowedValues: pulumi.Output<string[]>;
|
|
84
|
+
/**
|
|
85
|
+
* The default value of the custom property.
|
|
86
|
+
*/
|
|
87
|
+
readonly defaultValue: pulumi.Output<string>;
|
|
88
|
+
/**
|
|
89
|
+
* The description of the custom property.
|
|
90
|
+
*/
|
|
91
|
+
readonly description: pulumi.Output<string>;
|
|
92
|
+
/**
|
|
93
|
+
* The name of the custom property.
|
|
94
|
+
*/
|
|
95
|
+
readonly propertyName: pulumi.Output<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Whether the custom property is required. Defaults to `false`.
|
|
98
|
+
*/
|
|
99
|
+
readonly required: pulumi.Output<boolean | undefined>;
|
|
100
|
+
/**
|
|
101
|
+
* The type of the custom property. Can be one of `string`, `singleSelect`, `multiSelect`, or `trueFalse`. Defaults to `string`.
|
|
102
|
+
*/
|
|
103
|
+
readonly valueType: pulumi.Output<string | undefined>;
|
|
104
|
+
/**
|
|
105
|
+
* Create a OrganizationCustomProperties resource with the given unique name, arguments, and options.
|
|
106
|
+
*
|
|
107
|
+
* @param name The _unique_ name of the resource.
|
|
108
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
109
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
110
|
+
*/
|
|
111
|
+
constructor(name: string, args: OrganizationCustomPropertiesArgs, opts?: pulumi.CustomResourceOptions);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* Input properties used for looking up and filtering OrganizationCustomProperties resources.
|
|
115
|
+
*/
|
|
116
|
+
export interface OrganizationCustomPropertiesState {
|
|
117
|
+
/**
|
|
118
|
+
* List of allowed values for the custom property. Only applicable when `valueType` is `singleSelect` or `multiSelect`.
|
|
119
|
+
*/
|
|
120
|
+
allowedValues?: pulumi.Input<pulumi.Input<string>[]>;
|
|
121
|
+
/**
|
|
122
|
+
* The default value of the custom property.
|
|
123
|
+
*/
|
|
124
|
+
defaultValue?: pulumi.Input<string>;
|
|
125
|
+
/**
|
|
126
|
+
* The description of the custom property.
|
|
127
|
+
*/
|
|
128
|
+
description?: pulumi.Input<string>;
|
|
129
|
+
/**
|
|
130
|
+
* The name of the custom property.
|
|
131
|
+
*/
|
|
132
|
+
propertyName?: pulumi.Input<string>;
|
|
133
|
+
/**
|
|
134
|
+
* Whether the custom property is required. Defaults to `false`.
|
|
135
|
+
*/
|
|
136
|
+
required?: pulumi.Input<boolean>;
|
|
137
|
+
/**
|
|
138
|
+
* The type of the custom property. Can be one of `string`, `singleSelect`, `multiSelect`, or `trueFalse`. Defaults to `string`.
|
|
139
|
+
*/
|
|
140
|
+
valueType?: pulumi.Input<string>;
|
|
141
|
+
}
|
|
142
|
+
/**
|
|
143
|
+
* The set of arguments for constructing a OrganizationCustomProperties resource.
|
|
144
|
+
*/
|
|
145
|
+
export interface OrganizationCustomPropertiesArgs {
|
|
146
|
+
/**
|
|
147
|
+
* List of allowed values for the custom property. Only applicable when `valueType` is `singleSelect` or `multiSelect`.
|
|
148
|
+
*/
|
|
149
|
+
allowedValues?: pulumi.Input<pulumi.Input<string>[]>;
|
|
150
|
+
/**
|
|
151
|
+
* The default value of the custom property.
|
|
152
|
+
*/
|
|
153
|
+
defaultValue?: pulumi.Input<string>;
|
|
154
|
+
/**
|
|
155
|
+
* The description of the custom property.
|
|
156
|
+
*/
|
|
157
|
+
description?: pulumi.Input<string>;
|
|
158
|
+
/**
|
|
159
|
+
* The name of the custom property.
|
|
160
|
+
*/
|
|
161
|
+
propertyName: pulumi.Input<string>;
|
|
162
|
+
/**
|
|
163
|
+
* Whether the custom property is required. Defaults to `false`.
|
|
164
|
+
*/
|
|
165
|
+
required?: pulumi.Input<boolean>;
|
|
166
|
+
/**
|
|
167
|
+
* The type of the custom property. Can be one of `string`, `singleSelect`, `multiSelect`, or `trueFalse`. Defaults to `string`.
|
|
168
|
+
*/
|
|
169
|
+
valueType?: pulumi.Input<string>;
|
|
170
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.OrganizationCustomProperties = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource allows you to create and manage custom properties for a GitHub organization.
|
|
10
|
+
*
|
|
11
|
+
* Custom properties enable you to add metadata to repositories within your organization. You can use custom properties to add context about repositories, such as who owns them, when they expire, or compliance requirements.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as github from "@pulumi/github";
|
|
18
|
+
*
|
|
19
|
+
* const environment = new github.OrganizationCustomProperties("environment", {
|
|
20
|
+
* propertyName: "environment",
|
|
21
|
+
* valueType: "single_select",
|
|
22
|
+
* required: true,
|
|
23
|
+
* description: "The deployment environment for this repository",
|
|
24
|
+
* defaultValue: "development",
|
|
25
|
+
* allowedValues: [
|
|
26
|
+
* "development",
|
|
27
|
+
* "staging",
|
|
28
|
+
* "production",
|
|
29
|
+
* ],
|
|
30
|
+
* });
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* ### Text Property
|
|
34
|
+
*
|
|
35
|
+
* ```typescript
|
|
36
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
37
|
+
* import * as github from "@pulumi/github";
|
|
38
|
+
*
|
|
39
|
+
* const owner = new github.OrganizationCustomProperties("owner", {
|
|
40
|
+
* propertyName: "owner",
|
|
41
|
+
* valueType: "string",
|
|
42
|
+
* required: true,
|
|
43
|
+
* description: "The team or individual responsible for this repository",
|
|
44
|
+
* });
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* ### Boolean Property
|
|
48
|
+
*
|
|
49
|
+
* ```typescript
|
|
50
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
51
|
+
* import * as github from "@pulumi/github";
|
|
52
|
+
*
|
|
53
|
+
* const archived = new github.OrganizationCustomProperties("archived", {
|
|
54
|
+
* propertyName: "archived",
|
|
55
|
+
* valueType: "true_false",
|
|
56
|
+
* required: false,
|
|
57
|
+
* description: "Whether this repository is archived",
|
|
58
|
+
* defaultValue: "false",
|
|
59
|
+
* });
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* ## Import
|
|
63
|
+
*
|
|
64
|
+
* Organization custom properties can be imported using the property name:
|
|
65
|
+
*
|
|
66
|
+
* ```sh
|
|
67
|
+
* $ pulumi import github:index/organizationCustomProperties:OrganizationCustomProperties environment environment
|
|
68
|
+
* ```
|
|
69
|
+
*/
|
|
70
|
+
class OrganizationCustomProperties extends pulumi.CustomResource {
|
|
71
|
+
/**
|
|
72
|
+
* Get an existing OrganizationCustomProperties resource's state with the given name, ID, and optional extra
|
|
73
|
+
* properties used to qualify the lookup.
|
|
74
|
+
*
|
|
75
|
+
* @param name The _unique_ name of the resulting resource.
|
|
76
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
77
|
+
* @param state Any extra arguments used during the lookup.
|
|
78
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
79
|
+
*/
|
|
80
|
+
static get(name, id, state, opts) {
|
|
81
|
+
return new OrganizationCustomProperties(name, state, { ...opts, id: id });
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Returns true if the given object is an instance of OrganizationCustomProperties. This is designed to work even
|
|
85
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
86
|
+
*/
|
|
87
|
+
static isInstance(obj) {
|
|
88
|
+
if (obj === undefined || obj === null) {
|
|
89
|
+
return false;
|
|
90
|
+
}
|
|
91
|
+
return obj['__pulumiType'] === OrganizationCustomProperties.__pulumiType;
|
|
92
|
+
}
|
|
93
|
+
constructor(name, argsOrState, opts) {
|
|
94
|
+
let resourceInputs = {};
|
|
95
|
+
opts = opts || {};
|
|
96
|
+
if (opts.id) {
|
|
97
|
+
const state = argsOrState;
|
|
98
|
+
resourceInputs["allowedValues"] = state?.allowedValues;
|
|
99
|
+
resourceInputs["defaultValue"] = state?.defaultValue;
|
|
100
|
+
resourceInputs["description"] = state?.description;
|
|
101
|
+
resourceInputs["propertyName"] = state?.propertyName;
|
|
102
|
+
resourceInputs["required"] = state?.required;
|
|
103
|
+
resourceInputs["valueType"] = state?.valueType;
|
|
104
|
+
}
|
|
105
|
+
else {
|
|
106
|
+
const args = argsOrState;
|
|
107
|
+
if (args?.propertyName === undefined && !opts.urn) {
|
|
108
|
+
throw new Error("Missing required property 'propertyName'");
|
|
109
|
+
}
|
|
110
|
+
resourceInputs["allowedValues"] = args?.allowedValues;
|
|
111
|
+
resourceInputs["defaultValue"] = args?.defaultValue;
|
|
112
|
+
resourceInputs["description"] = args?.description;
|
|
113
|
+
resourceInputs["propertyName"] = args?.propertyName;
|
|
114
|
+
resourceInputs["required"] = args?.required;
|
|
115
|
+
resourceInputs["valueType"] = args?.valueType;
|
|
116
|
+
}
|
|
117
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
118
|
+
super(OrganizationCustomProperties.__pulumiType, name, resourceInputs, opts);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
exports.OrganizationCustomProperties = OrganizationCustomProperties;
|
|
122
|
+
/** @internal */
|
|
123
|
+
OrganizationCustomProperties.__pulumiType = 'github:index/organizationCustomProperties:OrganizationCustomProperties';
|
|
124
|
+
//# sourceMappingURL=organizationCustomProperties.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"organizationCustomProperties.js","sourceRoot":"","sources":["../organizationCustomProperties.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6DG;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,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,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;IAmCD,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,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;SAClD;aAAM;YACH,MAAM,IAAI,GAAG,WAA2D,CAAC;YACzE,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;SACjD;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;;AAtFL,oEAuFC;AAzEG,gBAAgB;AACO,yCAAY,GAAG,wEAAwE,CAAC"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* > **Note:** This resource is deprecated, please use the `githubOrganizationrepositoryRole` resource instead.
|
|
4
|
+
*
|
|
3
5
|
* This resource allows you to create and manage custom roles in a GitHub Organization for use in repositories.
|
|
4
6
|
*
|
|
5
7
|
* > Note: Custom roles are currently only available in GitHub Enterprise Cloud.
|
|
@@ -6,6 +6,8 @@ exports.OrganizationCustomRole = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* > **Note:** This resource is deprecated, please use the `githubOrganizationrepositoryRole` resource instead.
|
|
10
|
+
*
|
|
9
11
|
* This resource allows you to create and manage custom roles in a GitHub Organization for use in repositories.
|
|
10
12
|
*
|
|
11
13
|
* > Note: Custom roles are currently only available in GitHub Enterprise Cloud.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizationCustomRole.js","sourceRoot":"","sources":["../organizationCustomRole.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"organizationCustomRole.js","sourceRoot":"","sources":["../organizationCustomRole.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,MAAa,sBAAuB,SAAQ,MAAM,CAAC,cAAc;IAC7D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmC,EAAE,IAAmC;QACjI,OAAO,IAAI,sBAAsB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC7E,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,sBAAsB,CAAC,YAAY,CAAC;IACvE,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAsE,EAAE,IAAmC;QACjI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsD,CAAC;YACrE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;SACtD;aAAM;YACH,MAAM,IAAI,GAAG,WAAqD,CAAC;YACnE,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,sBAAsB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3E,CAAC;;AA7EL,wDA8EC;AAhEG,gBAAgB;AACO,mCAAY,GAAG,4DAA4D,CAAC"}
|
package/organizationProject.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* !> **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
4
|
+
*
|
|
3
5
|
* This resource allows you to create and manage projects for GitHub organization.
|
|
4
6
|
*
|
|
5
7
|
* ## Example Usage
|
package/organizationProject.js
CHANGED
|
@@ -6,6 +6,8 @@ exports.OrganizationProject = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* !> **Warning:** This resource no longer works as the [Projects (classic) REST API](https://docs.github.com/en/rest/projects/projects?apiVersion=2022-11-28) has been [removed](https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/) and as such has been deprecated. It will be removed in a future release.
|
|
10
|
+
*
|
|
9
11
|
* This resource allows you to create and manage projects for GitHub organization.
|
|
10
12
|
*
|
|
11
13
|
* ## Example Usage
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizationProject.js","sourceRoot":"","sources":["../organizationProject.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"organizationProject.js","sourceRoot":"","sources":["../organizationProject.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAa,mBAAoB,SAAQ,MAAM,CAAC,cAAc;IAC1D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgC,EAAE,IAAmC;QAC9H,OAAO,IAAI,mBAAmB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC1E,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,mBAAmB,CAAC,YAAY,CAAC;IACpE,CAAC;IAwBD,YAAY,IAAY,EAAE,WAAgE,EAAE,IAAmC;QAC3H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmD,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,GAAG,CAAC;SACtC;aAAM;YACH,MAAM,IAAI,GAAG,WAAkD,CAAC;YAChE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC3C,cAAc,CAAC,KAAK,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC7C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACxE,CAAC;;AApEL,kDAqEC;AAvDG,gBAAgB;AACO,gCAAY,GAAG,sDAAsD,CAAC"}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Manage a custom organization repository role.
|
|
4
|
+
*
|
|
5
|
+
* > **Note**: Custom organization repository roles are currently only available in GitHub Enterprise Cloud.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as github from "@pulumi/github";
|
|
12
|
+
*
|
|
13
|
+
* const example = new github.OrganizationRepositoryRole("example", {
|
|
14
|
+
* name: "example",
|
|
15
|
+
* baseRole: "read",
|
|
16
|
+
* permissions: [
|
|
17
|
+
* "add_assignee",
|
|
18
|
+
* "add_label",
|
|
19
|
+
* ],
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* ## Import
|
|
24
|
+
*
|
|
25
|
+
* A custom organization repository role can be imported using its ID.
|
|
26
|
+
*
|
|
27
|
+
* ```sh
|
|
28
|
+
* $ pulumi import github:index/organizationRepositoryRole:OrganizationRepositoryRole example 1234
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
export declare class OrganizationRepositoryRole extends pulumi.CustomResource {
|
|
32
|
+
/**
|
|
33
|
+
* Get an existing OrganizationRepositoryRole resource's state with the given name, ID, and optional extra
|
|
34
|
+
* properties used to qualify the lookup.
|
|
35
|
+
*
|
|
36
|
+
* @param name The _unique_ name of the resulting resource.
|
|
37
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
38
|
+
* @param state Any extra arguments used during the lookup.
|
|
39
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
40
|
+
*/
|
|
41
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OrganizationRepositoryRoleState, opts?: pulumi.CustomResourceOptions): OrganizationRepositoryRole;
|
|
42
|
+
/**
|
|
43
|
+
* Returns true if the given object is an instance of OrganizationRepositoryRole. This is designed to work even
|
|
44
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
45
|
+
*/
|
|
46
|
+
static isInstance(obj: any): obj is OrganizationRepositoryRole;
|
|
47
|
+
/**
|
|
48
|
+
* The system role from which this role inherits permissions.
|
|
49
|
+
*/
|
|
50
|
+
readonly baseRole: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* The description of the organization repository role.
|
|
53
|
+
*/
|
|
54
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
55
|
+
/**
|
|
56
|
+
* The name of the organization repository role.
|
|
57
|
+
*/
|
|
58
|
+
readonly name: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The permissions included in this role.
|
|
61
|
+
*/
|
|
62
|
+
readonly permissions: pulumi.Output<string[]>;
|
|
63
|
+
/**
|
|
64
|
+
* The ID of the organization repository role.
|
|
65
|
+
*/
|
|
66
|
+
readonly roleId: pulumi.Output<number>;
|
|
67
|
+
/**
|
|
68
|
+
* Create a OrganizationRepositoryRole resource with the given unique name, arguments, and options.
|
|
69
|
+
*
|
|
70
|
+
* @param name The _unique_ name of the resource.
|
|
71
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
72
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
73
|
+
*/
|
|
74
|
+
constructor(name: string, args: OrganizationRepositoryRoleArgs, opts?: pulumi.CustomResourceOptions);
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* Input properties used for looking up and filtering OrganizationRepositoryRole resources.
|
|
78
|
+
*/
|
|
79
|
+
export interface OrganizationRepositoryRoleState {
|
|
80
|
+
/**
|
|
81
|
+
* The system role from which this role inherits permissions.
|
|
82
|
+
*/
|
|
83
|
+
baseRole?: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* The description of the organization repository role.
|
|
86
|
+
*/
|
|
87
|
+
description?: pulumi.Input<string>;
|
|
88
|
+
/**
|
|
89
|
+
* The name of the organization repository role.
|
|
90
|
+
*/
|
|
91
|
+
name?: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* The permissions included in this role.
|
|
94
|
+
*/
|
|
95
|
+
permissions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
96
|
+
/**
|
|
97
|
+
* The ID of the organization repository role.
|
|
98
|
+
*/
|
|
99
|
+
roleId?: pulumi.Input<number>;
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* The set of arguments for constructing a OrganizationRepositoryRole resource.
|
|
103
|
+
*/
|
|
104
|
+
export interface OrganizationRepositoryRoleArgs {
|
|
105
|
+
/**
|
|
106
|
+
* The system role from which this role inherits permissions.
|
|
107
|
+
*/
|
|
108
|
+
baseRole: pulumi.Input<string>;
|
|
109
|
+
/**
|
|
110
|
+
* The description of the organization repository role.
|
|
111
|
+
*/
|
|
112
|
+
description?: pulumi.Input<string>;
|
|
113
|
+
/**
|
|
114
|
+
* The name of the organization repository role.
|
|
115
|
+
*/
|
|
116
|
+
name?: pulumi.Input<string>;
|
|
117
|
+
/**
|
|
118
|
+
* The permissions included in this role.
|
|
119
|
+
*/
|
|
120
|
+
permissions: pulumi.Input<pulumi.Input<string>[]>;
|
|
121
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.OrganizationRepositoryRole = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manage a custom organization repository role.
|
|
10
|
+
*
|
|
11
|
+
* > **Note**: Custom organization repository roles are currently only available in GitHub Enterprise Cloud.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as github from "@pulumi/github";
|
|
18
|
+
*
|
|
19
|
+
* const example = new github.OrganizationRepositoryRole("example", {
|
|
20
|
+
* name: "example",
|
|
21
|
+
* baseRole: "read",
|
|
22
|
+
* permissions: [
|
|
23
|
+
* "add_assignee",
|
|
24
|
+
* "add_label",
|
|
25
|
+
* ],
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* ## Import
|
|
30
|
+
*
|
|
31
|
+
* A custom organization repository role can be imported using its ID.
|
|
32
|
+
*
|
|
33
|
+
* ```sh
|
|
34
|
+
* $ pulumi import github:index/organizationRepositoryRole:OrganizationRepositoryRole example 1234
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
class OrganizationRepositoryRole extends pulumi.CustomResource {
|
|
38
|
+
/**
|
|
39
|
+
* Get an existing OrganizationRepositoryRole resource's state with the given name, ID, and optional extra
|
|
40
|
+
* properties used to qualify the lookup.
|
|
41
|
+
*
|
|
42
|
+
* @param name The _unique_ name of the resulting resource.
|
|
43
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
44
|
+
* @param state Any extra arguments used during the lookup.
|
|
45
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
46
|
+
*/
|
|
47
|
+
static get(name, id, state, opts) {
|
|
48
|
+
return new OrganizationRepositoryRole(name, state, { ...opts, id: id });
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Returns true if the given object is an instance of OrganizationRepositoryRole. This is designed to work even
|
|
52
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
53
|
+
*/
|
|
54
|
+
static isInstance(obj) {
|
|
55
|
+
if (obj === undefined || obj === null) {
|
|
56
|
+
return false;
|
|
57
|
+
}
|
|
58
|
+
return obj['__pulumiType'] === OrganizationRepositoryRole.__pulumiType;
|
|
59
|
+
}
|
|
60
|
+
constructor(name, argsOrState, opts) {
|
|
61
|
+
let resourceInputs = {};
|
|
62
|
+
opts = opts || {};
|
|
63
|
+
if (opts.id) {
|
|
64
|
+
const state = argsOrState;
|
|
65
|
+
resourceInputs["baseRole"] = state?.baseRole;
|
|
66
|
+
resourceInputs["description"] = state?.description;
|
|
67
|
+
resourceInputs["name"] = state?.name;
|
|
68
|
+
resourceInputs["permissions"] = state?.permissions;
|
|
69
|
+
resourceInputs["roleId"] = state?.roleId;
|
|
70
|
+
}
|
|
71
|
+
else {
|
|
72
|
+
const args = argsOrState;
|
|
73
|
+
if (args?.baseRole === undefined && !opts.urn) {
|
|
74
|
+
throw new Error("Missing required property 'baseRole'");
|
|
75
|
+
}
|
|
76
|
+
if (args?.permissions === undefined && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'permissions'");
|
|
78
|
+
}
|
|
79
|
+
resourceInputs["baseRole"] = args?.baseRole;
|
|
80
|
+
resourceInputs["description"] = args?.description;
|
|
81
|
+
resourceInputs["name"] = args?.name;
|
|
82
|
+
resourceInputs["permissions"] = args?.permissions;
|
|
83
|
+
resourceInputs["roleId"] = undefined /*out*/;
|
|
84
|
+
}
|
|
85
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
86
|
+
super(OrganizationRepositoryRole.__pulumiType, name, resourceInputs, opts);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.OrganizationRepositoryRole = OrganizationRepositoryRole;
|
|
90
|
+
/** @internal */
|
|
91
|
+
OrganizationRepositoryRole.__pulumiType = 'github:index/organizationRepositoryRole:OrganizationRepositoryRole';
|
|
92
|
+
//# sourceMappingURL=organizationRepositoryRole.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"organizationRepositoryRole.js","sourceRoot":"","sources":["../organizationRepositoryRole.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACjF,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,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;IA+BD,YAAY,IAAY,EAAE,WAA8E,EAAE,IAAmC;QACzI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0D,CAAC;YACzE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAAyD,CAAC;YACvE,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,IAAI,EAAE,WAAW,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9C,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,0BAA0B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;;AAnFL,gEAoFC;AAtEG,gBAAgB;AACO,uCAAY,GAAG,oEAAoE,CAAC"}
|