Skip to content

Commit b4c9db1

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 118d20f of spec repo
1 parent 3ec493c commit b4c9db1

File tree

13 files changed

+23
-248
lines changed

13 files changed

+23
-248
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -87254,9 +87254,6 @@ paths:
8725487254
summary: List ServiceNow assignment groups
8725587255
tags:
8725687256
- ServiceNow Integration
87257-
x-unstable: |-
87258-
**Note**: This endpoint is in public beta and is subject to change.
87259-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8726087257
/api/v2/integration/servicenow/business_services/{instance_id}:
8726187258
get:
8726287259
description: |-
@@ -87295,9 +87292,6 @@ paths:
8729587292
summary: List ServiceNow business services
8729687293
tags:
8729787294
- ServiceNow Integration
87298-
x-unstable: |-
87299-
**Note**: This endpoint is in public beta and is subject to change.
87300-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8730187295
/api/v2/integration/servicenow/handles:
8730287296
get:
8730387297
description: |-
@@ -87315,9 +87309,6 @@ paths:
8731587309
summary: List ServiceNow templates
8731687310
tags:
8731787311
- ServiceNow Integration
87318-
x-unstable: |-
87319-
**Note**: This endpoint is in public beta and is subject to change.
87320-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8732187312
post:
8732287313
description: |-
8732387314
Create a new ServiceNow template.
@@ -87346,9 +87337,6 @@ paths:
8734687337
summary: Create ServiceNow template
8734787338
tags:
8734887339
- ServiceNow Integration
87349-
x-unstable: |-
87350-
**Note**: This endpoint is in public beta and is subject to change.
87351-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8735287340
/api/v2/integration/servicenow/handles/{template_id}:
8735387341
delete:
8735487342
description: |-
@@ -87383,9 +87371,6 @@ paths:
8738387371
summary: Delete ServiceNow template
8738487372
tags:
8738587373
- ServiceNow Integration
87386-
x-unstable: |-
87387-
**Note**: This endpoint is in public beta and is subject to change.
87388-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8738987374
get:
8739087375
description: |-
8739187376
Get a ServiceNow template by ID.
@@ -87423,9 +87408,6 @@ paths:
8742387408
summary: Get ServiceNow template
8742487409
tags:
8742587410
- ServiceNow Integration
87426-
x-unstable: |-
87427-
**Note**: This endpoint is in public beta and is subject to change.
87428-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8742987411
put:
8743087412
description: |-
8743187413
Update a ServiceNow template by ID.
@@ -87469,9 +87451,6 @@ paths:
8746987451
summary: Update ServiceNow template
8747087452
tags:
8747187453
- ServiceNow Integration
87472-
x-unstable: |-
87473-
**Note**: This endpoint is in public beta and is subject to change.
87474-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8747587454
/api/v2/integration/servicenow/instances:
8747687455
get:
8747787456
description: |-
@@ -87495,9 +87474,6 @@ paths:
8749587474
summary: List ServiceNow instances
8749687475
tags:
8749787476
- ServiceNow Integration
87498-
x-unstable: |-
87499-
**Note**: This endpoint is in public beta and is subject to change.
87500-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8750187477
/api/v2/integration/servicenow/users/{instance_id}:
8750287478
get:
8750387479
description: |-
@@ -87536,9 +87512,6 @@ paths:
8753687512
summary: List ServiceNow users
8753787513
tags:
8753887514
- ServiceNow Integration
87539-
x-unstable: |-
87540-
**Note**: This endpoint is in public beta and is subject to change.
87541-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8754287515
/api/v2/integrations:
8754387516
get:
8754487517
operationId: ListIntegrations

examples/v2/servicenow-integration/CreateServiceNowTemplate.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
public class Example {
1515
public static void main(String[] args) {
1616
ApiClient defaultClient = ApiClient.getDefaultApiClient();
17-
defaultClient.setUnstableOperationEnabled("v2.createServiceNowTemplate", true);
1817
ServiceNowIntegrationApi apiInstance = new ServiceNowIntegrationApi(defaultClient);
1918

2019
ServiceNowTemplateCreateRequest body =

examples/v2/servicenow-integration/DeleteServiceNowTemplate.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
public class Example {
99
public static void main(String[] args) {
1010
ApiClient defaultClient = ApiClient.getDefaultApiClient();
11-
defaultClient.setUnstableOperationEnabled("v2.deleteServiceNowTemplate", true);
1211
ServiceNowIntegrationApi apiInstance = new ServiceNowIntegrationApi(defaultClient);
1312

1413
try {

examples/v2/servicenow-integration/GetServiceNowTemplate.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
public class Example {
1010
public static void main(String[] args) {
1111
ApiClient defaultClient = ApiClient.getDefaultApiClient();
12-
defaultClient.setUnstableOperationEnabled("v2.getServiceNowTemplate", true);
1312
ServiceNowIntegrationApi apiInstance = new ServiceNowIntegrationApi(defaultClient);
1413

1514
try {

examples/v2/servicenow-integration/ListServiceNowAssignmentGroups.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
public class Example {
1010
public static void main(String[] args) {
1111
ApiClient defaultClient = ApiClient.getDefaultApiClient();
12-
defaultClient.setUnstableOperationEnabled("v2.listServiceNowAssignmentGroups", true);
1312
ServiceNowIntegrationApi apiInstance = new ServiceNowIntegrationApi(defaultClient);
1413

1514
try {

examples/v2/servicenow-integration/ListServiceNowBusinessServices.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
public class Example {
1010
public static void main(String[] args) {
1111
ApiClient defaultClient = ApiClient.getDefaultApiClient();
12-
defaultClient.setUnstableOperationEnabled("v2.listServiceNowBusinessServices", true);
1312
ServiceNowIntegrationApi apiInstance = new ServiceNowIntegrationApi(defaultClient);
1413

1514
try {

examples/v2/servicenow-integration/ListServiceNowInstances.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
public class Example {
99
public static void main(String[] args) {
1010
ApiClient defaultClient = ApiClient.getDefaultApiClient();
11-
defaultClient.setUnstableOperationEnabled("v2.listServiceNowInstances", true);
1211
ServiceNowIntegrationApi apiInstance = new ServiceNowIntegrationApi(defaultClient);
1312

1413
try {

examples/v2/servicenow-integration/ListServiceNowTemplates.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
public class Example {
99
public static void main(String[] args) {
1010
ApiClient defaultClient = ApiClient.getDefaultApiClient();
11-
defaultClient.setUnstableOperationEnabled("v2.listServiceNowTemplates", true);
1211
ServiceNowIntegrationApi apiInstance = new ServiceNowIntegrationApi(defaultClient);
1312

1413
try {

examples/v2/servicenow-integration/ListServiceNowUsers.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
public class Example {
1010
public static void main(String[] args) {
1111
ApiClient defaultClient = ApiClient.getDefaultApiClient();
12-
defaultClient.setUnstableOperationEnabled("v2.listServiceNowUsers", true);
1312
ServiceNowIntegrationApi apiInstance = new ServiceNowIntegrationApi(defaultClient);
1413

1514
try {

examples/v2/servicenow-integration/UpdateServiceNowTemplate.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
public class Example {
1515
public static void main(String[] args) {
1616
ApiClient defaultClient = ApiClient.getDefaultApiClient();
17-
defaultClient.setUnstableOperationEnabled("v2.updateServiceNowTemplate", true);
1817
ServiceNowIntegrationApi apiInstance = new ServiceNowIntegrationApi(defaultClient);
1918

2019
ServiceNowTemplateUpdateRequest body =

0 commit comments

Comments
 (0)