diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml
index 73163c4c177..b4048675b28 100644
--- a/.generator/schemas/v2/openapi.yaml
+++ b/.generator/schemas/v2/openapi.yaml
@@ -71914,6 +71914,55 @@ components:
$ref: "#/components/schemas/Trigger"
type: array
type: object
+ SpecAttributes:
+ description: Attributes of an API spec.
+ properties:
+ name:
+ description: The name of the spec.
+ example: pets-api
+ type: string
+ status:
+ $ref: "#/components/schemas/SpecAttributesStatus"
+ version:
+ description: The version of the spec.
+ example: "2.1.0"
+ type: string
+ type: object
+ SpecAttributesStatus:
+ description: The publication status of the spec.
+ enum:
+ - published
+ - draft
+ - deprecated
+ example: published
+ type: string
+ x-enum-varnames:
+ - PUBLISHED
+ - DRAFT
+ - DEPRECATED
+ SpecData:
+ description: A single API spec resource.
+ properties:
+ attributes:
+ $ref: "#/components/schemas/SpecAttributes"
+ id:
+ description: The unique identifier of the spec.
+ example: d5e5d5a0-1234-5678-9abc-def012345678
+ type: string
+ type:
+ $ref: "#/components/schemas/SpecType"
+ required:
+ - type
+ type: object
+ SpecType:
+ default: spec
+ description: Type of the spec resource.
+ enum:
+ - spec
+ example: spec
+ type: string
+ x-enum-varnames:
+ - SPEC
SpecVersion:
description: The version of the CycloneDX specification a BOM conforms to.
enum:
@@ -71932,6 +71981,15 @@ components:
- ONE_THREE
- ONE_FOUR
- ONE_FIVE
+ SpecsListResponse:
+ description: Response containing a list of specs.
+ properties:
+ data:
+ description: List of specs.
+ items:
+ $ref: "#/components/schemas/SpecData"
+ type: array
+ type: object
SplitAPIKey:
description: The definition of the `SplitAPIKey` object.
properties:
@@ -137984,6 +138042,43 @@ paths:
cursorPath: meta.page.after
limitParam: body.data.attributes.page.limit
resultsPath: data
+ /api/v2/specs:
+ get:
+ description: Returns a list of API specs stored in the system.
+ operationId: ListSpecs
+ responses:
+ "200":
+ content:
+ application/json:
+ examples:
+ default:
+ value:
+ data:
+ - attributes:
+ name: pets-api
+ status: published
+ version: "2.1.0"
+ id: d5e5d5a0-1234-5678-9abc-def012345678
+ type: spec
+ - attributes:
+ name: users-api
+ status: draft
+ version: "1.0.0"
+ id: a1b2c3d4-5678-9abc-def0-123456789abc
+ type: spec
+ schema:
+ $ref: "#/components/schemas/SpecsListResponse"
+ description: OK
+ "403":
+ $ref: "#/components/responses/ForbiddenResponse"
+ "429":
+ $ref: "#/components/responses/TooManyRequestsResponse"
+ security:
+ - apiKeyAuth: []
+ appKeyAuth: []
+ summary: List API specs
+ tags:
+ - Specs
/api/v2/static-analysis-sca/dependencies:
post:
operationId: CreateSCAResult
@@ -148377,6 +148472,9 @@ tags:
description: Find out more at
url: https://docs.datadoghq.com/tracing/metrics/metrics_namespace/
name: Spans Metrics
+ - description: |-
+ View API specs stored in the system.
+ name: Specs
- description: API for static analysis
name: Static Analysis
- description: Manage your status pages and communicate service disruptions to stakeholders via Datadog's API. See the [Status Pages documentation](https://docs.datadoghq.com/incident_response/status_pages/) for more information.
diff --git a/examples/v2/specs/ListSpecs.java b/examples/v2/specs/ListSpecs.java
new file mode 100644
index 00000000000..5759ec6431d
--- /dev/null
+++ b/examples/v2/specs/ListSpecs.java
@@ -0,0 +1,24 @@
+// List API specs returns "OK" response
+
+import com.datadog.api.client.ApiClient;
+import com.datadog.api.client.ApiException;
+import com.datadog.api.client.v2.api.SpecsApi;
+import com.datadog.api.client.v2.model.SpecsListResponse;
+
+public class Example {
+ public static void main(String[] args) {
+ ApiClient defaultClient = ApiClient.getDefaultApiClient();
+ SpecsApi apiInstance = new SpecsApi(defaultClient);
+
+ try {
+ SpecsListResponse result = apiInstance.listSpecs();
+ System.out.println(result);
+ } catch (ApiException e) {
+ System.err.println("Exception when calling SpecsApi#listSpecs");
+ System.err.println("Status code: " + e.getCode());
+ System.err.println("Reason: " + e.getResponseBody());
+ System.err.println("Response headers: " + e.getResponseHeaders());
+ e.printStackTrace();
+ }
+ }
+}
diff --git a/src/main/java/com/datadog/api/client/v2/api/SpecsApi.java b/src/main/java/com/datadog/api/client/v2/api/SpecsApi.java
new file mode 100644
index 00000000000..45e5995415b
--- /dev/null
+++ b/src/main/java/com/datadog/api/client/v2/api/SpecsApi.java
@@ -0,0 +1,154 @@
+package com.datadog.api.client.v2.api;
+
+import com.datadog.api.client.ApiClient;
+import com.datadog.api.client.ApiException;
+import com.datadog.api.client.ApiResponse;
+import com.datadog.api.client.Pair;
+import com.datadog.api.client.v2.model.SpecsListResponse;
+import jakarta.ws.rs.client.Invocation;
+import jakarta.ws.rs.core.GenericType;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.concurrent.CompletableFuture;
+
+@jakarta.annotation.Generated(
+ value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
+public class SpecsApi {
+ private ApiClient apiClient;
+
+ public SpecsApi() {
+ this(ApiClient.getDefaultApiClient());
+ }
+
+ public SpecsApi(ApiClient apiClient) {
+ this.apiClient = apiClient;
+ }
+
+ /**
+ * Get the API client.
+ *
+ * @return API client
+ */
+ public ApiClient getApiClient() {
+ return apiClient;
+ }
+
+ /**
+ * Set the API client.
+ *
+ * @param apiClient an instance of API client
+ */
+ public void setApiClient(ApiClient apiClient) {
+ this.apiClient = apiClient;
+ }
+
+ /**
+ * List API specs.
+ *
+ *
See {@link #listSpecsWithHttpInfo}.
+ *
+ * @return SpecsListResponse
+ * @throws ApiException if fails to make API call
+ */
+ public SpecsListResponse listSpecs() throws ApiException {
+ return listSpecsWithHttpInfo().getData();
+ }
+
+ /**
+ * List API specs.
+ *
+ *
See {@link #listSpecsWithHttpInfoAsync}.
+ *
+ * @return CompletableFuture<SpecsListResponse>
+ */
+ public CompletableFuture listSpecsAsync() {
+ return listSpecsWithHttpInfoAsync()
+ .thenApply(
+ response -> {
+ return response.getData();
+ });
+ }
+
+ /**
+ * Returns a list of API specs stored in the system.
+ *
+ * @return ApiResponse<SpecsListResponse>
+ * @throws ApiException if fails to make API call
+ * @http.response.details
+ *
+ * Response details
+ * | Status Code | Description | Response Headers |
+ * | 200 | OK | - |
+ * | 403 | Forbidden | - |
+ * | 429 | Too many requests | - |
+ *
+ */
+ public ApiResponse listSpecsWithHttpInfo() throws ApiException {
+ Object localVarPostBody = null;
+ // create path and map variables
+ String localVarPath = "/api/v2/specs";
+
+ Map localVarHeaderParams = new HashMap();
+
+ Invocation.Builder builder =
+ apiClient.createBuilder(
+ "v2.SpecsApi.listSpecs",
+ localVarPath,
+ new ArrayList(),
+ localVarHeaderParams,
+ new HashMap(),
+ new String[] {"application/json"},
+ new String[] {"apiKeyAuth", "appKeyAuth"});
+ return apiClient.invokeAPI(
+ "GET",
+ builder,
+ localVarHeaderParams,
+ new String[] {},
+ localVarPostBody,
+ new HashMap(),
+ false,
+ new GenericType() {});
+ }
+
+ /**
+ * List API specs.
+ *
+ * See {@link #listSpecsWithHttpInfo}.
+ *
+ * @return CompletableFuture<ApiResponse<SpecsListResponse>>
+ */
+ public CompletableFuture> listSpecsWithHttpInfoAsync() {
+ Object localVarPostBody = null;
+ // create path and map variables
+ String localVarPath = "/api/v2/specs";
+
+ Map localVarHeaderParams = new HashMap();
+
+ Invocation.Builder builder;
+ try {
+ builder =
+ apiClient.createBuilder(
+ "v2.SpecsApi.listSpecs",
+ localVarPath,
+ new ArrayList(),
+ localVarHeaderParams,
+ new HashMap(),
+ new String[] {"application/json"},
+ new String[] {"apiKeyAuth", "appKeyAuth"});
+ } catch (ApiException ex) {
+ CompletableFuture> result = new CompletableFuture<>();
+ result.completeExceptionally(ex);
+ return result;
+ }
+ return apiClient.invokeAPIAsync(
+ "GET",
+ builder,
+ localVarHeaderParams,
+ new String[] {},
+ localVarPostBody,
+ new HashMap(),
+ false,
+ new GenericType() {});
+ }
+}
diff --git a/src/main/java/com/datadog/api/client/v2/model/SpecAttributes.java b/src/main/java/com/datadog/api/client/v2/model/SpecAttributes.java
new file mode 100644
index 00000000000..2ce33d1c4db
--- /dev/null
+++ b/src/main/java/com/datadog/api/client/v2/model/SpecAttributes.java
@@ -0,0 +1,195 @@
+/*
+ * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ * This product includes software developed at Datadog (https://www.datadoghq.com/).
+ * Copyright 2019-Present Datadog, Inc.
+ */
+
+package com.datadog.api.client.v2.model;
+
+import com.fasterxml.jackson.annotation.JsonAnyGetter;
+import com.fasterxml.jackson.annotation.JsonAnySetter;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+
+/** Attributes of an API spec. */
+@JsonPropertyOrder({
+ SpecAttributes.JSON_PROPERTY_NAME,
+ SpecAttributes.JSON_PROPERTY_STATUS,
+ SpecAttributes.JSON_PROPERTY_VERSION
+})
+@jakarta.annotation.Generated(
+ value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
+public class SpecAttributes {
+ @JsonIgnore public boolean unparsed = false;
+ public static final String JSON_PROPERTY_NAME = "name";
+ private String name;
+
+ public static final String JSON_PROPERTY_STATUS = "status";
+ private SpecAttributesStatus status;
+
+ public static final String JSON_PROPERTY_VERSION = "version";
+ private String version;
+
+ public SpecAttributes name(String name) {
+ this.name = name;
+ return this;
+ }
+
+ /**
+ * The name of the spec.
+ *
+ * @return name
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_NAME)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public SpecAttributes status(SpecAttributesStatus status) {
+ this.status = status;
+ this.unparsed |= !status.isValid();
+ return this;
+ }
+
+ /**
+ * The publication status of the spec.
+ *
+ * @return status
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_STATUS)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public SpecAttributesStatus getStatus() {
+ return status;
+ }
+
+ public void setStatus(SpecAttributesStatus status) {
+ if (!status.isValid()) {
+ this.unparsed = true;
+ }
+ this.status = status;
+ }
+
+ public SpecAttributes version(String version) {
+ this.version = version;
+ return this;
+ }
+
+ /**
+ * The version of the spec.
+ *
+ * @return version
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_VERSION)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getVersion() {
+ return version;
+ }
+
+ public void setVersion(String version) {
+ this.version = version;
+ }
+
+ /**
+ * A container for additional, undeclared properties. This is a holder for any undeclared
+ * properties as specified with the 'additionalProperties' keyword in the OAS document.
+ */
+ private Map additionalProperties;
+
+ /**
+ * Set the additional (undeclared) property with the specified name and value. If the property
+ * does not already exist, create it otherwise replace it.
+ *
+ * @param key The arbitrary key to set
+ * @param value The associated value
+ * @return SpecAttributes
+ */
+ @JsonAnySetter
+ public SpecAttributes putAdditionalProperty(String key, Object value) {
+ if (this.additionalProperties == null) {
+ this.additionalProperties = new HashMap();
+ }
+ this.additionalProperties.put(key, value);
+ return this;
+ }
+
+ /**
+ * Return the additional (undeclared) property.
+ *
+ * @return The additional properties
+ */
+ @JsonAnyGetter
+ public Map getAdditionalProperties() {
+ return additionalProperties;
+ }
+
+ /**
+ * Return the additional (undeclared) property with the specified name.
+ *
+ * @param key The arbitrary key to get
+ * @return The specific additional property for the given key
+ */
+ public Object getAdditionalProperty(String key) {
+ if (this.additionalProperties == null) {
+ return null;
+ }
+ return this.additionalProperties.get(key);
+ }
+
+ /** Return true if this SpecAttributes object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ SpecAttributes specAttributes = (SpecAttributes) o;
+ return Objects.equals(this.name, specAttributes.name)
+ && Objects.equals(this.status, specAttributes.status)
+ && Objects.equals(this.version, specAttributes.version)
+ && Objects.equals(this.additionalProperties, specAttributes.additionalProperties);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(name, status, version, additionalProperties);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class SpecAttributes {\n");
+ sb.append(" name: ").append(toIndentedString(name)).append("\n");
+ sb.append(" status: ").append(toIndentedString(status)).append("\n");
+ sb.append(" version: ").append(toIndentedString(version)).append("\n");
+ sb.append(" additionalProperties: ")
+ .append(toIndentedString(additionalProperties))
+ .append("\n");
+ sb.append('}');
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+}
diff --git a/src/main/java/com/datadog/api/client/v2/model/SpecAttributesStatus.java b/src/main/java/com/datadog/api/client/v2/model/SpecAttributesStatus.java
new file mode 100644
index 00000000000..d020a8c5c34
--- /dev/null
+++ b/src/main/java/com/datadog/api/client/v2/model/SpecAttributesStatus.java
@@ -0,0 +1,57 @@
+/*
+ * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ * This product includes software developed at Datadog (https://www.datadoghq.com/).
+ * Copyright 2019-Present Datadog, Inc.
+ */
+
+package com.datadog.api.client.v2.model;
+
+import com.datadog.api.client.ModelEnum;
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.core.JsonGenerator;
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.databind.SerializerProvider;
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
+import com.fasterxml.jackson.databind.ser.std.StdSerializer;
+import java.io.IOException;
+import java.util.Arrays;
+import java.util.HashSet;
+import java.util.Set;
+
+/** The publication status of the spec. */
+@JsonSerialize(using = SpecAttributesStatus.SpecAttributesStatusSerializer.class)
+public class SpecAttributesStatus extends ModelEnum {
+
+ private static final Set allowedValues =
+ new HashSet(Arrays.asList("published", "draft", "deprecated"));
+
+ public static final SpecAttributesStatus PUBLISHED = new SpecAttributesStatus("published");
+ public static final SpecAttributesStatus DRAFT = new SpecAttributesStatus("draft");
+ public static final SpecAttributesStatus DEPRECATED = new SpecAttributesStatus("deprecated");
+
+ SpecAttributesStatus(String value) {
+ super(value, allowedValues);
+ }
+
+ public static class SpecAttributesStatusSerializer extends StdSerializer {
+ public SpecAttributesStatusSerializer(Class t) {
+ super(t);
+ }
+
+ public SpecAttributesStatusSerializer() {
+ this(null);
+ }
+
+ @Override
+ public void serialize(
+ SpecAttributesStatus value, JsonGenerator jgen, SerializerProvider provider)
+ throws IOException, JsonProcessingException {
+ jgen.writeObject(value.value);
+ }
+ }
+
+ @JsonCreator
+ public static SpecAttributesStatus fromValue(String value) {
+ return new SpecAttributesStatus(value);
+ }
+}
diff --git a/src/main/java/com/datadog/api/client/v2/model/SpecData.java b/src/main/java/com/datadog/api/client/v2/model/SpecData.java
new file mode 100644
index 00000000000..64ee36f15ac
--- /dev/null
+++ b/src/main/java/com/datadog/api/client/v2/model/SpecData.java
@@ -0,0 +1,204 @@
+/*
+ * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ * This product includes software developed at Datadog (https://www.datadoghq.com/).
+ * Copyright 2019-Present Datadog, Inc.
+ */
+
+package com.datadog.api.client.v2.model;
+
+import com.fasterxml.jackson.annotation.JsonAnyGetter;
+import com.fasterxml.jackson.annotation.JsonAnySetter;
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Objects;
+
+/** A single API spec resource. */
+@JsonPropertyOrder({
+ SpecData.JSON_PROPERTY_ATTRIBUTES,
+ SpecData.JSON_PROPERTY_ID,
+ SpecData.JSON_PROPERTY_TYPE
+})
+@jakarta.annotation.Generated(
+ value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
+public class SpecData {
+ @JsonIgnore public boolean unparsed = false;
+ public static final String JSON_PROPERTY_ATTRIBUTES = "attributes";
+ private SpecAttributes attributes;
+
+ public static final String JSON_PROPERTY_ID = "id";
+ private String id;
+
+ public static final String JSON_PROPERTY_TYPE = "type";
+ private SpecType type = SpecType.SPEC;
+
+ public SpecData() {}
+
+ @JsonCreator
+ public SpecData(@JsonProperty(required = true, value = JSON_PROPERTY_TYPE) SpecType type) {
+ this.type = type;
+ this.unparsed |= !type.isValid();
+ }
+
+ public SpecData attributes(SpecAttributes attributes) {
+ this.attributes = attributes;
+ this.unparsed |= attributes.unparsed;
+ return this;
+ }
+
+ /**
+ * Attributes of an API spec.
+ *
+ * @return attributes
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_ATTRIBUTES)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public SpecAttributes getAttributes() {
+ return attributes;
+ }
+
+ public void setAttributes(SpecAttributes attributes) {
+ this.attributes = attributes;
+ }
+
+ public SpecData id(String id) {
+ this.id = id;
+ return this;
+ }
+
+ /**
+ * The unique identifier of the spec.
+ *
+ * @return id
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_ID)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public String getId() {
+ return id;
+ }
+
+ public void setId(String id) {
+ this.id = id;
+ }
+
+ public SpecData type(SpecType type) {
+ this.type = type;
+ this.unparsed |= !type.isValid();
+ return this;
+ }
+
+ /**
+ * Type of the spec resource.
+ *
+ * @return type
+ */
+ @JsonProperty(JSON_PROPERTY_TYPE)
+ @JsonInclude(value = JsonInclude.Include.ALWAYS)
+ public SpecType getType() {
+ return type;
+ }
+
+ public void setType(SpecType type) {
+ if (!type.isValid()) {
+ this.unparsed = true;
+ }
+ this.type = type;
+ }
+
+ /**
+ * A container for additional, undeclared properties. This is a holder for any undeclared
+ * properties as specified with the 'additionalProperties' keyword in the OAS document.
+ */
+ private Map additionalProperties;
+
+ /**
+ * Set the additional (undeclared) property with the specified name and value. If the property
+ * does not already exist, create it otherwise replace it.
+ *
+ * @param key The arbitrary key to set
+ * @param value The associated value
+ * @return SpecData
+ */
+ @JsonAnySetter
+ public SpecData putAdditionalProperty(String key, Object value) {
+ if (this.additionalProperties == null) {
+ this.additionalProperties = new HashMap();
+ }
+ this.additionalProperties.put(key, value);
+ return this;
+ }
+
+ /**
+ * Return the additional (undeclared) property.
+ *
+ * @return The additional properties
+ */
+ @JsonAnyGetter
+ public Map getAdditionalProperties() {
+ return additionalProperties;
+ }
+
+ /**
+ * Return the additional (undeclared) property with the specified name.
+ *
+ * @param key The arbitrary key to get
+ * @return The specific additional property for the given key
+ */
+ public Object getAdditionalProperty(String key) {
+ if (this.additionalProperties == null) {
+ return null;
+ }
+ return this.additionalProperties.get(key);
+ }
+
+ /** Return true if this SpecData object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ SpecData specData = (SpecData) o;
+ return Objects.equals(this.attributes, specData.attributes)
+ && Objects.equals(this.id, specData.id)
+ && Objects.equals(this.type, specData.type)
+ && Objects.equals(this.additionalProperties, specData.additionalProperties);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(attributes, id, type, additionalProperties);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class SpecData {\n");
+ sb.append(" attributes: ").append(toIndentedString(attributes)).append("\n");
+ sb.append(" id: ").append(toIndentedString(id)).append("\n");
+ sb.append(" type: ").append(toIndentedString(type)).append("\n");
+ sb.append(" additionalProperties: ")
+ .append(toIndentedString(additionalProperties))
+ .append("\n");
+ sb.append('}');
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+}
diff --git a/src/main/java/com/datadog/api/client/v2/model/SpecType.java b/src/main/java/com/datadog/api/client/v2/model/SpecType.java
new file mode 100644
index 00000000000..aa98508b631
--- /dev/null
+++ b/src/main/java/com/datadog/api/client/v2/model/SpecType.java
@@ -0,0 +1,53 @@
+/*
+ * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ * This product includes software developed at Datadog (https://www.datadoghq.com/).
+ * Copyright 2019-Present Datadog, Inc.
+ */
+
+package com.datadog.api.client.v2.model;
+
+import com.datadog.api.client.ModelEnum;
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.core.JsonGenerator;
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.databind.SerializerProvider;
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
+import com.fasterxml.jackson.databind.ser.std.StdSerializer;
+import java.io.IOException;
+import java.util.Arrays;
+import java.util.HashSet;
+import java.util.Set;
+
+/** Type of the spec resource. */
+@JsonSerialize(using = SpecType.SpecTypeSerializer.class)
+public class SpecType extends ModelEnum {
+
+ private static final Set allowedValues = new HashSet(Arrays.asList("spec"));
+
+ public static final SpecType SPEC = new SpecType("spec");
+
+ SpecType(String value) {
+ super(value, allowedValues);
+ }
+
+ public static class SpecTypeSerializer extends StdSerializer {
+ public SpecTypeSerializer(Class t) {
+ super(t);
+ }
+
+ public SpecTypeSerializer() {
+ this(null);
+ }
+
+ @Override
+ public void serialize(SpecType value, JsonGenerator jgen, SerializerProvider provider)
+ throws IOException, JsonProcessingException {
+ jgen.writeObject(value.value);
+ }
+ }
+
+ @JsonCreator
+ public static SpecType fromValue(String value) {
+ return new SpecType(value);
+ }
+}
diff --git a/src/main/java/com/datadog/api/client/v2/model/SpecsListResponse.java b/src/main/java/com/datadog/api/client/v2/model/SpecsListResponse.java
new file mode 100644
index 00000000000..967054fe53f
--- /dev/null
+++ b/src/main/java/com/datadog/api/client/v2/model/SpecsListResponse.java
@@ -0,0 +1,149 @@
+/*
+ * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
+ * This product includes software developed at Datadog (https://www.datadoghq.com/).
+ * Copyright 2019-Present Datadog, Inc.
+ */
+
+package com.datadog.api.client.v2.model;
+
+import com.fasterxml.jackson.annotation.JsonAnyGetter;
+import com.fasterxml.jackson.annotation.JsonAnySetter;
+import com.fasterxml.jackson.annotation.JsonIgnore;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+import com.fasterxml.jackson.annotation.JsonPropertyOrder;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Objects;
+
+/** Response containing a list of specs. */
+@JsonPropertyOrder({SpecsListResponse.JSON_PROPERTY_DATA})
+@jakarta.annotation.Generated(
+ value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator")
+public class SpecsListResponse {
+ @JsonIgnore public boolean unparsed = false;
+ public static final String JSON_PROPERTY_DATA = "data";
+ private List data = null;
+
+ public SpecsListResponse data(List data) {
+ this.data = data;
+ for (SpecData item : data) {
+ this.unparsed |= item.unparsed;
+ }
+ return this;
+ }
+
+ public SpecsListResponse addDataItem(SpecData dataItem) {
+ if (this.data == null) {
+ this.data = new ArrayList<>();
+ }
+ this.data.add(dataItem);
+ this.unparsed |= dataItem.unparsed;
+ return this;
+ }
+
+ /**
+ * List of specs.
+ *
+ * @return data
+ */
+ @jakarta.annotation.Nullable
+ @JsonProperty(JSON_PROPERTY_DATA)
+ @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
+ public List getData() {
+ return data;
+ }
+
+ public void setData(List data) {
+ this.data = data;
+ }
+
+ /**
+ * A container for additional, undeclared properties. This is a holder for any undeclared
+ * properties as specified with the 'additionalProperties' keyword in the OAS document.
+ */
+ private Map additionalProperties;
+
+ /**
+ * Set the additional (undeclared) property with the specified name and value. If the property
+ * does not already exist, create it otherwise replace it.
+ *
+ * @param key The arbitrary key to set
+ * @param value The associated value
+ * @return SpecsListResponse
+ */
+ @JsonAnySetter
+ public SpecsListResponse putAdditionalProperty(String key, Object value) {
+ if (this.additionalProperties == null) {
+ this.additionalProperties = new HashMap();
+ }
+ this.additionalProperties.put(key, value);
+ return this;
+ }
+
+ /**
+ * Return the additional (undeclared) property.
+ *
+ * @return The additional properties
+ */
+ @JsonAnyGetter
+ public Map getAdditionalProperties() {
+ return additionalProperties;
+ }
+
+ /**
+ * Return the additional (undeclared) property with the specified name.
+ *
+ * @param key The arbitrary key to get
+ * @return The specific additional property for the given key
+ */
+ public Object getAdditionalProperty(String key) {
+ if (this.additionalProperties == null) {
+ return null;
+ }
+ return this.additionalProperties.get(key);
+ }
+
+ /** Return true if this SpecsListResponse object is equal to o. */
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ SpecsListResponse specsListResponse = (SpecsListResponse) o;
+ return Objects.equals(this.data, specsListResponse.data)
+ && Objects.equals(this.additionalProperties, specsListResponse.additionalProperties);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(data, additionalProperties);
+ }
+
+ @Override
+ public String toString() {
+ StringBuilder sb = new StringBuilder();
+ sb.append("class SpecsListResponse {\n");
+ sb.append(" data: ").append(toIndentedString(data)).append("\n");
+ sb.append(" additionalProperties: ")
+ .append(toIndentedString(additionalProperties))
+ .append("\n");
+ sb.append('}');
+ return sb.toString();
+ }
+
+ /**
+ * Convert the given object to string with each line indented by 4 spaces (except the first line).
+ */
+ private String toIndentedString(Object o) {
+ if (o == null) {
+ return "null";
+ }
+ return o.toString().replace("\n", "\n ");
+ }
+}
diff --git a/src/test/resources/cassettes/features/v1/Create_a_user_returns_User_created_response_test.json b/src/test/resources/cassettes/features/v1/Create_a_user_returns_User_created_response_test.json
index 42def371a51..b676df880e6 100644
--- a/src/test/resources/cassettes/features/v1/Create_a_user_returns_User_created_response_test.json
+++ b/src/test/resources/cassettes/features/v1/Create_a_user_returns_User_created_response_test.json
@@ -53,6 +53,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "af617072-2860-ba27-e045-b00c8baf0187"
+ "id": "af617072-2860-ba27-e045-b00c8baf0188"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v1/Create_a_user_returns_null_access_role.json b/src/test/resources/cassettes/features/v1/Create_a_user_returns_null_access_role.json
index 5a17eb5f03a..e5b3fe6bcf6 100644
--- a/src/test/resources/cassettes/features/v1/Create_a_user_returns_null_access_role.json
+++ b/src/test/resources/cassettes/features/v1/Create_a_user_returns_null_access_role.json
@@ -53,6 +53,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "af617072-2860-ba27-e045-b00c8baf0188"
+ "id": "af617072-2860-ba27-e045-b00c8baf0187"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/AWS_Integration_Create_account_config_returns_Conflict_response.json b/src/test/resources/cassettes/features/v2/AWS_Integration_Create_account_config_returns_Conflict_response.json
index d603e22c7bf..ff861cd3c9f 100644
--- a/src/test/resources/cassettes/features/v2/AWS_Integration_Create_account_config_returns_Conflict_response.json
+++ b/src/test/resources/cassettes/features/v2/AWS_Integration_Create_account_config_returns_Conflict_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eeb"
+ "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eea"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/AWS_Integration_Delete_account_config_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/AWS_Integration_Delete_account_config_returns_No_Content_response.json
index 20187b03f7f..cf63593c8d1 100644
--- a/src/test/resources/cassettes/features/v2/AWS_Integration_Delete_account_config_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/AWS_Integration_Delete_account_config_returns_No_Content_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eea"
+ "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9ee9"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/AWS_Integration_Delete_account_config_returns_Not_Found_response.json b/src/test/resources/cassettes/features/v2/AWS_Integration_Delete_account_config_returns_Not_Found_response.json
index 490992cbf88..aa5b0a6e9b8 100644
--- a/src/test/resources/cassettes/features/v2/AWS_Integration_Delete_account_config_returns_Not_Found_response.json
+++ b/src/test/resources/cassettes/features/v2/AWS_Integration_Delete_account_config_returns_Not_Found_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eee"
+ "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eed"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2123e3-6fb5-0f90-fe98-365e086c9c6f"
+ "id": "ab2123e3-6fb5-0f90-fe98-365e086c9c6e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/AWS_Integration_Get_account_config_returns_AWS_Account_object_response.json b/src/test/resources/cassettes/features/v2/AWS_Integration_Get_account_config_returns_AWS_Account_object_response.json
index 70fc4d3589b..f02f71207af 100644
--- a/src/test/resources/cassettes/features/v2/AWS_Integration_Get_account_config_returns_AWS_Account_object_response.json
+++ b/src/test/resources/cassettes/features/v2/AWS_Integration_Get_account_config_returns_AWS_Account_object_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eec"
+ "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eeb"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/AWS_Integration_List_available_namespaces_returns_AWS_Namespaces_List_object_response.json b/src/test/resources/cassettes/features/v2/AWS_Integration_List_available_namespaces_returns_AWS_Namespaces_List_object_response.json
index 994e56ed9eb..7711ea26b7b 100644
--- a/src/test/resources/cassettes/features/v2/AWS_Integration_List_available_namespaces_returns_AWS_Namespaces_List_object_response.json
+++ b/src/test/resources/cassettes/features/v2/AWS_Integration_List_available_namespaces_returns_AWS_Namespaces_List_object_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "d0ec7736-ef6c-d071-3390-4a5c3a301d11"
+ "id": "d0ec7736-ef6c-d071-3390-4a5c3a301d0e"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/AWS_Integration_List_namespaces_returns_AWS_Namespaces_List_object_response.json b/src/test/resources/cassettes/features/v2/AWS_Integration_List_namespaces_returns_AWS_Namespaces_List_object_response.json
index 7711ea26b7b..2e4479a46a7 100644
--- a/src/test/resources/cassettes/features/v2/AWS_Integration_List_namespaces_returns_AWS_Namespaces_List_object_response.json
+++ b/src/test/resources/cassettes/features/v2/AWS_Integration_List_namespaces_returns_AWS_Namespaces_List_object_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "d0ec7736-ef6c-d071-3390-4a5c3a301d0e"
+ "id": "d0ec7736-ef6c-d071-3390-4a5c3a301d10"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/AWS_Integration_Patch_account_config_returns_AWS_Account_object_response.json b/src/test/resources/cassettes/features/v2/AWS_Integration_Patch_account_config_returns_AWS_Account_object_response.json
index 0b391d3aa3a..520c88368e3 100644
--- a/src/test/resources/cassettes/features/v2/AWS_Integration_Patch_account_config_returns_AWS_Account_object_response.json
+++ b/src/test/resources/cassettes/features/v2/AWS_Integration_Patch_account_config_returns_AWS_Account_object_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eed"
+ "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eec"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/AWS_Integration_Patch_account_config_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/AWS_Integration_Patch_account_config_returns_Bad_Request_response.json
index 77aa5204b9c..f2b714e3f34 100644
--- a/src/test/resources/cassettes/features/v2/AWS_Integration_Patch_account_config_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/AWS_Integration_Patch_account_config_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9ee9"
+ "id": "194b15fb-fcae-9b9a-e1a7-0daa19dc9eee"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Archive_case_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Archive_case_returns_Bad_Request_response.json
index 2be18c73072..a8c4aa7a929 100644
--- a/src/test/resources/cassettes/features/v2/Archive_case_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Archive_case_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145f1"
+ "id": "79babc38-7a70-5347-c8a6-73b0e7014600"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Archive_case_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Archive_case_returns_OK_response.json
index adda0ec49d5..b65d84821ea 100644
--- a/src/test/resources/cassettes/features/v2/Archive_case_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Archive_case_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145ed"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145ff"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Assign_case_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Assign_case_returns_Bad_Request_response.json
index 4323550909c..dbfac8750db 100644
--- a/src/test/resources/cassettes/features/v2/Assign_case_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Assign_case_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145f6"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145fd"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Assign_case_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Assign_case_returns_OK_response.json
index c791186e6fd..8e9d7338d0d 100644
--- a/src/test/resources/cassettes/features/v2/Assign_case_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Assign_case_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145fd"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145ec"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Bulk_delete_datastore_items_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Bulk_delete_datastore_items_returns_Bad_Request_response.json
index 394f3b77f1e..633105f0f85 100644
--- a/src/test/resources/cassettes/features/v2/Bulk_delete_datastore_items_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Bulk_delete_datastore_items_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d35"
+ "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d30"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Bulk_delete_datastore_items_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Bulk_delete_datastore_items_returns_OK_response.json
index d39fee8a337..c794e78463c 100644
--- a/src/test/resources/cassettes/features/v2/Bulk_delete_datastore_items_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Bulk_delete_datastore_items_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2d"
+ "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2f"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Bulk_write_datastore_items_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Bulk_write_datastore_items_returns_Bad_Request_response.json
index 834de428629..eb6915eead6 100644
--- a/src/test/resources/cassettes/features/v2/Bulk_write_datastore_items_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Bulk_write_datastore_items_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d34"
+ "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d32"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Cancel_a_historical_job_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Cancel_a_historical_job_returns_OK_response.json
index b2d3b56dbd7..2dd306813ac 100644
--- a/src/test/resources/cassettes/features/v2/Cancel_a_historical_job_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Cancel_a_historical_job_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6bb82102-e994-f0d1-ee96-e1e3f1d80ffd"
+ "id": "6bb82102-e994-f0d1-ee96-e1e3f1d80ffe"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Cancels_a_data_deletion_request_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Cancels_a_data_deletion_request_returns_OK_response.json
index 94ffd01c024..cfae7af1511 100644
--- a/src/test/resources/cassettes/features/v2/Cancels_a_data_deletion_request_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Cancels_a_data_deletion_request_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "516e2b97-25f6-b08c-4d4a-1da22948b330"
+ "id": "516e2b97-25f6-b08c-4d4a-1da22948b32f"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Comment_case_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Comment_case_returns_Bad_Request_response.json
index 9b1a448d846..8c97b2392b3 100644
--- a/src/test/resources/cassettes/features/v2/Comment_case_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Comment_case_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145fe"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145f6"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Comment_case_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Comment_case_returns_OK_response.json
index 43ce65998fe..b9551e2103c 100644
--- a/src/test/resources/cassettes/features/v2/Comment_case_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Comment_case_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145ee"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145eb"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_AWS_CCM_config_returns_AWS_CCM_Config_object_response.json b/src/test/resources/cassettes/features/v2/Create_AWS_CCM_config_returns_AWS_CCM_Config_object_response.json
index 7e70b6729df..7c726903cc8 100644
--- a/src/test/resources/cassettes/features/v2/Create_AWS_CCM_config_returns_AWS_CCM_Config_object_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_AWS_CCM_config_returns_AWS_CCM_Config_object_response.json
@@ -18,7 +18,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "b2bcb392-2d71-be89-5578-460535c541af"
+ "id": "b2bcb392-2d71-be89-5578-460535c541b0"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_AWS_on_demand_task_returns_AWS_on_demand_task_created_successfully_response.json b/src/test/resources/cassettes/features/v2/Create_AWS_on_demand_task_returns_AWS_on_demand_task_created_successfully_response.json
index a4926516be0..ac76e0bad7e 100644
--- a/src/test/resources/cassettes/features/v2/Create_AWS_on_demand_task_returns_AWS_on_demand_task_created_successfully_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_AWS_on_demand_task_returns_AWS_on_demand_task_created_successfully_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "22e692ec-0118-56ae-6a7b-e829dfef841a"
+ "id": "22e692ec-0118-56ae-6a7b-e829dfef8419"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Create_AWS_on_demand_task_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Create_AWS_on_demand_task_returns_Bad_Request_response.json
index 91451dfea49..ea94cd9866e 100644
--- a/src/test/resources/cassettes/features/v2/Create_AWS_on_demand_task_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_AWS_on_demand_task_returns_Bad_Request_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "ddc95453-e78c-c1f7-f3a9-441d29765f2f"
+ "id": "ddc95453-e78c-c1f7-f3a9-441d29765f2e"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Create_Org_Connection_returns_Conflict_response.json b/src/test/resources/cassettes/features/v2/Create_Org_Connection_returns_Conflict_response.json
index 7d376643348..95cb4a17509 100644
--- a/src/test/resources/cassettes/features/v2/Create_Org_Connection_returns_Conflict_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_Org_Connection_returns_Conflict_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae48"
+ "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae45"
},
{
"httpRequest": {
@@ -57,7 +57,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae49"
+ "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae46"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_Org_Connection_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Create_Org_Connection_returns_OK_response.json
index 09c3eea3a79..213894420af 100644
--- a/src/test/resources/cassettes/features/v2/Create_Org_Connection_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_Org_Connection_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae46"
+ "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae44"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_returns_Bad_Request_response.json
index d6ef2b55a53..b58e59655c9 100644
--- a/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_returns_Bad_Request_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e79"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e78"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238a9e"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238a9d"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_returns_OK_response.json
index 02cf1734a56..27a0366d605 100644
--- a/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e7e"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e7d"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa2"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa1"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_with_should_save_match_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_with_should_save_match_returns_OK_response.json
index 1fec75541c7..724c6d79189 100644
--- a/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_with_should_save_match_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_Scanning_Rule_with_should_save_match_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e7f"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e7a"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa3"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238a9f"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_Workflow_returns_Bad_request_response.json b/src/test/resources/cassettes/features/v2/Create_Workflow_returns_Bad_request_response.json
index 95a9b514916..18bfaac3c98 100644
--- a/src/test/resources/cassettes/features/v2/Create_Workflow_returns_Bad_request_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_Workflow_returns_Bad_request_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "9dbbb4fe-ff77-d906-2de1-752f55e537f6"
+ "id": "9dbbb4fe-ff77-d906-2de1-752f55e537f5"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Create_a_Workflow_returns_Bad_request_response.json b/src/test/resources/cassettes/features/v2/Create_a_Workflow_returns_Bad_request_response.json
index c995fd8ce46..4db34a7a497 100644
--- a/src/test/resources/cassettes/features/v2/Create_a_Workflow_returns_Bad_request_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_a_Workflow_returns_Bad_request_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "9dbbb4fe-ff77-d906-2de1-752f55e537f5"
+ "id": "9dbbb4fe-ff77-d906-2de1-752f55e537f6"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Create_a_custom_framework_returns_Conflict_response.json b/src/test/resources/cassettes/features/v2/Create_a_custom_framework_returns_Conflict_response.json
index 33f84691420..0f7572f4ef5 100644
--- a/src/test/resources/cassettes/features/v2/Create_a_custom_framework_returns_Conflict_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_a_custom_framework_returns_Conflict_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "13fe9685-b072-5fe0-c841-4499a9e71c72"
+ "id": "13fe9685-b072-5fe0-c841-4499a9e71c74"
},
{
"httpRequest": {
@@ -57,7 +57,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "13fe9685-b072-5fe0-c841-4499a9e71c73"
+ "id": "13fe9685-b072-5fe0-c841-4499a9e71c75"
},
{
"httpRequest": {
@@ -83,6 +83,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "e535722a-99e3-30cf-49f7-2d093bd78b3b"
+ "id": "e535722a-99e3-30cf-49f7-2d093bd78b3e"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Create_a_custom_framework_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Create_a_custom_framework_returns_OK_response.json
index 5b2bdee0951..09067379e94 100644
--- a/src/test/resources/cassettes/features/v2/Create_a_custom_framework_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_a_custom_framework_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "13fe9685-b072-5fe0-c841-4499a9e71c76"
+ "id": "13fe9685-b072-5fe0-c841-4499a9e71c71"
},
{
"httpRequest": {
@@ -53,6 +53,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "e535722a-99e3-30cf-49f7-2d093bd78b3f"
+ "id": "e535722a-99e3-30cf-49f7-2d093bd78b3a"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Create_a_dataset_returns_Conflict_response.json b/src/test/resources/cassettes/features/v2/Create_a_dataset_returns_Conflict_response.json
index f98e1c3550d..df7ec302f17 100644
--- a/src/test/resources/cassettes/features/v2/Create_a_dataset_returns_Conflict_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_a_dataset_returns_Conflict_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "32c558cf-4a2e-f914-f443-ab94000addcc"
+ "id": "32c558cf-4a2e-f914-f443-ab94000addca"
},
{
"httpRequest": {
@@ -57,7 +57,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "32c558cf-4a2e-f914-f443-ab94000addcd"
+ "id": "32c558cf-4a2e-f914-f443-ab94000addcb"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_a_dataset_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Create_a_dataset_returns_OK_response.json
index 3f9206673d4..fba8b2ccd41 100644
--- a/src/test/resources/cassettes/features/v2/Create_a_dataset_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_a_dataset_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "32c558cf-4a2e-f914-f443-ab94000addce"
+ "id": "32c558cf-4a2e-f914-f443-ab94000addcd"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_a_restriction_query_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Create_a_restriction_query_returns_OK_response.json
index 2cb19c254b0..fef955ebbee 100644
--- a/src/test/resources/cassettes/features/v2/Create_a_restriction_query_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_a_restriction_query_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "eb3b308b-3d56-9ef8-4096-dd7718f51861"
+ "id": "eb3b308b-3d56-9ef8-4096-dd7718f5185e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_an_AWS_account_returns_AWS_Account_object_response.json b/src/test/resources/cassettes/features/v2/Create_an_AWS_account_returns_AWS_Account_object_response.json
index 4e7150c70a8..83646ddb287 100644
--- a/src/test/resources/cassettes/features/v2/Create_an_AWS_account_returns_AWS_Account_object_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_an_AWS_account_returns_AWS_Account_object_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "bf073e02-7e0b-dc8b-b075-82932236e50b"
+ "id": "bf073e02-7e0b-dc8b-b075-82932236e50a"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_an_AWS_integration_returns_Conflict_response.json b/src/test/resources/cassettes/features/v2/Create_an_AWS_integration_returns_Conflict_response.json
index 18ed773dab0..d5488cdba66 100644
--- a/src/test/resources/cassettes/features/v2/Create_an_AWS_integration_returns_Conflict_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_an_AWS_integration_returns_Conflict_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce1"
+ "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce2"
},
{
"httpRequest": {
@@ -57,7 +57,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "bf073e02-7e0b-dc8b-b075-82932236e50a"
+ "id": "bf073e02-7e0b-dc8b-b075-82932236e50b"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_an_incident_type_returns_CREATED_response.json b/src/test/resources/cassettes/features/v2/Create_an_incident_type_returns_CREATED_response.json
index 5fdb5139b99..4e0d708d5b5 100644
--- a/src/test/resources/cassettes/features/v2/Create_an_incident_type_returns_CREATED_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_an_incident_type_returns_CREATED_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd3"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd6"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_custom_attribute_config_for_a_case_type_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Create_custom_attribute_config_for_a_case_type_returns_Bad_Request_response.json
index 2afada8e889..c312b3face8 100644
--- a/src/test/resources/cassettes/features/v2/Create_custom_attribute_config_for_a_case_type_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_custom_attribute_config_for_a_case_type_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "dc45fc73-0f09-c12d-941b-eaf799af6465"
+ "id": "dc45fc73-0f09-c12d-941b-eaf799af6466"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_custom_attribute_config_for_a_case_type_returns_CREATED_response.json b/src/test/resources/cassettes/features/v2/Create_custom_attribute_config_for_a_case_type_returns_CREATED_response.json
index 76a037f2ed4..1a120b75ae8 100644
--- a/src/test/resources/cassettes/features/v2/Create_custom_attribute_config_for_a_case_type_returns_CREATED_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_custom_attribute_config_for_a_case_type_returns_CREATED_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "dc45fc73-0f09-c12d-941b-eaf799af6467"
+ "id": "dc45fc73-0f09-c12d-941b-eaf799af6463"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_incident_notification_rule_returns_Created_response.json b/src/test/resources/cassettes/features/v2/Create_incident_notification_rule_returns_Created_response.json
index 31333da4750..4032fbdc8fc 100644
--- a/src/test/resources/cassettes/features/v2/Create_incident_notification_rule_returns_Created_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_incident_notification_rule_returns_Created_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd6"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bdc"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_incident_notification_template_returns_Created_response.json b/src/test/resources/cassettes/features/v2/Create_incident_notification_template_returns_Created_response.json
index 91af4088c4a..6b69cce1630 100644
--- a/src/test/resources/cassettes/features/v2/Create_incident_notification_template_returns_Created_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_incident_notification_template_returns_Created_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd2"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bdb"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Create_role_with_a_permission_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Create_role_with_a_permission_returns_OK_response.json
index cf1765920e9..226202c4126 100644
--- a/src/test/resources/cassettes/features/v2/Create_role_with_a_permission_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Create_role_with_a_permission_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2c08c1-60c7-9278-3246-d650bb89216d"
+ "id": "ab2c08c1-60c7-9278-3246-d650bb892173"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_AWS_CCM_config_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/Delete_AWS_CCM_config_returns_No_Content_response.json
index efa9967a0e4..c32805bcdb2 100644
--- a/src/test/resources/cassettes/features/v2/Delete_AWS_CCM_config_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_AWS_CCM_config_returns_No_Content_response.json
@@ -18,6 +18,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "b2bcb392-2d71-be89-5578-460535c541b0"
+ "id": "b2bcb392-2d71-be89-5578-460535c541af"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Delete_App_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_App_returns_OK_response.json
index 0c91755cb44..043c1ba1cdb 100644
--- a/src/test/resources/cassettes/features/v2/Delete_App_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_App_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50f"
+ "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_OK_response.json
index 17f6987468c..7ed67796512 100644
--- a/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "c782b1f3-1b03-d50f-8fcd-12e51226c513"
+ "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50d"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_Org_Connection_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_Org_Connection_returns_OK_response.json
index bb02652c1ea..bec4c8bb7be 100644
--- a/src/test/resources/cassettes/features/v2/Delete_Org_Connection_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_Org_Connection_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae43"
+ "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae49"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_Scanning_Group_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_Scanning_Group_returns_OK_response.json
index bc7e7c252fa..f6f0ad2102c 100644
--- a/src/test/resources/cassettes/features/v2/Delete_Scanning_Group_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_Scanning_Group_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e7d"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e7f"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa1"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa3"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_Scanning_Rule_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_Scanning_Rule_returns_OK_response.json
index 0a4283ae5ae..703a137e1f9 100644
--- a/src/test/resources/cassettes/features/v2/Delete_Scanning_Rule_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_Scanning_Rule_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e85"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e7b"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa7"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa0"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_a_custom_framework_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_a_custom_framework_returns_OK_response.json
index 0f7523c96c6..ab18e4a92c4 100644
--- a/src/test/resources/cassettes/features/v2/Delete_a_custom_framework_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_a_custom_framework_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "13fe9685-b072-5fe0-c841-4499a9e71c74"
+ "id": "13fe9685-b072-5fe0-c841-4499a9e71c73"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_a_dataset_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/Delete_a_dataset_returns_No_Content_response.json
index 92c10c6b507..21f390e6ce1 100644
--- a/src/test/resources/cassettes/features/v2/Delete_a_dataset_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_a_dataset_returns_No_Content_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "32c558cf-4a2e-f914-f443-ab94000addc9"
+ "id": "32c558cf-4a2e-f914-f443-ab94000addce"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_a_pipeline_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_a_pipeline_returns_OK_response.json
index 73d82f08f24..91769fdcab4 100644
--- a/src/test/resources/cassettes/features/v2/Delete_a_pipeline_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_a_pipeline_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "1c5790bf-1fdc-930d-ee1e-046e57b87c7e"
+ "id": "1c5790bf-1fdc-930d-ee1e-046e57b87c7f"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_a_restriction_query_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_a_restriction_query_returns_OK_response.json
index 9d5fec45de3..85885d0581b 100644
--- a/src/test/resources/cassettes/features/v2/Delete_a_restriction_query_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_a_restriction_query_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "eb3b308b-3d56-9ef8-4096-dd7718f5185f"
+ "id": "eb3b308b-3d56-9ef8-4096-dd7718f51861"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_a_retention_filter_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_a_retention_filter_returns_OK_response.json
index aeb041f1a43..381d1b90a1b 100644
--- a/src/test/resources/cassettes/features/v2/Delete_a_retention_filter_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_a_retention_filter_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "b2404278-8cc9-cba4-e3eb-03a7fdff069c"
+ "id": "b2404278-8cc9-cba4-e3eb-03a7fdff0699"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_an_AWS_integration_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/Delete_an_AWS_integration_returns_No_Content_response.json
index 1530f93b73b..10fbac85dbb 100644
--- a/src/test/resources/cassettes/features/v2/Delete_an_AWS_integration_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_an_AWS_integration_returns_No_Content_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce3"
+ "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce5"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_an_AWS_integration_returns_Not_Found_response.json b/src/test/resources/cassettes/features/v2/Delete_an_AWS_integration_returns_Not_Found_response.json
index 7d178b53207..a5021c6aada 100644
--- a/src/test/resources/cassettes/features/v2/Delete_an_AWS_integration_returns_Not_Found_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_an_AWS_integration_returns_Not_Found_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce2"
+ "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce6"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2123e3-6fb5-0f90-fe98-365e086c9c6e"
+ "id": "ab2123e3-6fb5-0f90-fe98-365e086c9c6f"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_an_existing_Workflow_returns_Successfully_deleted_a_workflow_response.json b/src/test/resources/cassettes/features/v2/Delete_an_existing_Workflow_returns_Successfully_deleted_a_workflow_response.json
index f3cb8669c10..a86b5756b5e 100644
--- a/src/test/resources/cassettes/features/v2/Delete_an_existing_Workflow_returns_Successfully_deleted_a_workflow_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_an_existing_Workflow_returns_Successfully_deleted_a_workflow_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ef58c8e5-8d44-f741-5735-0d8c01ffa21d"
+ "id": "ef58c8e5-8d44-f741-5735-0d8c01ffa21c"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_an_incident_type_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_an_incident_type_returns_OK_response.json
index ee9ff41cc5e..8b898cb6a9d 100644
--- a/src/test/resources/cassettes/features/v2/Delete_an_incident_type_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_an_incident_type_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd1"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bda"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_case_comment_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Delete_case_comment_returns_Bad_Request_response.json
index 7808c1e347b..18d5998a22a 100644
--- a/src/test/resources/cassettes/features/v2/Delete_case_comment_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_case_comment_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145eb"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145ea"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_case_comment_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/Delete_case_comment_returns_No_Content_response.json
index fcf4a2bf172..021bac611d3 100644
--- a/src/test/resources/cassettes/features/v2/Delete_case_comment_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_case_comment_returns_No_Content_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145fa"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145f2"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_custom_attribute_from_case_returns_Not_Found_response.json b/src/test/resources/cassettes/features/v2/Delete_custom_attribute_from_case_returns_Not_Found_response.json
index 075a7f9db40..7747f8db345 100644
--- a/src/test/resources/cassettes/features/v2/Delete_custom_attribute_from_case_returns_Not_Found_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_custom_attribute_from_case_returns_Not_Found_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145f8"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145f7"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_custom_attributes_config_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Delete_custom_attributes_config_returns_Bad_Request_response.json
index ed84911497c..2dc635d3a78 100644
--- a/src/test/resources/cassettes/features/v2/Delete_custom_attributes_config_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_custom_attributes_config_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "dc45fc73-0f09-c12d-941b-eaf799af6464"
+ "id": "dc45fc73-0f09-c12d-941b-eaf799af6467"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_custom_attributes_config_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/Delete_custom_attributes_config_returns_No_Content_response.json
index 149174ae6d9..89e714c46e3 100644
--- a/src/test/resources/cassettes/features/v2/Delete_custom_attributes_config_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_custom_attributes_config_returns_No_Content_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "dc45fc73-0f09-c12d-941b-eaf799af6463"
+ "id": "dc45fc73-0f09-c12d-941b-eaf799af6465"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_datastore_item_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_datastore_item_returns_OK_response.json
index a1c5ecbb403..14ecd66b8a4 100644
--- a/src/test/resources/cassettes/features/v2/Delete_datastore_item_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_datastore_item_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d33"
+ "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2c"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_datastore_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Delete_datastore_returns_OK_response.json
index 3ffceed3185..89a12a585b3 100644
--- a/src/test/resources/cassettes/features/v2/Delete_datastore_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_datastore_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2c"
+ "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d31"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_incident_notification_rule_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/Delete_incident_notification_rule_returns_No_Content_response.json
index 621a6a2a79d..6e8b7d7b0b1 100644
--- a/src/test/resources/cassettes/features/v2/Delete_incident_notification_rule_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_incident_notification_rule_returns_No_Content_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd7"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd9"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Delete_incident_notification_template_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/Delete_incident_notification_template_returns_No_Content_response.json
index 23e7a36d764..3770b9b0a09 100644
--- a/src/test/resources/cassettes/features/v2/Delete_incident_notification_template_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/Delete_incident_notification_template_returns_No_Content_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bdb"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd5"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Edit_a_dataset_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Edit_a_dataset_returns_OK_response.json
index f868434d6ac..75a40d06c1c 100644
--- a/src/test/resources/cassettes/features/v2/Edit_a_dataset_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Edit_a_dataset_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "32c558cf-4a2e-f914-f443-ab94000addcf"
+ "id": "32c558cf-4a2e-f914-f443-ab94000addc9"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Generate_a_new_external_ID_returns_AWS_External_ID_object_response.json b/src/test/resources/cassettes/features/v2/Generate_a_new_external_ID_returns_AWS_External_ID_object_response.json
index c2491988476..6ef442b0c31 100644
--- a/src/test/resources/cassettes/features/v2/Generate_a_new_external_ID_returns_AWS_External_ID_object_response.json
+++ b/src/test/resources/cassettes/features/v2/Generate_a_new_external_ID_returns_AWS_External_ID_object_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "a3ebb722-60eb-fa89-589a-ff3630e3a2cc"
+ "id": "a3ebb722-60eb-fa89-589a-ff3630e3a2ce"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Generate_new_external_ID_returns_AWS_External_ID_object_response.json b/src/test/resources/cassettes/features/v2/Generate_new_external_ID_returns_AWS_External_ID_object_response.json
index 1e23eb77688..dbcf089d3c7 100644
--- a/src/test/resources/cassettes/features/v2/Generate_new_external_ID_returns_AWS_External_ID_object_response.json
+++ b/src/test/resources/cassettes/features/v2/Generate_new_external_ID_returns_AWS_External_ID_object_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "a3ebb722-60eb-fa89-589a-ff3630e3a2ce"
+ "id": "a3ebb722-60eb-fa89-589a-ff3630e3a2cc"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Get_AWS_On_Demand_task_by_id_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Get_AWS_On_Demand_task_by_id_returns_Bad_Request_response.json
index 6b2882ea815..fe4cf251d57 100644
--- a/src/test/resources/cassettes/features/v2/Get_AWS_On_Demand_task_by_id_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_AWS_On_Demand_task_by_id_returns_Bad_Request_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "4fd99083-06ab-185c-0a48-d579a5f192c2"
+ "id": "4fd99083-06ab-185c-0a48-d579a5f192c1"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Get_AWS_On_Demand_tasks_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_AWS_On_Demand_tasks_returns_OK_response.json
index 774e33bf524..5fe868f6988 100644
--- a/src/test/resources/cassettes/features/v2/Get_AWS_On_Demand_tasks_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_AWS_On_Demand_tasks_returns_OK_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "7442c701-c89c-a74b-3de9-6b4cff876179"
+ "id": "7442c701-c89c-a74b-3de9-6b4cff876178"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Get_AWS_on_demand_task_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Get_AWS_on_demand_task_returns_Bad_Request_response.json
index fe4cf251d57..6b2882ea815 100644
--- a/src/test/resources/cassettes/features/v2/Get_AWS_on_demand_task_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_AWS_on_demand_task_returns_Bad_Request_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "4fd99083-06ab-185c-0a48-d579a5f192c1"
+ "id": "4fd99083-06ab-185c-0a48-d579a5f192c2"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Get_AWS_scan_options_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_AWS_scan_options_returns_OK_response.json
index 60bf7212494..bc09886e60a 100644
--- a/src/test/resources/cassettes/features/v2/Get_AWS_scan_options_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_AWS_scan_options_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "2cb6ecfe-386c-3349-2689-26da480a6b5d"
+ "id": "2cb6ecfe-386c-3349-2689-26da480a6b5e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_App_returns_Gone_response.json b/src/test/resources/cassettes/features/v2/Get_App_returns_Gone_response.json
index d0faeb9a172..b5a3dd39c4e 100644
--- a/src/test/resources/cassettes/features/v2/Get_App_returns_Gone_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_App_returns_Gone_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50c"
+ "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50f"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_App_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_App_returns_OK_response.json
index b461aa9101d..f38809e8af9 100644
--- a/src/test/resources/cassettes/features/v2/Get_App_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_App_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50e"
+ "id": "c782b1f3-1b03-d50f-8fcd-12e51226c512"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_GCP_scan_options_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_GCP_scan_options_returns_OK_response.json
index 018b1504a4a..cab40f18769 100644
--- a/src/test/resources/cassettes/features/v2/Get_GCP_scan_options_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_GCP_scan_options_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "f9eb4412-690a-34d5-e9ac-6eb62df01fac"
+ "id": "f9eb4412-690a-34d5-e9ac-6eb62df01fab"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_a_custom_framework_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_a_custom_framework_returns_OK_response.json
index 958f238638a..009fff14323 100644
--- a/src/test/resources/cassettes/features/v2/Get_a_custom_framework_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_a_custom_framework_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "13fe9685-b072-5fe0-c841-4499a9e71c75"
+ "id": "13fe9685-b072-5fe0-c841-4499a9e71c72"
},
{
"httpRequest": {
@@ -79,6 +79,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "e535722a-99e3-30cf-49f7-2d093bd78b3e"
+ "id": "e535722a-99e3-30cf-49f7-2d093bd78b3b"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Get_a_given_APM_retention_filter_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_a_given_APM_retention_filter_returns_OK_response.json
index b3366690d8d..1519dba55ca 100644
--- a/src/test/resources/cassettes/features/v2/Get_a_given_APM_retention_filter_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_a_given_APM_retention_filter_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "b2404278-8cc9-cba4-e3eb-03a7fdff0697"
+ "id": "b2404278-8cc9-cba4-e3eb-03a7fdff069c"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_a_job_s_details_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_a_job_s_details_returns_OK_response.json
index e1bd23989d9..5534121a3e8 100644
--- a/src/test/resources/cassettes/features/v2/Get_a_job_s_details_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_a_job_s_details_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6bb82102-e994-f0d1-ee96-e1e3f1d80fff"
+ "id": "6bb82102-e994-f0d1-ee96-e1e3f1d80ffd"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_a_restriction_query_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_a_restriction_query_returns_OK_response.json
index f6628e0a51d..0c7c6a0abc1 100644
--- a/src/test/resources/cassettes/features/v2/Get_a_restriction_query_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_a_restriction_query_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "eb3b308b-3d56-9ef8-4096-dd7718f51860"
+ "id": "eb3b308b-3d56-9ef8-4096-dd7718f5185f"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_a_single_dataset_by_ID_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_a_single_dataset_by_ID_returns_OK_response.json
index 462a7eb38f0..59a863c261f 100644
--- a/src/test/resources/cassettes/features/v2/Get_a_single_dataset_by_ID_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_a_single_dataset_by_ID_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "32c558cf-4a2e-f914-f443-ab94000addca"
+ "id": "32c558cf-4a2e-f914-f443-ab94000addcf"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_a_specific_pipeline_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_a_specific_pipeline_returns_OK_response.json
index 40f41bf5c71..ac29f8cf42e 100644
--- a/src/test/resources/cassettes/features/v2/Get_a_specific_pipeline_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_a_specific_pipeline_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "1c5790bf-1fdc-930d-ee1e-046e57b87c7d"
+ "id": "1c5790bf-1fdc-930d-ee1e-046e57b87c7e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_all_custom_attributes_config_of_case_type_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_all_custom_attributes_config_of_case_type_returns_OK_response.json
index 758e4fb66ad..3286dbce5dc 100644
--- a/src/test/resources/cassettes/features/v2/Get_all_custom_attributes_config_of_case_type_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_all_custom_attributes_config_of_case_type_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "dc45fc73-0f09-c12d-941b-eaf799af6466"
+ "id": "dc45fc73-0f09-c12d-941b-eaf799af6464"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_all_datasets_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_all_datasets_returns_OK_response.json
index 7b4fa0f864b..bd35bd59ea6 100644
--- a/src/test/resources/cassettes/features/v2/Get_all_datasets_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_all_datasets_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "32c558cf-4a2e-f914-f443-ab94000addcb"
+ "id": "32c558cf-4a2e-f914-f443-ab94000addcc"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_all_rules_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_all_rules_returns_OK_response.json
index e1d7d6dfa5f..6e336f005de 100644
--- a/src/test/resources/cassettes/features/v2/Get_all_rules_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_all_rules_returns_OK_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "7e2e839d-ac73-21dc-b480-36e366ae09da"
+ "id": "7e2e839d-ac73-21dc-b480-36e366ae09d9"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Get_an_AWS_integration_by_config_ID_returns_AWS_Account_object_response.json b/src/test/resources/cassettes/features/v2/Get_an_AWS_integration_by_config_ID_returns_AWS_Account_object_response.json
index 9933d6258ad..88ec4190fd7 100644
--- a/src/test/resources/cassettes/features/v2/Get_an_AWS_integration_by_config_ID_returns_AWS_Account_object_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_an_AWS_integration_by_config_ID_returns_AWS_Account_object_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce6"
+ "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce3"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_an_existing_Workflow_returns_Successfully_got_a_workflow_response.json b/src/test/resources/cassettes/features/v2/Get_an_existing_Workflow_returns_Successfully_got_a_workflow_response.json
index 79b249db928..c859297de35 100644
--- a/src/test/resources/cassettes/features/v2/Get_an_existing_Workflow_returns_Successfully_got_a_workflow_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_an_existing_Workflow_returns_Successfully_got_a_workflow_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ef58c8e5-8d44-f741-5735-0d8c01ffa21f"
+ "id": "ef58c8e5-8d44-f741-5735-0d8c01ffa21d"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_datastore_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_datastore_returns_OK_response.json
index f392f13fc4c..b79df729351 100644
--- a/src/test/resources/cassettes/features/v2/Get_datastore_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_datastore_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d31"
+ "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d34"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_incident_notification_rule_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_incident_notification_rule_returns_OK_response.json
index 00f0e4bc8fd..7b054104c3f 100644
--- a/src/test/resources/cassettes/features/v2/Get_incident_notification_rule_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_incident_notification_rule_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bdc"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd7"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_incident_notification_template_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_incident_notification_template_returns_OK_response.json
index 273c818221c..06a6f28a5dd 100644
--- a/src/test/resources/cassettes/features/v2/Get_incident_notification_template_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_incident_notification_template_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd5"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd3"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Get_list_of_AWS_log_ready_services_returns_AWS_Logs_Services_List_object_response.json b/src/test/resources/cassettes/features/v2/Get_list_of_AWS_log_ready_services_returns_AWS_Logs_Services_List_object_response.json
index e05cab1201f..f469a5cda1f 100644
--- a/src/test/resources/cassettes/features/v2/Get_list_of_AWS_log_ready_services_returns_AWS_Logs_Services_List_object_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_list_of_AWS_log_ready_services_returns_AWS_Logs_Services_List_object_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "03c3c0d9-a62f-5ac6-398b-e22a05d14d7b"
+ "id": "03c3c0d9-a62f-5ac6-398b-e22a05d14d79"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Get_the_details_of_a_case_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Get_the_details_of_a_case_returns_OK_response.json
index 9aabde754b9..832db589a6a 100644
--- a/src/test/resources/cassettes/features/v2/Get_the_details_of_a_case_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Get_the_details_of_a_case_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145f3"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145fa"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Gets_a_list_of_data_deletion_requests_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Gets_a_list_of_data_deletion_requests_returns_OK_response.json
index 1eccad92176..6ab71e5cb0b 100644
--- a/src/test/resources/cassettes/features/v2/Gets_a_list_of_data_deletion_requests_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Gets_a_list_of_data_deletion_requests_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "516e2b97-25f6-b08c-4d4a-1da22948b32f"
+ "id": "516e2b97-25f6-b08c-4d4a-1da22948b330"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Grant_permission_to_a_role_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Grant_permission_to_a_role_returns_OK_response.json
index d1447e359b2..c185341f0ba 100644
--- a/src/test/resources/cassettes/features/v2/Grant_permission_to_a_role_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Grant_permission_to_a_role_returns_OK_response.json
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2c08c1-60c7-9278-3246-d650bb89216c"
+ "id": "ab2c08c1-60c7-9278-3246-d650bb892175"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Grant_role_to_a_restriction_query_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Grant_role_to_a_restriction_query_returns_OK_response.json
index d88ac2ed754..ceb58f79339 100644
--- a/src/test/resources/cassettes/features/v2/Grant_role_to_a_restriction_query_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Grant_role_to_a_restriction_query_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "eb3b308b-3d56-9ef8-4096-dd7718f5185e"
+ "id": "eb3b308b-3d56-9ef8-4096-dd7718f51862"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/List_AWS_on_demand_tasks_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_AWS_on_demand_tasks_returns_OK_response.json
index 61e60b91801..f5543674faa 100644
--- a/src/test/resources/cassettes/features/v2/List_AWS_on_demand_tasks_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_AWS_on_demand_tasks_returns_OK_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "7442c701-c89c-a74b-3de9-6b4cff876178"
+ "id": "7442c701-c89c-a74b-3de9-6b4cff876179"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/List_AWS_scan_options_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_AWS_scan_options_returns_OK_response.json
index 4c0f531592f..33fc1c5e1e7 100644
--- a/src/test/resources/cassettes/features/v2/List_AWS_scan_options_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_AWS_scan_options_returns_OK_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "2cb6ecfe-386c-3349-2689-26da480a6b5e"
+ "id": "2cb6ecfe-386c-3349-2689-26da480a6b5d"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/List_GCP_scan_options_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_GCP_scan_options_returns_OK_response.json
index c09bb52e54b..e200ee772e9 100644
--- a/src/test/resources/cassettes/features/v2/List_GCP_scan_options_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_GCP_scan_options_returns_OK_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "f9eb4412-690a-34d5-e9ac-6eb62df01fab"
+ "id": "f9eb4412-690a-34d5-e9ac-6eb62df01fac"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/List_Scanning_Groups_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_Scanning_Groups_returns_OK_response.json
index b59f7c51711..601160992e8 100644
--- a/src/test/resources/cassettes/features/v2/List_Scanning_Groups_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_Scanning_Groups_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e82"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e84"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa5"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa7"
},
{
"httpRequest": {
@@ -79,7 +79,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e83"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e85"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/List_all_APM_retention_filters_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_all_APM_retention_filters_returns_OK_response.json
index ab1e1d16101..3ea25dce874 100644
--- a/src/test/resources/cassettes/features/v2/List_all_APM_retention_filters_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_all_APM_retention_filters_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "b2404278-8cc9-cba4-e3eb-03a7fdff0698"
+ "id": "b2404278-8cc9-cba4-e3eb-03a7fdff069b"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/List_all_rules_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_all_rules_returns_OK_response.json
index 80e2da9ecca..2cd151adcdb 100644
--- a/src/test/resources/cassettes/features/v2/List_all_rules_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_all_rules_returns_OK_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "7e2e839d-ac73-21dc-b480-36e366ae09d9"
+ "id": "7e2e839d-ac73-21dc-b480-36e366ae09da"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/List_available_namespaces_returns_AWS_Namespaces_List_object_response.json b/src/test/resources/cassettes/features/v2/List_available_namespaces_returns_AWS_Namespaces_List_object_response.json
index f0011c849a4..4e2a1b8a39b 100644
--- a/src/test/resources/cassettes/features/v2/List_available_namespaces_returns_AWS_Namespaces_List_object_response.json
+++ b/src/test/resources/cassettes/features/v2/List_available_namespaces_returns_AWS_Namespaces_List_object_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "d0ec7736-ef6c-d071-3390-4a5c3a301d0f"
+ "id": "d0ec7736-ef6c-d071-3390-4a5c3a301d11"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/List_datastore_items_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_datastore_items_returns_OK_response.json
index ca6902dd772..3ec5cb41a21 100644
--- a/src/test/resources/cassettes/features/v2/List_datastore_items_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_datastore_items_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d32"
+ "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d35"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/List_incident_notification_rules_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_incident_notification_rules_returns_OK_response.json
index 26f01926eeb..658cc27abad 100644
--- a/src/test/resources/cassettes/features/v2/List_incident_notification_rules_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_incident_notification_rules_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd4"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd1"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/List_log_services_returns_AWS_Logs_Services_List_object_response.json b/src/test/resources/cassettes/features/v2/List_log_services_returns_AWS_Logs_Services_List_object_response.json
index f469a5cda1f..e05cab1201f 100644
--- a/src/test/resources/cassettes/features/v2/List_log_services_returns_AWS_Logs_Services_List_object_response.json
+++ b/src/test/resources/cassettes/features/v2/List_log_services_returns_AWS_Logs_Services_List_object_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "03c3c0d9-a62f-5ac6-398b-e22a05d14d79"
+ "id": "03c3c0d9-a62f-5ac6-398b-e22a05d14d7b"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/List_namespaces_returns_AWS_Namespaces_List_object_response.json b/src/test/resources/cassettes/features/v2/List_namespaces_returns_AWS_Namespaces_List_object_response.json
index 25a1f8a4ae0..f0011c849a4 100644
--- a/src/test/resources/cassettes/features/v2/List_namespaces_returns_AWS_Namespaces_List_object_response.json
+++ b/src/test/resources/cassettes/features/v2/List_namespaces_returns_AWS_Namespaces_List_object_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "d0ec7736-ef6c-d071-3390-4a5c3a301d10"
+ "id": "d0ec7736-ef6c-d071-3390-4a5c3a301d0f"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/List_permissions_for_a_role_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_permissions_for_a_role_returns_OK_response.json
index a48da463a36..cfd81d2cd53 100644
--- a/src/test/resources/cassettes/features/v2/List_permissions_for_a_role_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_permissions_for_a_role_returns_OK_response.json
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2c08c1-60c7-9278-3246-d650bb89216e"
+ "id": "ab2c08c1-60c7-9278-3246-d650bb89216d"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/List_permissions_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_permissions_returns_OK_response.json
index ca2387782fd..15f40344bd7 100644
--- a/src/test/resources/cassettes/features/v2/List_permissions_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_permissions_returns_OK_response.json
@@ -23,6 +23,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2c08c1-60c7-9278-3246-d650bb892173"
+ "id": "ab2c08c1-60c7-9278-3246-d650bb89216c"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/List_pipelines_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_pipelines_returns_OK_response.json
index 17a313d3d48..7f8215348d1 100644
--- a/src/test/resources/cassettes/features/v2/List_pipelines_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_pipelines_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "1c5790bf-1fdc-930d-ee1e-046e57b87c7f"
+ "id": "1c5790bf-1fdc-930d-ee1e-046e57b87c80"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/List_roles_for_a_restriction_query_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_roles_for_a_restriction_query_returns_OK_response.json
index b3459ffd0fc..88ddad7a3ae 100644
--- a/src/test/resources/cassettes/features/v2/List_roles_for_a_restriction_query_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/List_roles_for_a_restriction_query_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "eb3b308b-3d56-9ef8-4096-dd7718f51862"
+ "id": "eb3b308b-3d56-9ef8-4096-dd7718f51860"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_Bad_Request_response_2.json b/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_Bad_Request_response_2.json
index 2ebfbdcfa75..c48e77cce48 100644
--- a/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_Bad_Request_response_2.json
+++ b/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_Bad_Request_response_2.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "c6af96d1-87d1-3cd6-0d2d-71631b85bb77"
+ "id": "c6af96d1-87d1-3cd6-0d2d-71631b85bb78"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_No_Content_response.json
index 974c53ce63d..1b2ef6880a2 100644
--- a/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_No_Content_response.json
@@ -22,6 +22,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "0f485c8a-a29e-ebed-3836-545f90bc9456"
+ "id": "0f485c8a-a29e-ebed-3836-545f90bc9458"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_OK_response.json
index 1b2ef6880a2..0a176ee003e 100644
--- a/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Patch_AWS_Scan_Options_returns_OK_response.json
@@ -22,6 +22,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "0f485c8a-a29e-ebed-3836-545f90bc9458"
+ "id": "0f485c8a-a29e-ebed-3836-545f90bc9457"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Patch_GCP_Scan_Options_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Patch_GCP_Scan_Options_returns_Bad_Request_response.json
index d4bcf1ca8ac..fee9f74e00a 100644
--- a/src/test/resources/cassettes/features/v2/Patch_GCP_Scan_Options_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Patch_GCP_Scan_Options_returns_Bad_Request_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "c2c329a8-5875-126a-1858-e7c00b5af113"
+ "id": "c2c329a8-5875-126a-1858-e7c00b5af114"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Patch_GCP_Scan_Options_returns_Not_Found_response.json b/src/test/resources/cassettes/features/v2/Patch_GCP_Scan_Options_returns_Not_Found_response.json
index 0d180071156..a7baf1534a7 100644
--- a/src/test/resources/cassettes/features/v2/Patch_GCP_Scan_Options_returns_Not_Found_response.json
+++ b/src/test/resources/cassettes/features/v2/Patch_GCP_Scan_Options_returns_Not_Found_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "0a6c2650-313c-cd4a-4230-f1a883526455"
+ "id": "0a6c2650-313c-cd4a-4230-f1a883526456"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Post_an_AWS_on_demand_task_returns_AWS_on_demand_task_created_successfully_response.json b/src/test/resources/cassettes/features/v2/Post_an_AWS_on_demand_task_returns_AWS_on_demand_task_created_successfully_response.json
index 8b4791c29ca..c6ff6086445 100644
--- a/src/test/resources/cassettes/features/v2/Post_an_AWS_on_demand_task_returns_AWS_on_demand_task_created_successfully_response.json
+++ b/src/test/resources/cassettes/features/v2/Post_an_AWS_on_demand_task_returns_AWS_on_demand_task_created_successfully_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "22e692ec-0118-56ae-6a7b-e829dfef8419"
+ "id": "22e692ec-0118-56ae-6a7b-e829dfef841a"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Post_an_AWS_on_demand_task_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Post_an_AWS_on_demand_task_returns_Bad_Request_response.json
index ea94cd9866e..91451dfea49 100644
--- a/src/test/resources/cassettes/features/v2/Post_an_AWS_on_demand_task_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Post_an_AWS_on_demand_task_returns_Bad_Request_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "ddc95453-e78c-c1f7-f3a9-441d29765f2e"
+ "id": "ddc95453-e78c-c1f7-f3a9-441d29765f2f"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Publish_App_returns_Created_response.json b/src/test/resources/cassettes/features/v2/Publish_App_returns_Created_response.json
index 458c0a50fce..83dc7ceab4a 100644
--- a/src/test/resources/cassettes/features/v2/Publish_App_returns_Created_response.json
+++ b/src/test/resources/cassettes/features/v2/Publish_App_returns_Created_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "c782b1f3-1b03-d50f-8fcd-12e51226c512"
+ "id": "c782b1f3-1b03-d50f-8fcd-12e51226c514"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Reorder_Groups_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Reorder_Groups_returns_Bad_Request_response.json
index 9232671467e..db4e9405d0d 100644
--- a/src/test/resources/cassettes/features/v2/Reorder_Groups_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Reorder_Groups_returns_Bad_Request_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e7a"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e79"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238a9f"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238a9e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Revoke_permission_returns_Not_found_response.json b/src/test/resources/cassettes/features/v2/Revoke_permission_returns_Not_found_response.json
index d59c27e003b..3ad8271712a 100644
--- a/src/test/resources/cassettes/features/v2/Revoke_permission_returns_Not_found_response.json
+++ b/src/test/resources/cassettes/features/v2/Revoke_permission_returns_Not_found_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2c08c1-60c7-9278-3246-d650bb892174"
+ "id": "ab2c08c1-60c7-9278-3246-d650bb89216f"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Revoke_permission_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Revoke_permission_returns_OK_response.json
index 988f4ea02fd..29de68e4b42 100644
--- a/src/test/resources/cassettes/features/v2/Revoke_permission_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Revoke_permission_returns_OK_response.json
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2c08c1-60c7-9278-3246-d650bb892175"
+ "id": "ab2c08c1-60c7-9278-3246-d650bb892174"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Run_a_historical_job_returns_Status_created_response.json b/src/test/resources/cassettes/features/v2/Run_a_historical_job_returns_Status_created_response.json
index 916bccfa080..e5433d704cc 100644
--- a/src/test/resources/cassettes/features/v2/Run_a_historical_job_returns_Status_created_response.json
+++ b/src/test/resources/cassettes/features/v2/Run_a_historical_job_returns_Status_created_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "6bb82102-e994-f0d1-ee96-e1e3f1d80ffe"
+ "id": "6bb82102-e994-f0d1-ee96-e1e3f1d80fff"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Unarchive_case_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Unarchive_case_returns_Bad_Request_response.json
index 5f10e5a84ba..b0100b1774b 100644
--- a/src/test/resources/cassettes/features/v2/Unarchive_case_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Unarchive_case_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145f7"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145ee"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Unarchive_case_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Unarchive_case_returns_OK_response.json
index 2cf2f5e7036..60a873eea23 100644
--- a/src/test/resources/cassettes/features/v2/Unarchive_case_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Unarchive_case_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145f0"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145e9"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Unassign_case_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Unassign_case_returns_Bad_Request_response.json
index cd0f546067e..9696ac40e32 100644
--- a/src/test/resources/cassettes/features/v2/Unassign_case_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Unassign_case_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145fc"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145ef"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Unpublish_App_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Unpublish_App_returns_OK_response.json
index 5aa2107af10..785bd78f8b8 100644
--- a/src/test/resources/cassettes/features/v2/Unpublish_App_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Unpublish_App_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50d"
+ "id": "c782b1f3-1b03-d50f-8fcd-12e51226c513"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_AWS_scan_options_returns_Bad_Request_response_2.json b/src/test/resources/cassettes/features/v2/Update_AWS_scan_options_returns_Bad_Request_response_2.json
index c48e77cce48..2ebfbdcfa75 100644
--- a/src/test/resources/cassettes/features/v2/Update_AWS_scan_options_returns_Bad_Request_response_2.json
+++ b/src/test/resources/cassettes/features/v2/Update_AWS_scan_options_returns_Bad_Request_response_2.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "c6af96d1-87d1-3cd6-0d2d-71631b85bb78"
+ "id": "c6af96d1-87d1-3cd6-0d2d-71631b85bb77"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Update_AWS_scan_options_returns_No_Content_response.json b/src/test/resources/cassettes/features/v2/Update_AWS_scan_options_returns_No_Content_response.json
index 0a176ee003e..974c53ce63d 100644
--- a/src/test/resources/cassettes/features/v2/Update_AWS_scan_options_returns_No_Content_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_AWS_scan_options_returns_No_Content_response.json
@@ -22,6 +22,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "0f485c8a-a29e-ebed-3836-545f90bc9457"
+ "id": "0f485c8a-a29e-ebed-3836-545f90bc9456"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Update_App_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_App_returns_Bad_Request_response.json
index b2d72b87ba2..5e1d57e1aff 100644
--- a/src/test/resources/cassettes/features/v2/Update_App_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_App_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "c782b1f3-1b03-d50f-8fcd-12e51226c514"
+ "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50c"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_GCP_scan_options_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_GCP_scan_options_returns_Bad_Request_response.json
index e0d488678ae..bd889c4d7e5 100644
--- a/src/test/resources/cassettes/features/v2/Update_GCP_scan_options_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_GCP_scan_options_returns_Bad_Request_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "c2c329a8-5875-126a-1858-e7c00b5af114"
+ "id": "c2c329a8-5875-126a-1858-e7c00b5af113"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Update_GCP_scan_options_returns_Not_Found_response.json b/src/test/resources/cassettes/features/v2/Update_GCP_scan_options_returns_Not_Found_response.json
index a7baf1534a7..0d180071156 100644
--- a/src/test/resources/cassettes/features/v2/Update_GCP_scan_options_returns_Not_Found_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_GCP_scan_options_returns_Not_Found_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "0a6c2650-313c-cd4a-4230-f1a883526456"
+ "id": "0a6c2650-313c-cd4a-4230-f1a883526455"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Update_Org_Connection_returns_Not_Found_response.json b/src/test/resources/cassettes/features/v2/Update_Org_Connection_returns_Not_Found_response.json
index 33523d241e1..441a98208d4 100644
--- a/src/test/resources/cassettes/features/v2/Update_Org_Connection_returns_Not_Found_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_Org_Connection_returns_Not_Found_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae45"
+ "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae48"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_Org_Connection_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_Org_Connection_returns_OK_response.json
index e14debdb1c1..085c2a10ee9 100644
--- a/src/test/resources/cassettes/features/v2/Update_Org_Connection_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_Org_Connection_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae44"
+ "id": "76efebf6-d204-c8e8-5a8c-bd11c0a4ae43"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_Scanning_Group_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_Scanning_Group_returns_OK_response.json
index 949fd15a46e..4fc4e2937a7 100644
--- a/src/test/resources/cassettes/features/v2/Update_Scanning_Group_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_Scanning_Group_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e78"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e83"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238a9d"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa6"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_Scanning_Rule_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_Scanning_Rule_returns_Bad_Request_response.json
index bc71ccd8654..71ae1c8ab0f 100644
--- a/src/test/resources/cassettes/features/v2/Update_Scanning_Rule_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_Scanning_Rule_returns_Bad_Request_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e84"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e82"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa6"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa5"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_Scanning_Rule_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_Scanning_Rule_returns_OK_response.json
index 7a985fbb55d..19819989192 100644
--- a/src/test/resources/cassettes/features/v2/Update_Scanning_Rule_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_Scanning_Rule_returns_OK_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "01611a93-5e74-0630-3c51-f707c3b51e7b"
+ "id": "01611a93-5e74-0630-3c51-f707c3b51e7e"
},
{
"httpRequest": {
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa0"
+ "id": "e6af4a2f-dfda-8f06-6f3a-f5528b238aa2"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_WAF_Custom_Rule_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_a_WAF_Custom_Rule_returns_Bad_Request_response.json
index c7a6553a4f2..36d9e528f82 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_WAF_Custom_Rule_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_WAF_Custom_Rule_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "337b2f05-cc5f-2fb5-c7be-e2e0e5bf9442"
+ "id": "337b2f05-cc5f-2fb5-c7be-e2e0e5bf9441"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_WAF_Custom_Rule_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_a_WAF_Custom_Rule_returns_OK_response.json
index 72e65a80efe..7b5287a216a 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_WAF_Custom_Rule_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_WAF_Custom_Rule_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "337b2f05-cc5f-2fb5-c7be-e2e0e5bf9441"
+ "id": "337b2f05-cc5f-2fb5-c7be-e2e0e5bf9443"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_WAF_exclusion_filter_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_a_WAF_exclusion_filter_returns_Bad_Request_response.json
index 370567a4e26..402e0d483a0 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_WAF_exclusion_filter_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_WAF_exclusion_filter_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "337b2f05-cc5f-2fb5-c7be-e2e0e5bf9443"
+ "id": "337b2f05-cc5f-2fb5-c7be-e2e0e5bf9442"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_custom_framework_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_a_custom_framework_returns_OK_response.json
index 4144e776050..c6d6252edc4 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_custom_framework_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_custom_framework_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "13fe9685-b072-5fe0-c841-4499a9e71c71"
+ "id": "13fe9685-b072-5fe0-c841-4499a9e71c76"
},
{
"httpRequest": {
@@ -83,6 +83,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "e535722a-99e3-30cf-49f7-2d093bd78b3a"
+ "id": "e535722a-99e3-30cf-49f7-2d093bd78b3f"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Update_a_pipeline_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_a_pipeline_returns_Bad_Request_response.json
index 3f6cb5725eb..7ecba1161be 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_pipeline_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_pipeline_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "1c5790bf-1fdc-930d-ee1e-046e57b87c80"
+ "id": "1c5790bf-1fdc-930d-ee1e-046e57b87c7d"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_Bad_Request_response.json
index dff3c5435d1..c669844b54b 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "b2404278-8cc9-cba4-e3eb-03a7fdff069d"
+ "id": "b2404278-8cc9-cba4-e3eb-03a7fdff0697"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_Not_Found_response.json b/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_Not_Found_response.json
index f8e2615c3f8..170166752c7 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_Not_Found_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_Not_Found_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "ce266f9d-5f90-251e-805b-1fa5bbd62fea"
+ "id": "ce266f9d-5f90-251e-805b-1fa5bbd62feb"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_OK_response.json
index cd4b267d68f..3e2885f919c 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_retention_filter_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "b2404278-8cc9-cba4-e3eb-03a7fdff0699"
+ "id": "b2404278-8cc9-cba4-e3eb-03a7fdff069a"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_retention_filter_with_trace_rate_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_a_retention_filter_with_trace_rate_returns_OK_response.json
index 22477665035..a39d900e784 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_retention_filter_with_trace_rate_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_retention_filter_with_trace_rate_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "b2404278-8cc9-cba4-e3eb-03a7fdff069b"
+ "id": "b2404278-8cc9-cba4-e3eb-03a7fdff069d"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_retention_filters_returns_Not_Found_response.json b/src/test/resources/cassettes/features/v2/Update_a_retention_filters_returns_Not_Found_response.json
index 170166752c7..f8e2615c3f8 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_retention_filters_returns_Not_Found_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_retention_filters_returns_Not_Found_response.json
@@ -27,6 +27,6 @@
"timeToLive": {
"unlimited": true
},
- "id": "ce266f9d-5f90-251e-805b-1fa5bbd62feb"
+ "id": "ce266f9d-5f90-251e-805b-1fa5bbd62fea"
}
]
\ No newline at end of file
diff --git a/src/test/resources/cassettes/features/v2/Update_a_retention_filters_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_a_retention_filters_returns_OK_response.json
index 4dbd4d81382..4f3f459c693 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_retention_filters_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_retention_filters_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "b2404278-8cc9-cba4-e3eb-03a7fdff069a"
+ "id": "b2404278-8cc9-cba4-e3eb-03a7fdff0698"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_role_returns_Bad_Role_ID_response.json b/src/test/resources/cassettes/features/v2/Update_a_role_returns_Bad_Role_ID_response.json
index a569622fd79..5eaaca04e42 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_role_returns_Bad_Role_ID_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_role_returns_Bad_Role_ID_response.json
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2c08c1-60c7-9278-3246-d650bb89216f"
+ "id": "ab2c08c1-60c7-9278-3246-d650bb89216e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_role_returns_Not_found_response.json b/src/test/resources/cassettes/features/v2/Update_a_role_returns_Not_found_response.json
index 811fe023421..3523eabfb46 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_role_returns_Not_found_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_role_returns_Not_found_response.json
@@ -23,7 +23,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2c08c1-60c7-9278-3246-d650bb892172"
+ "id": "ab2c08c1-60c7-9278-3246-d650bb892170"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_a_role_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_a_role_returns_OK_response.json
index b402a04ba55..ada6cbf8cd4 100644
--- a/src/test/resources/cassettes/features/v2/Update_a_role_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_a_role_returns_OK_response.json
@@ -53,7 +53,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ab2c08c1-60c7-9278-3246-d650bb892170"
+ "id": "ab2c08c1-60c7-9278-3246-d650bb892172"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_an_AWS_integration_returns_AWS_Account_object_response.json b/src/test/resources/cassettes/features/v2/Update_an_AWS_integration_returns_AWS_Account_object_response.json
index c0415eb8a2f..2efa53de1ac 100644
--- a/src/test/resources/cassettes/features/v2/Update_an_AWS_integration_returns_AWS_Account_object_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_an_AWS_integration_returns_AWS_Account_object_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce5"
+ "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce4"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_an_AWS_integration_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_an_AWS_integration_returns_Bad_Request_response.json
index 38f465a9e25..5e43645a6a4 100644
--- a/src/test/resources/cassettes/features/v2/Update_an_AWS_integration_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_an_AWS_integration_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce4"
+ "id": "479ab602-1a6a-ff9c-cfae-4a71849b3ce1"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_an_existing_Workflow_returns_Bad_request_response.json b/src/test/resources/cassettes/features/v2/Update_an_existing_Workflow_returns_Bad_request_response.json
index 3fff6d70d3c..59be0a3c587 100644
--- a/src/test/resources/cassettes/features/v2/Update_an_existing_Workflow_returns_Bad_request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_an_existing_Workflow_returns_Bad_request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ef58c8e5-8d44-f741-5735-0d8c01ffa21e"
+ "id": "ef58c8e5-8d44-f741-5735-0d8c01ffa21f"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_an_existing_Workflow_returns_Successfully_updated_a_workflow_response.json b/src/test/resources/cassettes/features/v2/Update_an_existing_Workflow_returns_Successfully_updated_a_workflow_response.json
index 0f470acf82f..be6cf1cbadf 100644
--- a/src/test/resources/cassettes/features/v2/Update_an_existing_Workflow_returns_Successfully_updated_a_workflow_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_an_existing_Workflow_returns_Successfully_updated_a_workflow_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "ef58c8e5-8d44-f741-5735-0d8c01ffa21c"
+ "id": "ef58c8e5-8d44-f741-5735-0d8c01ffa21e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_an_incident_type_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_an_incident_type_returns_OK_response.json
index d75c200e9ae..6309739cc9f 100644
--- a/src/test/resources/cassettes/features/v2/Update_an_incident_type_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_an_incident_type_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd9"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd2"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_attributes_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_case_attributes_returns_Bad_Request_response.json
index 743bfbc7078..c403571c4ea 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_attributes_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_attributes_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "0a6534d0-42f2-5075-64f8-7ab28f449a8e"
+ "id": "0a6534d0-42f2-5075-64f8-7ab28f449a8d"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_attributes_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_case_attributes_returns_OK_response.json
index aa33727ca2c..88be588dd3c 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_attributes_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_attributes_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145ff"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145f5"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_custom_attribute_returns_Not_Found_response.json b/src/test/resources/cassettes/features/v2/Update_case_custom_attribute_returns_Not_Found_response.json
index a9ce37fb461..edb0c4fa3c7 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_custom_attribute_returns_Not_Found_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_custom_attribute_returns_Not_Found_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e7014600"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145ed"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_description_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_case_description_returns_Bad_Request_response.json
index d1c977728b3..431f560d206 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_description_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_description_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "0a6534d0-42f2-5075-64f8-7ab28f449a8d"
+ "id": "0a6534d0-42f2-5075-64f8-7ab28f449a8e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_description_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_case_description_returns_OK_response.json
index 31556059bfd..b4cf2323a2d 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_description_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_description_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145ec"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145f1"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_priority_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_case_priority_returns_Bad_Request_response.json
index 88b2bb14ac5..266a2b33b31 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_priority_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_priority_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145f5"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145fe"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_priority_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_case_priority_returns_OK_response.json
index 8acf5728617..f462fd4c8dd 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_priority_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_priority_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145e9"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145f0"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_status_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_case_status_returns_Bad_Request_response.json
index 60921358de9..6a5f8600d39 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_status_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_status_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145ef"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145f3"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_status_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_case_status_returns_OK_response.json
index b4040b956bc..4d0529dbc46 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_status_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_status_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145f9"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145f8"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_title_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_case_title_returns_Bad_Request_response.json
index c06b8597bd4..40f7af7c478 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_title_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_title_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145ea"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145f9"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_case_title_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_case_title_returns_OK_response.json
index 1a052a0e510..1463cb0e2aa 100644
--- a/src/test/resources/cassettes/features/v2/Update_case_title_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_case_title_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "79babc38-7a70-5347-c8a6-73b0e70145f2"
+ "id": "79babc38-7a70-5347-c8a6-73b0e70145fc"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_datastore_item_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_datastore_item_returns_OK_response.json
index 6b8400bc073..a293ad3ef40 100644
--- a/src/test/resources/cassettes/features/v2/Update_datastore_item_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_datastore_item_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d30"
+ "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2d"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_datastore_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_datastore_returns_OK_response.json
index 3300bd74e78..a5223c853a8 100644
--- a/src/test/resources/cassettes/features/v2/Update_datastore_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_datastore_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d2f"
+ "id": "6574cf7e-1c55-24e1-45d2-b92f9fa74d33"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_incident_notification_rule_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_incident_notification_rule_returns_OK_response.json
index 4de99e63586..4b4aaa2bc5d 100644
--- a/src/test/resources/cassettes/features/v2/Update_incident_notification_rule_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_incident_notification_rule_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd8"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd4"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_incident_notification_template_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_incident_notification_template_returns_OK_response.json
index b9bf77f1d8f..92e2e3d0445 100644
--- a/src/test/resources/cassettes/features/v2/Update_incident_notification_template_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_incident_notification_template_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "7bcfec66-5300-9891-51e5-e4d7e0833bda"
+ "id": "7bcfec66-5300-9891-51e5-e4d7e0833bd8"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_the_state_of_an_issue_returns_Bad_Request_response.json b/src/test/resources/cassettes/features/v2/Update_the_state_of_an_issue_returns_Bad_Request_response.json
index 4a27cd1e9d6..e642f719a20 100644
--- a/src/test/resources/cassettes/features/v2/Update_the_state_of_an_issue_returns_Bad_Request_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_the_state_of_an_issue_returns_Bad_Request_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "a2c05b3b-bab5-013b-200d-7dc622c1b35f"
+ "id": "a2c05b3b-bab5-013b-200d-7dc622c1b35e"
},
{
"httpRequest": {
diff --git a/src/test/resources/cassettes/features/v2/Update_the_state_of_an_issue_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_the_state_of_an_issue_returns_OK_response.json
index 6078cbf29e3..0c4d5613d6a 100644
--- a/src/test/resources/cassettes/features/v2/Update_the_state_of_an_issue_returns_OK_response.json
+++ b/src/test/resources/cassettes/features/v2/Update_the_state_of_an_issue_returns_OK_response.json
@@ -27,7 +27,7 @@
"timeToLive": {
"unlimited": true
},
- "id": "a2c05b3b-bab5-013b-200d-7dc622c1b35e"
+ "id": "a2c05b3b-bab5-013b-200d-7dc622c1b35f"
},
{
"httpRequest": {
diff --git a/src/test/resources/com/datadog/api/client/v2/api/specs.feature b/src/test/resources/com/datadog/api/client/v2/api/specs.feature
new file mode 100644
index 00000000000..830e1d6f6cf
--- /dev/null
+++ b/src/test/resources/com/datadog/api/client/v2/api/specs.feature
@@ -0,0 +1,12 @@
+@endpoint(specs) @endpoint(specs-v2)
+Feature: Specs
+ View API specs stored in the system.
+
+ @generated @skip @team:DataDog/web-frameworks-test
+ Scenario: List API specs returns "OK" response
+ Given a valid "apiKeyAuth" key in the system
+ And a valid "appKeyAuth" key in the system
+ And an instance of "Specs" API
+ And new "ListSpecs" request
+ When the request is sent
+ Then the response status is 200 OK
diff --git a/src/test/resources/com/datadog/api/client/v2/api/undo.json b/src/test/resources/com/datadog/api/client/v2/api/undo.json
index dc1a8b2fbbd..1a41e1001be 100644
--- a/src/test/resources/com/datadog/api/client/v2/api/undo.json
+++ b/src/test/resources/com/datadog/api/client/v2/api/undo.json
@@ -6252,6 +6252,12 @@
"type": "safe"
}
},
+ "ListSpecs": {
+ "tag": "Specs",
+ "undo": {
+ "type": "safe"
+ }
+ },
"CreateSCAResult": {
"tag": "Static Analysis",
"undo": {