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
124 changes: 63 additions & 61 deletions .generator/schemas/v2/openapi.yaml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Create a RUM operation strong link returns "Created" response
// Create a RUM operation link returns "Created" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand All @@ -23,7 +23,7 @@ public static void main(String[] args) {
.attributes(
new RUMOperationStrongLinkCreateRequestAttributes()
.description(null)
.featureId("feature-123")
.featureId("journey-123")
.operationId("abc12345-1234-5678-abcd-ef1234567890")
.status(RUMOperationStrongLinkStatus.CONFIRMED))
.type(RUMOperationStrongLinkType.STRONG_LINKS));
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Delete a RUM operation strong link returns "No Content" response
// Delete a RUM operation link returns "No Content" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// List RUM operation strong links returns "OK" response
// List RUM operation links returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Update a RUM operation strong link returns "OK" response
// Update a RUM operation link returns "OK" response

import com.datadog.api.client.ApiClient;
import com.datadog.api.client.ApiException;
Expand Down
70 changes: 35 additions & 35 deletions src/main/java/com/datadog/api/client/v2/api/RumOperationsApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public CompletableFuture<ApiResponse<RUMOperationResponse>> createRUMOperationWi
}

/**
* Create a RUM operation strong link.
* Create a RUM operation link.
*
* <p>See {@link #createRUMOperationStrongLinkWithHttpInfo}.
*
Expand All @@ -217,7 +217,7 @@ public RUMOperationStrongLinkResponse createRUMOperationStrongLink(
}

/**
* Create a RUM operation strong link.
* Create a RUM operation link.
*
* <p>See {@link #createRUMOperationStrongLinkWithHttpInfoAsync}.
*
Expand All @@ -234,10 +234,10 @@ public CompletableFuture<RUMOperationStrongLinkResponse> createRUMOperationStron
}

/**
* Create a strong link between a RUM operation and a feature, confirming that the feature belongs
* to the operation. The operation can be identified by <code>operation_id</code> or <code>
* operation_name</code>; if <code>operation_name</code> does not match an existing operation, a
* stub operation is created.
* Create a link between a RUM operation and a journey, confirming that the journey belongs to the
* operation. The operation can be identified by <code>operation_id</code> or <code>operation_name
* </code>; if <code>operation_name</code> does not match an existing operation, a stub operation
* is created.
*
* @param body (required)
* @return ApiResponse&lt;RUMOperationStrongLinkResponse&gt;
Expand All @@ -249,7 +249,7 @@ public CompletableFuture<RUMOperationStrongLinkResponse> createRUMOperationStron
* <tr><td> 201 </td><td> Created </td><td> - </td></tr>
* <tr><td> 400 </td><td> Bad Request </td><td> - </td></tr>
* <tr><td> 404 </td><td> Not Found. The referenced &#x60;operation_id&#x60; does not exist. </td><td> - </td></tr>
* <tr><td> 409 </td><td> Conflict. A strong link between this operation and feature already exists. </td><td> - </td></tr>
* <tr><td> 409 </td><td> Conflict. A link between this operation and journey already exists. </td><td> - </td></tr>
* <tr><td> 429 </td><td> Too many requests </td><td> - </td></tr>
* </table>
*/
Expand Down Expand Up @@ -295,7 +295,7 @@ public ApiResponse<RUMOperationStrongLinkResponse> createRUMOperationStrongLinkW
}

/**
* Create a RUM operation strong link.
* Create a RUM operation link.
*
* <p>See {@link #createRUMOperationStrongLinkWithHttpInfo}.
*
Expand Down Expand Up @@ -516,12 +516,12 @@ public CompletableFuture<ApiResponse<Void>> deleteRUMOperationWithHttpInfoAsync(
}

/**
* Delete a RUM operation strong link.
* Delete a RUM operation link.
*
* <p>See {@link #deleteRUMOperationStrongLinkWithHttpInfo}.
*
* @param rumOperationId The unique identifier of the RUM operation. (required)
* @param featureId The unique identifier of the feature. (required)
* @param featureId The unique identifier of the journey. (required)
* @throws ApiException if fails to make API call
*/
public void deleteRUMOperationStrongLink(String rumOperationId, String featureId)
Expand All @@ -530,12 +530,12 @@ public void deleteRUMOperationStrongLink(String rumOperationId, String featureId
}

