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, 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; /** * The name of the custom service, displayed in the UI */ readonly name: pulumi.Output; /** * The list of process groups the custom service should belong to */ readonly processGroups: pulumi.Output; /** * The queue entry point flag. Set to `true` for custom messaging services */ readonly queueEntryPoint: pulumi.Output; /** * The queue entry point type (IBM*MQ, JMS, KAFKA, MSMQ or RABBIT*MQ) */ readonly queueEntryPointType: pulumi.Output; /** * The list of rules defining the custom service */ readonly rules: pulumi.Output; /** * Matcher applying to the file name (ENDS*WITH, EQUALS or STARTS*WITH). Default value is ENDS_WITH (if applicable) */ readonly technology: pulumi.Output; /** * allows for configuring properties that are not explicitly supported by the current version of this provider */ readonly unknowns: pulumi.Output; /** * 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; /** * The name of the custom service, displayed in the UI */ name?: pulumi.Input; /** * The list of process groups the custom service should belong to */ processGroups?: pulumi.Input[]>; /** * The queue entry point flag. Set to `true` for custom messaging services */ queueEntryPoint?: pulumi.Input; /** * The queue entry point type (IBM*MQ, JMS, KAFKA, MSMQ or RABBIT*MQ) */ queueEntryPointType?: pulumi.Input; /** * The list of rules defining the custom service */ rules?: pulumi.Input[]>; /** * Matcher applying to the file name (ENDS*WITH, EQUALS or STARTS*WITH). Default value is ENDS_WITH (if applicable) */ technology?: pulumi.Input; /** * allows for configuring properties that are not explicitly supported by the current version of this provider */ unknowns?: pulumi.Input; } /** * The set of arguments for constructing a CustomService resource. */ export interface CustomServiceArgs { /** * Custom service enabled/disabled */ enabled: pulumi.Input; /** * The name of the custom service, displayed in the UI */ name?: pulumi.Input; /** * The list of process groups the custom service should belong to */ processGroups?: pulumi.Input[]>; /** * The queue entry point flag. Set to `true` for custom messaging services */ queueEntryPoint?: pulumi.Input; /** * The queue entry point type (IBM*MQ, JMS, KAFKA, MSMQ or RABBIT*MQ) */ queueEntryPointType?: pulumi.Input; /** * The list of rules defining the custom service */ rules?: pulumi.Input[]>; /** * Matcher applying to the file name (ENDS*WITH, EQUALS or STARTS*WITH). Default value is ENDS_WITH (if applicable) */ technology: pulumi.Input; /** * allows for configuring properties that are not explicitly supported by the current version of this provider */ unknowns?: pulumi.Input; }