tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getPtsScenarioWithJobs
Explore with Pulumi AI
tencentcloud 1.81.189 published on Wednesday, Apr 30, 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 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 []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 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 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 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 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
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job> - Jobs related to the scenario.
- Scenarios
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario> - The returned scenario.
- Jobs
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Job - Jobs related to the scenario.
- Scenarios
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario - The returned scenario.
- jobs
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job> - Jobs related to the scenario.
- scenarios
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario> - The returned scenario.
- jobs
Get
Pts Scenario With Jobs Scenario With Jobs Set Job[] - Jobs related to the scenario.
- scenarios
Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario[] - The returned scenario.
- jobs
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Job] - Jobs related to the scenario.
- scenarios
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario] - The returned scenario.
- jobs List<Property Map>
- Jobs related to the scenario.
- scenarios List<Property Map>
- The returned scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJob
- Abort
Reason double - The reason for aborting the job.
- Configs List<string>
- Deprecated.
- Created
At string - The creation time of the scenario.
- Cron
Id string - The cron job ID.
- Datasets
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Dataset> - The test data sets for the load test.
- Debug bool
- Whether to run the job in the debug mode. The default value is false.
- Domain
Name List<GetConfigs Pts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config> - The configuration for parsing domain names.
- Duration double
- Job running duration.
- End
Time string - The job ending time.
- Error
Rate double - Error rate.
- Extensions List<string>
- Deprecated.
- Job
Id string - Job ID.
- Job
Owner string - Job owner.
- Load
Source List<GetInfos Pts Scenario With Jobs Scenario With Jobs Set Job Load Source Info> - The load source information.
- Load
Sources List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source> - Deprecated.
- Loads
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load> - Scenario is load test configuration.
- Max
Requests doublePer Second - The maximum RPS.
- Max
Virtual doubleUser Count - The maximum VU of the job.
- Message string
- The message describing the job running status.
- Network
Receive doubleRate - The rate of receiving bytes.
- Network
Send doubleRate - The rate of sending bytes.
- Note string
- The note of the job.
- Notification
Hooks List<GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook> - The notification hooks.
- Plugins
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Plugin> - Plugins.
- Project
Id string - Project ID.
- Project
Name string - Project name.
- Protocols
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Protocol> - The protocol file.
- Request
Files List<GetPts Scenario With Jobs Scenario With Jobs Set Job Request File> - The files in the request.
- Request
Total double - The total reqeust count.
- Requests
Per doubleSecond - The configuration of the RPS mode load test.
- Response
Time doubleAverage - The average response time.
- Response
Time doubleMax - The maximum response time.
- Response
Time doubleMin - The minimum response time.
- Response
Time doubleP90 - The 90 percentile of the response time.
- Response
Time doubleP95 - The 95 percentile of the response time.
- Response
Time doubleP99 - The 99 percentile of the response time.
- Scenario
Id string - Scenario ID.
- Scenario
Name string - Scenario name.
- Scripts List<string>
- Deprecated.
- Start
Time string - The job starting time.
- Status double
- Scenario status.
- Test
Scripts List<GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script> - The script of the load test.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Abort
Reason float64 - The reason for aborting the job.
- Configs []string
- Deprecated.
- Created
At string - The creation time of the scenario.
- Cron
Id string - The cron job ID.
- Datasets
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Job Dataset - The test data sets for the load test.
- Debug bool
- Whether to run the job in the debug mode. The default value is false.
- Domain
Name []GetConfigs Pts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config - The configuration for parsing domain names.
- Duration float64
- Job running duration.
- End
Time string - The job ending time.
- Error
Rate float64 - Error rate.
- Extensions []string
- Deprecated.
- Job
Id string - Job ID.
- Job
Owner string - Job owner.
- Load
Source []GetInfos Pts Scenario With Jobs Scenario With Jobs Set Job Load Source Info - The load source information.
- Load
Sources []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source - Deprecated.
- Loads
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load - Scenario is load test configuration.
- Max
Requests float64Per Second - The maximum RPS.
- Max
Virtual float64User Count - The maximum VU of the job.
- Message string
- The message describing the job running status.
- Network
Receive float64Rate - The rate of receiving bytes.
- Network
Send float64Rate - The rate of sending bytes.
- Note string
- The note of the job.
- Notification
Hooks []GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook - The notification hooks.
- Plugins
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Job Plugin - Plugins.
- Project
Id string - Project ID.
- Project
Name string - Project name.
- Protocols
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Job Protocol - The protocol file.
- Request
Files []GetPts Scenario With Jobs Scenario With Jobs Set Job Request File - The files in the request.
- Request
Total float64 - The total reqeust count.
- Requests
Per float64Second - The configuration of the RPS mode load test.
- Response
Time float64Average - The average response time.
- Response
Time float64Max - The maximum response time.
- Response
Time float64Min - The minimum response time.
- Response
Time float64P90 - The 90 percentile of the response time.
- Response
Time float64P95 - The 95 percentile of the response time.
- Response
Time float64P99 - The 99 percentile of the response time.
- Scenario
Id string - Scenario ID.
- Scenario
Name string - Scenario name.
- Scripts []string
- Deprecated.
- Start
Time string - The job starting time.
- Status float64
- Scenario status.
- Test
Scripts []GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script - The script of the load test.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- abort
Reason Double - The reason for aborting the job.
- configs List<String>
- Deprecated.
- created
At String - The creation time of the scenario.
- cron
Id String - The cron job ID.
- datasets
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Dataset> - The test data sets for the load test.
- debug Boolean
- Whether to run the job in the debug mode. The default value is false.
- domain
Name List<GetConfigs Pts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config> - The configuration for parsing domain names.
- duration Double
- Job running duration.
- end
Time String - The job ending time.
- error
Rate Double - Error rate.
- extensions List<String>
- Deprecated.
- job
Id String - Job ID.
- job
Owner String - Job owner.
- load
Source List<GetInfos Pts Scenario With Jobs Scenario With Jobs Set Job Load Source Info> - The load source information.
- load
Sources List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source> - Deprecated.
- loads
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load> - Scenario is load test configuration.
- max
Requests DoublePer Second - The maximum RPS.
- max
Virtual DoubleUser Count - The maximum VU of the job.
- message String
- The message describing the job running status.
- network
Receive DoubleRate - The rate of receiving bytes.
- network
Send DoubleRate - The rate of sending bytes.
- note String
- The note of the job.
- notification
Hooks List<GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook> - The notification hooks.
- plugins
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Plugin> - Plugins.
- project
Id String - Project ID.
- project
Name String - Project name.
- protocols
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Protocol> - The protocol file.
- request
Files List<GetPts Scenario With Jobs Scenario With Jobs Set Job Request File> - The files in the request.
- request
Total Double - The total reqeust count.
- requests
Per DoubleSecond - The configuration of the RPS mode load test.
- response
Time DoubleAverage - The average response time.
- response
Time DoubleMax - The maximum response time.
- response
Time DoubleMin - The minimum response time.
- response
Time DoubleP90 - The 90 percentile of the response time.
- response
Time DoubleP95 - The 95 percentile of the response time.
- response
Time DoubleP99 - The 99 percentile of the response time.
- scenario
Id String - Scenario ID.
- scenario
Name String - Scenario name.
- scripts List<String>
- Deprecated.
- start
Time String - The job starting time.
- status Double
- Scenario status.
- test
Scripts List<GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script> - The script of the load test.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- abort
Reason number - The reason for aborting the job.
- configs string[]
- Deprecated.
- created
At string - The creation time of the scenario.
- cron
Id string - The cron job ID.
- datasets
Get
Pts Scenario With Jobs Scenario With Jobs Set Job Dataset[] - The test data sets for the load test.
- debug boolean
- Whether to run the job in the debug mode. The default value is false.
- domain
Name GetConfigs Pts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config[] - The configuration for parsing domain names.
- duration number
- Job running duration.
- end
Time string - The job ending time.
- error
Rate number - Error rate.
- extensions string[]
- Deprecated.
- job
Id string - Job ID.
- job
Owner string - Job owner.
- load
Source GetInfos Pts Scenario With Jobs Scenario With Jobs Set Job Load Source Info[] - The load source information.
- load
Sources GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source[] - Deprecated.
- loads
Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load[] - Scenario is load test configuration.
- max
Requests numberPer Second - The maximum RPS.
- max
Virtual numberUser Count - The maximum VU of the job.
- message string
- The message describing the job running status.
- network
Receive numberRate - The rate of receiving bytes.
- network
Send numberRate - The rate of sending bytes.
- note string
- The note of the job.
- notification
Hooks GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook[] - The notification hooks.
- plugins
Get
Pts Scenario With Jobs Scenario With Jobs Set Job Plugin[] - Plugins.
- project
Id string - Project ID.
- project
Name string - Project name.
- protocols
Get
Pts Scenario With Jobs Scenario With Jobs Set Job Protocol[] - The protocol file.
- request
Files GetPts Scenario With Jobs Scenario With Jobs Set Job Request File[] - The files in the request.
- request
Total number - The total reqeust count.
- requests
Per numberSecond - The configuration of the RPS mode load test.
- response
Time numberAverage - The average response time.
- response
Time numberMax - The maximum response time.
- response
Time numberMin - The minimum response time.
- response
Time numberP90 - The 90 percentile of the response time.
- response
Time numberP95 - The 95 percentile of the response time.
- response
Time numberP99 - The 99 percentile of the response time.
- scenario
Id string - Scenario ID.
- scenario
Name string - Scenario name.
- scripts string[]
- Deprecated.
- start
Time string - The job starting time.
- status number
- Scenario status.
- test
Scripts GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script[] - The script of the load test.
- type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- abort_
reason float - The reason for aborting the job.
- configs Sequence[str]
- Deprecated.
- created_
at str - The creation time of the scenario.
- cron_
id str - The cron job ID.
- datasets
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Job Dataset] - The test data sets for the load test.
- debug bool
- Whether to run the job in the debug mode. The default value is false.
- domain_
name_ Sequence[Getconfigs Pts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config] - The configuration for parsing domain names.
- duration float
- Job running duration.
- end_
time str - The job ending time.
- error_
rate float - Error rate.
- extensions Sequence[str]
- Deprecated.
- job_
id str - Job ID.
- job_
owner str - Job owner.
- load_
source_ Sequence[Getinfos Pts Scenario With Jobs Scenario With Jobs Set Job Load Source Info] - The load source information.
- load_
sources Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Source] - Deprecated.
- loads
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load] - Scenario is load test configuration.
- max_
requests_ floatper_ second - The maximum RPS.
- max_
virtual_ floatuser_ count - The maximum VU of the job.
- message str
- The message describing the job running status.
- network_
receive_ floatrate - The rate of receiving bytes.
- network_
send_ floatrate - The rate of sending bytes.
- note str
- The note of the job.
- notification_
hooks Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Notification Hook] - The notification hooks.
- plugins
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Job Plugin] - Plugins.
- project_
id str - Project ID.
- project_
name str - Project name.
- protocols
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Job Protocol] - The protocol file.
- request_
files Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Request File] - The files in the request.
- request_
total float - The total reqeust count.
- requests_
per_ floatsecond - The configuration of the RPS mode load test.
- response_
time_ floataverage - The average response time.
- response_
time_ floatmax - The maximum response time.
- response_
time_ floatmin - The minimum response time.
- response_
time_ floatp90 - The 90 percentile of the response time.
- response_
time_ floatp95 - The 95 percentile of the response time.
- response_
time_ floatp99 - The 99 percentile of the response time.
- scenario_
id str - Scenario ID.
- scenario_
name str - Scenario name.
- scripts Sequence[str]
- Deprecated.
- start_
time str - The job starting time.
- status float
- Scenario status.
- test_
scripts Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Test Script] - The script of the load test.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- abort
Reason Number - The reason for aborting the job.
- configs List<String>
- Deprecated.
- created
At String - The creation time of the scenario.
- cron
Id String - The cron job ID.
- datasets List<Property Map>
- The test data sets for the load test.
- debug Boolean
- Whether to run the job in the debug mode. The default value is false.
- domain
Name List<Property Map>Configs - The configuration for parsing domain names.
- duration Number
- Job running duration.
- end
Time String - The job ending time.
- error
Rate Number - Error rate.
- extensions List<String>
- Deprecated.
- job
Id String - Job ID.
- job
Owner String - Job owner.
- load
Source List<Property Map>Infos - The load source information.
- load
Sources List<Property Map> - Deprecated.
- loads List<Property Map>
- Scenario is load test configuration.
- max
Requests NumberPer Second - The maximum RPS.
- max
Virtual NumberUser Count - The maximum VU of the job.
- message String
- The message describing the job running status.
- network
Receive NumberRate - The rate of receiving bytes.
- network
Send NumberRate - The rate of sending bytes.
- note String
- The note of the job.
- notification
Hooks List<Property Map> - The notification hooks.
- plugins List<Property Map>
- Plugins.
- project
Id String - Project ID.
- project
Name String - Project name.
- protocols List<Property Map>
- The protocol file.
- request
Files List<Property Map> - The files in the request.
- request
Total Number - The total reqeust count.
- requests
Per NumberSecond - The configuration of the RPS mode load test.
- response
Time NumberAverage - The average response time.
- response
Time NumberMax - The maximum response time.
- response
Time NumberMin - The minimum response time.
- response
Time NumberP90 - The 90 percentile of the response time.
- response
Time NumberP95 - The 95 percentile of the response time.
- response
Time NumberP99 - The 99 percentile of the response time.
- scenario
Id String - Scenario ID.
- scenario
Name String - Scenario name.
- scripts List<String>
- Deprecated.
- start
Time String - The job starting time.
- status Number
- Scenario status.
- test
Scripts List<Property Map> - The script of the load test.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
GetPtsScenarioWithJobsScenarioWithJobsSetJobDataset
- File
Id string - File ID.
- Head
Lines List<string> - The header lines of the file.
- Header
Columns List<string> - The parameter name list.
- Header
In boolFile - Whether the first line contains the parameter names.
- Line
Count double - The line count of the file.
- Name string
- File name.
- Size double
- File size.
- Split bool
- Whether to split the test data.
- Tail
Lines List<string> - The tail lines of the file.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At string - The updating time of the scenario.
- File
Id string - File ID.
- Head
Lines []string - The header lines of the file.
- Header
Columns []string - The parameter name list.
- Header
In boolFile - Whether the first line contains the parameter names.
- Line
Count float64 - The line count of the file.
- Name string
- File name.
- Size float64
- File size.
- Split bool
- Whether to split the test data.
- Tail
Lines []string - The tail lines of the file.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At string - The updating time of the scenario.
- file
Id String - File ID.
- head
Lines List<String> - The header lines of the file.
- header
Columns List<String> - The parameter name list.
- header
In BooleanFile - Whether the first line contains the parameter names.
- line
Count Double - The line count of the file.
- name String
- File name.
- size Double
- File size.
- split Boolean
- Whether to split the test data.
- tail
Lines List<String> - The tail lines of the file.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At String - The updating time of the scenario.
- file
Id string - File ID.
- head
Lines string[] - The header lines of the file.
- header
Columns string[] - The parameter name list.
- header
In booleanFile - Whether the first line contains the parameter names.
- line
Count number - The line count of the file.
- name string
- File name.
- size number
- File size.
- split boolean
- Whether to split the test data.
- tail
Lines string[] - The tail lines of the file.
- type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At string - The updating time of the scenario.
- file_
id str - File ID.
- head_
lines Sequence[str] - The header lines of the file.
- header_
columns Sequence[str] - The parameter name list.
- header_
in_ boolfile - Whether the first line contains the parameter names.
- line_
count float - The line count of the file.
- name str
- File name.
- size float
- File size.
- split bool
- Whether to split the test data.
- tail_
lines Sequence[str] - The tail lines of the file.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
- file
Id String - File ID.
- head
Lines List<String> - The header lines of the file.
- header
Columns List<String> - The parameter name list.
- header
In BooleanFile - Whether the first line contains the parameter names.
- line
Count Number - The line count of the file.
- name String
- File name.
- size Number
- File size.
- split Boolean
- Whether to split the test data.
- tail
Lines List<String> - The tail lines of the file.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJobDomainNameConfig
- Dns
Configs List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config> - The DNS configuration.
- Host
Aliases List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias> - The configuration for host aliases.
- Dns
Configs []GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config - The DNS configuration.
- Host
Aliases []GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias - The configuration for host aliases.
- dns
Configs List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config> - The DNS configuration.
- host
Aliases List<GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias> - The configuration for host aliases.
- dns
Configs GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config[] - The DNS configuration.
- host
Aliases GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias[] - The configuration for host aliases.
- dns_
configs Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Dns Config] - The DNS configuration.
- host_
aliases Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Domain Name Config Host Alias] - The configuration for host aliases.
- dns
Configs List<Property Map> - The DNS configuration.
- host
Aliases List<Property Map> - The configuration for host aliases.
GetPtsScenarioWithJobsScenarioWithJobsSetJobDomainNameConfigDnsConfig
- Nameservers List<string>
- DNS IP list.
- Nameservers []string
- DNS IP list.
- nameservers List<String>
- DNS IP list.
- nameservers string[]
- DNS IP list.
- nameservers Sequence[str]
- DNS IP list.
- nameservers List<String>
- DNS IP list.
GetPtsScenarioWithJobsScenarioWithJobsSetJobDomainNameConfigHostAlias
- host_
names Sequence[str] - Host names.
- ip str
- IP.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoad
- Geo
Regions List<GetLoad Distributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution> - The geographical distribution of the load source.
- Load
Specs List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec> - Scenario is load specification.
- Vpc
Load List<GetDistributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution> - The distribution of the load source.
- Geo
Regions []GetLoad Distributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution - The geographical distribution of the load source.
- Load
Specs []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec - Scenario is load specification.
- Vpc
Load []GetDistributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution - The distribution of the load source.
- geo
Regions List<GetLoad Distributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution> - The geographical distribution of the load source.
- load
Specs List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec> - Scenario is load specification.
- vpc
Load List<GetDistributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution> - The distribution of the load source.
- geo
Regions GetLoad Distributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution[] - The geographical distribution of the load source.
- load
Specs GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec[] - Scenario is load specification.
- vpc
Load GetDistributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution[] - The distribution of the load source.
- geo_
regions_ Sequence[Getload_ distributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Geo Regions Load Distribution] - The geographical distribution of the load source.
- load_
specs Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec] - Scenario is load specification.
- vpc_
load_ Sequence[Getdistributions Pts Scenario With Jobs Scenario With Jobs Set Job Load Vpc Load Distribution] - The distribution of the load source.
- geo
Regions List<Property Map>Load Distributions - The geographical distribution of the load source.
- load
Specs List<Property Map> - Scenario is load specification.
- vpc
Load List<Property Map>Distributions - The distribution of the load source.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadGeoRegionsLoadDistribution
- Percentage double
- Percentage.
- Region string
- Region.
- Region
Id double - Region ID.
- Percentage float64
- Percentage.
- Region string
- Region.
- Region
Id float64 - Region ID.
- percentage Double
- Percentage.
- region String
- Region.
- region
Id Double - Region ID.
- percentage number
- Percentage.
- region string
- Region.
- region
Id number - Region ID.
- percentage float
- Percentage.
- region str
- Region.
- region_
id float - Region ID.
- percentage Number
- Percentage.
- region String
- Region.
- region
Id Number - Region ID.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpec
- Concurrencies
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency> - The configuration for the concurrency mode.
- Requests
Per List<GetSeconds Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second> - The configuration of the RPS mode load test.
- Script
Origins List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin> - The script origin.
- Concurrencies
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency - The configuration for the concurrency mode.
- Requests
Per []GetSeconds Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second - The configuration of the RPS mode load test.
- Script
Origins []GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin - The script origin.
- concurrencies
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency> - The configuration for the concurrency mode.
- requests
Per List<GetSeconds Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second> - The configuration of the RPS mode load test.
- script
Origins List<GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin> - The script origin.
- concurrencies
Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency[] - The configuration for the concurrency mode.
- requests
Per GetSeconds Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second[] - The configuration of the RPS mode load test.
- script
Origins GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin[] - The script origin.
- concurrencies
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency] - The configuration for the concurrency mode.
- requests_
per_ Sequence[Getseconds Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Requests Per Second] - The configuration of the RPS mode load test.
- script_
origins Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Script Origin] - The script origin.
- concurrencies List<Property Map>
- The configuration for the concurrency mode.
- requests
Per List<Property Map>Seconds - The configuration of the RPS mode load test.
- script
Origins List<Property Map> - The script origin.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpecConcurrency
- Graceful
Stop doubleSeconds - The waiting period for a graceful shutdown.
- Iteration
Count double - The iteration count of the load test.
- Max
Requests doublePer Second - The maximum RPS.
- Resources double
- The recource count of the load test.
- Stages
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage> - The configuration for the multi-stage load test.
- Graceful
Stop float64Seconds - The waiting period for a graceful shutdown.
- Iteration
Count float64 - The iteration count of the load test.
- Max
Requests float64Per Second - The maximum RPS.
- Resources float64
- The recource count of the load test.
- Stages
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage - The configuration for the multi-stage load test.
- graceful
Stop DoubleSeconds - The waiting period for a graceful shutdown.
- iteration
Count Double - The iteration count of the load test.
- max
Requests DoublePer Second - The maximum RPS.
- resources Double
- The recource count of the load test.
- stages
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage> - The configuration for the multi-stage load test.
- graceful
Stop numberSeconds - The waiting period for a graceful shutdown.
- iteration
Count number - The iteration count of the load test.
- max
Requests numberPer Second - The maximum RPS.
- resources number
- The recource count of the load test.
- stages
Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage[] - The configuration for the multi-stage load test.
- graceful_
stop_ floatseconds - The waiting period for a graceful shutdown.
- iteration_
count float - The iteration count of the load test.
- max_
requests_ floatper_ second - The maximum RPS.
- resources float
- The recource count of the load test.
- stages
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Job Load Load Spec Concurrency Stage] - The configuration for the multi-stage load test.
- graceful
Stop NumberSeconds - The waiting period for a graceful shutdown.
- iteration
Count Number - The iteration count of the load test.
- max
Requests NumberPer Second - The maximum RPS.
- resources Number
- The recource count of the load test.
- stages List<Property Map>
- The configuration for the multi-stage load test.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpecConcurrencyStage
- Duration
Seconds double - The load test execution time.
- Target
Virtual doubleUsers - Deprecated.
- Duration
Seconds float64 - The load test execution time.
- Target
Virtual float64Users - Deprecated.
- duration
Seconds Double - The load test execution time.
- target
Virtual DoubleUsers - Deprecated.
- duration
Seconds number - The load test execution time.
- target
Virtual numberUsers - Deprecated.
- duration_
seconds float - The load test execution time.
- target_
virtual_ floatusers - Deprecated.
- duration
Seconds Number - The load test execution time.
- target
Virtual NumberUsers - Deprecated.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpecRequestsPerSecond
- Duration
Seconds double - The load test execution time.
- Graceful
Stop doubleSeconds - The waiting period for a graceful shutdown.
- Max
Requests doublePer Second - The maximum RPS.
- Resources double
- The recource count of the load test.
- Start
Requests doublePer Second - The starting minimum RPS.
- Target
Requests doublePer Second - The target RPS.
- Target
Virtual doubleUsers - Deprecated.
- Duration
Seconds float64 - The load test execution time.
- Graceful
Stop float64Seconds - The waiting period for a graceful shutdown.
- Max
Requests float64Per Second - The maximum RPS.
- Resources float64
- The recource count of the load test.
- Start
Requests float64Per Second - The starting minimum RPS.
- Target
Requests float64Per Second - The target RPS.
- Target
Virtual float64Users - Deprecated.
- duration
Seconds Double - The load test execution time.
- graceful
Stop DoubleSeconds - The waiting period for a graceful shutdown.
- max
Requests DoublePer Second - The maximum RPS.
- resources Double
- The recource count of the load test.
- start
Requests DoublePer Second - The starting minimum RPS.
- target
Requests DoublePer Second - The target RPS.
- target
Virtual DoubleUsers - Deprecated.
- duration
Seconds number - The load test execution time.
- graceful
Stop numberSeconds - The waiting period for a graceful shutdown.
- max
Requests numberPer Second - The maximum RPS.
- resources number
- The recource count of the load test.
- start
Requests numberPer Second - The starting minimum RPS.
- target
Requests numberPer Second - The target RPS.
- target
Virtual numberUsers - Deprecated.
- duration_
seconds float - The load test execution time.
- graceful_
stop_ floatseconds - The waiting period for a graceful shutdown.
- max_
requests_ floatper_ second - The maximum RPS.
- resources float
- The recource count of the load test.
- start_
requests_ floatper_ second - The starting minimum RPS.
- target_
requests_ floatper_ second - The target RPS.
- target_
virtual_ floatusers - Deprecated.
- duration
Seconds Number - The load test execution time.
- graceful
Stop NumberSeconds - The waiting period for a graceful shutdown.
- max
Requests NumberPer Second - The maximum RPS.
- resources Number
- The recource count of the load test.
- start
Requests NumberPer Second - The starting minimum RPS.
- target
Requests NumberPer Second - The target RPS.
- target
Virtual NumberUsers - Deprecated.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadLoadSpecScriptOrigin
- Duration
Seconds double - The load test execution time.
- Machine
Number double - The load test machine number.
- Machine
Specification string - The load test machine specification.
- Duration
Seconds float64 - The load test execution time.
- Machine
Number float64 - The load test machine number.
- Machine
Specification string - The load test machine specification.
- duration
Seconds Double - The load test execution time.
- machine
Number Double - The load test machine number.
- machine
Specification String - The load test machine specification.
- duration
Seconds number - The load test execution time.
- machine
Number number - The load test machine number.
- machine
Specification string - The load test machine specification.
- duration_
seconds float - The load test execution time.
- machine_
number float - The load test machine number.
- machine_
specification str - The load test machine specification.
- duration
Seconds Number - The load test execution time.
- machine
Number Number - The load test machine number.
- machine
Specification String - The load test machine specification.
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadSource
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadSourceInfo
GetPtsScenarioWithJobsScenarioWithJobsSetJobLoadVpcLoadDistribution
- region str
- Region.
- region_
id float - Region ID.
- subnet_
ids Sequence[str] - The subnet ID list.
- vpc_
id str - The VPC ID.
GetPtsScenarioWithJobsScenarioWithJobsSetJobNotificationHook
GetPtsScenarioWithJobsScenarioWithJobsSetJobPlugin
- file_
id str - File ID.
- name str
- File name.
- size float
- File size.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJobProtocol
- file_
id str - File ID.
- name str
- File name.
- size float
- File size.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJobRequestFile
- file_
id str - File ID.
- name str
- File name.
- size float
- File size.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetJobTestScript
- Encoded
Content string - The base64 encoded content.
- Encoded
Http stringArchive - The base64 encoded HAR.
- File
Id string - File ID.
- Load
Weight double - The weight of the script, ranging from 1 to 100.
- Name string
- File name.
- Size double
- File size.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At string - The updating time of the scenario.
- Encoded
Content string - The base64 encoded content.
- Encoded
Http stringArchive - The base64 encoded HAR.
- File
Id string - File ID.
- Load
Weight float64 - The weight of the script, ranging from 1 to 100.
- Name string
- File name.
- Size float64
- File size.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At string - The updating time of the scenario.
- encoded
Content String - The base64 encoded content.
- encoded
Http StringArchive - The base64 encoded HAR.
- file
Id String - File ID.
- load
Weight Double - The weight of the script, ranging from 1 to 100.
- name String
- File name.
- size Double
- File size.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At String - The updating time of the scenario.
- encoded
Content string - The base64 encoded content.
- encoded
Http stringArchive - The base64 encoded HAR.
- file
Id string - File ID.
- load
Weight number - The weight of the script, ranging from 1 to 100.
- name string
- File name.
- size number
- File size.
- type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At string - The updating time of the scenario.
- encoded_
content str - The base64 encoded content.
- encoded_
http_ strarchive - The base64 encoded HAR.
- file_
id str - File ID.
- load_
weight float - The weight of the script, ranging from 1 to 100.
- name str
- File name.
- size float
- File size.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
- encoded
Content String - The base64 encoded content.
- encoded
Http StringArchive - The base64 encoded HAR.
- file
Id String - File ID.
- load
Weight Number - The weight of the script, ranging from 1 to 100.
- name String
- File name.
- size Number
- File size.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenario
- App
Id double - AppId.
- Configs List<string>
- Deprecated.
- Created
At string - The creation time of the scenario.
- Cron
Id string - The cron job ID.
- Datasets
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Dataset> - The test data sets for the load test.
- Description string
- Scenario description.
- Domain
Name List<GetConfigs Pts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config> - The configuration for parsing domain names.
- Encoded
Scripts string - Deprecated.
- Extensions List<string>
- Deprecated.
- Loads
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load> - Scenario is load test configuration.
- Name string
- File name.
- Notification
Hooks List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook> - The notification hooks.
- Owner string
- The job owner.
- Plugins
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Plugin> - Plugins.
- Project
Id string - Project ID.
- Project
Name string - Project name.
- Protocols
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Protocol> - The protocol file.
- Request
Files List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File> - The files in the request.
- Scenario
Id string - Scenario ID.
- Sla
Id string - The ID of the SLA policy.
- Sla
Policies List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy> - The SLA policy.
- Status double
- Scenario status.
- Sub
Account stringUin - SubAccountUin.
- Test
Scripts List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script> - The script of the load test.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Uin string
- Uin.
- Updated
At string - The updating time of the scenario.
- App
Id float64 - AppId.
- Configs []string
- Deprecated.
- Created
At string - The creation time of the scenario.
- Cron
Id string - The cron job ID.
- Datasets
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Dataset - The test data sets for the load test.
- Description string
- Scenario description.
- Domain
Name []GetConfigs Pts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config - The configuration for parsing domain names.
- Encoded
Scripts string - Deprecated.
- Extensions []string
- Deprecated.
- Loads
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load - Scenario is load test configuration.
- Name string
- File name.
- Notification
Hooks []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook - The notification hooks.
- Owner string
- The job owner.
- Plugins
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Plugin - Plugins.
- Project
Id string - Project ID.
- Project
Name string - Project name.
- Protocols
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Protocol - The protocol file.
- Request
Files []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File - The files in the request.
- Scenario
Id string - Scenario ID.
- Sla
Id string - The ID of the SLA policy.
- Sla
Policies []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy - The SLA policy.
- Status float64
- Scenario status.
- Sub
Account stringUin - SubAccountUin.
- Test
Scripts []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script - The script of the load test.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Uin string
- Uin.
- Updated
At string - The updating time of the scenario.
- app
Id Double - AppId.
- configs List<String>
- Deprecated.
- created
At String - The creation time of the scenario.
- cron
Id String - The cron job ID.
- datasets
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Dataset> - The test data sets for the load test.
- description String
- Scenario description.
- domain
Name List<GetConfigs Pts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config> - The configuration for parsing domain names.
- encoded
Scripts String - Deprecated.
- extensions List<String>
- Deprecated.
- loads
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load> - Scenario is load test configuration.
- name String
- File name.
- notification
Hooks List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook> - The notification hooks.
- owner String
- The job owner.
- plugins
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Plugin> - Plugins.
- project
Id String - Project ID.
- project
Name String - Project name.
- protocols
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Protocol> - The protocol file.
- request
Files List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File> - The files in the request.
- scenario
Id String - Scenario ID.
- sla
Id String - The ID of the SLA policy.
- sla
Policies List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy> - The SLA policy.
- status Double
- Scenario status.
- sub
Account StringUin - SubAccountUin.
- test
Scripts List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script> - The script of the load test.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- uin String
- Uin.
- updated
At String - The updating time of the scenario.
- app
Id number - AppId.
- configs string[]
- Deprecated.
- created
At string - The creation time of the scenario.
- cron
Id string - The cron job ID.
- datasets
Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Dataset[] - The test data sets for the load test.
- description string
- Scenario description.
- domain
Name GetConfigs Pts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config[] - The configuration for parsing domain names.
- encoded
Scripts string - Deprecated.
- extensions string[]
- Deprecated.
- loads
Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load[] - Scenario is load test configuration.
- name string
- File name.
- notification
Hooks GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook[] - The notification hooks.
- owner string
- The job owner.
- plugins
Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Plugin[] - Plugins.
- project
Id string - Project ID.
- project
Name string - Project name.
- protocols
Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Protocol[] - The protocol file.
- request
Files GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File[] - The files in the request.
- scenario
Id string - Scenario ID.
- sla
Id string - The ID of the SLA policy.
- sla
Policies GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy[] - The SLA policy.
- status number
- Scenario status.
- sub
Account stringUin - SubAccountUin.
- test
Scripts GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script[] - The script of the load test.
- type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- uin string
- Uin.
- updated
At string - The updating time of the scenario.
- app_
id float - AppId.
- configs Sequence[str]
- Deprecated.
- created_
at str - The creation time of the scenario.
- cron_
id str - The cron job ID.
- datasets
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Dataset] - The test data sets for the load test.
- description str
- Scenario description.
- domain_
name_ Sequence[Getconfigs Pts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config] - The configuration for parsing domain names.
- encoded_
scripts str - Deprecated.
- extensions Sequence[str]
- Deprecated.
- loads
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load] - Scenario is load test configuration.
- name str
- File name.
- notification_
hooks Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Notification Hook] - The notification hooks.
- owner str
- The job owner.
- plugins
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Plugin] - Plugins.
- project_
id str - Project ID.
- project_
name str - Project name.
- protocols
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Protocol] - The protocol file.
- request_
files Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Request File] - The files in the request.
- scenario_
id str - Scenario ID.
- sla_
id str - The ID of the SLA policy.
- sla_
policies Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy] - The SLA policy.
- status float
- Scenario status.
- sub_
account_ struin - SubAccountUin.
- test_
scripts Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Test Script] - The script of the load test.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- uin str
- Uin.
- updated_
at str - The updating time of the scenario.
- app
Id Number - AppId.
- configs List<String>
- Deprecated.
- created
At String - The creation time of the scenario.
- cron
Id String - The cron job ID.
- datasets List<Property Map>
- The test data sets for the load test.
- description String
- Scenario description.
- domain
Name List<Property Map>Configs - The configuration for parsing domain names.
- encoded
Scripts String - Deprecated.
- extensions List<String>
- Deprecated.
- loads List<Property Map>
- Scenario is load test configuration.
- name String
- File name.
- notification
Hooks List<Property Map> - The notification hooks.
- owner String
- The job owner.
- plugins List<Property Map>
- Plugins.
- project
Id String - Project ID.
- project
Name String - Project name.
- protocols List<Property Map>
- The protocol file.
- request
Files List<Property Map> - The files in the request.
- scenario
Id String - Scenario ID.
- sla
Id String - The ID of the SLA policy.
- sla
Policies List<Property Map> - The SLA policy.
- status Number
- Scenario status.
- sub
Account StringUin - SubAccountUin.
- test
Scripts List<Property Map> - The script of the load test.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- uin String
- Uin.
- updated
At String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioDataset
- File
Id string - File ID.
- Head
Lines List<string> - The header lines of the file.
- Header
Columns List<string> - The parameter name list.
- Header
In boolFile - Whether the first line contains the parameter names.
- Line
Count double - The line count of the file.
- Name string
- File name.
- Size double
- File size.
- Split bool
- Whether to split the test data.
- Tail
Lines List<string> - The tail lines of the file.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At string - The updating time of the scenario.
- File
Id string - File ID.
- Head
Lines []string - The header lines of the file.
- Header
Columns []string - The parameter name list.
- Header
In boolFile - Whether the first line contains the parameter names.
- Line
Count float64 - The line count of the file.
- Name string
- File name.
- Size float64
- File size.
- Split bool
- Whether to split the test data.
- Tail
Lines []string - The tail lines of the file.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At string - The updating time of the scenario.
- file
Id String - File ID.
- head
Lines List<String> - The header lines of the file.
- header
Columns List<String> - The parameter name list.
- header
In BooleanFile - Whether the first line contains the parameter names.
- line
Count Double - The line count of the file.
- name String
- File name.
- size Double
- File size.
- split Boolean
- Whether to split the test data.
- tail
Lines List<String> - The tail lines of the file.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At String - The updating time of the scenario.
- file
Id string - File ID.
- head
Lines string[] - The header lines of the file.
- header
Columns string[] - The parameter name list.
- header
In booleanFile - Whether the first line contains the parameter names.
- line
Count number - The line count of the file.
- name string
- File name.
- size number
- File size.
- split boolean
- Whether to split the test data.
- tail
Lines string[] - The tail lines of the file.
- type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At string - The updating time of the scenario.
- file_
id str - File ID.
- head_
lines Sequence[str] - The header lines of the file.
- header_
columns Sequence[str] - The parameter name list.
- header_
in_ boolfile - Whether the first line contains the parameter names.
- line_
count float - The line count of the file.
- name str
- File name.
- size float
- File size.
- split bool
- Whether to split the test data.
- tail_
lines Sequence[str] - The tail lines of the file.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
- file
Id String - File ID.
- head
Lines List<String> - The header lines of the file.
- header
Columns List<String> - The parameter name list.
- header
In BooleanFile - Whether the first line contains the parameter names.
- line
Count Number - The line count of the file.
- name String
- File name.
- size Number
- File size.
- split Boolean
- Whether to split the test data.
- tail
Lines List<String> - The tail lines of the file.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At String - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioDomainNameConfig
- Dns
Configs List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config> - The DNS configuration.
- Host
Aliases List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias> - The configuration for host aliases.
- Dns
Configs []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config - The DNS configuration.
- Host
Aliases []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias - The configuration for host aliases.
- dns
Configs List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config> - The DNS configuration.
- host
Aliases List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias> - The configuration for host aliases.
- dns
Configs GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config[] - The DNS configuration.
- host
Aliases GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias[] - The configuration for host aliases.
- dns_
configs Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Dns Config] - The DNS configuration.
- host_
aliases Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Domain Name Config Host Alias] - The configuration for host aliases.
- dns
Configs List<Property Map> - The DNS configuration.
- host
Aliases List<Property Map> - The configuration for host aliases.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioDomainNameConfigDnsConfig
- Nameservers List<string>
- DNS IP list.
- Nameservers []string
- DNS IP list.
- nameservers List<String>
- DNS IP list.
- nameservers string[]
- DNS IP list.
- nameservers Sequence[str]
- DNS IP list.
- nameservers List<String>
- DNS IP list.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioDomainNameConfigHostAlias
- host_
names Sequence[str] - Host names.
- ip str
- IP.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoad
- Geo
Regions List<GetLoad Distributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution> - The geographical distribution of the load source.
- Load
Specs List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec> - Scenario is load specification.
- Vpc
Load List<GetDistributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution> - The distribution of the load source.
- Geo
Regions []GetLoad Distributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution - The geographical distribution of the load source.
- Load
Specs []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec - Scenario is load specification.
- Vpc
Load []GetDistributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution - The distribution of the load source.
- geo
Regions List<GetLoad Distributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution> - The geographical distribution of the load source.
- load
Specs List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec> - Scenario is load specification.
- vpc
Load List<GetDistributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution> - The distribution of the load source.
- geo
Regions GetLoad Distributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution[] - The geographical distribution of the load source.
- load
Specs GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec[] - Scenario is load specification.
- vpc
Load GetDistributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution[] - The distribution of the load source.
- geo_
regions_ Sequence[Getload_ distributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Geo Regions Load Distribution] - The geographical distribution of the load source.
- load_
specs Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec] - Scenario is load specification.
- vpc_
load_ Sequence[Getdistributions Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Vpc Load Distribution] - The distribution of the load source.
- geo
Regions List<Property Map>Load Distributions - The geographical distribution of the load source.
- load
Specs List<Property Map> - Scenario is load specification.
- vpc
Load List<Property Map>Distributions - The distribution of the load source.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadGeoRegionsLoadDistribution
- Percentage double
- Percentage.
- Region string
- Region.
- Region
Id double - Region ID.
- Percentage float64
- Percentage.
- Region string
- Region.
- Region
Id float64 - Region ID.
- percentage Double
- Percentage.
- region String
- Region.
- region
Id Double - Region ID.
- percentage number
- Percentage.
- region string
- Region.
- region
Id number - Region ID.
- percentage float
- Percentage.
- region str
- Region.
- region_
id float - Region ID.
- percentage Number
- Percentage.
- region String
- Region.
- region
Id Number - Region ID.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpec
- Concurrencies
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency> - The configuration for the concurrency mode.
- Requests
Per List<GetSeconds Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second> - The configuration of the RPS mode load test.
- Script
Origins List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin> - The script origin.
- Concurrencies
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency - The configuration for the concurrency mode.
- Requests
Per []GetSeconds Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second - The configuration of the RPS mode load test.
- Script
Origins []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin - The script origin.
- concurrencies
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency> - The configuration for the concurrency mode.
- requests
Per List<GetSeconds Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second> - The configuration of the RPS mode load test.
- script
Origins List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin> - The script origin.
- concurrencies
Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency[] - The configuration for the concurrency mode.
- requests
Per GetSeconds Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second[] - The configuration of the RPS mode load test.
- script
Origins GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin[] - The script origin.
- concurrencies
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency] - The configuration for the concurrency mode.
- requests_
per_ Sequence[Getseconds Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Requests Per Second] - The configuration of the RPS mode load test.
- script_
origins Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Script Origin] - The script origin.
- concurrencies List<Property Map>
- The configuration for the concurrency mode.
- requests
Per List<Property Map>Seconds - The configuration of the RPS mode load test.
- script
Origins List<Property Map> - The script origin.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpecConcurrency
- Graceful
Stop doubleSeconds - The waiting period for a graceful shutdown.
- Iteration
Count double - The iteration count of the load test.
- Max
Requests doublePer Second - The maximum RPS.
- Resources double
- The recource count of the load test.
- Stages
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage> - The configuration for the multi-stage load test.
- Graceful
Stop float64Seconds - The waiting period for a graceful shutdown.
- Iteration
Count float64 - The iteration count of the load test.
- Max
Requests float64Per Second - The maximum RPS.
- Resources float64
- The recource count of the load test.
- Stages
[]Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage - The configuration for the multi-stage load test.
- graceful
Stop DoubleSeconds - The waiting period for a graceful shutdown.
- iteration
Count Double - The iteration count of the load test.
- max
Requests DoublePer Second - The maximum RPS.
- resources Double
- The recource count of the load test.
- stages
List<Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage> - The configuration for the multi-stage load test.
- graceful
Stop numberSeconds - The waiting period for a graceful shutdown.
- iteration
Count number - The iteration count of the load test.
- max
Requests numberPer Second - The maximum RPS.
- resources number
- The recource count of the load test.
- stages
Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage[] - The configuration for the multi-stage load test.
- graceful_
stop_ floatseconds - The waiting period for a graceful shutdown.
- iteration_
count float - The iteration count of the load test.
- max_
requests_ floatper_ second - The maximum RPS.
- resources float
- The recource count of the load test.
- stages
Sequence[Get
Pts Scenario With Jobs Scenario With Jobs Set Scenario Load Load Spec Concurrency Stage] - The configuration for the multi-stage load test.
- graceful
Stop NumberSeconds - The waiting period for a graceful shutdown.
- iteration
Count Number - The iteration count of the load test.
- max
Requests NumberPer Second - The maximum RPS.
- resources Number
- The recource count of the load test.
- stages List<Property Map>
- The configuration for the multi-stage load test.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpecConcurrencyStage
- Duration
Seconds double - The load test execution time.
- Target
Virtual doubleUsers - Deprecated.
- Duration
Seconds float64 - The load test execution time.
- Target
Virtual float64Users - Deprecated.
- duration
Seconds Double - The load test execution time.
- target
Virtual DoubleUsers - Deprecated.
- duration
Seconds number - The load test execution time.
- target
Virtual numberUsers - Deprecated.
- duration_
seconds float - The load test execution time.
- target_
virtual_ floatusers - Deprecated.
- duration
Seconds Number - The load test execution time.
- target
Virtual NumberUsers - Deprecated.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpecRequestsPerSecond
- Duration
Seconds double - The load test execution time.
- Graceful
Stop doubleSeconds - The waiting period for a graceful shutdown.
- Max
Requests doublePer Second - The maximum RPS.
- Resources double
- The recource count of the load test.
- Start
Requests doublePer Second - The starting minimum RPS.
- Target
Requests doublePer Second - The target RPS.
- Target
Virtual doubleUsers - Deprecated.
- Duration
Seconds float64 - The load test execution time.
- Graceful
Stop float64Seconds - The waiting period for a graceful shutdown.
- Max
Requests float64Per Second - The maximum RPS.
- Resources float64
- The recource count of the load test.
- Start
Requests float64Per Second - The starting minimum RPS.
- Target
Requests float64Per Second - The target RPS.
- Target
Virtual float64Users - Deprecated.
- duration
Seconds Double - The load test execution time.
- graceful
Stop DoubleSeconds - The waiting period for a graceful shutdown.
- max
Requests DoublePer Second - The maximum RPS.
- resources Double
- The recource count of the load test.
- start
Requests DoublePer Second - The starting minimum RPS.
- target
Requests DoublePer Second - The target RPS.
- target
Virtual DoubleUsers - Deprecated.
- duration
Seconds number - The load test execution time.
- graceful
Stop numberSeconds - The waiting period for a graceful shutdown.
- max
Requests numberPer Second - The maximum RPS.
- resources number
- The recource count of the load test.
- start
Requests numberPer Second - The starting minimum RPS.
- target
Requests numberPer Second - The target RPS.
- target
Virtual numberUsers - Deprecated.
- duration_
seconds float - The load test execution time.
- graceful_
stop_ floatseconds - The waiting period for a graceful shutdown.
- max_
requests_ floatper_ second - The maximum RPS.
- resources float
- The recource count of the load test.
- start_
requests_ floatper_ second - The starting minimum RPS.
- target_
requests_ floatper_ second - The target RPS.
- target_
virtual_ floatusers - Deprecated.
- duration
Seconds Number - The load test execution time.
- graceful
Stop NumberSeconds - The waiting period for a graceful shutdown.
- max
Requests NumberPer Second - The maximum RPS.
- resources Number
- The recource count of the load test.
- start
Requests NumberPer Second - The starting minimum RPS.
- target
Requests NumberPer Second - The target RPS.
- target
Virtual NumberUsers - Deprecated.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadLoadSpecScriptOrigin
- Duration
Seconds double - The load test execution time.
- Machine
Number double - The load test machine number.
- Machine
Specification string - The load test machine specification.
- Duration
Seconds float64 - The load test execution time.
- Machine
Number float64 - The load test machine number.
- Machine
Specification string - The load test machine specification.
- duration
Seconds Double - The load test execution time.
- machine
Number Double - The load test machine number.
- machine
Specification String - The load test machine specification.
- duration
Seconds number - The load test execution time.
- machine
Number number - The load test machine number.
- machine
Specification string - The load test machine specification.
- duration_
seconds float - The load test execution time.
- machine_
number float - The load test machine number.
- machine_
specification str - The load test machine specification.
- duration
Seconds Number - The load test execution time.
- machine
Number Number - The load test machine number.
- machine
Specification String - The load test machine specification.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioLoadVpcLoadDistribution
- region str
- Region.
- region_
id float - Region ID.
- subnet_
ids Sequence[str] - The subnet ID list.
- vpc_
id str - The VPC ID.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioNotificationHook
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioPlugin
- file_
id str - File ID.
- name str
- File name.
- size float
- File size.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioProtocol
- file_
id str - File ID.
- name str
- File name.
- size float
- File size.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioRequestFile
- file_
id str - File ID.
- name str
- File name.
- size float
- File size.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioSlaPolicy
- alert
Channels List<Property Map> - The alert channel.
- sla
Rules List<Property Map> - The SLA rules.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioSlaPolicyAlertChannel
- Amp
Consumer stringId - AMP consumer ID.
- Notice
Id string - The notice ID bound with this alert channel.
- Amp
Consumer stringId - AMP consumer ID.
- Notice
Id string - The notice ID bound with this alert channel.
- amp
Consumer StringId - AMP consumer ID.
- notice
Id String - The notice ID bound with this alert channel.
- amp
Consumer stringId - AMP consumer ID.
- notice
Id string - The notice ID bound with this alert channel.
- amp_
consumer_ strid - AMP consumer ID.
- notice_
id str - The notice ID bound with this alert channel.
- amp
Consumer StringId - AMP consumer ID.
- notice
Id String - The notice ID bound with this alert channel.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioSlaPolicySlaRule
- Abort
Flag bool - Whether to abort the load test job.
- Aggregation string
- The aggregation method of the metrics.
- Condition string
- The operator for checking the condition.
- For string
- The duration for checking the condition.
- Label
Filters List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter> - The label filter.
- Metric string
- The load test metrics.
- Value double
- The threshold in the condition.
- Abort
Flag bool - Whether to abort the load test job.
- Aggregation string
- The aggregation method of the metrics.
- Condition string
- The operator for checking the condition.
- For string
- The duration for checking the condition.
- Label
Filters []GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter - The label filter.
- Metric string
- The load test metrics.
- Value float64
- The threshold in the condition.
- abort
Flag Boolean - Whether to abort the load test job.
- aggregation String
- The aggregation method of the metrics.
- condition String
- The operator for checking the condition.
- for_ String
- The duration for checking the condition.
- label
Filters List<GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter> - The label filter.
- metric String
- The load test metrics.
- value Double
- The threshold in the condition.
- abort
Flag boolean - Whether to abort the load test job.
- aggregation string
- The aggregation method of the metrics.
- condition string
- The operator for checking the condition.
- for string
- The duration for checking the condition.
- label
Filters GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter[] - The label filter.
- metric string
- The load test metrics.
- value number
- The threshold in the condition.
- abort_
flag bool - Whether to abort the load test job.
- aggregation str
- The aggregation method of the metrics.
- condition str
- The operator for checking the condition.
- for_ str
- The duration for checking the condition.
- label_
filters Sequence[GetPts Scenario With Jobs Scenario With Jobs Set Scenario Sla Policy Sla Rule Label Filter] - The label filter.
- metric str
- The load test metrics.
- value float
- The threshold in the condition.
- abort
Flag Boolean - Whether to abort the load test job.
- aggregation String
- The aggregation method of the metrics.
- condition String
- The operator for checking the condition.
- for String
- The duration for checking the condition.
- label
Filters List<Property Map> - The label filter.
- metric String
- The load test metrics.
- value Number
- The threshold in the condition.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioSlaPolicySlaRuleLabelFilter
- Label
Name string - Label name.
- Label
Value string - Label value.
- Label
Name string - Label name.
- Label
Value string - Label value.
- label
Name String - Label name.
- label
Value String - Label value.
- label
Name string - Label name.
- label
Value string - Label value.
- label_
name str - Label name.
- label_
value str - Label value.
- label
Name String - Label name.
- label
Value String - Label value.
GetPtsScenarioWithJobsScenarioWithJobsSetScenarioTestScript
- Encoded
Content string - The base64 encoded content.
- Encoded
Http stringArchive - The base64 encoded HAR.
- File
Id string - File ID.
- Load
Weight double - The weight of the script, ranging from 1 to 100.
- Name string
- File name.
- Size double
- File size.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At string - The updating time of the scenario.
- Encoded
Content string - The base64 encoded content.
- Encoded
Http stringArchive - The base64 encoded HAR.
- File
Id string - File ID.
- Load
Weight float64 - The weight of the script, ranging from 1 to 100.
- Name string
- File name.
- Size float64
- File size.
- Type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- Updated
At string - The updating time of the scenario.
- encoded
Content String - The base64 encoded content.
- encoded
Http StringArchive - The base64 encoded HAR.
- file
Id String - File ID.
- load
Weight Double - The weight of the script, ranging from 1 to 100.
- name String
- File name.
- size Double
- File size.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At String - The updating time of the scenario.
- encoded
Content string - The base64 encoded content.
- encoded
Http stringArchive - The base64 encoded HAR.
- file
Id string - File ID.
- load
Weight number - The weight of the script, ranging from 1 to 100.
- name string
- File name.
- size number
- File size.
- type string
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At string - The updating time of the scenario.
- encoded_
content str - The base64 encoded content.
- encoded_
http_ strarchive - The base64 encoded HAR.
- file_
id str - File ID.
- load_
weight float - The weight of the script, ranging from 1 to 100.
- name str
- File name.
- size float
- File size.
- type str
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated_
at str - The updating time of the scenario.
- encoded
Content String - The base64 encoded content.
- encoded
Http StringArchive - The base64 encoded HAR.
- file
Id String - File ID.
- load
Weight Number - The weight of the script, ranging from 1 to 100.
- name String
- File name.
- size Number
- File size.
- type String
- Scenario type, e.g.: pts-http, pts-js, pts-trpc, pts-jmeter.
- updated
At 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.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack