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 Service Providers in Oracle Cloud Infrastructure Delegate Access Control service. * * Lists the Service Providers. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServiceProviders = oci.delegateaccesscontrol.getServiceProviders({ * compartmentId: compartmentId, * name: serviceProviderName, * serviceProviderType: serviceProviderServiceProviderType, * state: serviceProviderState, * supportedResourceType: serviceProviderSupportedResourceType, * }); * ``` */ export declare function getServiceProviders(args: GetServiceProvidersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServiceProviders. */ export interface GetServiceProvidersArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; filters?: inputs.DelegateAccessControl.GetServiceProvidersFilter[]; /** * A filter to return Service Provider resources that match the given name. */ name?: string; /** * A filter to return only Service Provider resources whose provider type matches the given provider type. */ serviceProviderType?: string; /** * A filter to return only Service Provider resources whose lifecycleState matches the given Service Provider lifecycle state. */ state?: string; /** * A filter to return only Service Provider resources whose supported resource type matches the given resource type. */ supportedResourceType?: string; } /** * A collection of values returned by getServiceProviders. */ export interface GetServiceProvidersResult { /** * The OCID of the compartment that contains the Service Provider. */ readonly compartmentId: string; readonly filters?: outputs.DelegateAccessControl.GetServiceProvidersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique name of the Service Provider. */ readonly name?: string; /** * The list of service_provider_summary_collection. */ readonly serviceProviderSummaryCollections: outputs.DelegateAccessControl.GetServiceProvidersServiceProviderSummaryCollection[]; /** * Service Provider type. */ readonly serviceProviderType?: string; /** * The current lifecycle state of the Service Provider. */ readonly state?: string; readonly supportedResourceType?: string; } /** * This data source provides the list of Service Providers in Oracle Cloud Infrastructure Delegate Access Control service. * * Lists the Service Providers. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testServiceProviders = oci.delegateaccesscontrol.getServiceProviders({ * compartmentId: compartmentId, * name: serviceProviderName, * serviceProviderType: serviceProviderServiceProviderType, * state: serviceProviderState, * supportedResourceType: serviceProviderSupportedResourceType, * }); * ``` */ export declare function getServiceProvidersOutput(args: GetServiceProvidersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServiceProviders. */ export interface GetServiceProvidersOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return Service Provider resources that match the given name. */ name?: pulumi.Input; /** * A filter to return only Service Provider resources whose provider type matches the given provider type. */ serviceProviderType?: pulumi.Input; /** * A filter to return only Service Provider resources whose lifecycleState matches the given Service Provider lifecycle state. */ state?: pulumi.Input; /** * A filter to return only Service Provider resources whose supported resource type matches the given resource type. */ supportedResourceType?: pulumi.Input; } //# sourceMappingURL=getServiceProviders.d.ts.map