Skip to content

Commit f349303

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit cbef552 of spec repo (#70)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 31d26d1 commit f349303

File tree

7 files changed

+40
-22
lines changed

7 files changed

+40
-22
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.2.0",
7-
"regenerated": "2020-09-16 14:34:33.340509",
8-
"spec_repo_commit": "01da443"
7+
"regenerated": "2020-09-16 15:43:42.759597",
8+
"spec_repo_commit": "cbef552"
99
},
1010
"v2": {
1111
"apigentools_version": "1.2.0",
12-
"regenerated": "2020-09-16 14:34:44.116861",
13-
"spec_repo_commit": "01da443"
12+
"regenerated": "2020-09-16 15:43:53.567566",
13+
"spec_repo_commit": "cbef552"
1414
}
1515
}
1616
}

tests/v1/features/logs_indexes.feature

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,38 @@ Feature: Logs Indexes
1111

1212
@generated @skip
1313
Scenario: Get indexes order returns "OK" response
14-
Given new "GetLogsIndexOrder" request
14+
Given operation "GetLogsIndexOrder" enabled
15+
And new "GetLogsIndexOrder" request
1516
When the request is sent
1617
Then the response status is 200 OK
1718

1819
@generated @skip
1920
Scenario: Update indexes order returns "OK" response
20-
Given new "UpdateLogsIndexOrder" request
21+
Given operation "UpdateLogsIndexOrder" enabled
22+
And new "UpdateLogsIndexOrder" request
2123
And body {}
2224
When the request is sent
2325
Then the response status is 200 OK
2426

2527
@generated @skip
2628
Scenario: Get all indexes returns "OK" response
27-
Given new "ListLogIndexes" request
29+
Given operation "ListLogIndexes" enabled
30+
And new "ListLogIndexes" request
2831
When the request is sent
2932
Then the response status is 200 OK
3033

3134
@generated @skip
3235
Scenario: Get an index returns "OK" response
33-
Given new "GetLogsIndex" request
36+
Given operation "GetLogsIndex" enabled
37+
And new "GetLogsIndex" request
3438
And request contains "name" parameter from "<PATH>"
3539
When the request is sent
3640
Then the response status is 200 OK
3741

3842
@generated @skip
3943
Scenario: Update an index returns "OK" response
40-
Given new "UpdateLogsIndex" request
44+
Given operation "UpdateLogsIndex" enabled
45+
And new "UpdateLogsIndex" request
4146
And request contains "name" parameter from "<PATH>"
4247
And body {}
4348
When the request is sent

tests/v1/features/service_level_objectives.feature

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ Feature: Service Level Objectives
6363

6464
@generated @skip
6565
Scenario: Get an SLO's history returns "OK" response
66-
Given new "GetSLOHistory" request
66+
Given operation "GetSLOHistory" enabled
67+
And new "GetSLOHistory" request
6768
And request contains "slo_id" parameter from "<PATH>"
6869
When the request is sent
6970
Then the response status is 200 OK

tests/v1/features/usage_metering.feature

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,26 +116,30 @@ Feature: Usage Metering
116116

117117
@generated @skip
118118
Scenario: Get the list of available daily custom reports returns "OK" response
119-
Given new "GetDailyCustomReports" request
119+
Given operation "GetDailyCustomReports" enabled
120+
And new "GetDailyCustomReports" request
120121
When the request is sent
121122
Then the response status is 200 OK
122123

123124
@generated @skip
124125
Scenario: Get specified daily custom reports returns "OK" response
125-
Given new "GetSpecifiedDailyCustomReports" request
126+
Given operation "GetSpecifiedDailyCustomReports" enabled
127+
And new "GetSpecifiedDailyCustomReports" request
126128
And request contains "report_id" parameter from "<PATH>"
127129
When the request is sent
128130
Then the response status is 200 OK
129131

130132
@generated @skip
131133
Scenario: Get the list of available monthly custom reports returns "OK" response
132-
Given new "GetMonthlyCustomReports" request
134+
Given operation "GetMonthlyCustomReports" enabled
135+
And new "GetMonthlyCustomReports" request
133136
When the request is sent
134137
Then the response status is 200 OK
135138

136139
@generated @skip
137140
Scenario: Get specified monthly custom reports returns "OK" response
138-
Given new "GetSpecifiedMonthlyCustomReports" request
141+
Given operation "GetSpecifiedMonthlyCustomReports" enabled
142+
And new "GetSpecifiedMonthlyCustomReports" request
139143
And request contains "report_id" parameter from "<PATH>"
140144
When the request is sent
141145
Then the response status is 200 OK

tests/v2/features/logs.feature

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,23 @@ Feature: Logs
1010

1111
@generated @skip
1212
Scenario: Get a quick list of logs returns "OK" response
13-
Given new "ListLogsGet" request
13+
Given operation "ListLogsGet" enabled
14+
And new "ListLogsGet" request
1415
When the request is sent
1516
Then the response status is 200 OK
1617

1718
@generated @skip
1819
Scenario: Get a list of logs returns "OK" response
19-
Given new "ListLogs" request
20+
Given operation "ListLogs" enabled
21+
And new "ListLogs" request
2022
And body {}
2123
When the request is sent
2224
Then the response status is 200 OK
2325

2426
@generated @skip
2527
Scenario: Aggregate events returns "OK" response
26-
Given new "AggregateLogs" request
28+
Given operation "AggregateLogs" enabled
29+
And new "AggregateLogs" request
2730
And body {}
2831
When the request is sent
2932
Then the response status is 200 OK

tests/v2/features/logs_archives.feature

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,22 +46,25 @@ Feature: Logs Archives
4646

4747
@generated @skip
4848
Scenario: Revoke role from an archive returns "OK" response
49-
Given new "RemoveRoleFromArchive" request
49+
Given operation "RemoveRoleFromArchive" enabled
50+
And new "RemoveRoleFromArchive" request
5051
And request contains "archive_id" parameter from "<PATH>"
5152
And body {}
5253
When the request is sent
5354
Then the response status is 204 OK
5455

5556
@generated @skip
5657
Scenario: List read roles for an archive returns "OK" response
57-
Given new "ListArchiveReadRoles" request
58+
Given operation "ListArchiveReadRoles" enabled
59+
And new "ListArchiveReadRoles" request
5860
And request contains "archive_id" parameter from "<PATH>"
5961
When the request is sent
6062
Then the response status is 200 OK
6163

6264
@generated @skip
6365
Scenario: Grant role to an archive returns "OK" response
64-
Given new "AddReadRoleToArchive" request
66+
Given operation "AddReadRoleToArchive" enabled
67+
And new "AddReadRoleToArchive" request
6568
And request contains "archive_id" parameter from "<PATH>"
6669
And body {}
6770
When the request is sent

tests/v2/features/security_monitoring.feature

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,15 @@ Feature: Security Monitoring
4444

4545
@generated @skip
4646
Scenario: Get a quick list of security signals returns "OK" response
47-
Given new "ListSecurityMonitoringSignals" request
47+
Given operation "ListSecurityMonitoringSignals" enabled
48+
And new "ListSecurityMonitoringSignals" request
4849
When the request is sent
4950
Then the response status is 200 OK
5051

5152
@generated @skip
5253
Scenario: Get a list of security signals returns "OK" response
53-
Given new "SearchSecurityMonitoringSignals" request
54+
Given operation "SearchSecurityMonitoringSignals" enabled
55+
And new "SearchSecurityMonitoringSignals" request
5456
And body {}
5557
When the request is sent
5658
Then the response status is 200 OK

0 commit comments

Comments
 (0)