@pulumiverse/dynatrace
Version:
A Pulumi package for creating and managing Dynatrace cloud resources.
135 lines (134 loc) • 5.11 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare class CustomService extends pulumi.CustomResource {
/**
* Get an existing CustomService 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?: CustomServiceState, opts?: pulumi.CustomResourceOptions): CustomService;
/**
* Returns true if the given object is an instance of CustomService. 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 CustomService;
/**
* Custom service enabled/disabled
*/
readonly enabled: pulumi.Output<boolean>;
/**
* The name of the custom service, displayed in the UI
*/
readonly name: pulumi.Output<string>;
/**
* The list of process groups the custom service should belong to
*/
readonly processGroups: pulumi.Output<string[] | undefined>;
/**
* The queue entry point flag. Set to `true` for custom messaging services
*/
readonly queueEntryPoint: pulumi.Output<boolean | undefined>;
/**
* The queue entry point type (IBM*MQ, JMS, KAFKA, MSMQ or RABBIT*MQ)
*/
readonly queueEntryPointType: pulumi.Output<string | undefined>;
/**
* The list of rules defining the custom service
*/
readonly rules: pulumi.Output<outputs.CustomServiceRule[] | undefined>;
/**
* Matcher applying to the file name (ENDS*WITH, EQUALS or STARTS*WITH). Default value is ENDS_WITH (if applicable)
*/
readonly technology: pulumi.Output<string>;
/**
* allows for configuring properties that are not explicitly supported by the current version of this provider
*/
readonly unknowns: pulumi.Output<string | undefined>;
/**
* Create a CustomService 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: CustomServiceArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering CustomService resources.
*/
export interface CustomServiceState {
/**
* Custom service enabled/disabled
*/
enabled?: pulumi.Input<boolean>;
/**
* The name of the custom service, displayed in the UI
*/
name?: pulumi.Input<string>;
/**
* The list of process groups the custom service should belong to
*/
processGroups?: pulumi.Input<pulumi.Input<string>[]>;
/**
* The queue entry point flag. Set to `true` for custom messaging services
*/
queueEntryPoint?: pulumi.Input<boolean>;
/**
* The queue entry point type (IBM*MQ, JMS, KAFKA, MSMQ or RABBIT*MQ)
*/
queueEntryPointType?: pulumi.Input<string>;
/**
* The list of rules defining the custom service
*/
rules?: pulumi.Input<pulumi.Input<inputs.CustomServiceRule>[]>;
/**
* Matcher applying to the file name (ENDS*WITH, EQUALS or STARTS*WITH). Default value is ENDS_WITH (if applicable)
*/
technology?: pulumi.Input<string>;
/**
* allows for configuring properties that are not explicitly supported by the current version of this provider
*/
unknowns?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a CustomService resource.
*/
export interface CustomServiceArgs {
/**
* Custom service enabled/disabled
*/
enabled: pulumi.Input<boolean>;
/**
* The name of the custom service, displayed in the UI
*/
name?: pulumi.Input<string>;
/**
* The list of process groups the custom service should belong to
*/
processGroups?: pulumi.Input<pulumi.Input<string>[]>;
/**
* The queue entry point flag. Set to `true` for custom messaging services
*/
queueEntryPoint?: pulumi.Input<boolean>;
/**
* The queue entry point type (IBM*MQ, JMS, KAFKA, MSMQ or RABBIT*MQ)
*/
queueEntryPointType?: pulumi.Input<string>;
/**
* The list of rules defining the custom service
*/
rules?: pulumi.Input<pulumi.Input<inputs.CustomServiceRule>[]>;
/**
* Matcher applying to the file name (ENDS*WITH, EQUALS or STARTS*WITH). Default value is ENDS_WITH (if applicable)
*/
technology: pulumi.Input<string>;
/**
* allows for configuring properties that are not explicitly supported by the current version of this provider
*/
unknowns?: pulumi.Input<string>;
}