Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209461,7 +209461,7 @@ paths:
$ref: "#/components/responses/TooManyRequestsResponse"
security:
- AuthZ: []
summary: Get SPA Recommendations with a shard parameter
summary: Get SPA recommendations using a shard parameter
tags:
- Spa
x-unstable: |-
Expand Down
2 changes: 1 addition & 1 deletion examples/v2/spa/GetSPARecommendationsWithShard.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Get SPA Recommendations with a shard parameter returns "OK" response
// Get SPA recommendations using a shard parameter returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
10 changes: 5 additions & 5 deletions src/main/java/com/datadog/api/client/v2/api/SpaApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public GetSPARecommendationsWithShardOptionalParameters bypassCache(String bypas
}

/**
* Get SPA Recommendations with a shard parameter.
* Get SPA recommendations using a shard parameter.
*
* <p>See {@link #getSPARecommendationsWithShardWithHttpInfo}.
*
Expand All @@ -296,7 +296,7 @@ shard, service, new GetSPARecommendationsWithShardOptionalParameters())
}

/**
* Get SPA Recommendations with a shard parameter.
* Get SPA recommendations using a shard parameter.
*
* <p>See {@link #getSPARecommendationsWithShardWithHttpInfoAsync}.
*
Expand All @@ -316,7 +316,7 @@ shard, service, new GetSPARecommendationsWithShardOptionalParameters())
}

/**
* Get SPA Recommendations with a shard parameter.
* Get SPA recommendations using a shard parameter.
*
* <p>See {@link #getSPARecommendationsWithShardWithHttpInfo}.
*
Expand All @@ -334,7 +334,7 @@ public RecommendationDocument getSPARecommendationsWithShard(
}

/**
* Get SPA Recommendations with a shard parameter.
* Get SPA recommendations using a shard parameter.
*
* <p>See {@link #getSPARecommendationsWithShardWithHttpInfoAsync}.
*
Expand Down Expand Up @@ -433,7 +433,7 @@ public ApiResponse<RecommendationDocument> getSPARecommendationsWithShardWithHtt
}

/**
* Get SPA Recommendations with a shard parameter.
* Get SPA recommendations using a shard parameter.
*
* <p>See {@link #getSPARecommendationsWithShardWithHttpInfo}.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Feature: Spa
Then the response status is 200 OK

@generated @skip @team:DataDog/data-and-analytics-processing
Scenario: Get SPA Recommendations with a shard parameter returns "Bad Request" response
Scenario: Get SPA recommendations using a shard parameter returns "Bad Request" response
Given operation "GetSPARecommendationsWithShard" enabled
And new "GetSPARecommendationsWithShard" request
And request contains "shard" parameter from "REPLACE.ME"
Expand All @@ -32,7 +32,7 @@ Feature: Spa
Then the response status is 400 Bad Request

@generated @skip @team:DataDog/data-and-analytics-processing
Scenario: Get SPA Recommendations with a shard parameter returns "OK" response
Scenario: Get SPA recommendations using a shard parameter returns "OK" response
Given operation "GetSPARecommendationsWithShard" enabled
And new "GetSPARecommendationsWithShard" request
And request contains "shard" parameter from "REPLACE.ME"
Expand Down
Loading