import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Identity Provider Groups in Oracle Cloud Infrastructure Identity service. * * **Deprecated.** For more information, see [Deprecated IAM Service APIs](https://docs.cloud.oracle.com/iaas/Content/Identity/Reference/deprecatediamapis.htm). * * Lists the identity provider groups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIdentityProviderGroups = oci.identity.getIdentityProviderGroups({ * identityProviderId: testIdentityProvider.id, * name: identityProviderGroupName, * state: identityProviderGroupState, * }); * ``` */ export declare function getIdentityProviderGroups(args: GetIdentityProviderGroupsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getIdentityProviderGroups. */ export interface GetIdentityProviderGroupsArgs { filters?: inputs.Identity.GetIdentityProviderGroupsFilter[]; /** * The OCID of the identity provider. */ identityProviderId: string; /** * A filter to only return resources that match the given name exactly. */ name?: string; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getIdentityProviderGroups. */ export interface GetIdentityProviderGroupsResult { readonly filters?: outputs.Identity.GetIdentityProviderGroupsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of identity_provider_groups. */ readonly identityProviderGroups: outputs.Identity.GetIdentityProviderGroupsIdentityProviderGroup[]; /** * The OCID of the `IdentityProvider` this group belongs to. */ readonly identityProviderId: string; /** * Display name of the group */ readonly name?: string; readonly state?: string; } /** * This data source provides the list of Identity Provider Groups in Oracle Cloud Infrastructure Identity service. * * **Deprecated.** For more information, see [Deprecated IAM Service APIs](https://docs.cloud.oracle.com/iaas/Content/Identity/Reference/deprecatediamapis.htm). * * Lists the identity provider groups. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIdentityProviderGroups = oci.identity.getIdentityProviderGroups({ * identityProviderId: testIdentityProvider.id, * name: identityProviderGroupName, * state: identityProviderGroupState, * }); * ``` */ export declare function getIdentityProviderGroupsOutput(args: GetIdentityProviderGroupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getIdentityProviderGroups. */ export interface GetIdentityProviderGroupsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The OCID of the identity provider. */ identityProviderId: pulumi.Input; /** * A filter to only return resources that match the given name exactly. */ name?: pulumi.Input; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getIdentityProviderGroups.d.ts.map