@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
121 lines (120 loc) • 5.9 kB
TypeScript
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<pulumi.ID>, 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<boolean | undefined>;
/**
* 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<string>;
/**
* 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<string>;
/**
* 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<string>;
/**
* The password of the Cloud Foundry foundation credentials.
*/
readonly password: pulumi.Output<string | undefined>;
/**
* Any attributes that aren't yet supported by this provider
*/
readonly unknowns: pulumi.Output<string | undefined>;
/**
* The username of the Cloud Foundry foundation credentials. Leading and trailing whitespaces are not allowed.
*/
readonly username: pulumi.Output<string>;
/**
* 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<boolean>;
/**
* 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<string>;
/**
* 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<string>;
/**
* 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<string>;
/**
* The password of the Cloud Foundry foundation credentials.
*/
password?: pulumi.Input<string>;
/**
* Any attributes that aren't yet supported by this provider
*/
unknowns?: pulumi.Input<string>;
/**
* The username of the Cloud Foundry foundation credentials. Leading and trailing whitespaces are not allowed.
*/
username?: pulumi.Input<string>;
}
/**
* 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<boolean>;
/**
* 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<string>;
/**
* 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<string>;
/**
* 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<string>;
/**
* The password of the Cloud Foundry foundation credentials.
*/
password?: pulumi.Input<string>;
/**
* Any attributes that aren't yet supported by this provider
*/
unknowns?: pulumi.Input<string>;
/**
* The username of the Cloud Foundry foundation credentials. Leading and trailing whitespaces are not allowed.
*/
username: pulumi.Input<string>;
}