@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
63 lines (62 loc) • 1.81 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to query detailed information of iam saml providers
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.iam.getSamlProviders({});
* ```
*/
export declare function getSamlProviders(args?: GetSamlProvidersArgs, opts?: pulumi.InvokeOptions): Promise<GetSamlProvidersResult>;
/**
* A collection of arguments for invoking getSamlProviders.
*/
export interface GetSamlProvidersArgs {
/**
* File name where to save data source results.
*/
outputFile?: string;
}
/**
* A collection of values returned by getSamlProviders.
*/
export interface GetSamlProvidersResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly outputFile?: string;
/**
* The collection of query.
*/
readonly providers: outputs.iam.GetSamlProvidersProvider[];
/**
* The total count of query.
*/
readonly totalCount: number;
}
/**
* Use this data source to query detailed information of iam saml providers
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.iam.getSamlProviders({});
* ```
*/
export declare function getSamlProvidersOutput(args?: GetSamlProvidersOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetSamlProvidersResult>;
/**
* A collection of arguments for invoking getSamlProviders.
*/
export interface GetSamlProvidersOutputArgs {
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}