Skip to content

Commit 4fc8eb5

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Mark ServiceNow Integration endpoints as stable (#3654)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent fe8c5cc commit 4fc8eb5

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
@@ -87463,9 +87463,6 @@ paths:
8746387463
summary: List ServiceNow assignment groups
8746487464
tags:
8746587465
- ServiceNow Integration
87466-
x-unstable: |-
87467-
**Note**: This endpoint is in public beta and is subject to change.
87468-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8746987466
/api/v2/integration/servicenow/business_services/{instance_id}:
8747087467
get:
8747187468
description: |-
@@ -87504,9 +87501,6 @@ paths:
8750487501
summary: List ServiceNow business services
8750587502
tags:
8750687503
- ServiceNow Integration
87507-
x-unstable: |-
87508-
**Note**: This endpoint is in public beta and is subject to change.
87509-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8751087504
/api/v2/integration/servicenow/handles:
8751187505
get:
8751287506
description: |-
@@ -87524,9 +87518,6 @@ paths:
8752487518
summary: List ServiceNow templates
8752587519
tags:
8752687520
- ServiceNow Integration
87527-
x-unstable: |-
87528-
**Note**: This endpoint is in public beta and is subject to change.
87529-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8753087521
post:
8753187522
description: |-
8753287523
Create a new ServiceNow template.
@@ -87555,9 +87546,6 @@ paths:
8755587546
summary: Create ServiceNow template
8755687547
tags:
8755787548
- ServiceNow Integration
87558-
x-unstable: |-
87559-
**Note**: This endpoint is in public beta and is subject to change.
87560-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8756187549
/api/v2/integration/servicenow/handles/{template_id}:
8756287550
delete:
8756387551
description: |-
@@ -87592,9 +87580,6 @@ paths:
8759287580
summary: Delete ServiceNow template
8759387581
tags:
8759487582
- ServiceNow Integration
87595-
x-unstable: |-
87596-
**Note**: This endpoint is in public beta and is subject to change.
87597-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8759887583
get:
8759987584
description: |-
8760087585
Get a ServiceNow template by ID.
@@ -87632,9 +87617,6 @@ paths:
8763287617
summary: Get ServiceNow template
8763387618
tags:
8763487619
- ServiceNow Integration
87635-
x-unstable: |-
87636-
**Note**: This endpoint is in public beta and is subject to change.
87637-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8763887620
put:
8763987621
description: |-
8764087622
Update a ServiceNow template by ID.
@@ -87678,9 +87660,6 @@ paths:
8767887660
summary: Update ServiceNow template
8767987661
tags:
8768087662
- ServiceNow Integration
87681-
x-unstable: |-
87682-
**Note**: This endpoint is in public beta and is subject to change.
87683-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8768487663
/api/v2/integration/servicenow/instances:
8768587664
get:
8768687665
description: |-
@@ -87704,9 +87683,6 @@ paths:
8770487683
summary: List ServiceNow instances
8770587684
tags:
8770687685
- ServiceNow Integration
87707-
x-unstable: |-
87708-
**Note**: This endpoint is in public beta and is subject to change.
87709-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8771087686
/api/v2/integration/servicenow/users/{instance_id}:
8771187687
get:
8771287688
description: |-
@@ -87745,9 +87721,6 @@ paths:
8774587721
summary: List ServiceNow users
8774687722
tags:
8774787723
- ServiceNow Integration
87748-
x-unstable: |-
87749-
**Note**: This endpoint is in public beta and is subject to change.
87750-
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).
8775187724
/api/v2/integrations:
8775287725
get:
8775387726
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)