Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse
dynatrace.UrlBasedSampling
Explore with Pulumi AI
Create UrlBasedSampling Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UrlBasedSampling(name: string, args: UrlBasedSamplingArgs, opts?: CustomResourceOptions);
@overload
def UrlBasedSampling(resource_name: str,
args: UrlBasedSamplingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UrlBasedSampling(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
http_method_any: Optional[bool] = None,
ignore: Optional[bool] = None,
factor: Optional[str] = None,
http_methods: Optional[Sequence[str]] = None,
insert_after: Optional[str] = None,
path: Optional[str] = None,
path_comparison_type: Optional[str] = None,
query_parameters: Optional[UrlBasedSamplingQueryParametersArgs] = None,
scope: Optional[str] = None)
func NewUrlBasedSampling(ctx *Context, name string, args UrlBasedSamplingArgs, opts ...ResourceOption) (*UrlBasedSampling, error)
public UrlBasedSampling(string name, UrlBasedSamplingArgs args, CustomResourceOptions? opts = null)
public UrlBasedSampling(String name, UrlBasedSamplingArgs args)
public UrlBasedSampling(String name, UrlBasedSamplingArgs args, CustomResourceOptions options)
type: dynatrace:UrlBasedSampling
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args UrlBasedSamplingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args UrlBasedSamplingArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args UrlBasedSamplingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UrlBasedSamplingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UrlBasedSamplingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var urlBasedSamplingResource = new Dynatrace.UrlBasedSampling("urlBasedSamplingResource", new()
{
Enabled = false,
HttpMethodAny = false,
Ignore = false,
Factor = "string",
HttpMethods = new[]
{
"string",
},
InsertAfter = "string",
Path = "string",
PathComparisonType = "string",
QueryParameters = new Dynatrace.Inputs.UrlBasedSamplingQueryParametersArgs
{
Parameters = new[]
{
new Dynatrace.Inputs.UrlBasedSamplingQueryParametersParameterArgs
{
Name = "string",
Value = "string",
ValueIsUndefined = false,
},
},
},
Scope = "string",
});
example, err := dynatrace.NewUrlBasedSampling(ctx, "urlBasedSamplingResource", &dynatrace.UrlBasedSamplingArgs{
Enabled: pulumi.Bool(false),
HttpMethodAny: pulumi.Bool(false),
Ignore: pulumi.Bool(false),
Factor: pulumi.String("string"),
HttpMethods: pulumi.StringArray{
pulumi.String("string"),
},
InsertAfter: pulumi.String("string"),
Path: pulumi.String("string"),
PathComparisonType: pulumi.String("string"),
QueryParameters: &dynatrace.UrlBasedSamplingQueryParametersArgs{
Parameters: dynatrace.UrlBasedSamplingQueryParametersParameterArray{
&dynatrace.UrlBasedSamplingQueryParametersParameterArgs{
Name: pulumi.String("string"),
Value: pulumi.String("string"),
ValueIsUndefined: pulumi.Bool(false),
},
},
},
Scope: pulumi.String("string"),
})
var urlBasedSamplingResource = new UrlBasedSampling("urlBasedSamplingResource", UrlBasedSamplingArgs.builder()
.enabled(false)
.httpMethodAny(false)
.ignore(false)
.factor("string")
.httpMethods("string")
.insertAfter("string")
.path("string")
.pathComparisonType("string")
.queryParameters(UrlBasedSamplingQueryParametersArgs.builder()
.parameters(UrlBasedSamplingQueryParametersParameterArgs.builder()
.name("string")
.value("string")
.valueIsUndefined(false)
.build())
.build())
.scope("string")
.build());
url_based_sampling_resource = dynatrace.UrlBasedSampling("urlBasedSamplingResource",
enabled=False,
http_method_any=False,
ignore=False,
factor="string",
http_methods=["string"],
insert_after="string",
path="string",
path_comparison_type="string",
query_parameters=dynatrace.UrlBasedSamplingQueryParametersArgs(
parameters=[dynatrace.UrlBasedSamplingQueryParametersParameterArgs(
name="string",
value="string",
value_is_undefined=False,
)],
),
scope="string")
const urlBasedSamplingResource = new dynatrace.UrlBasedSampling("urlBasedSamplingResource", {
enabled: false,
httpMethodAny: false,
ignore: false,
factor: "string",
httpMethods: ["string"],
insertAfter: "string",
path: "string",
pathComparisonType: "string",
queryParameters: {
parameters: [{
name: "string",
value: "string",
valueIsUndefined: false,
}],
},
scope: "string",
});
type: dynatrace:UrlBasedSampling
properties:
enabled: false
factor: string
httpMethodAny: false
httpMethods:
- string
ignore: false
insertAfter: string
path: string
pathComparisonType: string
queryParameters:
parameters:
- name: string
value: string
valueIsUndefined: false
scope: string
UrlBasedSampling Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The UrlBasedSampling resource accepts the following input properties:
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Http
Method boolAny - The scaling factor for the defined URL will be applied to any HTTP method.
- Ignore bool
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- Factor string
- 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
- Http
Methods List<string> - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- Insert
After string - 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
- Path string
- Path of the URL.
- Path
Comparison stringType - 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
- Query
Parameters Pulumiverse.Dynatrace. Inputs. Url Based Sampling Query Parameters - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- Scope string
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Http
Method boolAny - The scaling factor for the defined URL will be applied to any HTTP method.
- Ignore bool
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- Factor string
- 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
- Http
Methods []string - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- Insert
After string - 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
- Path string
- Path of the URL.
- Path
Comparison stringType - 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
- Query
Parameters UrlBased Sampling Query Parameters Args - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- Scope string
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - http
Method BooleanAny - The scaling factor for the defined URL will be applied to any HTTP method.
- ignore Boolean
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- factor String
- 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
- http
Methods List<String> - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- insert
After String - 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
- path String
- Path of the URL.
- path
Comparison StringType - 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
- query
Parameters UrlBased Sampling Query Parameters - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- scope String
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - http
Method booleanAny - The scaling factor for the defined URL will be applied to any HTTP method.
- ignore boolean
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- factor string
- 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
- http
Methods string[] - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- insert
After string - 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
- path string
- Path of the URL.
- path
Comparison stringType - 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
- query
Parameters UrlBased Sampling Query Parameters - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- scope string
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - http_
method_ boolany - The scaling factor for the defined URL will be applied to any HTTP method.
- ignore bool
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- factor str
- 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
- http_
methods Sequence[str] - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- insert_
after str - 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
- path str
- Path of the URL.
- path_
comparison_ strtype - 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
- query_
parameters UrlBased Sampling Query Parameters Args - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- scope str
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - http
Method BooleanAny - The scaling factor for the defined URL will be applied to any HTTP method.
- ignore Boolean
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- factor String
- 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
- http
Methods List<String> - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- insert
After String - 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
- path String
- Path of the URL.
- path
Comparison StringType - 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
- query
Parameters Property Map - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- scope String
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
Outputs
All input properties are implicitly available as output properties. Additionally, the UrlBasedSampling resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing UrlBasedSampling Resource
Get an existing UrlBasedSampling resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: UrlBasedSamplingState, opts?: CustomResourceOptions): UrlBasedSampling
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
factor: Optional[str] = None,
http_method_any: Optional[bool] = None,
http_methods: Optional[Sequence[str]] = None,
ignore: Optional[bool] = None,
insert_after: Optional[str] = None,
path: Optional[str] = None,
path_comparison_type: Optional[str] = None,
query_parameters: Optional[UrlBasedSamplingQueryParametersArgs] = None,
scope: Optional[str] = None) -> UrlBasedSampling
func GetUrlBasedSampling(ctx *Context, name string, id IDInput, state *UrlBasedSamplingState, opts ...ResourceOption) (*UrlBasedSampling, error)
public static UrlBasedSampling Get(string name, Input<string> id, UrlBasedSamplingState? state, CustomResourceOptions? opts = null)
public static UrlBasedSampling get(String name, Output<String> id, UrlBasedSamplingState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Factor string
- 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
- Http
Method boolAny - The scaling factor for the defined URL will be applied to any HTTP method.
- Http
Methods List<string> - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- Ignore bool
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- Insert
After string - 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
- Path string
- Path of the URL.
- Path
Comparison stringType - 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
- Query
Parameters Pulumiverse.Dynatrace. Inputs. Url Based Sampling Query Parameters - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- Scope string
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Factor string
- 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
- Http
Method boolAny - The scaling factor for the defined URL will be applied to any HTTP method.
- Http
Methods []string - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- Ignore bool
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- Insert
After string - 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
- Path string
- Path of the URL.
- Path
Comparison stringType - 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
- Query
Parameters UrlBased Sampling Query Parameters Args - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- Scope string
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - factor String
- 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
- http
Method BooleanAny - The scaling factor for the defined URL will be applied to any HTTP method.
- http
Methods List<String> - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- ignore Boolean
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- insert
After String - 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
- path String
- Path of the URL.
- path
Comparison StringType - 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
- query
Parameters UrlBased Sampling Query Parameters - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- scope String
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - factor string
- 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
- http
Method booleanAny - The scaling factor for the defined URL will be applied to any HTTP method.
- http
Methods string[] - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- ignore boolean
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- insert
After string - 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
- path string
- Path of the URL.
- path
Comparison stringType - 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
- query
Parameters UrlBased Sampling Query Parameters - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- scope string
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - factor str
- 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
- http_
method_ boolany - The scaling factor for the defined URL will be applied to any HTTP method.
- http_
methods Sequence[str] - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- ignore bool
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- insert_
after str - 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
- path str
- Path of the URL.
- path_
comparison_ strtype - 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
- query_
parameters UrlBased Sampling Query Parameters Args - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- scope str
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - factor String
- 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
- http
Method BooleanAny - The scaling factor for the defined URL will be applied to any HTTP method.
- http
Methods List<String> - Possible values:
GET
,POST
,PUT
,DELETE
,HEAD
,CONNECT
,OPTIONS
,TRACE
,PATCH
- ignore Boolean
- The matching URLs will always be ignored, also if Adaptive Traffic Management is not active.
- insert
After String - 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
- path String
- Path of the URL.
- path
Comparison StringType - 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
- query
Parameters Property Map - Add URL parameters in any order. All specified parameters must be present in the query of an URL to get a match.
- scope String
- The scope of this setting (PROCESSGROUPINSTANCE, PROCESS_GROUP). Omit this property if you want to cover the whole environment.
Supporting Types
UrlBasedSamplingQueryParameters, UrlBasedSamplingQueryParametersArgs
UrlBasedSamplingQueryParametersParameter, UrlBasedSamplingQueryParametersParameterArgs
- Name string
- Query parameter name
- Value string
- Query parameter value
- Value
Is boolUndefined - Query parameter value is undefined
- Name string
- Query parameter name
- Value string
- Query parameter value
- Value
Is boolUndefined - Query parameter value is undefined
- name String
- Query parameter name
- value String
- Query parameter value
- value
Is BooleanUndefined - Query parameter value is undefined
- name string
- Query parameter name
- value string
- Query parameter value
- value
Is booleanUndefined - Query parameter value is undefined
- name str
- Query parameter name
- value str
- Query parameter value
- value_
is_ boolundefined - Query parameter value is undefined
- name String
- Query parameter name
- value String
- Query parameter value
- value
Is BooleanUndefined - Query parameter value is undefined
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.