import * as pulumi from "@pulumi/pulumi"; export declare class CloudfoundryCredentials extends pulumi.CustomResource { /** * Get an existing CloudfoundryCredentials resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: CloudfoundryCredentialsState, opts?: pulumi.CustomResourceOptions): CloudfoundryCredentials; /** * Returns true if the given object is an instance of CloudfoundryCredentials. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CloudfoundryCredentials; /** * The monitoring is enabled (`true`) or disabled (`false`) for given credentials configuration. If not set on creation, the `true` value is used. If the field is omitted during an update, the old value remains unaffected. */ readonly active: pulumi.Output; /** * The URL of the Cloud Foundry foundation credentials. The URL must be valid according to RFC 2396. Leading or trailing whitespaces are not allowed. */ readonly apiUrl: pulumi.Output; /** * The login URL of the Cloud Foundry foundation credentials. The URL must be valid according to RFC 2396. Leading or trailing whitespaces are not allowed. */ readonly loginUrl: pulumi.Output; /** * The name of the Cloud Foundry foundation credentials. Allowed characters are letters, numbers, whitespaces, and the following characters: `.+-_`. Leading or trailing whitespace is not allowed. */ readonly name: pulumi.Output; /** * The password of the Cloud Foundry foundation credentials. */ readonly password: pulumi.Output; /** * Any attributes that aren't yet supported by this provider */ readonly unknowns: pulumi.Output; /** * The username of the Cloud Foundry foundation credentials. Leading and trailing whitespaces are not allowed. */ readonly username: pulumi.Output; /** * Create a CloudfoundryCredentials resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CloudfoundryCredentialsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudfoundryCredentials resources. */ export interface CloudfoundryCredentialsState { /** * The monitoring is enabled (`true`) or disabled (`false`) for given credentials configuration. If not set on creation, the `true` value is used. If the field is omitted during an update, the old value remains unaffected. */ active?: pulumi.Input; /** * The URL of the Cloud Foundry foundation credentials. The URL must be valid according to RFC 2396. Leading or trailing whitespaces are not allowed. */ apiUrl?: pulumi.Input; /** * The login URL of the Cloud Foundry foundation credentials. The URL must be valid according to RFC 2396. Leading or trailing whitespaces are not allowed. */ loginUrl?: pulumi.Input; /** * The name of the Cloud Foundry foundation credentials. Allowed characters are letters, numbers, whitespaces, and the following characters: `.+-_`. Leading or trailing whitespace is not allowed. */ name?: pulumi.Input; /** * The password of the Cloud Foundry foundation credentials. */ password?: pulumi.Input; /** * Any attributes that aren't yet supported by this provider */ unknowns?: pulumi.Input; /** * The username of the Cloud Foundry foundation credentials. Leading and trailing whitespaces are not allowed. */ username?: pulumi.Input; } /** * The set of arguments for constructing a CloudfoundryCredentials resource. */ export interface CloudfoundryCredentialsArgs { /** * The monitoring is enabled (`true`) or disabled (`false`) for given credentials configuration. If not set on creation, the `true` value is used. If the field is omitted during an update, the old value remains unaffected. */ active?: pulumi.Input; /** * The URL of the Cloud Foundry foundation credentials. The URL must be valid according to RFC 2396. Leading or trailing whitespaces are not allowed. */ apiUrl: pulumi.Input; /** * The login URL of the Cloud Foundry foundation credentials. The URL must be valid according to RFC 2396. Leading or trailing whitespaces are not allowed. */ loginUrl: pulumi.Input; /** * The name of the Cloud Foundry foundation credentials. Allowed characters are letters, numbers, whitespaces, and the following characters: `.+-_`. Leading or trailing whitespace is not allowed. */ name?: pulumi.Input; /** * The password of the Cloud Foundry foundation credentials. */ password?: pulumi.Input; /** * Any attributes that aren't yet supported by this provider */ unknowns?: pulumi.Input; /** * The username of the Cloud Foundry foundation credentials. Leading and trailing whitespaces are not allowed. */ username: pulumi.Input; }