@pulumi/harness
Version:
A Pulumi package for creating and managing Harness resources.
53 lines (52 loc) • 1.33 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Data source for retrieving an SSO providers
*/
export declare function getSsoProvider(args?: GetSsoProviderArgs, opts?: pulumi.InvokeOptions): Promise<GetSsoProviderResult>;
/**
* A collection of arguments for invoking getSsoProvider.
*/
export interface GetSsoProviderArgs {
/**
* Unique identifier of the SSO provider.
*/
id?: string;
/**
* The name of the SSO provider.
*/
name?: string;
}
/**
* A collection of values returned by getSsoProvider.
*/
export interface GetSsoProviderResult {
/**
* Unique identifier of the SSO provider.
*/
readonly id?: string;
/**
* The name of the SSO provider.
*/
readonly name?: string;
/**
* The type of SSO provider.
*/
readonly type: string;
}
/**
* Data source for retrieving an SSO providers
*/
export declare function getSsoProviderOutput(args?: GetSsoProviderOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSsoProviderResult>;
/**
* A collection of arguments for invoking getSsoProvider.
*/
export interface GetSsoProviderOutputArgs {
/**
* Unique identifier of the SSO provider.
*/
id?: pulumi.Input<string>;
/**
* The name of the SSO provider.
*/
name?: pulumi.Input<string>;
}