@pulumi/github
Version:
A Pulumi package for creating and managing github cloud resources.
76 lines (75 loc) • 2.21 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Use this data source to retrieve information about a custom role in a GitHub Organization.
*
* > Note: Custom roles are currently only available in GitHub Enterprise Cloud.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as github from "@pulumi/github";
*
* const example = github.getOrganizationCustomRole({
* name: "example",
* });
* ```
*/
export declare function getOrganizationCustomRole(args: GetOrganizationCustomRoleArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationCustomRoleResult>;
/**
* A collection of arguments for invoking getOrganizationCustomRole.
*/
export interface GetOrganizationCustomRoleArgs {
/**
* The name of the custom role.
*/
name: string;
}
/**
* A collection of values returned by getOrganizationCustomRole.
*/
export interface GetOrganizationCustomRoleResult {
/**
* The system role from which the role inherits permissions.
*/
readonly baseRole: string;
/**
* The description for the custom role.
*/
readonly description: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly name: string;
/**
* A list of additional permissions included in this role.
*/
readonly permissions: string[];
}
/**
* Use this data source to retrieve information about a custom role in a GitHub Organization.
*
* > Note: Custom roles are currently only available in GitHub Enterprise Cloud.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as github from "@pulumi/github";
*
* const example = github.getOrganizationCustomRole({
* name: "example",
* });
* ```
*/
export declare function getOrganizationCustomRoleOutput(args: GetOrganizationCustomRoleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationCustomRoleResult>;
/**
* A collection of arguments for invoking getOrganizationCustomRole.
*/
export interface GetOrganizationCustomRoleOutputArgs {
/**
* The name of the custom role.
*/
name: pulumi.Input<string>;
}