@pulumi/signalfx
Version:
A Pulumi package for creating and managing SignalFx resources.
55 lines • 2.09 kB
TypeScript
/**
* API URL for your Splunk Observability Cloud org, may include a realm
*/
export declare const apiUrl: string | undefined;
/**
* Splunk Observability Cloud auth token
*/
export declare const authToken: string | undefined;
/**
* Application URL for your Splunk Observability Cloud org, often customized for organizations using SSO
*/
export declare const customAppUrl: string | undefined;
/**
* Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
*/
export declare const email: string | undefined;
/**
* Allows for users to opt-in to new features that are considered experimental or not ready for general availability yet.
*/
export declare const featurePreview: {
[key: string]: boolean;
} | undefined;
/**
* Required if the user is configured to be part of multiple organizations
*/
export declare const organizationId: string | undefined;
/**
* Used to create a session token instead of an API token, it requires the account to be configured to login with Email and Password
*/
export declare const password: string | undefined;
/**
* Max retries for a single HTTP call. Defaults to 4
*/
export declare const retryMaxAttempts: number | undefined;
/**
* Maximum retry wait for a single HTTP call in seconds. Defaults to 30
*/
export declare const retryWaitMaxSeconds: number | undefined;
/**
* Minimum retry wait for a single HTTP call in seconds. Defaults to 1
*/
export declare const retryWaitMinSeconds: number | undefined;
/**
* Allows for Tags to be added by default to resources that allow for tags to be included. If there is already tags configured, the global tags are added in prefix.
*/
export declare const tags: string[] | undefined;
/**
* Allows for teams to be defined at a provider level, and apply to all applicable resources created.
*/
export declare const teams: string[] | undefined;
/**
* Timeout duration for a single HTTP call in seconds. Defaults to 120
*/
export declare const timeoutSeconds: number | undefined;
//# sourceMappingURL=vars.d.ts.map