@pulumi/github 4.12.0-alpha.1650908580 → 4.13.0-alpha.1654079678

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.
@@ -0,0 +1,55 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare class DependabotOrganizationSecret extends pulumi.CustomResource {
3
+ /**
4
+ * Get an existing DependabotOrganizationSecret resource's state with the given name, ID, and optional extra
5
+ * properties used to qualify the lookup.
6
+ *
7
+ * @param name The _unique_ name of the resulting resource.
8
+ * @param id The _unique_ provider ID of the resource to lookup.
9
+ * @param state Any extra arguments used during the lookup.
10
+ * @param opts Optional settings to control the behavior of the CustomResource.
11
+ */
12
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DependabotOrganizationSecretState, opts?: pulumi.CustomResourceOptions): DependabotOrganizationSecret;
13
+ /**
14
+ * Returns true if the given object is an instance of DependabotOrganizationSecret. This is designed to work even
15
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
16
+ */
17
+ static isInstance(obj: any): obj is DependabotOrganizationSecret;
18
+ readonly createdAt: pulumi.Output<string>;
19
+ readonly encryptedValue: pulumi.Output<string | undefined>;
20
+ readonly plaintextValue: pulumi.Output<string | undefined>;
21
+ readonly secretName: pulumi.Output<string>;
22
+ readonly selectedRepositoryIds: pulumi.Output<number[] | undefined>;
23
+ readonly updatedAt: pulumi.Output<string>;
24
+ readonly visibility: pulumi.Output<string>;
25
+ /**
26
+ * Create a DependabotOrganizationSecret resource with the given unique name, arguments, and options.
27
+ *
28
+ * @param name The _unique_ name of the resource.
29
+ * @param args The arguments to use to populate this resource's properties.
30
+ * @param opts A bag of options that control this resource's behavior.
31
+ */
32
+ constructor(name: string, args: DependabotOrganizationSecretArgs, opts?: pulumi.CustomResourceOptions);
33
+ }
34
+ /**
35
+ * Input properties used for looking up and filtering DependabotOrganizationSecret resources.
36
+ */
37
+ export interface DependabotOrganizationSecretState {
38
+ createdAt?: pulumi.Input<string>;
39
+ encryptedValue?: pulumi.Input<string>;
40
+ plaintextValue?: pulumi.Input<string>;
41
+ secretName?: pulumi.Input<string>;
42
+ selectedRepositoryIds?: pulumi.Input<pulumi.Input<number>[]>;
43
+ updatedAt?: pulumi.Input<string>;
44
+ visibility?: pulumi.Input<string>;
45
+ }
46
+ /**
47
+ * The set of arguments for constructing a DependabotOrganizationSecret resource.
48
+ */
49
+ export interface DependabotOrganizationSecretArgs {
50
+ encryptedValue?: pulumi.Input<string>;
51
+ plaintextValue?: pulumi.Input<string>;
52
+ secretName: pulumi.Input<string>;
53
+ selectedRepositoryIds?: pulumi.Input<pulumi.Input<number>[]>;
54
+ visibility: pulumi.Input<string>;
55
+ }
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.DependabotOrganizationSecret = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class DependabotOrganizationSecret extends pulumi.CustomResource {
9
+ constructor(name, argsOrState, opts) {
10
+ let resourceInputs = {};
11
+ opts = opts || {};
12
+ if (opts.id) {
13
+ const state = argsOrState;
14
+ resourceInputs["createdAt"] = state ? state.createdAt : undefined;
15
+ resourceInputs["encryptedValue"] = state ? state.encryptedValue : undefined;
16
+ resourceInputs["plaintextValue"] = state ? state.plaintextValue : undefined;
17
+ resourceInputs["secretName"] = state ? state.secretName : undefined;
18
+ resourceInputs["selectedRepositoryIds"] = state ? state.selectedRepositoryIds : undefined;
19
+ resourceInputs["updatedAt"] = state ? state.updatedAt : undefined;
20
+ resourceInputs["visibility"] = state ? state.visibility : undefined;
21
+ }
22
+ else {
23
+ const args = argsOrState;
24
+ if ((!args || args.secretName === undefined) && !opts.urn) {
25
+ throw new Error("Missing required property 'secretName'");
26
+ }
27
+ if ((!args || args.visibility === undefined) && !opts.urn) {
28
+ throw new Error("Missing required property 'visibility'");
29
+ }
30
+ resourceInputs["encryptedValue"] = args ? args.encryptedValue : undefined;
31
+ resourceInputs["plaintextValue"] = args ? args.plaintextValue : undefined;
32
+ resourceInputs["secretName"] = args ? args.secretName : undefined;
33
+ resourceInputs["selectedRepositoryIds"] = args ? args.selectedRepositoryIds : undefined;
34
+ resourceInputs["visibility"] = args ? args.visibility : undefined;
35
+ resourceInputs["createdAt"] = undefined /*out*/;
36
+ resourceInputs["updatedAt"] = undefined /*out*/;
37
+ }
38
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
39
+ super(DependabotOrganizationSecret.__pulumiType, name, resourceInputs, opts);
40
+ }
41
+ /**
42
+ * Get an existing DependabotOrganizationSecret resource's state with the given name, ID, and optional extra
43
+ * properties used to qualify the lookup.
44
+ *
45
+ * @param name The _unique_ name of the resulting resource.
46
+ * @param id The _unique_ provider ID of the resource to lookup.
47
+ * @param state Any extra arguments used during the lookup.
48
+ * @param opts Optional settings to control the behavior of the CustomResource.
49
+ */
50
+ static get(name, id, state, opts) {
51
+ return new DependabotOrganizationSecret(name, state, Object.assign(Object.assign({}, opts), { id: id }));
52
+ }
53
+ /**
54
+ * Returns true if the given object is an instance of DependabotOrganizationSecret. This is designed to work even
55
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
56
+ */
57
+ static isInstance(obj) {
58
+ if (obj === undefined || obj === null) {
59
+ return false;
60
+ }
61
+ return obj['__pulumiType'] === DependabotOrganizationSecret.__pulumiType;
62
+ }
63
+ }
64
+ exports.DependabotOrganizationSecret = DependabotOrganizationSecret;
65
+ /** @internal */
66
+ DependabotOrganizationSecret.__pulumiType = 'github:index/dependabotOrganizationSecret:DependabotOrganizationSecret';
67
+ //# sourceMappingURL=dependabotOrganizationSecret.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dependabotOrganizationSecret.js","sourceRoot":"","sources":["../dependabotOrganizationSecret.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,42 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare class DependabotOrganizationSecretRepositories extends pulumi.CustomResource {
3
+ /**
4
+ * Get an existing DependabotOrganizationSecretRepositories resource's state with the given name, ID, and optional extra
5
+ * properties used to qualify the lookup.
6
+ *
7
+ * @param name The _unique_ name of the resulting resource.
8
+ * @param id The _unique_ provider ID of the resource to lookup.
9
+ * @param state Any extra arguments used during the lookup.
10
+ * @param opts Optional settings to control the behavior of the CustomResource.
11
+ */
12
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DependabotOrganizationSecretRepositoriesState, opts?: pulumi.CustomResourceOptions): DependabotOrganizationSecretRepositories;
13
+ /**
14
+ * Returns true if the given object is an instance of DependabotOrganizationSecretRepositories. This is designed to work even
15
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
16
+ */
17
+ static isInstance(obj: any): obj is DependabotOrganizationSecretRepositories;
18
+ readonly secretName: pulumi.Output<string>;
19
+ readonly selectedRepositoryIds: pulumi.Output<number[]>;
20
+ /**
21
+ * Create a DependabotOrganizationSecretRepositories resource with the given unique name, arguments, and options.
22
+ *
23
+ * @param name The _unique_ name of the resource.
24
+ * @param args The arguments to use to populate this resource's properties.
25
+ * @param opts A bag of options that control this resource's behavior.
26
+ */
27
+ constructor(name: string, args: DependabotOrganizationSecretRepositoriesArgs, opts?: pulumi.CustomResourceOptions);
28
+ }
29
+ /**
30
+ * Input properties used for looking up and filtering DependabotOrganizationSecretRepositories resources.
31
+ */
32
+ export interface DependabotOrganizationSecretRepositoriesState {
33
+ secretName?: pulumi.Input<string>;
34
+ selectedRepositoryIds?: pulumi.Input<pulumi.Input<number>[]>;
35
+ }
36
+ /**
37
+ * The set of arguments for constructing a DependabotOrganizationSecretRepositories resource.
38
+ */
39
+ export interface DependabotOrganizationSecretRepositoriesArgs {
40
+ secretName: pulumi.Input<string>;
41
+ selectedRepositoryIds: pulumi.Input<pulumi.Input<number>[]>;
42
+ }
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.DependabotOrganizationSecretRepositories = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class DependabotOrganizationSecretRepositories extends pulumi.CustomResource {
9
+ constructor(name, argsOrState, opts) {
10
+ let resourceInputs = {};
11
+ opts = opts || {};
12
+ if (opts.id) {
13
+ const state = argsOrState;
14
+ resourceInputs["secretName"] = state ? state.secretName : undefined;
15
+ resourceInputs["selectedRepositoryIds"] = state ? state.selectedRepositoryIds : undefined;
16
+ }
17
+ else {
18
+ const args = argsOrState;
19
+ if ((!args || args.secretName === undefined) && !opts.urn) {
20
+ throw new Error("Missing required property 'secretName'");
21
+ }
22
+ if ((!args || args.selectedRepositoryIds === undefined) && !opts.urn) {
23
+ throw new Error("Missing required property 'selectedRepositoryIds'");
24
+ }
25
+ resourceInputs["secretName"] = args ? args.secretName : undefined;
26
+ resourceInputs["selectedRepositoryIds"] = args ? args.selectedRepositoryIds : undefined;
27
+ }
28
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
29
+ super(DependabotOrganizationSecretRepositories.__pulumiType, name, resourceInputs, opts);
30
+ }
31
+ /**
32
+ * Get an existing DependabotOrganizationSecretRepositories resource's state with the given name, ID, and optional extra
33
+ * properties used to qualify the lookup.
34
+ *
35
+ * @param name The _unique_ name of the resulting resource.
36
+ * @param id The _unique_ provider ID of the resource to lookup.
37
+ * @param state Any extra arguments used during the lookup.
38
+ * @param opts Optional settings to control the behavior of the CustomResource.
39
+ */
40
+ static get(name, id, state, opts) {
41
+ return new DependabotOrganizationSecretRepositories(name, state, Object.assign(Object.assign({}, opts), { id: id }));
42
+ }
43
+ /**
44
+ * Returns true if the given object is an instance of DependabotOrganizationSecretRepositories. This is designed to work even
45
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
46
+ */
47
+ static isInstance(obj) {
48
+ if (obj === undefined || obj === null) {
49
+ return false;
50
+ }
51
+ return obj['__pulumiType'] === DependabotOrganizationSecretRepositories.__pulumiType;
52
+ }
53
+ }
54
+ exports.DependabotOrganizationSecretRepositories = DependabotOrganizationSecretRepositories;
55
+ /** @internal */
56
+ DependabotOrganizationSecretRepositories.__pulumiType = 'github:index/dependabotOrganizationSecretRepositories:DependabotOrganizationSecretRepositories';
57
+ //# sourceMappingURL=dependabotOrganizationSecretRepositories.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dependabotOrganizationSecretRepositories.js","sourceRoot":"","sources":["../dependabotOrganizationSecretRepositories.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,MAAa,wCAAyC,SAAQ,MAAM,CAAC,cAAc;IAuC/E,YAAY,IAAY,EAAE,WAA0G,EAAE,IAAmC;QACrK,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAwE,CAAC;YACvF,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7F;aAAM;YACH,MAAM,IAAI,GAAG,WAAuE,CAAC;YACrF,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,qBAAqB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClE,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;aACxE;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3F;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,wCAAwC,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC7F,CAAC;IA1DD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqD,EAAE,IAAmC;QACnJ,OAAO,IAAI,wCAAwC,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/F,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,wCAAwC,CAAC,YAAY,CAAC;IACzF,CAAC;;AA1BL,4FA4DC;AA9CG,gBAAgB;AACO,qDAAY,GAAG,gGAAgG,CAAC"}
@@ -0,0 +1,52 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare class DependabotSecret extends pulumi.CustomResource {
3
+ /**
4
+ * Get an existing DependabotSecret resource's state with the given name, ID, and optional extra
5
+ * properties used to qualify the lookup.
6
+ *
7
+ * @param name The _unique_ name of the resulting resource.
8
+ * @param id The _unique_ provider ID of the resource to lookup.
9
+ * @param state Any extra arguments used during the lookup.
10
+ * @param opts Optional settings to control the behavior of the CustomResource.
11
+ */
12
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DependabotSecretState, opts?: pulumi.CustomResourceOptions): DependabotSecret;
13
+ /**
14
+ * Returns true if the given object is an instance of DependabotSecret. This is designed to work even
15
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
16
+ */
17
+ static isInstance(obj: any): obj is DependabotSecret;
18
+ readonly createdAt: pulumi.Output<string>;
19
+ readonly encryptedValue: pulumi.Output<string | undefined>;
20
+ readonly plaintextValue: pulumi.Output<string | undefined>;
21
+ readonly repository: pulumi.Output<string>;
22
+ readonly secretName: pulumi.Output<string>;
23
+ readonly updatedAt: pulumi.Output<string>;
24
+ /**
25
+ * Create a DependabotSecret resource with the given unique name, arguments, and options.
26
+ *
27
+ * @param name The _unique_ name of the resource.
28
+ * @param args The arguments to use to populate this resource's properties.
29
+ * @param opts A bag of options that control this resource's behavior.
30
+ */
31
+ constructor(name: string, args: DependabotSecretArgs, opts?: pulumi.CustomResourceOptions);
32
+ }
33
+ /**
34
+ * Input properties used for looking up and filtering DependabotSecret resources.
35
+ */
36
+ export interface DependabotSecretState {
37
+ createdAt?: pulumi.Input<string>;
38
+ encryptedValue?: pulumi.Input<string>;
39
+ plaintextValue?: pulumi.Input<string>;
40
+ repository?: pulumi.Input<string>;
41
+ secretName?: pulumi.Input<string>;
42
+ updatedAt?: pulumi.Input<string>;
43
+ }
44
+ /**
45
+ * The set of arguments for constructing a DependabotSecret resource.
46
+ */
47
+ export interface DependabotSecretArgs {
48
+ encryptedValue?: pulumi.Input<string>;
49
+ plaintextValue?: pulumi.Input<string>;
50
+ repository: pulumi.Input<string>;
51
+ secretName: pulumi.Input<string>;
52
+ }
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.DependabotSecret = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class DependabotSecret extends pulumi.CustomResource {
9
+ constructor(name, argsOrState, opts) {
10
+ let resourceInputs = {};
11
+ opts = opts || {};
12
+ if (opts.id) {
13
+ const state = argsOrState;
14
+ resourceInputs["createdAt"] = state ? state.createdAt : undefined;
15
+ resourceInputs["encryptedValue"] = state ? state.encryptedValue : undefined;
16
+ resourceInputs["plaintextValue"] = state ? state.plaintextValue : undefined;
17
+ resourceInputs["repository"] = state ? state.repository : undefined;
18
+ resourceInputs["secretName"] = state ? state.secretName : undefined;
19
+ resourceInputs["updatedAt"] = state ? state.updatedAt : undefined;
20
+ }
21
+ else {
22
+ const args = argsOrState;
23
+ if ((!args || args.repository === undefined) && !opts.urn) {
24
+ throw new Error("Missing required property 'repository'");
25
+ }
26
+ if ((!args || args.secretName === undefined) && !opts.urn) {
27
+ throw new Error("Missing required property 'secretName'");
28
+ }
29
+ resourceInputs["encryptedValue"] = args ? args.encryptedValue : undefined;
30
+ resourceInputs["plaintextValue"] = args ? args.plaintextValue : undefined;
31
+ resourceInputs["repository"] = args ? args.repository : undefined;
32
+ resourceInputs["secretName"] = args ? args.secretName : undefined;
33
+ resourceInputs["createdAt"] = undefined /*out*/;
34
+ resourceInputs["updatedAt"] = undefined /*out*/;
35
+ }
36
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
37
+ super(DependabotSecret.__pulumiType, name, resourceInputs, opts);
38
+ }
39
+ /**
40
+ * Get an existing DependabotSecret resource's state with the given name, ID, and optional extra
41
+ * properties used to qualify the lookup.
42
+ *
43
+ * @param name The _unique_ name of the resulting resource.
44
+ * @param id The _unique_ provider ID of the resource to lookup.
45
+ * @param state Any extra arguments used during the lookup.
46
+ * @param opts Optional settings to control the behavior of the CustomResource.
47
+ */
48
+ static get(name, id, state, opts) {
49
+ return new DependabotSecret(name, state, Object.assign(Object.assign({}, opts), { id: id }));
50
+ }
51
+ /**
52
+ * Returns true if the given object is an instance of DependabotSecret. This is designed to work even
53
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
54
+ */
55
+ static isInstance(obj) {
56
+ if (obj === undefined || obj === null) {
57
+ return false;
58
+ }
59
+ return obj['__pulumiType'] === DependabotSecret.__pulumiType;
60
+ }
61
+ }
62
+ exports.DependabotSecret = DependabotSecret;
63
+ /** @internal */
64
+ DependabotSecret.__pulumiType = 'github:index/dependabotSecret:DependabotSecret';
65
+ //# sourceMappingURL=dependabotSecret.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dependabotSecret.js","sourceRoot":"","sources":["../dependabotSecret.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,85 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * This resource manages mappings between external groups for enterprise managed users and GitHub teams. It wraps the API detailed [here](https://docs.github.com/en/rest/reference/teams#external-groups). Note that this is a distinct resource from `github.TeamSyncGroupMapping`. `github.EmuGroupMapping` is special to the Enterprise Managed User (EMU) external group feature, whereas `github.TeamSyncGroupMapping` is specific to Identity Provider Groups.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as github from "@pulumi/github";
10
+ *
11
+ * const exampleEmuGroupMapping = new github.EmuGroupMapping("example_emu_group_mapping", {
12
+ * groupId: 28836, // The group ID of the external group to link
13
+ * teamSlug: "emu-test-team", // The GitHub team name to modify
14
+ * });
15
+ * ```
16
+ *
17
+ * ## Import
18
+ *
19
+ * GitHub EMU External Group Mappings can be imported using the external `group_id`, e.g.
20
+ *
21
+ * ```sh
22
+ * $ pulumi import github:index/emuGroupMapping:EmuGroupMapping example_emu_group_mapping 28836
23
+ * ```
24
+ */
25
+ export declare class EmuGroupMapping extends pulumi.CustomResource {
26
+ /**
27
+ * Get an existing EmuGroupMapping resource's state with the given name, ID, and optional extra
28
+ * properties used to qualify the lookup.
29
+ *
30
+ * @param name The _unique_ name of the resulting resource.
31
+ * @param id The _unique_ provider ID of the resource to lookup.
32
+ * @param state Any extra arguments used during the lookup.
33
+ * @param opts Optional settings to control the behavior of the CustomResource.
34
+ */
35
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: EmuGroupMappingState, opts?: pulumi.CustomResourceOptions): EmuGroupMapping;
36
+ /**
37
+ * Returns true if the given object is an instance of EmuGroupMapping. This is designed to work even
38
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
39
+ */
40
+ static isInstance(obj: any): obj is EmuGroupMapping;
41
+ readonly etag: pulumi.Output<string>;
42
+ /**
43
+ * Integer corresponding to the external group ID to be linked
44
+ */
45
+ readonly groupId: pulumi.Output<number>;
46
+ /**
47
+ * Slug of the GitHub team
48
+ */
49
+ readonly teamSlug: pulumi.Output<string>;
50
+ /**
51
+ * Create a EmuGroupMapping resource with the given unique name, arguments, and options.
52
+ *
53
+ * @param name The _unique_ name of the resource.
54
+ * @param args The arguments to use to populate this resource's properties.
55
+ * @param opts A bag of options that control this resource's behavior.
56
+ */
57
+ constructor(name: string, args: EmuGroupMappingArgs, opts?: pulumi.CustomResourceOptions);
58
+ }
59
+ /**
60
+ * Input properties used for looking up and filtering EmuGroupMapping resources.
61
+ */
62
+ export interface EmuGroupMappingState {
63
+ etag?: pulumi.Input<string>;
64
+ /**
65
+ * Integer corresponding to the external group ID to be linked
66
+ */
67
+ groupId?: pulumi.Input<number>;
68
+ /**
69
+ * Slug of the GitHub team
70
+ */
71
+ teamSlug?: pulumi.Input<string>;
72
+ }
73
+ /**
74
+ * The set of arguments for constructing a EmuGroupMapping resource.
75
+ */
76
+ export interface EmuGroupMappingArgs {
77
+ /**
78
+ * Integer corresponding to the external group ID to be linked
79
+ */
80
+ groupId: pulumi.Input<number>;
81
+ /**
82
+ * Slug of the GitHub team
83
+ */
84
+ teamSlug: pulumi.Input<string>;
85
+ }
@@ -0,0 +1,82 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.EmuGroupMapping = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * This resource manages mappings between external groups for enterprise managed users and GitHub teams. It wraps the API detailed [here](https://docs.github.com/en/rest/reference/teams#external-groups). Note that this is a distinct resource from `github.TeamSyncGroupMapping`. `github.EmuGroupMapping` is special to the Enterprise Managed User (EMU) external group feature, whereas `github.TeamSyncGroupMapping` is specific to Identity Provider Groups.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as github from "@pulumi/github";
16
+ *
17
+ * const exampleEmuGroupMapping = new github.EmuGroupMapping("example_emu_group_mapping", {
18
+ * groupId: 28836, // The group ID of the external group to link
19
+ * teamSlug: "emu-test-team", // The GitHub team name to modify
20
+ * });
21
+ * ```
22
+ *
23
+ * ## Import
24
+ *
25
+ * GitHub EMU External Group Mappings can be imported using the external `group_id`, e.g.
26
+ *
27
+ * ```sh
28
+ * $ pulumi import github:index/emuGroupMapping:EmuGroupMapping example_emu_group_mapping 28836
29
+ * ```
30
+ */
31
+ class EmuGroupMapping extends pulumi.CustomResource {
32
+ constructor(name, argsOrState, opts) {
33
+ let resourceInputs = {};
34
+ opts = opts || {};
35
+ if (opts.id) {
36
+ const state = argsOrState;
37
+ resourceInputs["etag"] = state ? state.etag : undefined;
38
+ resourceInputs["groupId"] = state ? state.groupId : undefined;
39
+ resourceInputs["teamSlug"] = state ? state.teamSlug : undefined;
40
+ }
41
+ else {
42
+ const args = argsOrState;
43
+ if ((!args || args.groupId === undefined) && !opts.urn) {
44
+ throw new Error("Missing required property 'groupId'");
45
+ }
46
+ if ((!args || args.teamSlug === undefined) && !opts.urn) {
47
+ throw new Error("Missing required property 'teamSlug'");
48
+ }
49
+ resourceInputs["groupId"] = args ? args.groupId : undefined;
50
+ resourceInputs["teamSlug"] = args ? args.teamSlug : undefined;
51
+ resourceInputs["etag"] = undefined /*out*/;
52
+ }
53
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
54
+ super(EmuGroupMapping.__pulumiType, name, resourceInputs, opts);
55
+ }
56
+ /**
57
+ * Get an existing EmuGroupMapping resource's state with the given name, ID, and optional extra
58
+ * properties used to qualify the lookup.
59
+ *
60
+ * @param name The _unique_ name of the resulting resource.
61
+ * @param id The _unique_ provider ID of the resource to lookup.
62
+ * @param state Any extra arguments used during the lookup.
63
+ * @param opts Optional settings to control the behavior of the CustomResource.
64
+ */
65
+ static get(name, id, state, opts) {
66
+ return new EmuGroupMapping(name, state, Object.assign(Object.assign({}, opts), { id: id }));
67
+ }
68
+ /**
69
+ * Returns true if the given object is an instance of EmuGroupMapping. This is designed to work even
70
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
71
+ */
72
+ static isInstance(obj) {
73
+ if (obj === undefined || obj === null) {
74
+ return false;
75
+ }
76
+ return obj['__pulumiType'] === EmuGroupMapping.__pulumiType;
77
+ }
78
+ }
79
+ exports.EmuGroupMapping = EmuGroupMapping;
80
+ /** @internal */
81
+ EmuGroupMapping.__pulumiType = 'github:index/emuGroupMapping:EmuGroupMapping';
82
+ //# sourceMappingURL=emuGroupMapping.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"emuGroupMapping.js","sourceRoot":"","sources":["../emuGroupMapping.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IA8CtD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;IAnED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;;AA1BL,0CAqEC;AAvDG,gBAAgB;AACO,4BAAY,GAAG,8CAA8C,CAAC"}
@@ -0,0 +1,27 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare function getDependabotPublicKey(args: GetDependabotPublicKeyArgs, opts?: pulumi.InvokeOptions): Promise<GetDependabotPublicKeyResult>;
3
+ /**
4
+ * A collection of arguments for invoking getDependabotPublicKey.
5
+ */
6
+ export interface GetDependabotPublicKeyArgs {
7
+ repository: string;
8
+ }
9
+ /**
10
+ * A collection of values returned by getDependabotPublicKey.
11
+ */
12
+ export interface GetDependabotPublicKeyResult {
13
+ /**
14
+ * The provider-assigned unique ID for this managed resource.
15
+ */
16
+ readonly id: string;
17
+ readonly key: string;
18
+ readonly keyId: string;
19
+ readonly repository: string;
20
+ }
21
+ export declare function getDependabotPublicKeyOutput(args: GetDependabotPublicKeyOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDependabotPublicKeyResult>;
22
+ /**
23
+ * A collection of arguments for invoking getDependabotPublicKey.
24
+ */
25
+ export interface GetDependabotPublicKeyOutputArgs {
26
+ repository: pulumi.Input<string>;
27
+ }
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
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.getDependabotPublicKeyOutput = exports.getDependabotPublicKey = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ function getDependabotPublicKey(args, opts) {
9
+ if (!opts) {
10
+ opts = {};
11
+ }
12
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
13
+ return pulumi.runtime.invoke("github:index/getDependabotPublicKey:getDependabotPublicKey", {
14
+ "repository": args.repository,
15
+ }, opts);
16
+ }
17
+ exports.getDependabotPublicKey = getDependabotPublicKey;
18
+ function getDependabotPublicKeyOutput(args, opts) {
19
+ return pulumi.output(args).apply(a => getDependabotPublicKey(a, opts));
20
+ }
21
+ exports.getDependabotPublicKeyOutput = getDependabotPublicKeyOutput;
22
+ //# sourceMappingURL=getDependabotPublicKey.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getDependabotPublicKey.js","sourceRoot":"","sources":["../getDependabotPublicKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,wDASC;AAsBD,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;IAC5G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,sBAAsB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,oEAEC"}
package/getRef.d.ts CHANGED
@@ -19,7 +19,10 @@ export declare function getRef(args: GetRefArgs, opts?: pulumi.InvokeOptions): P
19
19
  * A collection of arguments for invoking getRef.
20
20
  */
21
21
  export interface GetRefArgs {
22
- branch: string;
22
+ /**
23
+ * The repository ref to look up. Must be formatted `heads/<ref>` for branches, and `tags/<ref>` for tags.
24
+ */
25
+ ref: string;
23
26
  /**
24
27
  * The GitHub repository name.
25
28
  */
@@ -29,7 +32,6 @@ export interface GetRefArgs {
29
32
  * A collection of values returned by getRef.
30
33
  */
31
34
  export interface GetRefResult {
32
- readonly branch: string;
33
35
  /**
34
36
  * An etag representing the ref.
35
37
  */
@@ -50,7 +52,10 @@ export declare function getRefOutput(args: GetRefOutputArgs, opts?: pulumi.Invok
50
52
  * A collection of arguments for invoking getRef.
51
53
  */
52
54
  export interface GetRefOutputArgs {
53
- branch: pulumi.Input<string>;
55
+ /**
56
+ * The repository ref to look up. Must be formatted `heads/<ref>` for branches, and `tags/<ref>` for tags.
57
+ */
58
+ ref: pulumi.Input<string>;
54
59
  /**
55
60
  * The GitHub repository name.
56
61
  */
package/getRef.js CHANGED
@@ -26,7 +26,7 @@ function getRef(args, opts) {
26
26
  }
27
27
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
28
28
  return pulumi.runtime.invoke("github:index/getRef:getRef", {
29
- "branch": args.branch,
29
+ "ref": args.ref,
30
30
  "repository": args.repository,
31
31
  }, opts);
32
32
  }
package/getRef.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"getRef.js","sourceRoot":"","sources":["../getRef.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,MAAM,CAAC,IAAgB,EAAE,IAA2B;IAChE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4BAA4B,EAAE;QACvD,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,wBAUC;AAkCD,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1D,CAAC;AAFD,oCAEC"}
1
+ {"version":3,"file":"getRef.js","sourceRoot":"","sources":["../getRef.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,MAAM,CAAC,IAAgB,EAAE,IAA2B;IAChE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4BAA4B,EAAE;QACvD,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,wBAUC;AAoCD,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1D,CAAC;AAFD,oCAEC"}
package/index.d.ts CHANGED
@@ -9,9 +9,14 @@ export * from "./branch";
9
9
  export * from "./branchDefault";
10
10
  export * from "./branchProtection";
11
11
  export * from "./branchProtectionV3";
12
+ export * from "./dependabotOrganizationSecret";
13
+ export * from "./dependabotOrganizationSecretRepositories";
14
+ export * from "./dependabotSecret";
15
+ export * from "./emuGroupMapping";
12
16
  export * from "./getActionsPublicKey";
13
17
  export * from "./getBranch";
14
18
  export * from "./getCollaborators";
19
+ export * from "./getDependabotPublicKey";
15
20
  export * from "./getIpRanges";
16
21
  export * from "./getMembership";
17
22
  export * from "./getOrganization";
package/index.js CHANGED
@@ -31,9 +31,14 @@ __exportStar(require("./branch"), exports);
31
31
  __exportStar(require("./branchDefault"), exports);
32
32
  __exportStar(require("./branchProtection"), exports);
33
33
  __exportStar(require("./branchProtectionV3"), exports);
34
+ __exportStar(require("./dependabotOrganizationSecret"), exports);
35
+ __exportStar(require("./dependabotOrganizationSecretRepositories"), exports);
36
+ __exportStar(require("./dependabotSecret"), exports);
37
+ __exportStar(require("./emuGroupMapping"), exports);
34
38
  __exportStar(require("./getActionsPublicKey"), exports);
35
39
  __exportStar(require("./getBranch"), exports);
36
40
  __exportStar(require("./getCollaborators"), exports);
41
+ __exportStar(require("./getDependabotPublicKey"), exports);
37
42
  __exportStar(require("./getIpRanges"), exports);
38
43
  __exportStar(require("./getMembership"), exports);
39
44
  __exportStar(require("./getOrganization"), exports);
@@ -95,6 +100,10 @@ const branch_1 = require("./branch");
95
100
  const branchDefault_1 = require("./branchDefault");
96
101
  const branchProtection_1 = require("./branchProtection");
97
102
  const branchProtectionV3_1 = require("./branchProtectionV3");
103
+ const dependabotOrganizationSecret_1 = require("./dependabotOrganizationSecret");
104
+ const dependabotOrganizationSecretRepositories_1 = require("./dependabotOrganizationSecretRepositories");
105
+ const dependabotSecret_1 = require("./dependabotSecret");
106
+ const emuGroupMapping_1 = require("./emuGroupMapping");
98
107
  const issue_1 = require("./issue");
99
108
  const issueLabel_1 = require("./issueLabel");
100
109
  const membership_1 = require("./membership");
@@ -147,6 +156,14 @@ const _module = {
147
156
  return new branchProtection_1.BranchProtection(name, undefined, { urn });
148
157
  case "github:index/branchProtectionV3:BranchProtectionV3":
149
158
  return new branchProtectionV3_1.BranchProtectionV3(name, undefined, { urn });
159
+ case "github:index/dependabotOrganizationSecret:DependabotOrganizationSecret":
160
+ return new dependabotOrganizationSecret_1.DependabotOrganizationSecret(name, undefined, { urn });
161
+ case "github:index/dependabotOrganizationSecretRepositories:DependabotOrganizationSecretRepositories":
162
+ return new dependabotOrganizationSecretRepositories_1.DependabotOrganizationSecretRepositories(name, undefined, { urn });
163
+ case "github:index/dependabotSecret:DependabotSecret":
164
+ return new dependabotSecret_1.DependabotSecret(name, undefined, { urn });
165
+ case "github:index/emuGroupMapping:EmuGroupMapping":
166
+ return new emuGroupMapping_1.EmuGroupMapping(name, undefined, { urn });
150
167
  case "github:index/issue:Issue":
151
168
  return new issue_1.Issue(name, undefined, { urn });
152
169
  case "github:index/issueLabel:IssueLabel":
@@ -215,6 +232,10 @@ pulumi.runtime.registerResourceModule("github", "index/branch", _module);
215
232
  pulumi.runtime.registerResourceModule("github", "index/branchDefault", _module);
216
233
  pulumi.runtime.registerResourceModule("github", "index/branchProtection", _module);
217
234
  pulumi.runtime.registerResourceModule("github", "index/branchProtectionV3", _module);
235
+ pulumi.runtime.registerResourceModule("github", "index/dependabotOrganizationSecret", _module);
236
+ pulumi.runtime.registerResourceModule("github", "index/dependabotOrganizationSecretRepositories", _module);
237
+ pulumi.runtime.registerResourceModule("github", "index/dependabotSecret", _module);
238
+ pulumi.runtime.registerResourceModule("github", "index/emuGroupMapping", _module);
218
239
  pulumi.runtime.registerResourceModule("github", "index/issue", _module);
219
240
  pulumi.runtime.registerResourceModule("github", "index/issueLabel", _module);
220
241
  pulumi.runtime.registerResourceModule("github", "index/membership", _module);
package/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/github",
3
- "version": "v4.12.0-alpha.1650908580+3cb95782",
3
+ "version": "v4.13.0-alpha.1654079678+30460983",
4
4
  "description": "A Pulumi package for creating and managing github cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource github v4.12.0-alpha.1650908580+3cb95782"
14
+ "install": "node scripts/install-pulumi-plugin.js resource github v4.13.0-alpha.1654079678+30460983"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/github",
3
- "version": "v4.12.0-alpha.1650908580+3cb95782",
3
+ "version": "v4.13.0-alpha.1654079678+30460983",
4
4
  "description": "A Pulumi package for creating and managing github cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource github v4.12.0-alpha.1650908580+3cb95782"
14
+ "install": "node scripts/install-pulumi-plugin.js resource github v4.13.0-alpha.1654079678+30460983"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
@@ -53,7 +53,7 @@ export declare class TeamRepository extends pulumi.CustomResource {
53
53
  readonly etag: pulumi.Output<string>;
54
54
  /**
55
55
  * The permissions of team members regarding the repository.
56
- * Must be one of `pull`, `triage`, `push`, `maintain`, or `admin`. Defaults to `pull`.
56
+ * Must be one of `pull`, `triage`, `push`, `maintain`, `admin` or the name of an existing [custom repository role](https://docs.github.com/en/enterprise-cloud@latest/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization) within the organisation. Defaults to `pull`.
57
57
  */
58
58
  readonly permission: pulumi.Output<string | undefined>;
59
59
  /**
@@ -80,7 +80,7 @@ export interface TeamRepositoryState {
80
80
  etag?: pulumi.Input<string>;
81
81
  /**
82
82
  * The permissions of team members regarding the repository.
83
- * Must be one of `pull`, `triage`, `push`, `maintain`, or `admin`. Defaults to `pull`.
83
+ * Must be one of `pull`, `triage`, `push`, `maintain`, `admin` or the name of an existing [custom repository role](https://docs.github.com/en/enterprise-cloud@latest/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization) within the organisation. Defaults to `pull`.
84
84
  */
85
85
  permission?: pulumi.Input<string>;
86
86
  /**
@@ -98,7 +98,7 @@ export interface TeamRepositoryState {
98
98
  export interface TeamRepositoryArgs {
99
99
  /**
100
100
  * The permissions of team members regarding the repository.
101
- * Must be one of `pull`, `triage`, `push`, `maintain`, or `admin`. Defaults to `pull`.
101
+ * Must be one of `pull`, `triage`, `push`, `maintain`, `admin` or the name of an existing [custom repository role](https://docs.github.com/en/enterprise-cloud@latest/organizations/managing-peoples-access-to-your-organization-with-roles/managing-custom-repository-roles-for-an-organization) within the organisation. Defaults to `pull`.
102
102
  */
103
103
  permission?: pulumi.Input<string>;
104
104
  /**