import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class UrlBasedSampling extends pulumi.CustomResource { /** * Get an existing UrlBasedSampling 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?: UrlBasedSamplingState, opts?: pulumi.CustomResourceOptions): UrlBasedSampling; /** * Returns true if the given object is an instance of UrlBasedSampling. 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 UrlBasedSampling; /** * This setting is enabled (`true`) or disabled (`false`) */ readonly enabled: pulumi.Output; /** * Select the scaling factor for the current sampling rate of the system. Possible values: `IncreaseCapturing128Times`, `IncreaseCapturing64Times`, `IncreaseCapturing32Times`, `IncreaseCapturing16Times`, `IncreaseCapturing8Times`, `IncreaseCapturing4Times`, `IncreaseCapturing2Times`, `ReduceCapturingByFactor2`, `ReduceCapturingByFactor4`, `ReduceCapturingByFactor8`, `ReduceCapturingByFactor16`, `ReduceCapturingByFactor32`, `ReduceCapturingByFactor64`, `ReduceCapturingByFactor128` */ readonly factor: pulumi.Output; /** * The scaling factor for the defined URL will be applied to any HTTP method. */ readonly httpMethodAny: pulumi.Output; /** * Possible values: `GET`, `POST`, `PUT`, `DELETE`, `HEAD`, `CONNECT`, `OPTIONS`, `TRACE`, `PATCH` */ readonly httpMethods: pulumi.Output; /** * The matching URLs will always be ignored, also if Adaptive Traffic Management is not active. */ readonly ignore: pulumi.Output; /** * Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched */ readonly insertAfter: pulumi.Output; /** * Path of the URL. */ readonly path: pulumi.Output; /** * Path comparison condition. Possible values: `EQUALS`, `DOES_NOT_EQUAL`, `CONTAINS`, `DOES_NOT_CONTAIN`, `STARTS_WITH`, `DOES_NOT_START_WITH`, `ENDS_WITH`, `DOES_NOT_END_WITH` */ readonly pathComparisonType: pulumi.Output; /** * Add URL parameters in any order. **All** specified parameters must be present in the query of an URL to get a match. */ readonly queryParameters: pulumi.Output; /** * The scope of this setting (PROCESS*GROUP*INSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment. */ readonly scope: pulumi.Output; /** * Create a UrlBasedSampling 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: UrlBasedSamplingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering UrlBasedSampling resources. */ export interface UrlBasedSamplingState { /** * This setting is enabled (`true`) or disabled (`false`) */ enabled?: pulumi.Input; /** * Select the scaling factor for the current sampling rate of the system. Possible values: `IncreaseCapturing128Times`, `IncreaseCapturing64Times`, `IncreaseCapturing32Times`, `IncreaseCapturing16Times`, `IncreaseCapturing8Times`, `IncreaseCapturing4Times`, `IncreaseCapturing2Times`, `ReduceCapturingByFactor2`, `ReduceCapturingByFactor4`, `ReduceCapturingByFactor8`, `ReduceCapturingByFactor16`, `ReduceCapturingByFactor32`, `ReduceCapturingByFactor64`, `ReduceCapturingByFactor128` */ factor?: pulumi.Input; /** * The scaling factor for the defined URL will be applied to any HTTP method. */ httpMethodAny?: pulumi.Input; /** * Possible values: `GET`, `POST`, `PUT`, `DELETE`, `HEAD`, `CONNECT`, `OPTIONS`, `TRACE`, `PATCH` */ httpMethods?: pulumi.Input[]>; /** * The matching URLs will always be ignored, also if Adaptive Traffic Management is not active. */ ignore?: pulumi.Input; /** * Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched */ insertAfter?: pulumi.Input; /** * Path of the URL. */ path?: pulumi.Input; /** * Path comparison condition. Possible values: `EQUALS`, `DOES_NOT_EQUAL`, `CONTAINS`, `DOES_NOT_CONTAIN`, `STARTS_WITH`, `DOES_NOT_START_WITH`, `ENDS_WITH`, `DOES_NOT_END_WITH` */ pathComparisonType?: pulumi.Input; /** * Add URL parameters in any order. **All** specified parameters must be present in the query of an URL to get a match. */ queryParameters?: pulumi.Input; /** * The scope of this setting (PROCESS*GROUP*INSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment. */ scope?: pulumi.Input; } /** * The set of arguments for constructing a UrlBasedSampling resource. */ export interface UrlBasedSamplingArgs { /** * This setting is enabled (`true`) or disabled (`false`) */ enabled: pulumi.Input; /** * Select the scaling factor for the current sampling rate of the system. Possible values: `IncreaseCapturing128Times`, `IncreaseCapturing64Times`, `IncreaseCapturing32Times`, `IncreaseCapturing16Times`, `IncreaseCapturing8Times`, `IncreaseCapturing4Times`, `IncreaseCapturing2Times`, `ReduceCapturingByFactor2`, `ReduceCapturingByFactor4`, `ReduceCapturingByFactor8`, `ReduceCapturingByFactor16`, `ReduceCapturingByFactor32`, `ReduceCapturingByFactor64`, `ReduceCapturingByFactor128` */ factor?: pulumi.Input; /** * The scaling factor for the defined URL will be applied to any HTTP method. */ httpMethodAny: pulumi.Input; /** * Possible values: `GET`, `POST`, `PUT`, `DELETE`, `HEAD`, `CONNECT`, `OPTIONS`, `TRACE`, `PATCH` */ httpMethods?: pulumi.Input[]>; /** * The matching URLs will always be ignored, also if Adaptive Traffic Management is not active. */ ignore: pulumi.Input; /** * Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched */ insertAfter?: pulumi.Input; /** * Path of the URL. */ path?: pulumi.Input; /** * Path comparison condition. Possible values: `EQUALS`, `DOES_NOT_EQUAL`, `CONTAINS`, `DOES_NOT_CONTAIN`, `STARTS_WITH`, `DOES_NOT_START_WITH`, `ENDS_WITH`, `DOES_NOT_END_WITH` */ pathComparisonType?: pulumi.Input; /** * Add URL parameters in any order. **All** specified parameters must be present in the query of an URL to get a match. */ queryParameters?: pulumi.Input; /** * The scope of this setting (PROCESS*GROUP*INSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment. */ scope?: pulumi.Input; }