@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
65 lines (64 loc) • 2.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to query detailed information of iam identity providers
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.iam.getIdentityProviders({});
* ```
*/
/** @deprecated volcengine.iam.IdentityProviders has been deprecated in favor of volcengine.iam.getIdentityProviders */
export declare function identityProviders(args?: IdentityProvidersArgs, opts?: pulumi.InvokeOptions): Promise<IdentityProvidersResult>;
/**
* A collection of arguments for invoking IdentityProviders.
*/
export interface IdentityProvidersArgs {
/**
* File name where to save data source results.
*/
outputFile?: string;
}
/**
* A collection of values returned by IdentityProviders.
*/
export interface IdentityProvidersResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly outputFile?: string;
/**
* The collection of identity providers.
*/
readonly providers: outputs.iam.IdentityProvidersProvider[];
/**
* The total count of identity providers.
*/
readonly totalCount: number;
}
/**
* Use this data source to query detailed information of iam identity providers
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const default = volcengine.iam.getIdentityProviders({});
* ```
*/
/** @deprecated volcengine.iam.IdentityProviders has been deprecated in favor of volcengine.iam.getIdentityProviders */
export declare function identityProvidersOutput(args?: IdentityProvidersOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<IdentityProvidersResult>;
/**
* A collection of arguments for invoking IdentityProviders.
*/
export interface IdentityProvidersOutputArgs {
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}