tencentcloud 1.81.187 published on Monday, Apr 28, 2025 by tencentcloudstack
tencentcloud.getPtsScenarioWithJobs
Explore with Pulumi AI
tencentcloud 1.81.187 published on Monday, Apr 28, 2025 by tencentcloudstack
Use this data source to query detailed information of pts scenario_with_jobs
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const scenarioWithJobs = tencentcloud.getPtsScenarioWithJobs({
ascend: true,
ignoreDataset: true,
ignoreScript: true,
projectIds: ["project-45vw7v82"],
scenarioIds: ["scenario-koakp3h6"],
scenarioName: "pts-jmeter",
scenarioType: "pts-jmeter",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
scenario_with_jobs = tencentcloud.get_pts_scenario_with_jobs(ascend=True,
ignore_dataset=True,
ignore_script=True,
project_ids=["project-45vw7v82"],
scenario_ids=["scenario-koakp3h6"],
scenario_name="pts-jmeter",
scenario_type="pts-jmeter")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetPtsScenarioWithJobs(ctx, &tencentcloud.GetPtsScenarioWithJobsArgs{
Ascend: pulumi.BoolRef(true),
IgnoreDataset: pulumi.BoolRef(true),
IgnoreScript: pulumi.BoolRef(true),
ProjectIds: []string{
"project-45vw7v82",
},
ScenarioIds: []string{
"scenario-koakp3h6",
},
ScenarioName: pulumi.StringRef("pts-jmeter"),
ScenarioType: pulumi.StringRef("pts-jmeter"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var scenarioWithJobs = Tencentcloud.GetPtsScenarioWithJobs.Invoke(new()
{
Ascend = true,
IgnoreDataset = true,
IgnoreScript = true,
ProjectIds = new[]
{
"project-45vw7v82",
},
ScenarioIds = new[]
{
"scenario-koakp3h6",
},
ScenarioName = "pts-jmeter",
ScenarioType = "pts-jmeter",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetPtsScenarioWithJobsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var scenarioWithJobs = TencentcloudFunctions.getPtsScenarioWithJobs(GetPtsScenarioWithJobsArgs.builder()
.ascend(true)
.ignoreDataset(true)
.ignoreScript(true)
.projectIds("project-45vw7v82")
.scenarioIds("scenario-koakp3h6")
.scenarioName("pts-jmeter")
.scenarioType("pts-jmeter")
.build());
}
}
variables:
scenarioWithJobs:
fn::invoke:
function: tencentcloud:getPtsScenarioWithJobs
arguments:
ascend: true
ignoreDataset: true
ignoreScript: true
projectIds:
- project-45vw7v82
scenarioIds:
- scenario-koakp3h6
scenarioName: pts-jmeter
scenarioType: pts-jmeter
Using getPtsScenarioWithJobs
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getPtsScenarioWithJobs(args: GetPtsScenarioWithJobsArgs, opts?: InvokeOptions): Promise<GetPtsScenarioWithJobsResult>
function getPtsScenarioWithJobsOutput(args: GetPtsScenarioWithJobsOutputArgs, opts?: InvokeOptions): Output<GetPtsScenarioWithJobsResult>
def get_pts_scenario_with_jobs(ascend: Optional[bool] = None,
id: Optional[str] = None,
ignore_dataset: Optional[bool] = None,
ignore_script: Optional[bool] = None,
order_by: Optional[str] = None,
owner: Optional[str] = None,
project_ids: Optional[Sequence[str]] = None,
result_output_file: Optional[str] = None,
scenario_ids: Optional[Sequence[str]] = None,
scenario_name: Optional[str] = None,
scenario_type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetPtsScenarioWithJobsResult
def get_pts_scenario_with_jobs_output(ascend: Optional[pulumi.Input[bool]] = None,
id: Optional[pulumi.Input[str]] = None,
ignore_dataset: Optional[pulumi.Input[bool]] = None,
ignore_script: Optional[pulumi.Input[bool]] = None,
order_by: Optional[pulumi.Input[str]] = None,
owner: Optional[pulumi.Input[str]] = None,
project_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
scenario_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
scenario_name: Optional[pulumi.Input[str]] = None,
scenario_type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetPtsScenarioWithJobsResult]
func GetPtsScenarioWithJobs(ctx *Context, args *GetPtsScenarioWithJobsArgs, opts ...InvokeOption) (*GetPtsScenarioWithJobsResult, error)
func GetPtsScenarioWithJobsOutput(ctx *Context, args *GetPtsScenarioWithJobsOutputArgs, opts ...InvokeOption) GetPtsScenarioWithJobsResultOutput
> Note: This function is named GetPtsScenarioWithJobs
in the Go SDK.
public static class GetPtsScenarioWithJobs
{
public static Task<GetPtsScenarioWithJobsResult> InvokeAsync(GetPtsScenarioWithJobsArgs args, InvokeOptions? opts = null)
public static Output<GetPtsScenarioWithJobsResult> Invoke(GetPtsScenarioWithJobsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetPtsScenarioWithJobsResult> getPtsScenarioWithJobs(GetPtsScenarioWithJobsArgs args, InvokeOptions options)
public static Output<GetPtsScenarioWithJobsResult> getPtsScenarioWithJobs(GetPtsScenarioWithJobsArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getPtsScenarioWithJobs:getPtsScenarioWithJobs
arguments:
# arguments dictionary
The following arguments are supported:
- Project
Ids This property is required. List<string> - Project ID list.
- Ascend bool
- Whether to use ascending order.
- Id string
- Ignore
Dataset bool - Whether to ignore the dataset.
- Ignore
Script bool - Whether to ignore the script content.
- Order
By string - The field column used for ordering.
- Owner string
- The job owner.
- Result
Output stringFile - Used to save results.
- Scenario
Ids List<string> - Scenario ID list.
- Scenario
Name string - Scenario name.
- Scenario
Type string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Project
Ids This property is required. []string - Project ID list.
- Ascend bool
- Whether to use ascending order.
- Id string
- Ignore
Dataset bool - Whether to ignore the dataset.
- Ignore
Script bool - Whether to ignore the script content.
- Order
By string - The field column used for ordering.
- Owner string
- The job owner.
- Result
Output stringFile - Used to save results.
- Scenario
Ids []string - Scenario ID list.
- Scenario
Name string - Scenario name.
- Scenario
Type string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- project
Ids This property is required. List<String> - Project ID list.
- ascend Boolean
- Whether to use ascending order.
- id String
- ignore
Dataset Boolean - Whether to ignore the dataset.
- ignore
Script Boolean - Whether to ignore the script content.
- order
By String - The field column used for ordering.
- owner String
- The job owner.
- result
Output StringFile - Used to save results.
- scenario
Ids List<String> - Scenario ID list.
- scenario
Name String - Scenario name.
- scenario
Type String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- project
Ids This property is required. string[] - Project ID list.
- ascend boolean
- Whether to use ascending order.
- id string
- ignore
Dataset boolean - Whether to ignore the dataset.
- ignore
Script boolean - Whether to ignore the script content.
- order
By string - The field column used for ordering.
- owner string
- The job owner.
- result
Output stringFile - Used to save results.
- scenario
Ids string[] - Scenario ID list.
- scenario
Name string - Scenario name.
- scenario
Type string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- project_
ids This property is required. Sequence[str] - Project ID list.
- ascend bool
- Whether to use ascending order.
- id str
- ignore_
dataset bool - Whether to ignore the dataset.
- ignore_
script bool - Whether to ignore the script content.
- order_
by str - The field column used for ordering.
- owner str
- The job owner.
- result_
output_ strfile - Used to save results.
- scenario_
ids Sequence[str] - Scenario ID list.
- scenario_
name str - Scenario name.
- scenario_
type str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- project
Ids This property is required. List<String> - Project ID list.
- ascend Boolean
- Whether to use ascending order.
- id String
- ignore
Dataset Boolean - Whether to ignore the dataset.
- ignore
Script Boolean - Whether to ignore the script content.
- order
By String - The field column used for ordering.
- owner String
- The job owner.
- result
Output StringFile - Used to save results.
- scenario
Ids List<String> - Scenario ID list.
- scenario
Name String - Scenario name.
- scenario
Type String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
getPtsScenarioWithJobs Result
The following output properties are available:
- Id string
- Project
Ids List<string> - Scenario
With List<GetJobs Sets Pts Scenario With Jobs Scenario With Jobs Set> - The scenario configuration and its jobs.
- Ascend bool
- Ignore
Dataset bool - Ignore
Script bool - Order
By string - Owner string
- The owner.
- Result
Output stringFile - Scenario
Ids List<string> - Scenario
Name string - Scenario name.
- Scenario
Type string
- Id string
- Project
Ids []string - Scenario
With []GetJobs Sets Pts Scenario With Jobs Scenario With Jobs Set - The scenario configuration and its jobs.
- Ascend bool
- Ignore
Dataset bool - Ignore
Script bool - Order
By string - Owner string
- The owner.
- Result
Output stringFile - Scenario
Ids []string - Scenario
Name string - Scenario name.
- Scenario
Type string
- id String
- project
Ids List<String> - scenario
With List<GetJobs Sets Pts Scenario With Jobs Scenario With Jobs Set> - The scenario configuration and its jobs.
- ascend Boolean
- ignore
Dataset Boolean - ignore
Script Boolean - order
By String - owner String
- The owner.
- result
Output StringFile - scenario
Ids List<String> - scenario
Name String - Scenario name.
- scenario
Type String
- id string
- project
Ids string[] - scenario
With GetJobs Sets Pts Scenario With Jobs Scenario With Jobs Set[] - The scenario configuration and its jobs.
- ascend boolean
- ignore
Dataset boolean - ignore
Script boolean - order
By string - owner string
- The owner.
- result
Output stringFile - scenario
Ids string[] - scenario
Name string - Scenario name.
- scenario
Type string
- id str
- project_
ids Sequence[str] - scenario_
with_ Sequence[Getjobs_ sets Pts Scenario With Jobs Scenario With Jobs Set] - The scenario configuration and its jobs.
- ascend bool
- ignore_
dataset bool - ignore_
script bool - order_
by str - owner str
- The owner.
- result_
output_ strfile - scenario_
ids Sequence[str] - scenario_
name str - Scenario name.
- scenario_
type str
- id String
- project
Ids List<String> - scenario
With List<Property Map>Jobs Sets - The scenario configuration and its jobs.
- ascend Boolean
- ignore
Dataset Boolean - ignore
Script Boolean - order
By String - owner String
- The owner.
- result
Output StringFile - scenario
Ids List<String> - scenario
Name String - Scenario name.
- scenario
Type String
Supporting Types
GetPtsScenarioWithJobsScenarioWithJobsSet
- Jobs
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job> - Jobs related to the scenario.
- Scenarios
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario> - The returned scenario.
- Jobs
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job - Jobs related to the scenario.
- Scenarios
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario - The returned scenario.
- jobs
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job> - Jobs related to the scenario.
- scenarios
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario> - The returned scenario.
- jobs
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job[] - Jobs related to the scenario.
- scenarios
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario[] - The returned scenario.
- jobs
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job] - Jobs related to the scenario.
- scenarios
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario] - The returned scenario.
- jobs
This property is required. List<Property Map> - Jobs related to the scenario.
- scenarios
This property is required. List<Property Map> - The returned scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJob
- Abort
Reason This property is required. double - The reason for aborting the job.
- Configs
This property is required. List<string> - Deprecated.
- Created
At This property is required. string - The creation time of the scenario.
- Cron
Id This property is required. string - The cron job ID.
- Datasets
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Dataset> - The test data sets for the load test.
- Debug
This property is required. bool - Whether to run the job in the debug mode. The default value is false.
- Domain
Name Configs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config> - The configuration for parsing domain names.
- Duration
This property is required. double - Job running duration.
- End
Time This property is required. string - The job ending time.
- Error
Rate This property is required. double - Error rate.
- Extensions
This property is required. List<string> - Deprecated.
- Job
Id This property is required. string - Job ID.
- Job
Owner This property is required. string - Job owner.
- Load
Source Infos This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source Info> - The load source information.
- Load
Sources This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source> - Deprecated.
- Loads
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load> - Scenario is load test configuration.
- Max
Requests Per Second This property is required. double - The maximum RPS.
- Max
Virtual User Count This property is required. double - The maximum VU of the job.
- Message
This property is required. string - The message describing the job running status.
- Network
Receive Rate This property is required. double - The rate of receiving bytes.
- Network
Send Rate This property is required. double - The rate of sending bytes.
- Note
This property is required. string - The note of the job.
- Notification
Hooks This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook> - The notification hooks.
- Plugins
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Plugin> - Plugins.
- Project
Id This property is required. string - Project ID.
- Project
Name This property is required. string - Project name.
- Protocols
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Protocol> - The protocol file.
- Request
Files This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Request File> - The files in the request.
- Request
Total This property is required. double - The total reqeust count.
- Requests
Per Second This property is required. double - The configuration of the RPS mode load test.
- Response
Time Average This property is required. double - The average response time.
- Response
Time Max This property is required. double - The maximum response time.
- Response
Time Min This property is required. double - The minimum response time.
- Response
Time P90 This property is required. double - The 90 percentile of the response time.
- Response
Time P95 This property is required. double - The 95 percentile of the response time.
- Response
Time P99 This property is required. double - The 99 percentile of the response time.
- Scenario
Id This property is required. string - Scenario ID.
- Scenario
Name This property is required. string - Scenario name.
- Scripts
This property is required. List<string> - Deprecated.
- Start
Time This property is required. string - The job starting time.
- Status
This property is required. double - Scenario status.
- Test
Scripts This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script> - The script of the load test.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Abort
Reason This property is required. float64 - The reason for aborting the job.
- Configs
This property is required. []string - Deprecated.
- Created
At This property is required. string - The creation time of the scenario.
- Cron
Id This property is required. string - The cron job ID.
- Datasets
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Dataset - The test data sets for the load test.
- Debug
This property is required. bool - Whether to run the job in the debug mode. The default value is false.
- Domain
Name Configs This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config - The configuration for parsing domain names.
- Duration
This property is required. float64 - Job running duration.
- End
Time This property is required. string - The job ending time.
- Error
Rate This property is required. float64 - Error rate.
- Extensions
This property is required. []string - Deprecated.
- Job
Id This property is required. string - Job ID.
- Job
Owner This property is required. string - Job owner.
- Load
Source Infos This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source Info - The load source information.
- Load
Sources This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source - Deprecated.
- Loads
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load - Scenario is load test configuration.
- Max
Requests Per Second This property is required. float64 - The maximum RPS.
- Max
Virtual User Count This property is required. float64 - The maximum VU of the job.
- Message
This property is required. string - The message describing the job running status.
- Network
Receive Rate This property is required. float64 - The rate of receiving bytes.
- Network
Send Rate This property is required. float64 - The rate of sending bytes.
- Note
This property is required. string - The note of the job.
- Notification
Hooks This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook - The notification hooks.
- Plugins
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Plugin - Plugins.
- Project
Id This property is required. string - Project ID.
- Project
Name This property is required. string - Project name.
- Protocols
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Protocol - The protocol file.
- Request
Files This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Request File - The files in the request.
- Request
Total This property is required. float64 - The total reqeust count.
- Requests
Per Second This property is required. float64 - The configuration of the RPS mode load test.
- Response
Time Average This property is required. float64 - The average response time.
- Response
Time Max This property is required. float64 - The maximum response time.
- Response
Time Min This property is required. float64 - The minimum response time.
- Response
Time P90 This property is required. float64 - The 90 percentile of the response time.
- Response
Time P95 This property is required. float64 - The 95 percentile of the response time.
- Response
Time P99 This property is required. float64 - The 99 percentile of the response time.
- Scenario
Id This property is required. string - Scenario ID.
- Scenario
Name This property is required. string - Scenario name.
- Scripts
This property is required. []string - Deprecated.
- Start
Time This property is required. string - The job starting time.
- Status
This property is required. float64 - Scenario status.
- Test
Scripts This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script - The script of the load test.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- abort
Reason This property is required. Double - The reason for aborting the job.
- configs
This property is required. List<String> - Deprecated.
- created
At This property is required. String - The creation time of the scenario.
- cron
Id This property is required. String - The cron job ID.
- datasets
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Dataset> - The test data sets for the load test.
- debug
This property is required. Boolean - Whether to run the job in the debug mode. The default value is false.
- domain
Name Configs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config> - The configuration for parsing domain names.
- duration
This property is required. Double - Job running duration.
- end
Time This property is required. String - The job ending time.
- error
Rate This property is required. Double - Error rate.
- extensions
This property is required. List<String> - Deprecated.
- job
Id This property is required. String - Job ID.
- job
Owner This property is required. String - Job owner.
- load
Source Infos This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source Info> - The load source information.
- load
Sources This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source> - Deprecated.
- loads
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load> - Scenario is load test configuration.
- max
Requests Per Second This property is required. Double - The maximum RPS.
- max
Virtual User Count This property is required. Double - The maximum VU of the job.
- message
This property is required. String - The message describing the job running status.
- network
Receive Rate This property is required. Double - The rate of receiving bytes.
- network
Send Rate This property is required. Double - The rate of sending bytes.
- note
This property is required. String - The note of the job.
- notification
Hooks This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook> - The notification hooks.
- plugins
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Plugin> - Plugins.
- project
Id This property is required. String - Project ID.
- project
Name This property is required. String - Project name.
- protocols
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Protocol> - The protocol file.
- request
Files This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Request File> - The files in the request.
- request
Total This property is required. Double - The total reqeust count.
- requests
Per Second This property is required. Double - The configuration of the RPS mode load test.
- response
Time Average This property is required. Double - The average response time.
- response
Time Max This property is required. Double - The maximum response time.
- response
Time Min This property is required. Double - The minimum response time.
- response
Time P90 This property is required. Double - The 90 percentile of the response time.
- response
Time P95 This property is required. Double - The 95 percentile of the response time.
- response
Time P99 This property is required. Double - The 99 percentile of the response time.
- scenario
Id This property is required. String - Scenario ID.
- scenario
Name This property is required. String - Scenario name.
- scripts
This property is required. List<String> - Deprecated.
- start
Time This property is required. String - The job starting time.
- status
This property is required. Double - Scenario status.
- test
Scripts This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script> - The script of the load test.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- abort
Reason This property is required. number - The reason for aborting the job.
- configs
This property is required. string[] - Deprecated.
- created
At This property is required. string - The creation time of the scenario.
- cron
Id This property is required. string - The cron job ID.
- datasets
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Dataset[] - The test data sets for the load test.
- debug
This property is required. boolean - Whether to run the job in the debug mode. The default value is false.
- domain
Name Configs This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config[] - The configuration for parsing domain names.
- duration
This property is required. number - Job running duration.
- end
Time This property is required. string - The job ending time.
- error
Rate This property is required. number - Error rate.
- extensions
This property is required. string[] - Deprecated.
- job
Id This property is required. string - Job ID.
- job
Owner This property is required. string - Job owner.
- load
Source Infos This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source Info[] - The load source information.
- load
Sources This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source[] - Deprecated.
- loads
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load[] - Scenario is load test configuration.
- max
Requests Per Second This property is required. number - The maximum RPS.
- max
Virtual User Count This property is required. number - The maximum VU of the job.
- message
This property is required. string - The message describing the job running status.
- network
Receive Rate This property is required. number - The rate of receiving bytes.
- network
Send Rate This property is required. number - The rate of sending bytes.
- note
This property is required. string - The note of the job.
- notification
Hooks This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook[] - The notification hooks.
- plugins
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Plugin[] - Plugins.
- project
Id This property is required. string - Project ID.
- project
Name This property is required. string - Project name.
- protocols
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Protocol[] - The protocol file.
- request
Files This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Request File[] - The files in the request.
- request
Total This property is required. number - The total reqeust count.
- requests
Per Second This property is required. number - The configuration of the RPS mode load test.
- response
Time Average This property is required. number - The average response time.
- response
Time Max This property is required. number - The maximum response time.
- response
Time Min This property is required. number - The minimum response time.
- response
Time P90 This property is required. number - The 90 percentile of the response time.
- response
Time P95 This property is required. number - The 95 percentile of the response time.
- response
Time P99 This property is required. number - The 99 percentile of the response time.
- scenario
Id This property is required. string - Scenario ID.
- scenario
Name This property is required. string - Scenario name.
- scripts
This property is required. string[] - Deprecated.
- start
Time This property is required. string - The job starting time.
- status
This property is required. number - Scenario status.
- test
Scripts This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script[] - The script of the load test.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- abort_
reason This property is required. float - The reason for aborting the job.
- configs
This property is required. Sequence[str] - Deprecated.
- created_
at This property is required. str - The creation time of the scenario.
- cron_
id This property is required. str - The cron job ID.
- datasets
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Dataset] - The test data sets for the load test.
- debug
This property is required. bool - Whether to run the job in the debug mode. The default value is false.
- domain_
name_ configs This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config] - The configuration for parsing domain names.
- duration
This property is required. float - Job running duration.
- end_
time This property is required. str - The job ending time.
- error_
rate This property is required. float - Error rate.
- extensions
This property is required. Sequence[str] - Deprecated.
- job_
id This property is required. str - Job ID.
- job_
owner This property is required. str - Job owner.
- load_
source_ infos This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source Info] - The load source information.
- load_
sources This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source] - Deprecated.
- loads
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load] - Scenario is load test configuration.
- max_
requests_ per_ second This property is required. float - The maximum RPS.
- max_
virtual_ user_ count This property is required. float - The maximum VU of the job.
- message
This property is required. str - The message describing the job running status.
- network_
receive_ rate This property is required. float - The rate of receiving bytes.
- network_
send_ rate This property is required. float - The rate of sending bytes.
- note
This property is required. str - The note of the job.
- notification_
hooks This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook] - The notification hooks.
- plugins
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Plugin] - Plugins.
- project_
id This property is required. str - Project ID.
- project_
name This property is required. str - Project name.
- protocols
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Protocol] - The protocol file.
- request_
files This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Request File] - The files in the request.
- request_
total This property is required. float - The total reqeust count.
- requests_
per_ second This property is required. float - The configuration of the RPS mode load test.
- response_
time_ average This property is required. float - The average response time.
- response_
time_ max This property is required. float - The maximum response time.
- response_
time_ min This property is required. float - The minimum response time.
- response_
time_ p90 This property is required. float - The 90 percentile of the response time.
- response_
time_ p95 This property is required. float - The 95 percentile of the response time.
- response_
time_ p99 This property is required. float - The 99 percentile of the response time.
- scenario_
id This property is required. str - Scenario ID.
- scenario_
name This property is required. str - Scenario name.
- scripts
This property is required. Sequence[str] - Deprecated.
- start_
time This property is required. str - The job starting time.
- status
This property is required. float - Scenario status.
- test_
scripts This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script] - The script of the load test.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- abort
Reason This property is required. Number - The reason for aborting the job.
- configs
This property is required. List<String> - Deprecated.
- created
At This property is required. String - The creation time of the scenario.
- cron
Id This property is required. String - The cron job ID.
- datasets
This property is required. List<Property Map> - The test data sets for the load test.
- debug
This property is required. Boolean - Whether to run the job in the debug mode. The default value is false.
- domain
Name Configs This property is required. List<Property Map> - The configuration for parsing domain names.
- duration
This property is required. Number - Job running duration.
- end
Time This property is required. String - The job ending time.
- error
Rate This property is required. Number - Error rate.
- extensions
This property is required. List<String> - Deprecated.
- job
Id This property is required. String - Job ID.
- job
Owner This property is required. String - Job owner.
- load
Source Infos This property is required. List<Property Map> - The load source information.
- load
Sources This property is required. List<Property Map> - Deprecated.
- loads
This property is required. List<Property Map> - Scenario is load test configuration.
- max
Requests Per Second This property is required. Number - The maximum RPS.
- max
Virtual User Count This property is required. Number - The maximum VU of the job.
- message
This property is required. String - The message describing the job running status.
- network
Receive Rate This property is required. Number - The rate of receiving bytes.
- network
Send Rate This property is required. Number - The rate of sending bytes.
- note
This property is required. String - The note of the job.
- notification
Hooks This property is required. List<Property Map> - The notification hooks.
- plugins
This property is required. List<Property Map> - Plugins.
- project
Id This property is required. String - Project ID.
- project
Name This property is required. String - Project name.
- protocols
This property is required. List<Property Map> - The protocol file.
- request
Files This property is required. List<Property Map> - The files in the request.
- request
Total This property is required. Number - The total reqeust count.
- requests
Per Second This property is required. Number - The configuration of the RPS mode load test.
- response
Time Average This property is required. Number - The average response time.
- response
Time Max This property is required. Number - The maximum response time.
- response
Time Min This property is required. Number - The minimum response time.
- response
Time P90 This property is required. Number - The 90 percentile of the response time.
- response
Time P95 This property is required. Number - The 95 percentile of the response time.
- response
Time P99 This property is required. Number - The 99 percentile of the response time.
- scenario
Id This property is required. String - Scenario ID.
- scenario
Name This property is required. String - Scenario name.
- scripts
This property is required. List<String> - Deprecated.
- start
Time This property is required. String - The job starting time.
- status
This property is required. Number - Scenario status.
- test
Scripts This property is required. List<Property Map> - The script of the load test.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
GetPtsScenarioWithJobsScenarioWithJobsSetJobDataset
- File
Id This property is required. string - File ID.
- Head
Lines This property is required. List<string> - The header lines of the file.
- Header
Columns This property is required. List<string> - The parameter name list.
- Header
In File This property is required. bool - Whether the first line contains the parameter names.
- Line
Count This property is required. double - The line count of the file.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Split
This property is required. bool - Whether to split the test data.
- Tail
Lines This property is required. List<string> - The tail lines of the file.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- File
Id This property is required. string - File ID.
- Head
Lines This property is required. []string - The header lines of the file.
- Header
Columns This property is required. []string - The parameter name list.
- Header
In File This property is required. bool - Whether the first line contains the parameter names.
- Line
Count This property is required. float64 - The line count of the file.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Split
This property is required. bool - Whether to split the test data.
- Tail
Lines This property is required. []string - The tail lines of the file.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- head
Lines This property is required. List<String> - The header lines of the file.
- header
Columns This property is required. List<String> - The parameter name list.
- header
In File This property is required. Boolean - Whether the first line contains the parameter names.
- line
Count This property is required. Double - The line count of the file.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- split
This property is required. Boolean - Whether to split the test data.
- tail
Lines This property is required. List<String> - The tail lines of the file.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- file
Id This property is required. string - File ID.
- head
Lines This property is required. string[] - The header lines of the file.
- header
Columns This property is required. string[] - The parameter name list.
- header
In File This property is required. boolean - Whether the first line contains the parameter names.
- line
Count This property is required. number - The line count of the file.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- split
This property is required. boolean - Whether to split the test data.
- tail
Lines This property is required. string[] - The tail lines of the file.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- file_
id This property is required. str - File ID.
- head_
lines This property is required. Sequence[str] - The header lines of the file.
- header_
columns This property is required. Sequence[str] - The parameter name list.
- header_
in_ file This property is required. bool - Whether the first line contains the parameter names.
- line_
count This property is required. float - The line count of the file.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- split
This property is required. bool - Whether to split the test data.
- tail_
lines This property is required. Sequence[str] - The tail lines of the file.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- head
Lines This property is required. List<String> - The header lines of the file.
- header
Columns This property is required. List<String> - The parameter name list.
- header
In File This property is required. Boolean - Whether the first line contains the parameter names.
- line
Count This property is required. Number - The line count of the file.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- split
This property is required. Boolean - Whether to split the test data.
- tail
Lines This property is required. List<String> - The tail lines of the file.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJobDomainNameConfig
- Dns
Configs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config> - The DNS configuration.
- Host
Aliases This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias> - The configuration for host aliases.
- Dns
Configs This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config - The DNS configuration.
- Host
Aliases This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias - The configuration for host aliases.
- dns
Configs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config> - The DNS configuration.
- host
Aliases This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias> - The configuration for host aliases.
- dns
Configs This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config[] - The DNS configuration.
- host
Aliases This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias[] - The configuration for host aliases.
- dns_
configs This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config] - The DNS configuration.
- host_
aliases This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias] - The configuration for host aliases.
- dns
Configs This property is required. List<Property Map> - The DNS configuration.
- host
Aliases This property is required. List<Property Map> - The configuration for host aliases.
GetPtsScenarioWithJobsScenarioWithJobsSetJobDomainNameConfigDnsConfig
- Nameservers
This property is required. List<string> - DNS IP list.
- Nameservers
This property is required. []string - DNS IP list.
- nameservers
This property is required. List<String> - DNS IP list.
- nameservers
This property is required. string[] - DNS IP list.
- nameservers
This property is required. Sequence[str] - DNS IP list.
- nameservers
This property is required. List<String> - DNS IP list.
GetPtsScenarioWithJobsScenarioWithJobsSetJobDomainNameConfigHostAlias
- host_
names This property is required. Sequence[str] - Host names.
- ip
This property is required. str - IP.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoad
- Geo
Regions Load Distributions This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution> - The geographical distribution of the load source.
- Load
Specs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec> - Scenario is load specification.
- Vpc
Load Distributions This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution> - The distribution of the load source.
- Geo
Regions Load Distributions This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution - The geographical distribution of the load source.
- Load
Specs This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec - Scenario is load specification.
- Vpc
Load Distributions This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution - The distribution of the load source.
- geo
Regions Load Distributions This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution> - The geographical distribution of the load source.
- load
Specs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec> - Scenario is load specification.
- vpc
Load Distributions This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution> - The distribution of the load source.
- geo
Regions Load Distributions This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution[] - The geographical distribution of the load source.
- load
Specs This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec[] - Scenario is load specification.
- vpc
Load Distributions This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution[] - The distribution of the load source.
- geo_
regions_ load_ distributions This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution] - The geographical distribution of the load source.
- load_
specs This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec] - Scenario is load specification.
- vpc_
load_ distributions This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution] - The distribution of the load source.
- geo
Regions Load Distributions This property is required. List<Property Map> - The geographical distribution of the load source.
- load
Specs This property is required. List<Property Map> - Scenario is load specification.
- vpc
Load Distributions This property is required. List<Property Map> - The distribution of the load source.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadGeoRegionsLoadDistribution
- Percentage
This property is required. double - Percentage.
- Region
This property is required. string - Region.
- Region
Id This property is required. double - Region ID.
- Percentage
This property is required. float64 - Percentage.
- Region
This property is required. string - Region.
- Region
Id This property is required. float64 - Region ID.
- percentage
This property is required. Double - Percentage.
- region
This property is required. String - Region.
- region
Id This property is required. Double - Region ID.
- percentage
This property is required. number - Percentage.
- region
This property is required. string - Region.
- region
Id This property is required. number - Region ID.
- percentage
This property is required. float - Percentage.
- region
This property is required. str - Region.
- region_
id This property is required. float - Region ID.
- percentage
This property is required. Number - Percentage.
- region
This property is required. String - Region.
- region
Id This property is required. Number - Region ID.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpec
- Concurrencies
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency> - The configuration for the concurrency mode.
- Requests
Per Seconds This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second> - The configuration of the RPS mode load test.
- Script
Origins This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin> - The script origin.
- Concurrencies
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency - The configuration for the concurrency mode.
- Requests
Per Seconds This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second - The configuration of the RPS mode load test.
- Script
Origins This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin - The script origin.
- concurrencies
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency> - The configuration for the concurrency mode.
- requests
Per Seconds This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second> - The configuration of the RPS mode load test.
- script
Origins This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin> - The script origin.
- concurrencies
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency[] - The configuration for the concurrency mode.
- requests
Per Seconds This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second[] - The configuration of the RPS mode load test.
- script
Origins This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin[] - The script origin.
- concurrencies
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency] - The configuration for the concurrency mode.
- requests_
per_ seconds This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second] - The configuration of the RPS mode load test.
- script_
origins This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin] - The script origin.
- concurrencies
This property is required. List<Property Map> - The configuration for the concurrency mode.
- requests
Per Seconds This property is required. List<Property Map> - The configuration of the RPS mode load test.
- script
Origins This property is required. List<Property Map> - The script origin.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpecConcurrency
- Graceful
Stop Seconds This property is required. double - The waiting period for a graceful shutdown.
- Iteration
Count This property is required. double - The iteration count of the load test.
- Max
Requests Per Second This property is required. double - The maximum RPS.
- Resources
This property is required. double - The recource count of the load test.
- Stages
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage> - The configuration for the multi-stage load test.
- Graceful
Stop Seconds This property is required. float64 - The waiting period for a graceful shutdown.
- Iteration
Count This property is required. float64 - The iteration count of the load test.
- Max
Requests Per Second This property is required. float64 - The maximum RPS.
- Resources
This property is required. float64 - The recource count of the load test.
- Stages
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage - The configuration for the multi-stage load test.
- graceful
Stop Seconds This property is required. Double - The waiting period for a graceful shutdown.
- iteration
Count This property is required. Double - The iteration count of the load test.
- max
Requests Per Second This property is required. Double - The maximum RPS.
- resources
This property is required. Double - The recource count of the load test.
- stages
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage> - The configuration for the multi-stage load test.
- graceful
Stop Seconds This property is required. number - The waiting period for a graceful shutdown.
- iteration
Count This property is required. number - The iteration count of the load test.
- max
Requests Per Second This property is required. number - The maximum RPS.
- resources
This property is required. number - The recource count of the load test.
- stages
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage[] - The configuration for the multi-stage load test.
- graceful_
stop_ seconds This property is required. float - The waiting period for a graceful shutdown.
- iteration_
count This property is required. float - The iteration count of the load test.
- max_
requests_ per_ second This property is required. float - The maximum RPS.
- resources
This property is required. float - The recource count of the load test.
- stages
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage] - The configuration for the multi-stage load test.
- graceful
Stop Seconds This property is required. Number - The waiting period for a graceful shutdown.
- iteration
Count This property is required. Number - The iteration count of the load test.
- max
Requests Per Second This property is required. Number - The maximum RPS.
- resources
This property is required. Number - The recource count of the load test.
- stages
This property is required. List<Property Map> - The configuration for the multi-stage load test.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpecConcurrencyStage
- Duration
Seconds This property is required. double - The load test execution time.
- Target
Virtual Users This property is required. double - Deprecated.
- Duration
Seconds This property is required. float64 - The load test execution time.
- Target
Virtual Users This property is required. float64 - Deprecated.
- duration
Seconds This property is required. Double - The load test execution time.
- target
Virtual Users This property is required. Double - Deprecated.
- duration
Seconds This property is required. number - The load test execution time.
- target
Virtual Users This property is required. number - Deprecated.
- duration_
seconds This property is required. float - The load test execution time.
- target_
virtual_ users This property is required. float - Deprecated.
- duration
Seconds This property is required. Number - The load test execution time.
- target
Virtual Users This property is required. Number - Deprecated.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpecRequestsPerSecond
- Duration
Seconds This property is required. double - The load test execution time.
- Graceful
Stop Seconds This property is required. double - The waiting period for a graceful shutdown.
- Max
Requests Per Second This property is required. double - The maximum RPS.
- Resources
This property is required. double - The recource count of the load test.
- Start
Requests Per Second This property is required. double - The starting minimum RPS.
- Target
Requests Per Second This property is required. double - The target RPS.
- Target
Virtual Users This property is required. double - Deprecated.
- Duration
Seconds This property is required. float64 - The load test execution time.
- Graceful
Stop Seconds This property is required. float64 - The waiting period for a graceful shutdown.
- Max
Requests Per Second This property is required. float64 - The maximum RPS.
- Resources
This property is required. float64 - The recource count of the load test.
- Start
Requests Per Second This property is required. float64 - The starting minimum RPS.
- Target
Requests Per Second This property is required. float64 - The target RPS.
- Target
Virtual Users This property is required. float64 - Deprecated.
- duration
Seconds This property is required. Double - The load test execution time.
- graceful
Stop Seconds This property is required. Double - The waiting period for a graceful shutdown.
- max
Requests Per Second This property is required. Double - The maximum RPS.
- resources
This property is required. Double - The recource count of the load test.
- start
Requests Per Second This property is required. Double - The starting minimum RPS.
- target
Requests Per Second This property is required. Double - The target RPS.
- target
Virtual Users This property is required. Double - Deprecated.
- duration
Seconds This property is required. number - The load test execution time.
- graceful
Stop Seconds This property is required. number - The waiting period for a graceful shutdown.
- max
Requests Per Second This property is required. number - The maximum RPS.
- resources
This property is required. number - The recource count of the load test.
- start
Requests Per Second This property is required. number - The starting minimum RPS.
- target
Requests Per Second This property is required. number - The target RPS.
- target
Virtual Users This property is required. number - Deprecated.
- duration_
seconds This property is required. float - The load test execution time.
- graceful_
stop_ seconds This property is required. float - The waiting period for a graceful shutdown.
- max_
requests_ per_ second This property is required. float - The maximum RPS.
- resources
This property is required. float - The recource count of the load test.
- start_
requests_ per_ second This property is required. float - The starting minimum RPS.
- target_
requests_ per_ second This property is required. float - The target RPS.
- target_
virtual_ users This property is required. float - Deprecated.
- duration
Seconds This property is required. Number - The load test execution time.
- graceful
Stop Seconds This property is required. Number - The waiting period for a graceful shutdown.
- max
Requests Per Second This property is required. Number - The maximum RPS.
- resources
This property is required. Number - The recource count of the load test.
- start
Requests Per Second This property is required. Number - The starting minimum RPS.
- target
Requests Per Second This property is required. Number - The target RPS.
- target
Virtual Users This property is required. Number - Deprecated.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpecScriptOrigin
- Duration
Seconds This property is required. double - The load test execution time.
- Machine
Number This property is required. double - The load test machine number.
- Machine
Specification This property is required. string - The load test machine specification.
- Duration
Seconds This property is required. float64 - The load test execution time.
- Machine
Number This property is required. float64 - The load test machine number.
- Machine
Specification This property is required. string - The load test machine specification.
- duration
Seconds This property is required. Double - The load test execution time.
- machine
Number This property is required. Double - The load test machine number.
- machine
Specification This property is required. String - The load test machine specification.
- duration
Seconds This property is required. number - The load test execution time.
- machine
Number This property is required. number - The load test machine number.
- machine
Specification This property is required. string - The load test machine specification.
- duration_
seconds This property is required. float - The load test execution time.
- machine_
number This property is required. float - The load test machine number.
- machine_
specification This property is required. str - The load test machine specification.
- duration
Seconds This property is required. Number - The load test execution time.
- machine
Number This property is required. Number - The load test machine number.
- machine
Specification This property is required. String - The load test machine specification.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadSource
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadSourceInfo
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadVpcLoadDistribution
- region
This property is required. str - Region.
- region_
id This property is required. float - Region ID.
- subnet_
ids This property is required. Sequence[str] - The subnet ID list.
- vpc_
id This property is required. str - The VPC ID.
GetPtsScenarioWithJobsScenarioWithJobsSetJobNotificationHook
GetPtsScenarioWithJobsScenarioWithJobsSetJobPlugin
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- file
Id This property is required. string - File ID.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- file_
id This property is required. str - File ID.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJobProtocol
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- file
Id This property is required. string - File ID.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- file_
id This property is required. str - File ID.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJobRequestFile
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- file
Id This property is required. string - File ID.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- file_
id This property is required. str - File ID.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJobTestScript
- Encoded
Content This property is required. string - The base64 encoded content.
- Encoded
Http Archive This property is required. string - The base64 encoded HAR.
- File
Id This property is required. string - File ID.
- Load
Weight This property is required. double - The weight of the script, ranging from 1 to 100.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- Encoded
Content This property is required. string - The base64 encoded content.
- Encoded
Http Archive This property is required. string - The base64 encoded HAR.
- File
Id This property is required. string - File ID.
- Load
Weight This property is required. float64 - The weight of the script, ranging from 1 to 100.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- encoded
Content This property is required. String - The base64 encoded content.
- encoded
Http Archive This property is required. String - The base64 encoded HAR.
- file
Id This property is required. String - File ID.
- load
Weight This property is required. Double - The weight of the script, ranging from 1 to 100.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- encoded
Content This property is required. string - The base64 encoded content.
- encoded
Http Archive This property is required. string - The base64 encoded HAR.
- file
Id This property is required. string - File ID.
- load
Weight This property is required. number - The weight of the script, ranging from 1 to 100.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- encoded_
content This property is required. str - The base64 encoded content.
- encoded_
http_ archive This property is required. str - The base64 encoded HAR.
- file_
id This property is required. str - File ID.
- load_
weight This property is required. float - The weight of the script, ranging from 1 to 100.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- encoded
Content This property is required. String - The base64 encoded content.
- encoded
Http Archive This property is required. String - The base64 encoded HAR.
- file
Id This property is required. String - File ID.
- load
Weight This property is required. Number - The weight of the script, ranging from 1 to 100.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenario
- App
Id This property is required. double - AppId.
- Configs
This property is required. List<string> - Deprecated.
- Created
At This property is required. string - The creation time of the scenario.
- Cron
Id This property is required. string - The cron job ID.
- Datasets
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Dataset> - The test data sets for the load test.
- Description
This property is required. string - Scenario description.
- Domain
Name Configs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config> - The configuration for parsing domain names.
- Encoded
Scripts This property is required. string - Deprecated.
- Extensions
This property is required. List<string> - Deprecated.
- Loads
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load> - Scenario is load test configuration.
- Name
This property is required. string - File name.
- Notification
Hooks This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook> - The notification hooks.
- Owner
This property is required. string - The job owner.
- Plugins
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Plugin> - Plugins.
- Project
Id This property is required. string - Project ID.
- Project
Name This property is required. string - Project name.
- Protocols
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Protocol> - The protocol file.
- Request
Files This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File> - The files in the request.
- Scenario
Id This property is required. string - Scenario ID.
- Sla
Id This property is required. string - The ID of the SLA policy.
- Sla
Policies This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy> - The SLA policy.
- Status
This property is required. double - Scenario status.
- Sub
Account Uin This property is required. string - SubAccountUin.
- Test
Scripts This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script> - The script of the load test.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Uin
This property is required. string - Uin.
- Updated
At This property is required. string - The updating time of the scenario.
- App
Id This property is required. float64 - AppId.
- Configs
This property is required. []string - Deprecated.
- Created
At This property is required. string - The creation time of the scenario.
- Cron
Id This property is required. string - The cron job ID.
- Datasets
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Dataset - The test data sets for the load test.
- Description
This property is required. string - Scenario description.
- Domain
Name Configs This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config - The configuration for parsing domain names.
- Encoded
Scripts This property is required. string - Deprecated.
- Extensions
This property is required. []string - Deprecated.
- Loads
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load - Scenario is load test configuration.
- Name
This property is required. string - File name.
- Notification
Hooks This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook - The notification hooks.
- Owner
This property is required. string - The job owner.
- Plugins
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Plugin - Plugins.
- Project
Id This property is required. string - Project ID.
- Project
Name This property is required. string - Project name.
- Protocols
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Protocol - The protocol file.
- Request
Files This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File - The files in the request.
- Scenario
Id This property is required. string - Scenario ID.
- Sla
Id This property is required. string - The ID of the SLA policy.
- Sla
Policies This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy - The SLA policy.
- Status
This property is required. float64 - Scenario status.
- Sub
Account Uin This property is required. string - SubAccountUin.
- Test
Scripts This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script - The script of the load test.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Uin
This property is required. string - Uin.
- Updated
At This property is required. string - The updating time of the scenario.
- app
Id This property is required. Double - AppId.
- configs
This property is required. List<String> - Deprecated.
- created
At This property is required. String - The creation time of the scenario.
- cron
Id This property is required. String - The cron job ID.
- datasets
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Dataset> - The test data sets for the load test.
- description
This property is required. String - Scenario description.
- domain
Name Configs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config> - The configuration for parsing domain names.
- encoded
Scripts This property is required. String - Deprecated.
- extensions
This property is required. List<String> - Deprecated.
- loads
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load> - Scenario is load test configuration.
- name
This property is required. String - File name.
- notification
Hooks This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook> - The notification hooks.
- owner
This property is required. String - The job owner.
- plugins
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Plugin> - Plugins.
- project
Id This property is required. String - Project ID.
- project
Name This property is required. String - Project name.
- protocols
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Protocol> - The protocol file.
- request
Files This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File> - The files in the request.
- scenario
Id This property is required. String - Scenario ID.
- sla
Id This property is required. String - The ID of the SLA policy.
- sla
Policies This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy> - The SLA policy.
- status
This property is required. Double - Scenario status.
- sub
Account Uin This property is required. String - SubAccountUin.
- test
Scripts This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script> - The script of the load test.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- uin
This property is required. String - Uin.
- updated
At This property is required. String - The updating time of the scenario.
- app
Id This property is required. number - AppId.
- configs
This property is required. string[] - Deprecated.
- created
At This property is required. string - The creation time of the scenario.
- cron
Id This property is required. string - The cron job ID.
- datasets
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Dataset[] - The test data sets for the load test.
- description
This property is required. string - Scenario description.
- domain
Name Configs This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config[] - The configuration for parsing domain names.
- encoded
Scripts This property is required. string - Deprecated.
- extensions
This property is required. string[] - Deprecated.
- loads
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load[] - Scenario is load test configuration.
- name
This property is required. string - File name.
- notification
Hooks This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook[] - The notification hooks.
- owner
This property is required. string - The job owner.
- plugins
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Plugin[] - Plugins.
- project
Id This property is required. string - Project ID.
- project
Name This property is required. string - Project name.
- protocols
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Protocol[] - The protocol file.
- request
Files This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File[] - The files in the request.
- scenario
Id This property is required. string - Scenario ID.
- sla
Id This property is required. string - The ID of the SLA policy.
- sla
Policies This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy[] - The SLA policy.
- status
This property is required. number - Scenario status.
- sub
Account Uin This property is required. string - SubAccountUin.
- test
Scripts This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script[] - The script of the load test.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- uin
This property is required. string - Uin.
- updated
At This property is required. string - The updating time of the scenario.
- app_
id This property is required. float - AppId.
- configs
This property is required. Sequence[str] - Deprecated.
- created_
at This property is required. str - The creation time of the scenario.
- cron_
id This property is required. str - The cron job ID.
- datasets
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Dataset] - The test data sets for the load test.
- description
This property is required. str - Scenario description.
- domain_
name_ configs This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config] - The configuration for parsing domain names.
- encoded_
scripts This property is required. str - Deprecated.
- extensions
This property is required. Sequence[str] - Deprecated.
- loads
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load] - Scenario is load test configuration.
- name
This property is required. str - File name.
- notification_
hooks This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook] - The notification hooks.
- owner
This property is required. str - The job owner.
- plugins
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Plugin] - Plugins.
- project_
id This property is required. str - Project ID.
- project_
name This property is required. str - Project name.
- protocols
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Protocol] - The protocol file.
- request_
files This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File] - The files in the request.
- scenario_
id This property is required. str - Scenario ID.
- sla_
id This property is required. str - The ID of the SLA policy.
- sla_
policies This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy] - The SLA policy.
- status
This property is required. float - Scenario status.
- sub_
account_ uin This property is required. str - SubAccountUin.
- test_
scripts This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script] - The script of the load test.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- uin
This property is required. str - Uin.
- updated_
at This property is required. str - The updating time of the scenario.
- app
Id This property is required. Number - AppId.
- configs
This property is required. List<String> - Deprecated.
- created
At This property is required. String - The creation time of the scenario.
- cron
Id This property is required. String - The cron job ID.
- datasets
This property is required. List<Property Map> - The test data sets for the load test.
- description
This property is required. String - Scenario description.
- domain
Name Configs This property is required. List<Property Map> - The configuration for parsing domain names.
- encoded
Scripts This property is required. String - Deprecated.
- extensions
This property is required. List<String> - Deprecated.
- loads
This property is required. List<Property Map> - Scenario is load test configuration.
- name
This property is required. String - File name.
- notification
Hooks This property is required. List<Property Map> - The notification hooks.
- owner
This property is required. String - The job owner.
- plugins
This property is required. List<Property Map> - Plugins.
- project
Id This property is required. String - Project ID.
- project
Name This property is required. String - Project name.
- protocols
This property is required. List<Property Map> - The protocol file.
- request
Files This property is required. List<Property Map> - The files in the request.
- scenario
Id This property is required. String - Scenario ID.
- sla
Id This property is required. String - The ID of the SLA policy.
- sla
Policies This property is required. List<Property Map> - The SLA policy.
- status
This property is required. Number - Scenario status.
- sub
Account Uin This property is required. String - SubAccountUin.
- test
Scripts This property is required. List<Property Map> - The script of the load test.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- uin
This property is required. String - Uin.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioDataset
- File
Id This property is required. string - File ID.
- Head
Lines This property is required. List<string> - The header lines of the file.
- Header
Columns This property is required. List<string> - The parameter name list.
- Header
In File This property is required. bool - Whether the first line contains the parameter names.
- Line
Count This property is required. double - The line count of the file.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Split
This property is required. bool - Whether to split the test data.
- Tail
Lines This property is required. List<string> - The tail lines of the file.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- File
Id This property is required. string - File ID.
- Head
Lines This property is required. []string - The header lines of the file.
- Header
Columns This property is required. []string - The parameter name list.
- Header
In File This property is required. bool - Whether the first line contains the parameter names.
- Line
Count This property is required. float64 - The line count of the file.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Split
This property is required. bool - Whether to split the test data.
- Tail
Lines This property is required. []string - The tail lines of the file.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- head
Lines This property is required. List<String> - The header lines of the file.
- header
Columns This property is required. List<String> - The parameter name list.
- header
In File This property is required. Boolean - Whether the first line contains the parameter names.
- line
Count This property is required. Double - The line count of the file.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- split
This property is required. Boolean - Whether to split the test data.
- tail
Lines This property is required. List<String> - The tail lines of the file.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- file
Id This property is required. string - File ID.
- head
Lines This property is required. string[] - The header lines of the file.
- header
Columns This property is required. string[] - The parameter name list.
- header
In File This property is required. boolean - Whether the first line contains the parameter names.
- line
Count This property is required. number - The line count of the file.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- split
This property is required. boolean - Whether to split the test data.
- tail
Lines This property is required. string[] - The tail lines of the file.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- file_
id This property is required. str - File ID.
- head_
lines This property is required. Sequence[str] - The header lines of the file.
- header_
columns This property is required. Sequence[str] - The parameter name list.
- header_
in_ file This property is required. bool - Whether the first line contains the parameter names.
- line_
count This property is required. float - The line count of the file.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- split
This property is required. bool - Whether to split the test data.
- tail_
lines This property is required. Sequence[str] - The tail lines of the file.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- head
Lines This property is required. List<String> - The header lines of the file.
- header
Columns This property is required. List<String> - The parameter name list.
- header
In File This property is required. Boolean - Whether the first line contains the parameter names.
- line
Count This property is required. Number - The line count of the file.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- split
This property is required. Boolean - Whether to split the test data.
- tail
Lines This property is required. List<String> - The tail lines of the file.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioDomainNameConfig
- Dns
Configs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config> - The DNS configuration.
- Host
Aliases This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias> - The configuration for host aliases.
- Dns
Configs This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config - The DNS configuration.
- Host
Aliases This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias - The configuration for host aliases.
- dns
Configs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config> - The DNS configuration.
- host
Aliases This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias> - The configuration for host aliases.
- dns
Configs This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config[] - The DNS configuration.
- host
Aliases This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias[] - The configuration for host aliases.
- dns_
configs This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config] - The DNS configuration.
- host_
aliases This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias] - The configuration for host aliases.
- dns
Configs This property is required. List<Property Map> - The DNS configuration.
- host
Aliases This property is required. List<Property Map> - The configuration for host aliases.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioDomainNameConfigDnsConfig
- Nameservers
This property is required. List<string> - DNS IP list.
- Nameservers
This property is required. []string - DNS IP list.
- nameservers
This property is required. List<String> - DNS IP list.
- nameservers
This property is required. string[] - DNS IP list.
- nameservers
This property is required. Sequence[str] - DNS IP list.
- nameservers
This property is required. List<String> - DNS IP list.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioDomainNameConfigHostAlias
- host_
names This property is required. Sequence[str] - Host names.
- ip
This property is required. str - IP.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoad
- Geo
Regions Load Distributions This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution> - The geographical distribution of the load source.
- Load
Specs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec> - Scenario is load specification.
- Vpc
Load Distributions This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution> - The distribution of the load source.
- Geo
Regions Load Distributions This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution - The geographical distribution of the load source.
- Load
Specs This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec - Scenario is load specification.
- Vpc
Load Distributions This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution - The distribution of the load source.
- geo
Regions Load Distributions This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution> - The geographical distribution of the load source.
- load
Specs This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec> - Scenario is load specification.
- vpc
Load Distributions This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution> - The distribution of the load source.
- geo
Regions Load Distributions This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution[] - The geographical distribution of the load source.
- load
Specs This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec[] - Scenario is load specification.
- vpc
Load Distributions This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution[] - The distribution of the load source.
- geo_
regions_ load_ distributions This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution] - The geographical distribution of the load source.
- load_
specs This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec] - Scenario is load specification.
- vpc_
load_ distributions This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution] - The distribution of the load source.
- geo
Regions Load Distributions This property is required. List<Property Map> - The geographical distribution of the load source.
- load
Specs This property is required. List<Property Map> - Scenario is load specification.
- vpc
Load Distributions This property is required. List<Property Map> - The distribution of the load source.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadGeoRegionsLoadDistribution
- Percentage
This property is required. double - Percentage.
- Region
This property is required. string - Region.
- Region
Id This property is required. double - Region ID.
- Percentage
This property is required. float64 - Percentage.
- Region
This property is required. string - Region.
- Region
Id This property is required. float64 - Region ID.
- percentage
This property is required. Double - Percentage.
- region
This property is required. String - Region.
- region
Id This property is required. Double - Region ID.
- percentage
This property is required. number - Percentage.
- region
This property is required. string - Region.
- region
Id This property is required. number - Region ID.
- percentage
This property is required. float - Percentage.
- region
This property is required. str - Region.
- region_
id This property is required. float - Region ID.
- percentage
This property is required. Number - Percentage.
- region
This property is required. String - Region.
- region
Id This property is required. Number - Region ID.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpec
- Concurrencies
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency> - The configuration for the concurrency mode.
- Requests
Per Seconds This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second> - The configuration of the RPS mode load test.
- Script
Origins This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin> - The script origin.
- Concurrencies
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency - The configuration for the concurrency mode.
- Requests
Per Seconds This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second - The configuration of the RPS mode load test.
- Script
Origins This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin - The script origin.
- concurrencies
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency> - The configuration for the concurrency mode.
- requests
Per Seconds This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second> - The configuration of the RPS mode load test.
- script
Origins This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin> - The script origin.
- concurrencies
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency[] - The configuration for the concurrency mode.
- requests
Per Seconds This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second[] - The configuration of the RPS mode load test.
- script
Origins This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin[] - The script origin.
- concurrencies
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency] - The configuration for the concurrency mode.
- requests_
per_ seconds This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second] - The configuration of the RPS mode load test.
- script_
origins This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin] - The script origin.
- concurrencies
This property is required. List<Property Map> - The configuration for the concurrency mode.
- requests
Per Seconds This property is required. List<Property Map> - The configuration of the RPS mode load test.
- script
Origins This property is required. List<Property Map> - The script origin.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpecConcurrency
- Graceful
Stop Seconds This property is required. double - The waiting period for a graceful shutdown.
- Iteration
Count This property is required. double - The iteration count of the load test.
- Max
Requests Per Second This property is required. double - The maximum RPS.
- Resources
This property is required. double - The recource count of the load test.
- Stages
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage> - The configuration for the multi-stage load test.
- Graceful
Stop Seconds This property is required. float64 - The waiting period for a graceful shutdown.
- Iteration
Count This property is required. float64 - The iteration count of the load test.
- Max
Requests Per Second This property is required. float64 - The maximum RPS.
- Resources
This property is required. float64 - The recource count of the load test.
- Stages
This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage - The configuration for the multi-stage load test.
- graceful
Stop Seconds This property is required. Double - The waiting period for a graceful shutdown.
- iteration
Count This property is required. Double - The iteration count of the load test.
- max
Requests Per Second This property is required. Double - The maximum RPS.
- resources
This property is required. Double - The recource count of the load test.
- stages
This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage> - The configuration for the multi-stage load test.
- graceful
Stop Seconds This property is required. number - The waiting period for a graceful shutdown.
- iteration
Count This property is required. number - The iteration count of the load test.
- max
Requests Per Second This property is required. number - The maximum RPS.
- resources
This property is required. number - The recource count of the load test.
- stages
This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage[] - The configuration for the multi-stage load test.
- graceful_
stop_ seconds This property is required. float - The waiting period for a graceful shutdown.
- iteration_
count This property is required. float - The iteration count of the load test.
- max_
requests_ per_ second This property is required. float - The maximum RPS.
- resources
This property is required. float - The recource count of the load test.
- stages
This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage] - The configuration for the multi-stage load test.
- graceful
Stop Seconds This property is required. Number - The waiting period for a graceful shutdown.
- iteration
Count This property is required. Number - The iteration count of the load test.
- max
Requests Per Second This property is required. Number - The maximum RPS.
- resources
This property is required. Number - The recource count of the load test.
- stages
This property is required. List<Property Map> - The configuration for the multi-stage load test.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpecConcurrencyStage
- Duration
Seconds This property is required. double - The load test execution time.
- Target
Virtual Users This property is required. double - Deprecated.
- Duration
Seconds This property is required. float64 - The load test execution time.
- Target
Virtual Users This property is required. float64 - Deprecated.
- duration
Seconds This property is required. Double - The load test execution time.
- target
Virtual Users This property is required. Double - Deprecated.
- duration
Seconds This property is required. number - The load test execution time.
- target
Virtual Users This property is required. number - Deprecated.
- duration_
seconds This property is required. float - The load test execution time.
- target_
virtual_ users This property is required. float - Deprecated.
- duration
Seconds This property is required. Number - The load test execution time.
- target
Virtual Users This property is required. Number - Deprecated.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpecRequestsPerSecond
- Duration
Seconds This property is required. double - The load test execution time.
- Graceful
Stop Seconds This property is required. double - The waiting period for a graceful shutdown.
- Max
Requests Per Second This property is required. double - The maximum RPS.
- Resources
This property is required. double - The recource count of the load test.
- Start
Requests Per Second This property is required. double - The starting minimum RPS.
- Target
Requests Per Second This property is required. double - The target RPS.
- Target
Virtual Users This property is required. double - Deprecated.
- Duration
Seconds This property is required. float64 - The load test execution time.
- Graceful
Stop Seconds This property is required. float64 - The waiting period for a graceful shutdown.
- Max
Requests Per Second This property is required. float64 - The maximum RPS.
- Resources
This property is required. float64 - The recource count of the load test.
- Start
Requests Per Second This property is required. float64 - The starting minimum RPS.
- Target
Requests Per Second This property is required. float64 - The target RPS.
- Target
Virtual Users This property is required. float64 - Deprecated.
- duration
Seconds This property is required. Double - The load test execution time.
- graceful
Stop Seconds This property is required. Double - The waiting period for a graceful shutdown.
- max
Requests Per Second This property is required. Double - The maximum RPS.
- resources
This property is required. Double - The recource count of the load test.
- start
Requests Per Second This property is required. Double - The starting minimum RPS.
- target
Requests Per Second This property is required. Double - The target RPS.
- target
Virtual Users This property is required. Double - Deprecated.
- duration
Seconds This property is required. number - The load test execution time.
- graceful
Stop Seconds This property is required. number - The waiting period for a graceful shutdown.
- max
Requests Per Second This property is required. number - The maximum RPS.
- resources
This property is required. number - The recource count of the load test.
- start
Requests Per Second This property is required. number - The starting minimum RPS.
- target
Requests Per Second This property is required. number - The target RPS.
- target
Virtual Users This property is required. number - Deprecated.
- duration_
seconds This property is required. float - The load test execution time.
- graceful_
stop_ seconds This property is required. float - The waiting period for a graceful shutdown.
- max_
requests_ per_ second This property is required. float - The maximum RPS.
- resources
This property is required. float - The recource count of the load test.
- start_
requests_ per_ second This property is required. float - The starting minimum RPS.
- target_
requests_ per_ second This property is required. float - The target RPS.
- target_
virtual_ users This property is required. float - Deprecated.
- duration
Seconds This property is required. Number - The load test execution time.
- graceful
Stop Seconds This property is required. Number - The waiting period for a graceful shutdown.
- max
Requests Per Second This property is required. Number - The maximum RPS.
- resources
This property is required. Number - The recource count of the load test.
- start
Requests Per Second This property is required. Number - The starting minimum RPS.
- target
Requests Per Second This property is required. Number - The target RPS.
- target
Virtual Users This property is required. Number - Deprecated.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpecScriptOrigin
- Duration
Seconds This property is required. double - The load test execution time.
- Machine
Number This property is required. double - The load test machine number.
- Machine
Specification This property is required. string - The load test machine specification.
- Duration
Seconds This property is required. float64 - The load test execution time.
- Machine
Number This property is required. float64 - The load test machine number.
- Machine
Specification This property is required. string - The load test machine specification.
- duration
Seconds This property is required. Double - The load test execution time.
- machine
Number This property is required. Double - The load test machine number.
- machine
Specification This property is required. String - The load test machine specification.
- duration
Seconds This property is required. number - The load test execution time.
- machine
Number This property is required. number - The load test machine number.
- machine
Specification This property is required. string - The load test machine specification.
- duration_
seconds This property is required. float - The load test execution time.
- machine_
number This property is required. float - The load test machine number.
- machine_
specification This property is required. str - The load test machine specification.
- duration
Seconds This property is required. Number - The load test execution time.
- machine
Number This property is required. Number - The load test machine number.
- machine
Specification This property is required. String - The load test machine specification.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadVpcLoadDistribution
- region
This property is required. str - Region.
- region_
id This property is required. float - Region ID.
- subnet_
ids This property is required. Sequence[str] - The subnet ID list.
- vpc_
id This property is required. str - The VPC ID.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioNotificationHook
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioPlugin
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- file
Id This property is required. string - File ID.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- file_
id This property is required. str - File ID.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioProtocol
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- file
Id This property is required. string - File ID.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- file_
id This property is required. str - File ID.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioRequestFile
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- File
Id This property is required. string - File ID.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- file
Id This property is required. string - File ID.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- file_
id This property is required. str - File ID.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- file
Id This property is required. String - File ID.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioSlaPolicy
- Alert
Channels This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Alert Channel> - The alert channel.
- Sla
Rules This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule> - The SLA rules.
- Alert
Channels This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Alert Channel - The alert channel.
- Sla
Rules This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule - The SLA rules.
- alert
Channels This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Alert Channel> - The alert channel.
- sla
Rules This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule> - The SLA rules.
- alert
Channels This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Alert Channel[] - The alert channel.
- sla
Rules This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule[] - The SLA rules.
- alert_
channels This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Alert Channel] - The alert channel.
- sla_
rules This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule] - The SLA rules.
- alert
Channels This property is required. List<Property Map> - The alert channel.
- sla
Rules This property is required. List<Property Map> - The SLA rules.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioSlaPolicyAlertChannel
- Amp
Consumer Id This property is required. string - AMP consumer ID.
- Notice
Id This property is required. string - The notice ID bound with this alert channel.
- Amp
Consumer Id This property is required. string - AMP consumer ID.
- Notice
Id This property is required. string - The notice ID bound with this alert channel.
- amp
Consumer Id This property is required. String - AMP consumer ID.
- notice
Id This property is required. String - The notice ID bound with this alert channel.
- amp
Consumer Id This property is required. string - AMP consumer ID.
- notice
Id This property is required. string - The notice ID bound with this alert channel.
- amp_
consumer_ id This property is required. str - AMP consumer ID.
- notice_
id This property is required. str - The notice ID bound with this alert channel.
- amp
Consumer Id This property is required. String - AMP consumer ID.
- notice
Id This property is required. String - The notice ID bound with this alert channel.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioSlaPolicySlaRule
- Abort
Flag This property is required. bool - Whether to abort the load test job.
- Aggregation
This property is required. string - The aggregation method of the metrics.
- Condition
This property is required. string - The operator for checking the condition.
- For
This property is required. string - The duration for checking the condition.
- Label
Filters This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter> - The label filter.
- Metric
This property is required. string - The load test metrics.
- Value
This property is required. double - The threshold in the condition.
- Abort
Flag This property is required. bool - Whether to abort the load test job.
- Aggregation
This property is required. string - The aggregation method of the metrics.
- Condition
This property is required. string - The operator for checking the condition.
- For
This property is required. string - The duration for checking the condition.
- Label
Filters This property is required. []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter - The label filter.
- Metric
This property is required. string - The load test metrics.
- Value
This property is required. float64 - The threshold in the condition.
- abort
Flag This property is required. Boolean - Whether to abort the load test job.
- aggregation
This property is required. String - The aggregation method of the metrics.
- condition
This property is required. String - The operator for checking the condition.
- for_
This property is required. String - The duration for checking the condition.
- label
Filters This property is required. List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter> - The label filter.
- metric
This property is required. String - The load test metrics.
- value
This property is required. Double - The threshold in the condition.
- abort
Flag This property is required. boolean - Whether to abort the load test job.
- aggregation
This property is required. string - The aggregation method of the metrics.
- condition
This property is required. string - The operator for checking the condition.
- for
This property is required. string - The duration for checking the condition.
- label
Filters This property is required. GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter[] - The label filter.
- metric
This property is required. string - The load test metrics.
- value
This property is required. number - The threshold in the condition.
- abort_
flag This property is required. bool - Whether to abort the load test job.
- aggregation
This property is required. str - The aggregation method of the metrics.
- condition
This property is required. str - The operator for checking the condition.
- for_
This property is required. str - The duration for checking the condition.
- label_
filters This property is required. Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter] - The label filter.
- metric
This property is required. str - The load test metrics.
- value
This property is required. float - The threshold in the condition.
- abort
Flag This property is required. Boolean - Whether to abort the load test job.
- aggregation
This property is required. String - The aggregation method of the metrics.
- condition
This property is required. String - The operator for checking the condition.
- for
This property is required. String - The duration for checking the condition.
- label
Filters This property is required. List<Property Map> - The label filter.
- metric
This property is required. String - The load test metrics.
- value
This property is required. Number - The threshold in the condition.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioSlaPolicySlaRuleLabelFilter
- Label
Name This property is required. string - Label name.
- Label
Value This property is required. string - Label value.
- Label
Name This property is required. string - Label name.
- Label
Value This property is required. string - Label value.
- label
Name This property is required. String - Label name.
- label
Value This property is required. String - Label value.
- label
Name This property is required. string - Label name.
- label
Value This property is required. string - Label value.
- label_
name This property is required. str - Label name.
- label_
value This property is required. str - Label value.
- label
Name This property is required. String - Label name.
- label
Value This property is required. String - Label value.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioTestScript
- Encoded
Content This property is required. string - The base64 encoded content.
- Encoded
Http Archive This property is required. string - The base64 encoded HAR.
- File
Id This property is required. string - File ID.
- Load
Weight This property is required. double - The weight of the script, ranging from 1 to 100.
- Name
This property is required. string - File name.
- Size
This property is required. double - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- Encoded
Content This property is required. string - The base64 encoded content.
- Encoded
Http Archive This property is required. string - The base64 encoded HAR.
- File
Id This property is required. string - File ID.
- Load
Weight This property is required. float64 - The weight of the script, ranging from 1 to 100.
- Name
This property is required. string - File name.
- Size
This property is required. float64 - File size.
- Type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At This property is required. string - The updating time of the scenario.
- encoded
Content This property is required. String - The base64 encoded content.
- encoded
Http Archive This property is required. String - The base64 encoded HAR.
- file
Id This property is required. String - File ID.
- load
Weight This property is required. Double - The weight of the script, ranging from 1 to 100.
- name
This property is required. String - File name.
- size
This property is required. Double - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
- encoded
Content This property is required. string - The base64 encoded content.
- encoded
Http Archive This property is required. string - The base64 encoded HAR.
- file
Id This property is required. string - File ID.
- load
Weight This property is required. number - The weight of the script, ranging from 1 to 100.
- name
This property is required. string - File name.
- size
This property is required. number - File size.
- type
This property is required. string - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. string - The updating time of the scenario.
- encoded_
content This property is required. str - The base64 encoded content.
- encoded_
http_ archive This property is required. str - The base64 encoded HAR.
- file_
id This property is required. str - File ID.
- load_
weight This property is required. float - The weight of the script, ranging from 1 to 100.
- name
This property is required. str - File name.
- size
This property is required. float - File size.
- type
This property is required. str - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at This property is required. str - The updating time of the scenario.
- encoded
Content This property is required. String - The base64 encoded content.
- encoded
Http Archive This property is required. String - The base64 encoded HAR.
- file
Id This property is required. String - File ID.
- load
Weight This property is required. Number - The weight of the script, ranging from 1 to 100.
- name
This property is required. String - File name.
- size
This property is required. Number - File size.
- type
This property is required. String - Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At This property is required. String - The updating time of the scenario.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.81.187 published on Monday, Apr 28, 2025 by tencentcloudstack