UNPKG

@pulumi/signalfx

Version:

A Pulumi package for creating and managing SignalFx resources.

129 lines (128 loc) 5.1 kB
import * as pulumi from "@pulumi/pulumi"; /** * The provider type for the signalfx package. By default, resources use package-wide configuration * settings, however an explicit `Provider` instance may be created and passed during resource * construction to achieve fine-grained programmatic control over provider settings. See the * [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information. */ export declare class Provider extends pulumi.ProviderResource { /** * Returns true if the given object is an instance of Provider. 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 Provider; /** * API URL for your Splunk Observability Cloud org, may include a realm */ readonly apiUrl: pulumi.Output<string | undefined>; /** * Splunk Observability Cloud auth token */ readonly authToken: pulumi.Output<string | undefined>; /** * Application URL for your Splunk Observability Cloud org, often customized for organizations using SSO * * @deprecated Remove the definition, the provider will automatically populate the custom app URL as needed */ readonly customAppUrl: pulumi.Output<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 */ readonly email: pulumi.Output<string | undefined>; /** * Required if the user is configured to be part of multiple organizations */ readonly organizationId: pulumi.Output<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 */ readonly password: pulumi.Output<string | undefined>; /** * Create a Provider 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?: ProviderArgs, opts?: pulumi.ResourceOptions); /** * This function returns a Terraform config object with terraform-namecased keys,to be used with the Terraform Module Provider. */ terraformConfig(): pulumi.Output<Provider.TerraformConfigResult>; } /** * The set of arguments for constructing a Provider resource. */ export interface ProviderArgs { /** * API URL for your Splunk Observability Cloud org, may include a realm */ apiUrl?: pulumi.Input<string>; /** * Splunk Observability Cloud auth token */ authToken?: pulumi.Input<string>; /** * Application URL for your Splunk Observability Cloud org, often customized for organizations using SSO * * @deprecated Remove the definition, the provider will automatically populate the custom app URL as needed */ customAppUrl?: pulumi.Input<string>; /** * Used to create a session token instead of an API token, it requires the account to be configured to login with Email and * Password */ email?: pulumi.Input<string>; /** * Allows for users to opt-in to new features that are considered experimental or not ready for general availability yet. */ featurePreview?: pulumi.Input<{ [key: string]: pulumi.Input<boolean>; }>; /** * Required if the user is configured to be part of multiple organizations */ organizationId?: pulumi.Input<string>; /** * Used to create a session token instead of an API token, it requires the account to be configured to login with Email and * Password */ password?: pulumi.Input<string>; /** * Max retries for a single HTTP call. Defaults to 4 */ retryMaxAttempts?: pulumi.Input<number>; /** * Maximum retry wait for a single HTTP call in seconds. Defaults to 30 */ retryWaitMaxSeconds?: pulumi.Input<number>; /** * Minimum retry wait for a single HTTP call in seconds. Defaults to 1 */ retryWaitMinSeconds?: pulumi.Input<number>; /** * 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. */ tags?: pulumi.Input<pulumi.Input<string>[]>; /** * Allows for teams to be defined at a provider level, and apply to all applicable resources created. */ teams?: pulumi.Input<pulumi.Input<string>[]>; /** * Timeout duration for a single HTTP call in seconds. Defaults to 120 */ timeoutSeconds?: pulumi.Input<number>; } export declare namespace Provider { /** * The results of the Provider.terraformConfig method. */ interface TerraformConfigResult { readonly result: { [key: string]: any; }; } }