/**
* Delete a RUM operation strong link.
* Delete a RUM operation link.
*
* <p>See {@link #deleteRUMOperationStrongLinkWithHttpInfoAsync}.
*
* @param rumOperationId The unique identifier of the RUM operation. (required)
* @param featureId The unique identifier of the feature. (required)
* @param featureId The unique identifier of the journey. (required)
* @return CompletableFuture
*/
public CompletableFuture<Void> deleteRUMOperationStrongLinkAsync(
Expand All @@ -548,10 +548,10 @@ public CompletableFuture<Void> deleteRUMOperationStrongLinkAsync(
}

/**
* Delete the strong link between a RUM operation and a feature.
* Delete the link between a RUM operation and a journey.
*
* @param rumOperationId The unique identifier of the RUM operation. (required)
* @param featureId The unique identifier of the feature. (required)
* @param featureId The unique identifier of the journey. (required)
* @return ApiResponse&lt;Void&gt;
* @throws ApiException if fails to make API call
* @http.response.details
Expand Down Expand Up @@ -619,12 +619,12 @@ public ApiResponse<Void> deleteRUMOperationStrongLinkWithHttpInfo(
}

/**
* Delete a RUM operation strong link.
* Delete a RUM operation link.
*
* <p>See {@link #deleteRUMOperationStrongLinkWithHttpInfo}.
*
* @param rumOperationId The unique identifier of the RUM operation. (required)
* @param featureId The unique identifier of the feature. (required)
* @param featureId The unique identifier of the journey. (required)
* @return CompletableFuture&lt;ApiResponse&lt;Void&gt;&gt;
*/
public CompletableFuture<ApiResponse<Void>> deleteRUMOperationStrongLinkWithHttpInfoAsync(
Expand Down Expand Up @@ -1074,7 +1074,7 @@ public ListRUMOperationsOptionalParameters team(String team) {
/**
* Set featureId.
*
* @param featureId Filter operations by feature ID. Accepts a comma-separated list of feature
* @param featureId Filter operations by journey ID. Accepts a comma-separated list of journey
* IDs. (optional)
* @return ListRUMOperationsOptionalParameters
*/
Expand Down Expand Up @@ -1155,7 +1155,7 @@ public CompletableFuture<RUMOperationsListResponse> listRUMOperationsAsync(

/**
* Search RUM operations for your organization. Supports filtering by query, creator, team,
* feature, and application.
* journey, and application.
*
* @param parameters Optional parameters for the request.
* @return ApiResponse&lt;RUMOperationsListResponse&gt;
Expand Down Expand Up @@ -1299,7 +1299,7 @@ public static class ListRUMOperationStrongLinksOptionalParameters {
/**
* Set operationId.
*
* @param operationId Filter strong links by RUM operation ID. (optional)
* @param operationId Filter links by RUM operation ID. (optional)
* @return ListRUMOperationStrongLinksOptionalParameters
*/
public ListRUMOperationStrongLinksOptionalParameters operationId(String operationId) {
Expand All @@ -1310,7 +1310,7 @@ public ListRUMOperationStrongLinksOptionalParameters operationId(String operatio
/**
* Set featureId.
*
* @param featureId Filter strong links by feature ID. (optional)
* @param featureId Filter links by journey (feature) ID. (optional)
* @return ListRUMOperationStrongLinksOptionalParameters
*/
public ListRUMOperationStrongLinksOptionalParameters featureId(String featureId) {
Expand Down Expand Up @@ -1342,7 +1342,7 @@ public ListRUMOperationStrongLinksOptionalParameters pageLimit(Long pageLimit) {
}

/**
* List RUM operation strong links.
* List RUM operation links.
*
* <p>See {@link #listRUMOperationStrongLinksWithHttpInfo}.
*
Expand All @@ -1356,7 +1356,7 @@ public RUMOperationStrongLinksListResponse listRUMOperationStrongLinks() throws
}

/**
* List RUM operation strong links.
* List RUM operation links.
*
* <p>See {@link #listRUMOperationStrongLinksWithHttpInfoAsync}.
*
Expand All @@ -1372,7 +1372,7 @@ public CompletableFuture<RUMOperationStrongLinksListResponse> listRUMOperationSt
}

/**
* List RUM operation strong links.
* List RUM operation links.
*
* <p>See {@link #listRUMOperationStrongLinksWithHttpInfo}.
*
Expand All @@ -1386,7 +1386,7 @@ public RUMOperationStrongLinksListResponse listRUMOperationStrongLinks(
}

/**
* List RUM operation strong links.
* List RUM operation links.
*
* <p>See {@link #listRUMOperationStrongLinksWithHttpInfoAsync}.
*
Expand All @@ -1403,8 +1403,8 @@ public CompletableFuture<RUMOperationStrongLinksListResponse> listRUMOperationSt
}

/**
* List strong links between RUM operations and features. A strong link confirms that a feature
* belongs to an operation. Provide <code>operation_id</code>, <code>feature_id</code>, or both to
* List links between RUM operations and journeys. A link confirms that a journey belongs to an
* operation. Provide <code>operation_id</code>, <code>feature_id</code> (journey ID), or both to
* filter results; at least one is required.
*
* @param parameters Optional parameters for the request.
Expand Down Expand Up @@ -1458,7 +1458,7 @@ public ApiResponse<RUMOperationStrongLinksListResponse> listRUMOperationStrongLi
}

/**
* List RUM operation strong links.
* List RUM operation links.
*
* <p>See {@link #listRUMOperationStrongLinksWithHttpInfo}.
*
Expand Down Expand Up @@ -1694,12 +1694,12 @@ public CompletableFuture<ApiResponse<RUMOperationResponse>> updateRUMOperationWi
}

/**
* Update a RUM operation strong link.
* Update a RUM operation link.
*
* <p>See {@link #updateRUMOperationStrongLinkWithHttpInfo}.
*
* @param rumOperationId The unique identifier of the RUM operation. (required)
* @param featureId The unique identifier of the feature. (required)
* @param featureId The unique identifier of the journey. (required)
* @param body (required)
* @return RUMOperationStrongLinkResponse
* @throws ApiException if fails to make API call
Expand All @@ -1711,12 +1711,12 @@ public RUMOperationStrongLinkResponse updateRUMOperationStrongLink(
}

/**
* Update a RUM operation strong link.
* Update a RUM operation link.
*
* <p>See {@link #updateRUMOperationStrongLinkWithHttpInfoAsync}.
*
* @param rumOperationId The unique identifier of the RUM operation. (required)
* @param featureId The unique identifier of the feature. (required)
* @param featureId The unique identifier of the journey. (required)
* @param body (required)
* @return CompletableFuture&lt;RUMOperationStrongLinkResponse&gt;
*/
Expand All @@ -1730,10 +1730,10 @@ public CompletableFuture<RUMOperationStrongLinkResponse> updateRUMOperationStron
}

/**
* Update the status of a strong link between a RUM operation and a feature.
* Update the status of a link between a RUM operation and a journey.
*
* @param rumOperationId The unique identifier of the RUM operation. (required)
* @param featureId The unique identifier of the feature. (required)
* @param featureId The unique identifier of the journey. (required)
* @param body (required)
* @return ApiResponse&lt;RUMOperationStrongLinkResponse&gt;
* @throws ApiException if fails to make API call
Expand Down Expand Up @@ -1810,12 +1810,12 @@ public ApiResponse<RUMOperationStrongLinkResponse> updateRUMOperationStrongLinkW
}

/**
* Update a RUM operation strong link.
* Update a RUM operation link.
*
* <p>See {@link #updateRUMOperationStrongLinkWithHttpInfo}.
*
* @param rumOperationId The unique identifier of the RUM operation. (required)
* @param featureId The unique identifier of the feature. (required)
* @param featureId The unique identifier of the journey. (required)
* @param body (required)
* @return CompletableFuture&lt;ApiResponse&lt;RUMOperationStrongLinkResponse&gt;&gt;
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public RUMOperationRequestAttributes addFeatureIdsItem(String featureIdsItem) {
}

/**
* The list of feature IDs associated with the RUM operation.
* The list of journey IDs associated with the RUM operation.
*
* @return featureIds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ public RUMOperationResponseAttributes addFeatureIdsItem(String featureIdsItem) {
}

/**
* The list of feature IDs associated with the RUM operation.
* The list of journey IDs associated with the RUM operation.
*
* @return featureIds
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.util.Map;
import java.util.Objects;

/** The request body for creating a RUM operation strong link. */
/** The request body for creating a RUM operation link. */
@JsonPropertyOrder({RUMOperationStrongLinkCreateRequest.JSON_PROPERTY_DATA})
@jakarta.annotation.Generated(
value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
Expand All @@ -43,7 +43,7 @@ public RUMOperationStrongLinkCreateRequest data(RUMOperationStrongLinkCreateRequ
}

/**
* The data object for creating a RUM operation strong link.
* The data object for creating a RUM operation link.
*
* @return data
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.util.UUID;
import org.openapitools.jackson.nullable.JsonNullable;

/** Attributes for creating a RUM operation strong link. */
/** Attributes for creating a RUM operation link. */
@JsonPropertyOrder({
RUMOperationStrongLinkCreateRequestAttributes.JSON_PROPERTY_APPLICATION_ID,
RUMOperationStrongLinkCreateRequestAttributes.JSON_PROPERTY_DESCRIPTION,
Expand Down Expand Up @@ -91,7 +91,7 @@ public RUMOperationStrongLinkCreateRequestAttributes description(String descript
}

/**
* A description of the strong link.
* A description of the link.
*
* @return description
*/
Expand Down Expand Up @@ -122,7 +122,7 @@ public RUMOperationStrongLinkCreateRequestAttributes featureId(String featureId)
}

/**
* The unique identifier of the feature to link.
* The unique identifier of the journey to link.
*
* @return featureId
*/
Expand Down Expand Up @@ -187,7 +187,7 @@ public RUMOperationStrongLinkCreateRequestAttributes status(RUMOperationStrongLi
}

/**
* The status of a RUM operation strong link.
* The status of a RUM operation link.
*
* @return status
*/
Expand Down Expand Up @@ -219,7 +219,7 @@ public RUMOperationStrongLinkCreateRequestAttributes addTagsItem(String tagsItem
}

/**
* A list of tags associated with the strong link.
* A list of tags associated with the link.
*
* @return tags
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.util.Map;
import java.util.Objects;

/** The data object for creating a RUM operation strong link. */
/** The data object for creating a RUM operation link. */
@JsonPropertyOrder({
RUMOperationStrongLinkCreateRequestData.JSON_PROPERTY_ATTRIBUTES,
RUMOperationStrongLinkCreateRequestData.JSON_PROPERTY_TYPE
Expand Down Expand Up @@ -53,7 +53,7 @@ public RUMOperationStrongLinkCreateRequestData attributes(
}

/**
* Attributes for creating a RUM operation strong link.
* Attributes for creating a RUM operation link.
*
* @return attributes
*/
Expand All @@ -77,7 +77,7 @@ public RUMOperationStrongLinkCreateRequestData type(RUMOperationStrongLinkType t
}

/**
* The JSON:API type for RUM operation strong link resources.
* The JSON:API type for RUM operation link resources.
*
* @return type
*/
Expand Down
Loading
Loading