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 Fleet Credentials in Oracle Cloud Infrastructure Fleet Apps Management service. * * List credentials associated with a fleet. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetCredentials = oci.fleetappsmanagement.getFleetCredentials({ * fleetId: testFleet.id, * credentialLevel: fleetCredentialCredentialLevel, * displayName: fleetCredentialDisplayName, * id: fleetCredentialId, * resourceId: testResource.id, * state: fleetCredentialState, * target: fleetCredentialTarget, * }); * ``` */ export declare function getFleetCredentials(args: GetFleetCredentialsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetCredentials. */ export interface GetFleetCredentialsArgs { /** * Compartment OCID */ compartmentId?: string; /** * A filter to return only resources whose credentialLevel matches the given credentialLevel. */ credentialLevel?: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.FleetAppsManagement.GetFleetCredentialsFilter[]; /** * Unique Fleet identifier. */ fleetId: string; /** * A filter to return only resources whose credential identifier matches the given identifier. */ id?: string; /** * Resource Identifier */ resourceId?: string; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: string; /** * A filter to return only resources whose target matches the given target name. */ target?: string; } /** * A collection of values returned by getFleetCredentials. */ export interface GetFleetCredentialsResult { /** * Compartment OCID */ readonly compartmentId?: string; /** * At what level the credential is provided? */ readonly credentialLevel?: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource` */ readonly displayName?: string; readonly filters?: outputs.FleetAppsManagement.GetFleetCredentialsFilter[]; /** * The list of fleet_credential_collection. */ readonly fleetCredentialCollections: outputs.FleetAppsManagement.GetFleetCredentialsFleetCredentialCollection[]; readonly fleetId: string; /** * The unique id of the resource. */ readonly id?: string; /** * OCID of the resource associated with the target for which the credential is created. */ readonly resourceId?: string; /** * The current state of the FleetCredential. */ readonly state?: string; /** * Target name for which the credential is provided. */ readonly target?: string; } /** * This data source provides the list of Fleet Credentials in Oracle Cloud Infrastructure Fleet Apps Management service. * * List credentials associated with a fleet. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetCredentials = oci.fleetappsmanagement.getFleetCredentials({ * fleetId: testFleet.id, * credentialLevel: fleetCredentialCredentialLevel, * displayName: fleetCredentialDisplayName, * id: fleetCredentialId, * resourceId: testResource.id, * state: fleetCredentialState, * target: fleetCredentialTarget, * }); * ``` */ export declare function getFleetCredentialsOutput(args: GetFleetCredentialsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetCredentials. */ export interface GetFleetCredentialsOutputArgs { /** * Compartment OCID */ compartmentId?: pulumi.Input; /** * A filter to return only resources whose credentialLevel matches the given credentialLevel. */ credentialLevel?: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique Fleet identifier. */ fleetId: pulumi.Input; /** * A filter to return only resources whose credential identifier matches the given identifier. */ id?: pulumi.Input; /** * Resource Identifier */ resourceId?: pulumi.Input; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; /** * A filter to return only resources whose target matches the given target name. */ target?: pulumi.Input; } //# sourceMappingURL=getFleetCredentials.d.ts.map