Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66624,9 +66624,6 @@ paths:
x-permission:
operator: OPEN
permissions: []
x-unstable: '**Note: Data Access is in preview. If you have any feedback,

contact [Datadog support](https://docs.datadoghq.com/help/).**'
put:
description: Edits the dataset associated with the ID.
operationId: UpdateDataset
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/datadog/api/client/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,6 @@ public class ApiClient {
put("v2.createDataset", false);
put("v2.deleteDataset", false);
put("v2.getAllDatasets", false);
put("v2.getDataset", false);
put("v2.updateDataset", false);
put("v2.cancelDataDeletionRequest", false);
put("v2.createDataDeletionRequest", false);
Expand Down
17 changes: 0 additions & 17 deletions src/main/java/com/datadog/api/client/v2/api/DatasetsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -519,13 +519,6 @@ public CompletableFuture<DatasetResponseSingle> getDatasetAsync(String datasetId
*/
public ApiResponse<DatasetResponseSingle> getDatasetWithHttpInfo(String datasetId)
throws ApiException {
// Check if unstable operation is enabled
String operationId = "getDataset";
if (apiClient.isUnstableOperationEnabled("v2." + operationId)) {
apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId));
} else {
throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId));
}
Object localVarPostBody = null;

// verify the required parameter 'datasetId' is set
Expand Down Expand Up @@ -570,16 +563,6 @@ public ApiResponse<DatasetResponseSingle> getDatasetWithHttpInfo(String datasetI
*/
public CompletableFuture<ApiResponse<DatasetResponseSingle>> getDatasetWithHttpInfoAsync(
String datasetId) {
// Check if unstable operation is enabled
String operationId = "getDataset";
if (apiClient.isUnstableOperationEnabled("v2." + operationId)) {
apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId));
} else {
CompletableFuture<ApiResponse<DatasetResponseSingle>> result = new CompletableFuture<>();
result.completeExceptionally(
new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)));
return result;
}
Object localVarPostBody = null;

// verify the required parameter 'datasetId' is set
Expand Down
Loading