import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to retrieve information about a GitHub organization custom property. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as github from "@pulumi/github"; * * const environment = github.getOrganizationCustomProperties({ * propertyName: "environment", * }); * ``` */ export declare function getOrganizationCustomProperties(args: GetOrganizationCustomPropertiesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOrganizationCustomProperties. */ export interface GetOrganizationCustomPropertiesArgs { /** * List of allowed values for the custom property. Only populated when `valueType` is `singleSelect` or `multiSelect`. */ allowedValues?: string[]; /** * The default value of the custom property. */ defaultValue?: string; /** * The description of the custom property. */ description?: string; /** * The name of the custom property to retrieve. */ propertyName: string; /** * Whether the custom property is required. */ required?: boolean; /** * The type of the custom property. Can be one of `string`, `singleSelect`, `multiSelect`, or `trueFalse`. */ valueType?: string; /** * Who can edit the values of the custom property. Can be one of `orgActors` or `orgAndRepoActors`. */ valuesEditableBy?: string; } /** * A collection of values returned by getOrganizationCustomProperties. */ export interface GetOrganizationCustomPropertiesResult { /** * List of allowed values for the custom property. Only populated when `valueType` is `singleSelect` or `multiSelect`. */ readonly allowedValues: string[]; /** * The default value of the custom property. */ readonly defaultValue: string; /** * The description of the custom property. */ readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name of the custom property. */ readonly propertyName: string; /** * Whether the custom property is required. */ readonly required?: boolean; /** * The type of the custom property. Can be one of `string`, `singleSelect`, `multiSelect`, or `trueFalse`. */ readonly valueType?: string; /** * Who can edit the values of the custom property. Can be one of `orgActors` or `orgAndRepoActors`. */ readonly valuesEditableBy: string; } /** * Use this data source to retrieve information about a GitHub organization custom property. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as github from "@pulumi/github"; * * const environment = github.getOrganizationCustomProperties({ * propertyName: "environment", * }); * ``` */ export declare function getOrganizationCustomPropertiesOutput(args: GetOrganizationCustomPropertiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOrganizationCustomProperties. */ export interface GetOrganizationCustomPropertiesOutputArgs { /** * List of allowed values for the custom property. Only populated when `valueType` is `singleSelect` or `multiSelect`. */ allowedValues?: pulumi.Input[] | undefined>; /** * The default value of the custom property. */ defaultValue?: pulumi.Input; /** * The description of the custom property. */ description?: pulumi.Input; /** * The name of the custom property to retrieve. */ propertyName: pulumi.Input; /** * Whether the custom property is required. */ required?: pulumi.Input; /** * The type of the custom property. Can be one of `string`, `singleSelect`, `multiSelect`, or `trueFalse`. */ valueType?: pulumi.Input; /** * Who can edit the values of the custom property. Can be one of `orgActors` or `orgAndRepoActors`. */ valuesEditableBy?: pulumi.Input; } //# sourceMappingURL=getOrganizationCustomProperties.d.ts.map