diff --git a/.apigentools-info b/.apigentools-info index 6b6859a2179..a9922908032 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2025-03-03 16:04:33.892853", - "spec_repo_commit": "c17ef1e9" + "regenerated": "2025-03-03 19:12:20.366400", + "spec_repo_commit": "35df584d" }, "v2": { "apigentools_version": "1.6.6", - "regenerated": "2025-03-03 16:04:33.910855", - "spec_repo_commit": "c17ef1e9" + "regenerated": "2025-03-03 19:12:20.381714", + "spec_repo_commit": "35df584d" } } } \ No newline at end of file diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index b86802b4656..df7e73d9c56 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -1821,6 +1821,207 @@ components: oneOf: - $ref: '#/components/schemas/AWSIntegrationUpdate' - $ref: '#/components/schemas/HTTPIntegrationUpdate' + ActionQuery: + description: An action query. This query type is used to trigger an action, + such as sending a HTTP request. + properties: + events: + description: Events to listen for downstream of the action query. + items: + $ref: '#/components/schemas/AppBuilderEvent' + type: array + id: + description: The ID of the action query. + example: 65bb1f25-52e1-4510-9f8d-22d1516ed693 + format: uuid + type: string + name: + description: A unique identifier for this action query. This name is also + used to access the query's result throughout the app. + example: fetchPendingOrders + type: string + properties: + $ref: '#/components/schemas/ActionQueryProperties' + type: + $ref: '#/components/schemas/ActionQueryType' + required: + - id + - name + - type + - properties + type: object + ActionQueryCondition: + description: Whether to run this query. If specified, the query will only run + if this condition evaluates to `true` in JavaScript and all other conditions + are also met. + oneOf: + - type: boolean + - example: ${true} + type: string + ActionQueryDebounceInMs: + description: The minimum time in milliseconds that must pass before the query + can be triggered again. This is useful for preventing accidental double-clicks + from triggering the query multiple times. + oneOf: + - example: 310.5 + format: double + type: number + - description: If this is a string, it must be a valid JavaScript expression + that evaluates to a number. + example: ${1000} + type: string + ActionQueryMockedOutputs: + description: The mocked outputs of the action query. This is useful for testing + the app without actually running the action. + oneOf: + - type: string + - $ref: '#/components/schemas/ActionQueryMockedOutputsObject' + ActionQueryMockedOutputsEnabled: + description: Whether to enable the mocked outputs for testing. + oneOf: + - type: boolean + - description: If this is a string, it must be a valid JavaScript expression + that evaluates to a boolean. + example: ${true} + type: string + ActionQueryMockedOutputsObject: + description: The mocked outputs of the action query. + properties: + enabled: + $ref: '#/components/schemas/ActionQueryMockedOutputsEnabled' + outputs: + description: The mocked outputs of the action query, serialized as JSON. + example: '{"status": "success"}' + type: string + required: + - enabled + type: object + ActionQueryOnlyTriggerManually: + description: Determines when this query is executed. If set to `false`, the + query will run when the app loads and whenever any query arguments change. + If set to `true`, the query will only run when manually triggered from elsewhere + in the app. + oneOf: + - type: boolean + - description: If this is a string, it must be a valid JavaScript expression + that evaluates to a boolean. + example: ${true} + type: string + ActionQueryPollingIntervalInMs: + description: If specified, the app will poll the query at the specified interval + in milliseconds. The minimum polling interval is 15 seconds. The query will + only poll when the app's browser tab is active. + oneOf: + - example: 30000.0 + format: double + minimum: 15000.0 + type: number + - description: If this is a string, it must be a valid JavaScript expression + that evaluates to a number. + example: ${15000} + type: string + ActionQueryProperties: + description: The properties of the action query. + properties: + condition: + $ref: '#/components/schemas/ActionQueryCondition' + debounceInMs: + $ref: '#/components/schemas/ActionQueryDebounceInMs' + mockedOutputs: + $ref: '#/components/schemas/ActionQueryMockedOutputs' + onlyTriggerManually: + $ref: '#/components/schemas/ActionQueryOnlyTriggerManually' + outputs: + description: The post-query transformation function, which is a JavaScript + function that changes the query's `.outputs` property after the query's + execution. + example: ${((outputs) => {return outputs.body.data})(self.rawOutputs)} + type: string + pollingIntervalInMs: + $ref: '#/components/schemas/ActionQueryPollingIntervalInMs' + requiresConfirmation: + $ref: '#/components/schemas/ActionQueryRequiresConfirmation' + showToastOnError: + $ref: '#/components/schemas/ActionQueryShowToastOnError' + spec: + $ref: '#/components/schemas/ActionQuerySpec' + required: + - spec + type: object + ActionQueryRequiresConfirmation: + description: Whether to prompt the user to confirm this query before it runs. + oneOf: + - type: boolean + - description: If this is a string, it must be a valid JavaScript expression + that evaluates to a boolean. + example: ${true} + type: string + ActionQueryShowToastOnError: + description: Whether to display a toast to the user when the query returns an + error. + oneOf: + - type: boolean + - description: If this is a string, it must be a valid JavaScript expression + that evaluates to a boolean. + example: ${true} + type: string + ActionQuerySpec: + description: The definition of the action query. + oneOf: + - type: string + - $ref: '#/components/schemas/ActionQuerySpecObject' + ActionQuerySpecConnectionGroup: + description: The connection group to use for an action query. + properties: + id: + description: The ID of the connection group. + example: 65bb1f25-52e1-4510-9f8d-22d1516ed693 + format: uuid + type: string + tags: + description: The tags of the connection group. + items: + type: string + type: array + type: object + ActionQuerySpecInput: + additionalProperties: {} + description: The inputs to the action query. See the [Actions Catalog](https://docs.datadoghq.com/actions/actions_catalog/) + for more detail on each action and its inputs. + type: object + ActionQuerySpecInputs: + description: The inputs to the action query. These are the values that are passed + to the action when it is triggered. + oneOf: + - type: string + - $ref: '#/components/schemas/ActionQuerySpecInput' + ActionQuerySpecObject: + description: The action query spec object. + properties: + connectionGroup: + $ref: '#/components/schemas/ActionQuerySpecConnectionGroup' + connectionId: + description: The ID of the custom connection to use for this action query. + example: 65bb1f25-52e1-4510-9f8d-22d1516ed693 + type: string + fqn: + description: The fully qualified name of the action type. + example: com.datadoghq.http.request + type: string + inputs: + $ref: '#/components/schemas/ActionQuerySpecInputs' + required: + - fqn + type: object + ActionQueryType: + default: action + description: The action query type. + enum: + - action + example: action + type: string + x-enum-varnames: + - ACTION ActiveBillingDimensionsAttributes: description: List of active billing dimensions. properties: @@ -9649,6 +9850,48 @@ components: type: number type: array type: object + DataTransform: + description: A data transformer, which is custom JavaScript code that executes + and transforms data when its inputs change. + properties: + id: + description: The ID of the data transformer. + example: 65bb1f25-52e1-4510-9f8d-22d1516ed693 + format: uuid + type: string + name: + description: A unique identifier for this data transformer. This name is + also used to access the transformer's result throughout the app. + example: combineTwoOrders + type: string + properties: + $ref: '#/components/schemas/DataTransformProperties' + type: + $ref: '#/components/schemas/DataTransformType' + required: + - id + - name + - type + - properties + type: object + DataTransformProperties: + description: The properties of the data transformer. + properties: + outputs: + description: A JavaScript function that returns the transformed data. + example: "${(() => {return {\n allItems: [...fetchOrder1.outputs.items, + ...fetchOrder2.outputs.items],\n}})()}" + type: string + type: object + DataTransformType: + default: dataTransform + description: The data transform type. + enum: + - dataTransform + example: dataTransform + type: string + x-enum-varnames: + - DATATRANSFORM Date: description: Date as Unix timestamp in milliseconds. example: 1722439510282 @@ -21797,34 +22040,12 @@ components: $ref: '#/components/schemas/Deployment' type: object Query: - description: A query used by an app. This can take the form of an external action, - a data transformation, or a state variable change. - properties: - events: - description: Events to listen for downstream of the query. - items: - $ref: '#/components/schemas/AppBuilderEvent' - type: array - id: - description: The ID of the query. - example: 65bb1f25-52e1-4510-9f8d-22d1516ed693 - format: uuid - type: string - name: - description: The name of the query. The name must be unique within the app - and is visible in the app editor. - example: '' - type: string - properties: - description: The properties of the query. The properties vary depending - on the query type. - type: - $ref: '#/components/schemas/QueryType' - required: - - id - - name - - type - type: object + description: A data query used by an app. This can take the form of an external + action, a data transformation, or a state variable. + oneOf: + - $ref: '#/components/schemas/ActionQuery' + - $ref: '#/components/schemas/DataTransform' + - $ref: '#/components/schemas/StateVariable' QueryFormula: description: A formula for calculation based on one or more queries. properties: @@ -21848,18 +22069,6 @@ components: x-enum-varnames: - ASC - DESC - QueryType: - description: The query type. - enum: - - action - - stateVariable - - dataTransform - example: action - type: string - x-enum-varnames: - - ACTION - - STATEVARIABLE - - DATATRANSFORM RUMAggregateBucketValue: description: A bucket value, can be either a timeseries or a single value. oneOf: @@ -29822,6 +30031,46 @@ components: - PASS - FAIL - SKIP + StateVariable: + description: A variable, which can be set and read by other components in the + app. + properties: + id: + description: The ID of the state variable. + example: 65bb1f25-52e1-4510-9f8d-22d1516ed693 + format: uuid + type: string + name: + description: A unique identifier for this state variable. This name is also + used to access the variable's value throughout the app. + example: ordersToSubmit + type: string + properties: + $ref: '#/components/schemas/StateVariableProperties' + type: + $ref: '#/components/schemas/StateVariableType' + required: + - id + - name + - type + - properties + type: object + StateVariableProperties: + description: The properties of the state variable. + properties: + defaultValue: + description: The default value of the state variable. + example: ${['order_3145', 'order_4920']} + type: object + StateVariableType: + default: stateVariable + description: The state variable type. + enum: + - stateVariable + example: stateVariable + type: string + x-enum-varnames: + - STATEVARIABLE Step: description: A Step is a sub-component of a workflow. Each Step performs an action. @@ -33659,8 +33908,6 @@ paths: operator: OR permissions: - apps_write - x-unstable: '**Note**: App Builder API endpoints are still under active development - and might change at any time.' get: description: List all apps, with optional filters and sorting. This endpoint is paginated. Only basic app information such as the app ID, name, and description @@ -33769,8 +34016,6 @@ paths: operator: OR permissions: - apps_run - x-unstable: '**Note**: App Builder API endpoints are still under active development - and might change at any time.' post: description: Create a new app, returning the app ID. operationId: CreateApp @@ -33810,8 +34055,6 @@ paths: - apps_write - connections_resolve - workflows_run - x-unstable: '**Note**: App Builder API endpoints are still under active development - and might change at any time.' /api/v2/app-builder/apps/{app_id}: delete: description: Delete a single app. @@ -33865,8 +34108,6 @@ paths: operator: OR permissions: - apps_write - x-unstable: '**Note**: App Builder API endpoints are still under active development - and might change at any time.' get: description: Get the full definition of an app. operationId: GetApp @@ -33913,6 +34154,12 @@ paths: schema: $ref: '#/components/schemas/JSONAPIErrorResponse' description: Not Found + '410': + content: + application/json: + schema: + $ref: '#/components/schemas/JSONAPIErrorResponse' + description: Gone '429': $ref: '#/components/responses/TooManyRequestsResponse' summary: Get App @@ -33923,8 +34170,6 @@ paths: permissions: - apps_run - connections_read - x-unstable: '**Note**: App Builder API endpoints are still under active development - and might change at any time.' patch: description: Update an existing app. This creates a new version of the app. operationId: UpdateApp @@ -33973,8 +34218,6 @@ paths: - apps_write - connections_resolve - workflows_run - x-unstable: '**Note**: App Builder API endpoints are still under active development - and might change at any time.' /api/v2/app-builder/apps/{app_id}/deployment: delete: description: Unpublish an app, removing the live version of the app. Unpublishing @@ -34025,8 +34268,6 @@ paths: operator: OR permissions: - apps_write - x-unstable: '**Note**: App Builder API endpoints are still under active development - and might change at any time.' post: description: Publish an app for use by other users. To ensure the app is accessible to the correct users, you also need to set a [Restriction Policy](https://docs.datadoghq.com/api/latest/restriction-policies/) @@ -34075,8 +34316,6 @@ paths: operator: OR permissions: - apps_write - x-unstable: '**Note**: App Builder API endpoints are still under active development - and might change at any time.' /api/v2/application_keys: get: description: List all application keys available for your org diff --git a/examples/v2/app-builder/CreateApp.java b/examples/v2/app-builder/CreateApp.java index e52371499e1..2c250181895 100644 --- a/examples/v2/app-builder/CreateApp.java +++ b/examples/v2/app-builder/CreateApp.java @@ -3,6 +3,15 @@ import com.datadog.api.client.ApiClient; import com.datadog.api.client.ApiException; import com.datadog.api.client.v2.api.AppBuilderApi; +import com.datadog.api.client.v2.model.ActionQuery; +import com.datadog.api.client.v2.model.ActionQueryProperties; +import com.datadog.api.client.v2.model.ActionQuerySpec; +import com.datadog.api.client.v2.model.ActionQuerySpecInputs; +import com.datadog.api.client.v2.model.ActionQuerySpecObject; +import com.datadog.api.client.v2.model.ActionQueryType; +import com.datadog.api.client.v2.model.AppBuilderEvent; +import com.datadog.api.client.v2.model.AppBuilderEventName; +import com.datadog.api.client.v2.model.AppBuilderEventType; import com.datadog.api.client.v2.model.AppDefinitionType; import com.datadog.api.client.v2.model.Component; import com.datadog.api.client.v2.model.ComponentGrid; @@ -15,54 +24,224 @@ import com.datadog.api.client.v2.model.CreateAppRequestData; import com.datadog.api.client.v2.model.CreateAppRequestDataAttributes; import com.datadog.api.client.v2.model.CreateAppResponse; +import com.datadog.api.client.v2.model.DataTransform; +import com.datadog.api.client.v2.model.DataTransformProperties; +import com.datadog.api.client.v2.model.DataTransformType; +import com.datadog.api.client.v2.model.Query; +import com.datadog.api.client.v2.model.StateVariable; +import com.datadog.api.client.v2.model.StateVariableProperties; +import com.datadog.api.client.v2.model.StateVariableType; +import java.util.Arrays; import java.util.Collections; +import java.util.Map; +import java.util.UUID; public class Example { public static void main(String[] args) { ApiClient defaultClient = ApiClient.getDefaultApiClient(); - defaultClient.setUnstableOperationEnabled("v2.createApp", true); AppBuilderApi apiInstance = new AppBuilderApi(defaultClient); CreateAppRequest body = new CreateAppRequest() .data( new CreateAppRequestData() + .type(AppDefinitionType.APPDEFINITIONS) .attributes( new CreateAppRequestDataAttributes() + .rootInstanceName("grid0") .components( Collections.singletonList( new ComponentGrid() .name("grid0") + .type(ComponentGridType.GRID) .properties( new ComponentGridProperties() .children( - Collections.singletonList( + Arrays.asList( new Component() + .type(ComponentType.GRIDCELL) .name("gridCell0") .properties( new ComponentProperties() .children( Collections.singletonList( new Component() - .name( - "calloutValue0") + .name("text0") + .type( + ComponentType + .TEXT) + .properties( + new ComponentProperties() + .isVisible( + new ComponentPropertiesIsVisible( + true))))) + .isVisible( + new ComponentPropertiesIsVisible( + "true"))), + new Component() + .type(ComponentType.GRIDCELL) + .name("gridCell2") + .properties( + new ComponentProperties() + .children( + Collections.singletonList( + new Component() + .name("table0") + .type( + ComponentType + .TABLE) + .properties( + new ComponentProperties() + .isVisible( + new ComponentPropertiesIsVisible( + true))))) + .isVisible( + new ComponentPropertiesIsVisible( + "true"))), + new Component() + .type(ComponentType.GRIDCELL) + .name("gridCell1") + .properties( + new ComponentProperties() + .children( + Collections.singletonList( + new Component() + .name("text1") + .type( + ComponentType + .TEXT) + .properties( + new ComponentProperties() + .isVisible( + new ComponentPropertiesIsVisible( + true))))) + .isVisible( + new ComponentPropertiesIsVisible( + "true"))), + new Component() + .type(ComponentType.GRIDCELL) + .name("gridCell3") + .properties( + new ComponentProperties() + .children( + Collections.singletonList( + new Component() + .name("button0") + .type( + ComponentType + .BUTTON) .properties( new ComponentProperties() .isVisible( new ComponentPropertiesIsVisible( true))) + .events( + Collections + .singletonList( + new AppBuilderEvent() + .name( + AppBuilderEventName + .CLICK) + .type( + AppBuilderEventType + .SETSTATEVARIABLEVALUE))))) + .isVisible( + new ComponentPropertiesIsVisible( + "true"))), + new Component() + .type(ComponentType.GRIDCELL) + .name("gridCell4") + .properties( + new ComponentProperties() + .children( + Collections.singletonList( + new Component() + .name("button1") .type( ComponentType - .CALLOUTVALUE))) + .BUTTON) + .properties( + new ComponentProperties() + .isVisible( + new ComponentPropertiesIsVisible( + true))) + .events( + Collections + .singletonList( + new AppBuilderEvent() + .name( + AppBuilderEventName + .CLICK) + .type( + AppBuilderEventType + .SETSTATEVARIABLEVALUE))))) .isVisible( new ComponentPropertiesIsVisible( - "true"))) - .type(ComponentType.GRIDCELL)))) - .type(ComponentGridType.GRID))) - .description("This is a simple example app") - .name("Example App") - .rootInstanceName("grid0")) - .type(AppDefinitionType.APPDEFINITIONS)); + "true"))))) + .backgroundColor("default")))) + .queries( + Arrays.asList( + new Query( + new ActionQuery() + .id( + UUID.fromString( + "92ff0bb8-553b-4f31-87c7-ef5bd16d47d5")) + .type(ActionQueryType.ACTION) + .name("fetchFacts") + .properties( + new ActionQueryProperties() + .spec( + new ActionQuerySpec( + new ActionQuerySpecObject() + .fqn("com.datadoghq.http.request") + .connectionId( + "5e63f4a8-4ce6-47de-ba11-f6617c1d54f3") + .inputs( + new ActionQuerySpecInputs( + Map.ofEntries( + Map.entry( + "verb", "GET"), + Map.entry( + "url", + "https://catfact.ninja/facts"), + Map.entry( + "urlParams", + "[{'key': 'limit'," + + " 'value':" + + " '${pageSize.value.toString()}'}," + + " {'key':" + + " 'page'," + + " 'value':" + + " '${(table0.pageIndex" + + " + 1).toString()}'}]")))))))), + new Query( + new StateVariable() + .type(StateVariableType.STATEVARIABLE) + .name("pageSize") + .properties( + new StateVariableProperties().defaultValue("${20}")) + .id( + UUID.fromString( + "afd03c81-4075-4432-8618-ba09d52d2f2d"))), + new Query( + new DataTransform() + .type(DataTransformType.DATATRANSFORM) + .name("randomFact") + .properties( + new DataTransformProperties() + .outputs( + """ +${(() => {const facts = fetchFacts.outputs.body.data +return facts[Math.floor(Math.random()*facts.length)] +})()} +""")) + .id( + UUID.fromString( + "0fb22859-47dc-4137-9e41-7b67d04c525c"))))) + .name("Example Cat Facts Viewer") + .description( + "This is a slightly complicated example app that fetches and" + + " displays cat facts"))); try { CreateAppResponse result = apiInstance.createApp(body); diff --git a/examples/v2/app-builder/DeleteApp.java b/examples/v2/app-builder/DeleteApp.java index 80213b9961e..c997dc96a77 100644 --- a/examples/v2/app-builder/DeleteApp.java +++ b/examples/v2/app-builder/DeleteApp.java @@ -9,7 +9,6 @@ public class Example { public static void main(String[] args) { ApiClient defaultClient = ApiClient.getDefaultApiClient(); - defaultClient.setUnstableOperationEnabled("v2.deleteApp", true); AppBuilderApi apiInstance = new AppBuilderApi(defaultClient); // there is a valid "app" in the system diff --git a/examples/v2/app-builder/DeleteApps.java b/examples/v2/app-builder/DeleteApps.java index 59b8e9bcf53..b241389ab6c 100644 --- a/examples/v2/app-builder/DeleteApps.java +++ b/examples/v2/app-builder/DeleteApps.java @@ -13,7 +13,6 @@ public class Example { public static void main(String[] args) { ApiClient defaultClient = ApiClient.getDefaultApiClient(); - defaultClient.setUnstableOperationEnabled("v2.deleteApps", true); AppBuilderApi apiInstance = new AppBuilderApi(defaultClient); // there is a valid "app" in the system diff --git a/examples/v2/app-builder/GetApp.java b/examples/v2/app-builder/GetApp.java index 9e247d0678d..2da4f42118a 100644 --- a/examples/v2/app-builder/GetApp.java +++ b/examples/v2/app-builder/GetApp.java @@ -9,7 +9,6 @@ public class Example { public static void main(String[] args) { ApiClient defaultClient = ApiClient.getDefaultApiClient(); - defaultClient.setUnstableOperationEnabled("v2.getApp", true); AppBuilderApi apiInstance = new AppBuilderApi(defaultClient); // there is a valid "app" in the system diff --git a/examples/v2/app-builder/ListApps.java b/examples/v2/app-builder/ListApps.java index 002bab09962..17e1621cff3 100644 --- a/examples/v2/app-builder/ListApps.java +++ b/examples/v2/app-builder/ListApps.java @@ -8,7 +8,6 @@ public class Example { public static void main(String[] args) { ApiClient defaultClient = ApiClient.getDefaultApiClient(); - defaultClient.setUnstableOperationEnabled("v2.listApps", true); AppBuilderApi apiInstance = new AppBuilderApi(defaultClient); try { diff --git a/examples/v2/app-builder/PublishApp.java b/examples/v2/app-builder/PublishApp.java index 6bf460fb57b..13197361897 100644 --- a/examples/v2/app-builder/PublishApp.java +++ b/examples/v2/app-builder/PublishApp.java @@ -9,7 +9,6 @@ public class Example { public static void main(String[] args) { ApiClient defaultClient = ApiClient.getDefaultApiClient(); - defaultClient.setUnstableOperationEnabled("v2.publishApp", true); AppBuilderApi apiInstance = new AppBuilderApi(defaultClient); // there is a valid "app" in the system diff --git a/examples/v2/app-builder/UnpublishApp.java b/examples/v2/app-builder/UnpublishApp.java index ac89ef8b4de..d7b9f57f11a 100644 --- a/examples/v2/app-builder/UnpublishApp.java +++ b/examples/v2/app-builder/UnpublishApp.java @@ -9,7 +9,6 @@ public class Example { public static void main(String[] args) { ApiClient defaultClient = ApiClient.getDefaultApiClient(); - defaultClient.setUnstableOperationEnabled("v2.unpublishApp", true); AppBuilderApi apiInstance = new AppBuilderApi(defaultClient); // there is a valid "app" in the system diff --git a/examples/v2/app-builder/UpdateApp.java b/examples/v2/app-builder/UpdateApp.java index e481f198235..6fd98b58a8c 100644 --- a/examples/v2/app-builder/UpdateApp.java +++ b/examples/v2/app-builder/UpdateApp.java @@ -13,7 +13,6 @@ public class Example { public static void main(String[] args) { ApiClient defaultClient = ApiClient.getDefaultApiClient(); - defaultClient.setUnstableOperationEnabled("v2.updateApp", true); AppBuilderApi apiInstance = new AppBuilderApi(defaultClient); // there is a valid "app" in the system diff --git a/src/main/java/com/datadog/api/client/ApiClient.java b/src/main/java/com/datadog/api/client/ApiClient.java index a88de2aff2f..b1aa831fe23 100644 --- a/src/main/java/com/datadog/api/client/ApiClient.java +++ b/src/main/java/com/datadog/api/client/ApiClient.java @@ -372,14 +372,6 @@ public class ApiClient { put("v2.getOpenAPI", false); put("v2.listAPIs", false); put("v2.updateOpenAPI", false); - put("v2.createApp", false); - put("v2.deleteApp", false); - put("v2.deleteApps", false); - put("v2.getApp", false); - put("v2.listApps", false); - put("v2.publishApp", false); - put("v2.unpublishApp", false); - put("v2.updateApp", false); put("v2.cancelDataDeletionRequest", false); put("v2.createDataDeletionRequest", false); put("v2.getDataDeletionRequests", false); diff --git a/src/main/java/com/datadog/api/client/v2/api/AppBuilderApi.java b/src/main/java/com/datadog/api/client/v2/api/AppBuilderApi.java index 601688d2004..12c8580090c 100644 --- a/src/main/java/com/datadog/api/client/v2/api/AppBuilderApi.java +++ b/src/main/java/com/datadog/api/client/v2/api/AppBuilderApi.java @@ -103,13 +103,6 @@ public CompletableFuture createAppAsync(CreateAppRequest body */ public ApiResponse createAppWithHttpInfo(CreateAppRequest body) throws ApiException { - // Check if unstable operation is enabled - String operationId = "createApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)); - } Object localVarPostBody = body; // verify the required parameter 'body' is set @@ -151,16 +144,6 @@ public ApiResponse createAppWithHttpInfo(CreateAppRequest bod */ public CompletableFuture> createAppWithHttpInfoAsync( CreateAppRequest body) { - // Check if unstable operation is enabled - String operationId = "createApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - CompletableFuture> result = new CompletableFuture<>(); - result.completeExceptionally( - new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId))); - return result; - } Object localVarPostBody = body; // verify the required parameter 'body' is set @@ -250,13 +233,6 @@ public CompletableFuture deleteAppAsync(UUID appId) { * */ public ApiResponse deleteAppWithHttpInfo(UUID appId) throws ApiException { - // Check if unstable operation is enabled - String operationId = "deleteApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)); - } Object localVarPostBody = null; // verify the required parameter 'appId' is set @@ -299,16 +275,6 @@ public ApiResponse deleteAppWithHttpInfo(UUID appId) throws A * @return CompletableFuture<ApiResponse<DeleteAppResponse>> */ public CompletableFuture> deleteAppWithHttpInfoAsync(UUID appId) { - // Check if unstable operation is enabled - String operationId = "deleteApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - CompletableFuture> result = new CompletableFuture<>(); - result.completeExceptionally( - new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId))); - return result; - } Object localVarPostBody = null; // verify the required parameter 'appId' is set @@ -400,13 +366,6 @@ public CompletableFuture deleteAppsAsync(DeleteAppsRequest b */ public ApiResponse deleteAppsWithHttpInfo(DeleteAppsRequest body) throws ApiException { - // Check if unstable operation is enabled - String operationId = "deleteApps"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)); - } Object localVarPostBody = body; // verify the required parameter 'body' is set @@ -448,16 +407,6 @@ public ApiResponse deleteAppsWithHttpInfo(DeleteAppsRequest */ public CompletableFuture> deleteAppsWithHttpInfoAsync( DeleteAppsRequest body) { - // Check if unstable operation is enabled - String operationId = "deleteApps"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - CompletableFuture> result = new CompletableFuture<>(); - result.completeExceptionally( - new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId))); - return result; - } Object localVarPostBody = body; // verify the required parameter 'body' is set @@ -595,18 +544,12 @@ public CompletableFuture getAppAsync( * 400 Bad Request - * 403 Forbidden - * 404 Not Found - + * 410 Gone - * 429 Too many requests - * */ public ApiResponse getAppWithHttpInfo( UUID appId, GetAppOptionalParameters parameters) throws ApiException { - // Check if unstable operation is enabled - String operationId = "getApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)); - } Object localVarPostBody = null; // verify the required parameter 'appId' is set @@ -655,16 +598,6 @@ public ApiResponse getAppWithHttpInfo( */ public CompletableFuture> getAppWithHttpInfoAsync( UUID appId, GetAppOptionalParameters parameters) { - // Check if unstable operation is enabled - String operationId = "getApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - CompletableFuture> result = new CompletableFuture<>(); - result.completeExceptionally( - new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId))); - return result; - } Object localVarPostBody = null; // verify the required parameter 'appId' is set @@ -924,13 +857,6 @@ public CompletableFuture listAppsAsync(ListAppsOptionalParamet */ public ApiResponse listAppsWithHttpInfo(ListAppsOptionalParameters parameters) throws ApiException { - // Check if unstable operation is enabled - String operationId = "listApps"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)); - } Object localVarPostBody = null; Long limit = parameters.limit; Long page = parameters.page; @@ -992,16 +918,6 @@ public ApiResponse listAppsWithHttpInfo(ListAppsOptionalParame */ public CompletableFuture> listAppsWithHttpInfoAsync( ListAppsOptionalParameters parameters) { - // Check if unstable operation is enabled - String operationId = "listApps"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - CompletableFuture> result = new CompletableFuture<>(); - result.completeExceptionally( - new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId))); - return result; - } Object localVarPostBody = null; Long limit = parameters.limit; Long page = parameters.page; @@ -1110,13 +1026,6 @@ public CompletableFuture publishAppAsync(UUID appId) { * */ public ApiResponse publishAppWithHttpInfo(UUID appId) throws ApiException { - // Check if unstable operation is enabled - String operationId = "publishApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)); - } Object localVarPostBody = null; // verify the required parameter 'appId' is set @@ -1160,16 +1069,6 @@ public ApiResponse publishAppWithHttpInfo(UUID appId) throws */ public CompletableFuture> publishAppWithHttpInfoAsync( UUID appId) { - // Check if unstable operation is enabled - String operationId = "publishApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - CompletableFuture> result = new CompletableFuture<>(); - result.completeExceptionally( - new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId))); - return result; - } Object localVarPostBody = null; // verify the required parameter 'appId' is set @@ -1264,13 +1163,6 @@ public CompletableFuture unpublishAppAsync(UUID appId) { */ public ApiResponse unpublishAppWithHttpInfo(UUID appId) throws ApiException { - // Check if unstable operation is enabled - String operationId = "unpublishApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)); - } Object localVarPostBody = null; // verify the required parameter 'appId' is set @@ -1315,16 +1207,6 @@ public ApiResponse unpublishAppWithHttpInfo(UUID appId) */ public CompletableFuture> unpublishAppWithHttpInfoAsync( UUID appId) { - // Check if unstable operation is enabled - String operationId = "unpublishApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - CompletableFuture> result = new CompletableFuture<>(); - result.completeExceptionally( - new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId))); - return result; - } Object localVarPostBody = null; // verify the required parameter 'appId' is set @@ -1419,13 +1301,6 @@ public CompletableFuture updateAppAsync(UUID appId, UpdateApp */ public ApiResponse updateAppWithHttpInfo(UUID appId, UpdateAppRequest body) throws ApiException { - // Check if unstable operation is enabled - String operationId = "updateApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - throw new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId)); - } Object localVarPostBody = body; // verify the required parameter 'appId' is set @@ -1475,16 +1350,6 @@ public ApiResponse updateAppWithHttpInfo(UUID appId, UpdateAp */ public CompletableFuture> updateAppWithHttpInfoAsync( UUID appId, UpdateAppRequest body) { - // Check if unstable operation is enabled - String operationId = "updateApp"; - if (apiClient.isUnstableOperationEnabled("v2." + operationId)) { - apiClient.getLogger().warning(String.format("Using unstable operation '%s'", operationId)); - } else { - CompletableFuture> result = new CompletableFuture<>(); - result.completeExceptionally( - new ApiException(0, String.format("Unstable operation '%s' is disabled", operationId))); - return result; - } Object localVarPostBody = body; // verify the required parameter 'appId' is set diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQuery.java b/src/main/java/com/datadog/api/client/v2/model/ActionQuery.java new file mode 100644 index 00000000000..926400b4ff4 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQuery.java @@ -0,0 +1,282 @@ +/* + * 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.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import java.util.UUID; + +/** + * An action query. This query type is used to trigger an action, such as sending a HTTP request. + */ +@JsonPropertyOrder({ + ActionQuery.JSON_PROPERTY_EVENTS, + ActionQuery.JSON_PROPERTY_ID, + ActionQuery.JSON_PROPERTY_NAME, + ActionQuery.JSON_PROPERTY_PROPERTIES, + ActionQuery.JSON_PROPERTY_TYPE +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class ActionQuery { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_EVENTS = "events"; + private List events = null; + + public static final String JSON_PROPERTY_ID = "id"; + private UUID id; + + public static final String JSON_PROPERTY_NAME = "name"; + private String name; + + public static final String JSON_PROPERTY_PROPERTIES = "properties"; + private ActionQueryProperties properties; + + public static final String JSON_PROPERTY_TYPE = "type"; + private ActionQueryType type = ActionQueryType.ACTION; + + public ActionQuery() {} + + @JsonCreator + public ActionQuery( + @JsonProperty(required = true, value = JSON_PROPERTY_ID) UUID id, + @JsonProperty(required = true, value = JSON_PROPERTY_NAME) String name, + @JsonProperty(required = true, value = JSON_PROPERTY_PROPERTIES) + ActionQueryProperties properties, + @JsonProperty(required = true, value = JSON_PROPERTY_TYPE) ActionQueryType type) { + this.id = id; + this.name = name; + this.properties = properties; + this.unparsed |= properties.unparsed; + this.type = type; + this.unparsed |= !type.isValid(); + } + + public ActionQuery events(List events) { + this.events = events; + for (AppBuilderEvent item : events) { + this.unparsed |= item.unparsed; + } + return this; + } + + public ActionQuery addEventsItem(AppBuilderEvent eventsItem) { + if (this.events == null) { + this.events = new ArrayList<>(); + } + this.events.add(eventsItem); + this.unparsed |= eventsItem.unparsed; + return this; + } + + /** + * Events to listen for downstream of the action query. + * + * @return events + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_EVENTS) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public List getEvents() { + return events; + } + + public void setEvents(List events) { + this.events = events; + } + + public ActionQuery id(UUID id) { + this.id = id; + return this; + } + + /** + * The ID of the action query. + * + * @return id + */ + @JsonProperty(JSON_PROPERTY_ID) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public UUID getId() { + return id; + } + + public void setId(UUID id) { + this.id = id; + } + + public ActionQuery name(String name) { + this.name = name; + return this; + } + + /** + * A unique identifier for this action query. This name is also used to access the query's result + * throughout the app. + * + * @return name + */ + @JsonProperty(JSON_PROPERTY_NAME) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public ActionQuery properties(ActionQueryProperties properties) { + this.properties = properties; + this.unparsed |= properties.unparsed; + return this; + } + + /** + * The properties of the action query. + * + * @return properties + */ + @JsonProperty(JSON_PROPERTY_PROPERTIES) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public ActionQueryProperties getProperties() { + return properties; + } + + public void setProperties(ActionQueryProperties properties) { + this.properties = properties; + } + + public ActionQuery type(ActionQueryType type) { + this.type = type; + this.unparsed |= !type.isValid(); + return this; + } + + /** + * The action query type. + * + * @return type + */ + @JsonProperty(JSON_PROPERTY_TYPE) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public ActionQueryType getType() { + return type; + } + + public void setType(ActionQueryType 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 ActionQuery + */ + @JsonAnySetter + public ActionQuery 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 ActionQuery object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ActionQuery actionQuery = (ActionQuery) o; + return Objects.equals(this.events, actionQuery.events) + && Objects.equals(this.id, actionQuery.id) + && Objects.equals(this.name, actionQuery.name) + && Objects.equals(this.properties, actionQuery.properties) + && Objects.equals(this.type, actionQuery.type) + && Objects.equals(this.additionalProperties, actionQuery.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(events, id, name, properties, type, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ActionQuery {\n"); + sb.append(" events: ").append(toIndentedString(events)).append("\n"); + sb.append(" id: ").append(toIndentedString(id)).append("\n"); + sb.append(" name: ").append(toIndentedString(name)).append("\n"); + sb.append(" properties: ").append(toIndentedString(properties)).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/ActionQueryCondition.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryCondition.java new file mode 100644 index 00000000000..835dadffb85 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryCondition.java @@ -0,0 +1,270 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize(using = ActionQueryCondition.ActionQueryConditionDeserializer.class) +@JsonSerialize(using = ActionQueryCondition.ActionQueryConditionSerializer.class) +public class ActionQueryCondition extends AbstractOpenApiSchema { + private static final Logger log = Logger.getLogger(ActionQueryCondition.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQueryConditionSerializer extends StdSerializer { + public ActionQueryConditionSerializer(Class t) { + super(t); + } + + public ActionQueryConditionSerializer() { + this(null); + } + + @Override + public void serialize( + ActionQueryCondition value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQueryConditionDeserializer + extends StdDeserializer { + public ActionQueryConditionDeserializer() { + this(ActionQueryCondition.class); + } + + public ActionQueryConditionDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQueryCondition deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize Boolean + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (Boolean.class.equals(Integer.class) + || Boolean.class.equals(Long.class) + || Boolean.class.equals(Float.class) + || Boolean.class.equals(Double.class) + || Boolean.class.equals(Boolean.class) + || Boolean.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((Boolean.class.equals(Integer.class) || Boolean.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((Boolean.class.equals(Float.class) || Boolean.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (Boolean.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (Boolean.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(Boolean.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'Boolean'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'Boolean'", e); + } + + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + ActionQueryCondition ret = new ActionQueryCondition(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQueryCondition getNullValue(DeserializationContext ctxt) + throws JsonMappingException { + throw new JsonMappingException(ctxt.getParser(), "ActionQueryCondition cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQueryCondition() { + super("oneOf", Boolean.FALSE); + } + + public ActionQueryCondition(Boolean o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQueryCondition(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("Boolean", new GenericType() {}); + schemas.put("String", new GenericType() {}); + JSON.registerDescendants(ActionQueryCondition.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQueryCondition.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: Boolean, String + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(Boolean.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException("Invalid instance type. Must be Boolean, String"); + } + + /** + * Get the actual instance, which can be the following: Boolean, String + * + * @return The actual instance (Boolean, String) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `Boolean`. If the actual instance is not `Boolean`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `Boolean` + * @throws ClassCastException if the instance is not `Boolean` + */ + public Boolean getBoolean() throws ClassCastException { + return (Boolean) super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQueryDebounceInMs.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryDebounceInMs.java new file mode 100644 index 00000000000..f931295f1a4 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryDebounceInMs.java @@ -0,0 +1,271 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize(using = ActionQueryDebounceInMs.ActionQueryDebounceInMsDeserializer.class) +@JsonSerialize(using = ActionQueryDebounceInMs.ActionQueryDebounceInMsSerializer.class) +public class ActionQueryDebounceInMs extends AbstractOpenApiSchema { + private static final Logger log = Logger.getLogger(ActionQueryDebounceInMs.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQueryDebounceInMsSerializer + extends StdSerializer { + public ActionQueryDebounceInMsSerializer(Class t) { + super(t); + } + + public ActionQueryDebounceInMsSerializer() { + this(null); + } + + @Override + public void serialize( + ActionQueryDebounceInMs value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQueryDebounceInMsDeserializer + extends StdDeserializer { + public ActionQueryDebounceInMsDeserializer() { + this(ActionQueryDebounceInMs.class); + } + + public ActionQueryDebounceInMsDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQueryDebounceInMs deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize Double + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (Double.class.equals(Integer.class) + || Double.class.equals(Long.class) + || Double.class.equals(Float.class) + || Double.class.equals(Double.class) + || Double.class.equals(Boolean.class) + || Double.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((Double.class.equals(Integer.class) || Double.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((Double.class.equals(Float.class) || Double.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (Double.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (Double.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(Double.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'Double'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'Double'", e); + } + + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + ActionQueryDebounceInMs ret = new ActionQueryDebounceInMs(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQueryDebounceInMs getNullValue(DeserializationContext ctxt) + throws JsonMappingException { + throw new JsonMappingException(ctxt.getParser(), "ActionQueryDebounceInMs cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQueryDebounceInMs() { + super("oneOf", Boolean.FALSE); + } + + public ActionQueryDebounceInMs(Double o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQueryDebounceInMs(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("Double", new GenericType() {}); + schemas.put("String", new GenericType() {}); + JSON.registerDescendants(ActionQueryDebounceInMs.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQueryDebounceInMs.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: Double, String + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(Double.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException("Invalid instance type. Must be Double, String"); + } + + /** + * Get the actual instance, which can be the following: Double, String + * + * @return The actual instance (Double, String) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `Double`. If the actual instance is not `Double`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `Double` + * @throws ClassCastException if the instance is not `Double` + */ + public Double getDouble() throws ClassCastException { + return (Double) super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQueryMockedOutputs.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryMockedOutputs.java new file mode 100644 index 00000000000..20b33f6d266 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryMockedOutputs.java @@ -0,0 +1,280 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize(using = ActionQueryMockedOutputs.ActionQueryMockedOutputsDeserializer.class) +@JsonSerialize(using = ActionQueryMockedOutputs.ActionQueryMockedOutputsSerializer.class) +public class ActionQueryMockedOutputs extends AbstractOpenApiSchema { + private static final Logger log = Logger.getLogger(ActionQueryMockedOutputs.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQueryMockedOutputsSerializer + extends StdSerializer { + public ActionQueryMockedOutputsSerializer(Class t) { + super(t); + } + + public ActionQueryMockedOutputsSerializer() { + this(null); + } + + @Override + public void serialize( + ActionQueryMockedOutputs value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQueryMockedOutputsDeserializer + extends StdDeserializer { + public ActionQueryMockedOutputsDeserializer() { + this(ActionQueryMockedOutputs.class); + } + + public ActionQueryMockedOutputsDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQueryMockedOutputs deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + // deserialize ActionQueryMockedOutputsObject + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (ActionQueryMockedOutputsObject.class.equals(Integer.class) + || ActionQueryMockedOutputsObject.class.equals(Long.class) + || ActionQueryMockedOutputsObject.class.equals(Float.class) + || ActionQueryMockedOutputsObject.class.equals(Double.class) + || ActionQueryMockedOutputsObject.class.equals(Boolean.class) + || ActionQueryMockedOutputsObject.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((ActionQueryMockedOutputsObject.class.equals(Integer.class) + || ActionQueryMockedOutputsObject.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((ActionQueryMockedOutputsObject.class.equals(Float.class) + || ActionQueryMockedOutputsObject.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (ActionQueryMockedOutputsObject.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (ActionQueryMockedOutputsObject.class.equals(String.class) + && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(ActionQueryMockedOutputsObject.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + if (!((ActionQueryMockedOutputsObject) tmp).unparsed) { + deserialized = tmp; + match++; + } + log.log(Level.FINER, "Input data matches schema 'ActionQueryMockedOutputsObject'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log( + Level.FINER, "Input data does not match schema 'ActionQueryMockedOutputsObject'", e); + } + + ActionQueryMockedOutputs ret = new ActionQueryMockedOutputs(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQueryMockedOutputs getNullValue(DeserializationContext ctxt) + throws JsonMappingException { + throw new JsonMappingException(ctxt.getParser(), "ActionQueryMockedOutputs cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQueryMockedOutputs() { + super("oneOf", Boolean.FALSE); + } + + public ActionQueryMockedOutputs(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQueryMockedOutputs(ActionQueryMockedOutputsObject o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("String", new GenericType() {}); + schemas.put( + "ActionQueryMockedOutputsObject", new GenericType() {}); + JSON.registerDescendants(ActionQueryMockedOutputs.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQueryMockedOutputs.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: String, ActionQueryMockedOutputsObject + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf( + ActionQueryMockedOutputsObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException( + "Invalid instance type. Must be String, ActionQueryMockedOutputsObject"); + } + + /** + * Get the actual instance, which can be the following: String, ActionQueryMockedOutputsObject + * + * @return The actual instance (String, ActionQueryMockedOutputsObject) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } + + /** + * Get the actual instance of `ActionQueryMockedOutputsObject`. If the actual instance is not + * `ActionQueryMockedOutputsObject`, the ClassCastException will be thrown. + * + * @return The actual instance of `ActionQueryMockedOutputsObject` + * @throws ClassCastException if the instance is not `ActionQueryMockedOutputsObject` + */ + public ActionQueryMockedOutputsObject getActionQueryMockedOutputsObject() + throws ClassCastException { + return (ActionQueryMockedOutputsObject) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQueryMockedOutputsEnabled.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryMockedOutputsEnabled.java new file mode 100644 index 00000000000..88aec59b9a0 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryMockedOutputsEnabled.java @@ -0,0 +1,276 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize( + using = ActionQueryMockedOutputsEnabled.ActionQueryMockedOutputsEnabledDeserializer.class) +@JsonSerialize( + using = ActionQueryMockedOutputsEnabled.ActionQueryMockedOutputsEnabledSerializer.class) +public class ActionQueryMockedOutputsEnabled extends AbstractOpenApiSchema { + private static final Logger log = + Logger.getLogger(ActionQueryMockedOutputsEnabled.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQueryMockedOutputsEnabledSerializer + extends StdSerializer { + public ActionQueryMockedOutputsEnabledSerializer(Class t) { + super(t); + } + + public ActionQueryMockedOutputsEnabledSerializer() { + this(null); + } + + @Override + public void serialize( + ActionQueryMockedOutputsEnabled value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQueryMockedOutputsEnabledDeserializer + extends StdDeserializer { + public ActionQueryMockedOutputsEnabledDeserializer() { + this(ActionQueryMockedOutputsEnabled.class); + } + + public ActionQueryMockedOutputsEnabledDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQueryMockedOutputsEnabled deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize Boolean + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (Boolean.class.equals(Integer.class) + || Boolean.class.equals(Long.class) + || Boolean.class.equals(Float.class) + || Boolean.class.equals(Double.class) + || Boolean.class.equals(Boolean.class) + || Boolean.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((Boolean.class.equals(Integer.class) || Boolean.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((Boolean.class.equals(Float.class) || Boolean.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (Boolean.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (Boolean.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(Boolean.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'Boolean'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'Boolean'", e); + } + + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + ActionQueryMockedOutputsEnabled ret = new ActionQueryMockedOutputsEnabled(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQueryMockedOutputsEnabled getNullValue(DeserializationContext ctxt) + throws JsonMappingException { + throw new JsonMappingException( + ctxt.getParser(), "ActionQueryMockedOutputsEnabled cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQueryMockedOutputsEnabled() { + super("oneOf", Boolean.FALSE); + } + + public ActionQueryMockedOutputsEnabled(Boolean o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQueryMockedOutputsEnabled(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("Boolean", new GenericType() {}); + schemas.put("String", new GenericType() {}); + JSON.registerDescendants( + ActionQueryMockedOutputsEnabled.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQueryMockedOutputsEnabled.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: Boolean, String + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(Boolean.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException("Invalid instance type. Must be Boolean, String"); + } + + /** + * Get the actual instance, which can be the following: Boolean, String + * + * @return The actual instance (Boolean, String) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `Boolean`. If the actual instance is not `Boolean`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `Boolean` + * @throws ClassCastException if the instance is not `Boolean` + */ + public Boolean getBoolean() throws ClassCastException { + return (Boolean) super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQueryMockedOutputsObject.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryMockedOutputsObject.java new file mode 100644 index 00000000000..69564840e00 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryMockedOutputsObject.java @@ -0,0 +1,177 @@ +/* + * 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; + +/** The mocked outputs of the action query. */ +@JsonPropertyOrder({ + ActionQueryMockedOutputsObject.JSON_PROPERTY_ENABLED, + ActionQueryMockedOutputsObject.JSON_PROPERTY_OUTPUTS +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class ActionQueryMockedOutputsObject { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_ENABLED = "enabled"; + private ActionQueryMockedOutputsEnabled enabled; + + public static final String JSON_PROPERTY_OUTPUTS = "outputs"; + private String outputs; + + public ActionQueryMockedOutputsObject() {} + + @JsonCreator + public ActionQueryMockedOutputsObject( + @JsonProperty(required = true, value = JSON_PROPERTY_ENABLED) + ActionQueryMockedOutputsEnabled enabled) { + this.enabled = enabled; + this.unparsed |= enabled.unparsed; + } + + public ActionQueryMockedOutputsObject enabled(ActionQueryMockedOutputsEnabled enabled) { + this.enabled = enabled; + this.unparsed |= enabled.unparsed; + return this; + } + + /** + * Whether to enable the mocked outputs for testing. + * + * @return enabled + */ + @JsonProperty(JSON_PROPERTY_ENABLED) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public ActionQueryMockedOutputsEnabled getEnabled() { + return enabled; + } + + public void setEnabled(ActionQueryMockedOutputsEnabled enabled) { + this.enabled = enabled; + } + + public ActionQueryMockedOutputsObject outputs(String outputs) { + this.outputs = outputs; + return this; + } + + /** + * The mocked outputs of the action query, serialized as JSON. + * + * @return outputs + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_OUTPUTS) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public String getOutputs() { + return outputs; + } + + public void setOutputs(String outputs) { + this.outputs = outputs; + } + + /** + * 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 ActionQueryMockedOutputsObject + */ + @JsonAnySetter + public ActionQueryMockedOutputsObject 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 ActionQueryMockedOutputsObject object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ActionQueryMockedOutputsObject actionQueryMockedOutputsObject = + (ActionQueryMockedOutputsObject) o; + return Objects.equals(this.enabled, actionQueryMockedOutputsObject.enabled) + && Objects.equals(this.outputs, actionQueryMockedOutputsObject.outputs) + && Objects.equals( + this.additionalProperties, actionQueryMockedOutputsObject.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(enabled, outputs, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ActionQueryMockedOutputsObject {\n"); + sb.append(" enabled: ").append(toIndentedString(enabled)).append("\n"); + sb.append(" outputs: ").append(toIndentedString(outputs)).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/ActionQueryOnlyTriggerManually.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryOnlyTriggerManually.java new file mode 100644 index 00000000000..c0d4619a469 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryOnlyTriggerManually.java @@ -0,0 +1,276 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize( + using = ActionQueryOnlyTriggerManually.ActionQueryOnlyTriggerManuallyDeserializer.class) +@JsonSerialize( + using = ActionQueryOnlyTriggerManually.ActionQueryOnlyTriggerManuallySerializer.class) +public class ActionQueryOnlyTriggerManually extends AbstractOpenApiSchema { + private static final Logger log = + Logger.getLogger(ActionQueryOnlyTriggerManually.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQueryOnlyTriggerManuallySerializer + extends StdSerializer { + public ActionQueryOnlyTriggerManuallySerializer(Class t) { + super(t); + } + + public ActionQueryOnlyTriggerManuallySerializer() { + this(null); + } + + @Override + public void serialize( + ActionQueryOnlyTriggerManually value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQueryOnlyTriggerManuallyDeserializer + extends StdDeserializer { + public ActionQueryOnlyTriggerManuallyDeserializer() { + this(ActionQueryOnlyTriggerManually.class); + } + + public ActionQueryOnlyTriggerManuallyDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQueryOnlyTriggerManually deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize Boolean + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (Boolean.class.equals(Integer.class) + || Boolean.class.equals(Long.class) + || Boolean.class.equals(Float.class) + || Boolean.class.equals(Double.class) + || Boolean.class.equals(Boolean.class) + || Boolean.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((Boolean.class.equals(Integer.class) || Boolean.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((Boolean.class.equals(Float.class) || Boolean.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (Boolean.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (Boolean.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(Boolean.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'Boolean'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'Boolean'", e); + } + + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + ActionQueryOnlyTriggerManually ret = new ActionQueryOnlyTriggerManually(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQueryOnlyTriggerManually getNullValue(DeserializationContext ctxt) + throws JsonMappingException { + throw new JsonMappingException( + ctxt.getParser(), "ActionQueryOnlyTriggerManually cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQueryOnlyTriggerManually() { + super("oneOf", Boolean.FALSE); + } + + public ActionQueryOnlyTriggerManually(Boolean o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQueryOnlyTriggerManually(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("Boolean", new GenericType() {}); + schemas.put("String", new GenericType() {}); + JSON.registerDescendants( + ActionQueryOnlyTriggerManually.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQueryOnlyTriggerManually.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: Boolean, String + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(Boolean.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException("Invalid instance type. Must be Boolean, String"); + } + + /** + * Get the actual instance, which can be the following: Boolean, String + * + * @return The actual instance (Boolean, String) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `Boolean`. If the actual instance is not `Boolean`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `Boolean` + * @throws ClassCastException if the instance is not `Boolean` + */ + public Boolean getBoolean() throws ClassCastException { + return (Boolean) super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQueryPollingIntervalInMs.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryPollingIntervalInMs.java new file mode 100644 index 00000000000..4b86f8b7175 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryPollingIntervalInMs.java @@ -0,0 +1,276 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize( + using = ActionQueryPollingIntervalInMs.ActionQueryPollingIntervalInMsDeserializer.class) +@JsonSerialize( + using = ActionQueryPollingIntervalInMs.ActionQueryPollingIntervalInMsSerializer.class) +public class ActionQueryPollingIntervalInMs extends AbstractOpenApiSchema { + private static final Logger log = + Logger.getLogger(ActionQueryPollingIntervalInMs.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQueryPollingIntervalInMsSerializer + extends StdSerializer { + public ActionQueryPollingIntervalInMsSerializer(Class t) { + super(t); + } + + public ActionQueryPollingIntervalInMsSerializer() { + this(null); + } + + @Override + public void serialize( + ActionQueryPollingIntervalInMs value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQueryPollingIntervalInMsDeserializer + extends StdDeserializer { + public ActionQueryPollingIntervalInMsDeserializer() { + this(ActionQueryPollingIntervalInMs.class); + } + + public ActionQueryPollingIntervalInMsDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQueryPollingIntervalInMs deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize Double + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (Double.class.equals(Integer.class) + || Double.class.equals(Long.class) + || Double.class.equals(Float.class) + || Double.class.equals(Double.class) + || Double.class.equals(Boolean.class) + || Double.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((Double.class.equals(Integer.class) || Double.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((Double.class.equals(Float.class) || Double.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (Double.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (Double.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(Double.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'Double'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'Double'", e); + } + + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + ActionQueryPollingIntervalInMs ret = new ActionQueryPollingIntervalInMs(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQueryPollingIntervalInMs getNullValue(DeserializationContext ctxt) + throws JsonMappingException { + throw new JsonMappingException( + ctxt.getParser(), "ActionQueryPollingIntervalInMs cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQueryPollingIntervalInMs() { + super("oneOf", Boolean.FALSE); + } + + public ActionQueryPollingIntervalInMs(Double o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQueryPollingIntervalInMs(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("Double", new GenericType() {}); + schemas.put("String", new GenericType() {}); + JSON.registerDescendants( + ActionQueryPollingIntervalInMs.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQueryPollingIntervalInMs.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: Double, String + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(Double.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException("Invalid instance type. Must be Double, String"); + } + + /** + * Get the actual instance, which can be the following: Double, String + * + * @return The actual instance (Double, String) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `Double`. If the actual instance is not `Double`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `Double` + * @throws ClassCastException if the instance is not `Double` + */ + public Double getDouble() throws ClassCastException { + return (Double) super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQueryProperties.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryProperties.java new file mode 100644 index 00000000000..6c86b8371cc --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryProperties.java @@ -0,0 +1,397 @@ +/* + * 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; + +/** The properties of the action query. */ +@JsonPropertyOrder({ + ActionQueryProperties.JSON_PROPERTY_CONDITION, + ActionQueryProperties.JSON_PROPERTY_DEBOUNCE_IN_MS, + ActionQueryProperties.JSON_PROPERTY_MOCKED_OUTPUTS, + ActionQueryProperties.JSON_PROPERTY_ONLY_TRIGGER_MANUALLY, + ActionQueryProperties.JSON_PROPERTY_OUTPUTS, + ActionQueryProperties.JSON_PROPERTY_POLLING_INTERVAL_IN_MS, + ActionQueryProperties.JSON_PROPERTY_REQUIRES_CONFIRMATION, + ActionQueryProperties.JSON_PROPERTY_SHOW_TOAST_ON_ERROR, + ActionQueryProperties.JSON_PROPERTY_SPEC +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class ActionQueryProperties { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_CONDITION = "condition"; + private ActionQueryCondition condition; + + public static final String JSON_PROPERTY_DEBOUNCE_IN_MS = "debounceInMs"; + private ActionQueryDebounceInMs debounceInMs; + + public static final String JSON_PROPERTY_MOCKED_OUTPUTS = "mockedOutputs"; + private ActionQueryMockedOutputs mockedOutputs; + + public static final String JSON_PROPERTY_ONLY_TRIGGER_MANUALLY = "onlyTriggerManually"; + private ActionQueryOnlyTriggerManually onlyTriggerManually; + + public static final String JSON_PROPERTY_OUTPUTS = "outputs"; + private String outputs; + + public static final String JSON_PROPERTY_POLLING_INTERVAL_IN_MS = "pollingIntervalInMs"; + private ActionQueryPollingIntervalInMs pollingIntervalInMs; + + public static final String JSON_PROPERTY_REQUIRES_CONFIRMATION = "requiresConfirmation"; + private ActionQueryRequiresConfirmation requiresConfirmation; + + public static final String JSON_PROPERTY_SHOW_TOAST_ON_ERROR = "showToastOnError"; + private ActionQueryShowToastOnError showToastOnError; + + public static final String JSON_PROPERTY_SPEC = "spec"; + private ActionQuerySpec spec; + + public ActionQueryProperties() {} + + @JsonCreator + public ActionQueryProperties( + @JsonProperty(required = true, value = JSON_PROPERTY_SPEC) ActionQuerySpec spec) { + this.spec = spec; + this.unparsed |= spec.unparsed; + } + + public ActionQueryProperties condition(ActionQueryCondition condition) { + this.condition = condition; + this.unparsed |= condition.unparsed; + return this; + } + + /** + * Whether to run this query. If specified, the query will only run if this condition evaluates to + * true in JavaScript and all other conditions are also met. + * + * @return condition + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_CONDITION) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public ActionQueryCondition getCondition() { + return condition; + } + + public void setCondition(ActionQueryCondition condition) { + this.condition = condition; + } + + public ActionQueryProperties debounceInMs(ActionQueryDebounceInMs debounceInMs) { + this.debounceInMs = debounceInMs; + this.unparsed |= debounceInMs.unparsed; + return this; + } + + /** + * The minimum time in milliseconds that must pass before the query can be triggered again. This + * is useful for preventing accidental double-clicks from triggering the query multiple times. + * + * @return debounceInMs + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_DEBOUNCE_IN_MS) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public ActionQueryDebounceInMs getDebounceInMs() { + return debounceInMs; + } + + public void setDebounceInMs(ActionQueryDebounceInMs debounceInMs) { + this.debounceInMs = debounceInMs; + } + + public ActionQueryProperties mockedOutputs(ActionQueryMockedOutputs mockedOutputs) { + this.mockedOutputs = mockedOutputs; + this.unparsed |= mockedOutputs.unparsed; + return this; + } + + /** + * The mocked outputs of the action query. This is useful for testing the app without actually + * running the action. + * + * @return mockedOutputs + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_MOCKED_OUTPUTS) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public ActionQueryMockedOutputs getMockedOutputs() { + return mockedOutputs; + } + + public void setMockedOutputs(ActionQueryMockedOutputs mockedOutputs) { + this.mockedOutputs = mockedOutputs; + } + + public ActionQueryProperties onlyTriggerManually( + ActionQueryOnlyTriggerManually onlyTriggerManually) { + this.onlyTriggerManually = onlyTriggerManually; + this.unparsed |= onlyTriggerManually.unparsed; + return this; + } + + /** + * Determines when this query is executed. If set to false, the query will run when + * the app loads and whenever any query arguments change. If set to true, the query + * will only run when manually triggered from elsewhere in the app. + * + * @return onlyTriggerManually + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_ONLY_TRIGGER_MANUALLY) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public ActionQueryOnlyTriggerManually getOnlyTriggerManually() { + return onlyTriggerManually; + } + + public void setOnlyTriggerManually(ActionQueryOnlyTriggerManually onlyTriggerManually) { + this.onlyTriggerManually = onlyTriggerManually; + } + + public ActionQueryProperties outputs(String outputs) { + this.outputs = outputs; + return this; + } + + /** + * The post-query transformation function, which is a JavaScript function that changes the query's + * .outputs property after the query's execution. + * + * @return outputs + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_OUTPUTS) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public String getOutputs() { + return outputs; + } + + public void setOutputs(String outputs) { + this.outputs = outputs; + } + + public ActionQueryProperties pollingIntervalInMs( + ActionQueryPollingIntervalInMs pollingIntervalInMs) { + this.pollingIntervalInMs = pollingIntervalInMs; + this.unparsed |= pollingIntervalInMs.unparsed; + return this; + } + + /** + * If specified, the app will poll the query at the specified interval in milliseconds. The + * minimum polling interval is 15 seconds. The query will only poll when the app's browser tab is + * active. + * + * @return pollingIntervalInMs + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_POLLING_INTERVAL_IN_MS) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public ActionQueryPollingIntervalInMs getPollingIntervalInMs() { + return pollingIntervalInMs; + } + + public void setPollingIntervalInMs(ActionQueryPollingIntervalInMs pollingIntervalInMs) { + this.pollingIntervalInMs = pollingIntervalInMs; + } + + public ActionQueryProperties requiresConfirmation( + ActionQueryRequiresConfirmation requiresConfirmation) { + this.requiresConfirmation = requiresConfirmation; + this.unparsed |= requiresConfirmation.unparsed; + return this; + } + + /** + * Whether to prompt the user to confirm this query before it runs. + * + * @return requiresConfirmation + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_REQUIRES_CONFIRMATION) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public ActionQueryRequiresConfirmation getRequiresConfirmation() { + return requiresConfirmation; + } + + public void setRequiresConfirmation(ActionQueryRequiresConfirmation requiresConfirmation) { + this.requiresConfirmation = requiresConfirmation; + } + + public ActionQueryProperties showToastOnError(ActionQueryShowToastOnError showToastOnError) { + this.showToastOnError = showToastOnError; + this.unparsed |= showToastOnError.unparsed; + return this; + } + + /** + * Whether to display a toast to the user when the query returns an error. + * + * @return showToastOnError + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_SHOW_TOAST_ON_ERROR) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public ActionQueryShowToastOnError getShowToastOnError() { + return showToastOnError; + } + + public void setShowToastOnError(ActionQueryShowToastOnError showToastOnError) { + this.showToastOnError = showToastOnError; + } + + public ActionQueryProperties spec(ActionQuerySpec spec) { + this.spec = spec; + this.unparsed |= spec.unparsed; + return this; + } + + /** + * The definition of the action query. + * + * @return spec + */ + @JsonProperty(JSON_PROPERTY_SPEC) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public ActionQuerySpec getSpec() { + return spec; + } + + public void setSpec(ActionQuerySpec spec) { + this.spec = spec; + } + + /** + * 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 ActionQueryProperties + */ + @JsonAnySetter + public ActionQueryProperties 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 ActionQueryProperties object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ActionQueryProperties actionQueryProperties = (ActionQueryProperties) o; + return Objects.equals(this.condition, actionQueryProperties.condition) + && Objects.equals(this.debounceInMs, actionQueryProperties.debounceInMs) + && Objects.equals(this.mockedOutputs, actionQueryProperties.mockedOutputs) + && Objects.equals(this.onlyTriggerManually, actionQueryProperties.onlyTriggerManually) + && Objects.equals(this.outputs, actionQueryProperties.outputs) + && Objects.equals(this.pollingIntervalInMs, actionQueryProperties.pollingIntervalInMs) + && Objects.equals(this.requiresConfirmation, actionQueryProperties.requiresConfirmation) + && Objects.equals(this.showToastOnError, actionQueryProperties.showToastOnError) + && Objects.equals(this.spec, actionQueryProperties.spec) + && Objects.equals(this.additionalProperties, actionQueryProperties.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash( + condition, + debounceInMs, + mockedOutputs, + onlyTriggerManually, + outputs, + pollingIntervalInMs, + requiresConfirmation, + showToastOnError, + spec, + additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ActionQueryProperties {\n"); + sb.append(" condition: ").append(toIndentedString(condition)).append("\n"); + sb.append(" debounceInMs: ").append(toIndentedString(debounceInMs)).append("\n"); + sb.append(" mockedOutputs: ").append(toIndentedString(mockedOutputs)).append("\n"); + sb.append(" onlyTriggerManually: ") + .append(toIndentedString(onlyTriggerManually)) + .append("\n"); + sb.append(" outputs: ").append(toIndentedString(outputs)).append("\n"); + sb.append(" pollingIntervalInMs: ") + .append(toIndentedString(pollingIntervalInMs)) + .append("\n"); + sb.append(" requiresConfirmation: ") + .append(toIndentedString(requiresConfirmation)) + .append("\n"); + sb.append(" showToastOnError: ").append(toIndentedString(showToastOnError)).append("\n"); + sb.append(" spec: ").append(toIndentedString(spec)).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/ActionQueryRequiresConfirmation.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryRequiresConfirmation.java new file mode 100644 index 00000000000..ff5fd027c98 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryRequiresConfirmation.java @@ -0,0 +1,276 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize( + using = ActionQueryRequiresConfirmation.ActionQueryRequiresConfirmationDeserializer.class) +@JsonSerialize( + using = ActionQueryRequiresConfirmation.ActionQueryRequiresConfirmationSerializer.class) +public class ActionQueryRequiresConfirmation extends AbstractOpenApiSchema { + private static final Logger log = + Logger.getLogger(ActionQueryRequiresConfirmation.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQueryRequiresConfirmationSerializer + extends StdSerializer { + public ActionQueryRequiresConfirmationSerializer(Class t) { + super(t); + } + + public ActionQueryRequiresConfirmationSerializer() { + this(null); + } + + @Override + public void serialize( + ActionQueryRequiresConfirmation value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQueryRequiresConfirmationDeserializer + extends StdDeserializer { + public ActionQueryRequiresConfirmationDeserializer() { + this(ActionQueryRequiresConfirmation.class); + } + + public ActionQueryRequiresConfirmationDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQueryRequiresConfirmation deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize Boolean + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (Boolean.class.equals(Integer.class) + || Boolean.class.equals(Long.class) + || Boolean.class.equals(Float.class) + || Boolean.class.equals(Double.class) + || Boolean.class.equals(Boolean.class) + || Boolean.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((Boolean.class.equals(Integer.class) || Boolean.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((Boolean.class.equals(Float.class) || Boolean.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (Boolean.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (Boolean.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(Boolean.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'Boolean'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'Boolean'", e); + } + + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + ActionQueryRequiresConfirmation ret = new ActionQueryRequiresConfirmation(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQueryRequiresConfirmation getNullValue(DeserializationContext ctxt) + throws JsonMappingException { + throw new JsonMappingException( + ctxt.getParser(), "ActionQueryRequiresConfirmation cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQueryRequiresConfirmation() { + super("oneOf", Boolean.FALSE); + } + + public ActionQueryRequiresConfirmation(Boolean o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQueryRequiresConfirmation(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("Boolean", new GenericType() {}); + schemas.put("String", new GenericType() {}); + JSON.registerDescendants( + ActionQueryRequiresConfirmation.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQueryRequiresConfirmation.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: Boolean, String + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(Boolean.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException("Invalid instance type. Must be Boolean, String"); + } + + /** + * Get the actual instance, which can be the following: Boolean, String + * + * @return The actual instance (Boolean, String) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `Boolean`. If the actual instance is not `Boolean`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `Boolean` + * @throws ClassCastException if the instance is not `Boolean` + */ + public Boolean getBoolean() throws ClassCastException { + return (Boolean) super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQueryShowToastOnError.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryShowToastOnError.java new file mode 100644 index 00000000000..47ae51ec5fa --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryShowToastOnError.java @@ -0,0 +1,273 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize(using = ActionQueryShowToastOnError.ActionQueryShowToastOnErrorDeserializer.class) +@JsonSerialize(using = ActionQueryShowToastOnError.ActionQueryShowToastOnErrorSerializer.class) +public class ActionQueryShowToastOnError extends AbstractOpenApiSchema { + private static final Logger log = Logger.getLogger(ActionQueryShowToastOnError.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQueryShowToastOnErrorSerializer + extends StdSerializer { + public ActionQueryShowToastOnErrorSerializer(Class t) { + super(t); + } + + public ActionQueryShowToastOnErrorSerializer() { + this(null); + } + + @Override + public void serialize( + ActionQueryShowToastOnError value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQueryShowToastOnErrorDeserializer + extends StdDeserializer { + public ActionQueryShowToastOnErrorDeserializer() { + this(ActionQueryShowToastOnError.class); + } + + public ActionQueryShowToastOnErrorDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQueryShowToastOnError deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize Boolean + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (Boolean.class.equals(Integer.class) + || Boolean.class.equals(Long.class) + || Boolean.class.equals(Float.class) + || Boolean.class.equals(Double.class) + || Boolean.class.equals(Boolean.class) + || Boolean.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((Boolean.class.equals(Integer.class) || Boolean.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((Boolean.class.equals(Float.class) || Boolean.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (Boolean.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (Boolean.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(Boolean.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'Boolean'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'Boolean'", e); + } + + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + ActionQueryShowToastOnError ret = new ActionQueryShowToastOnError(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQueryShowToastOnError getNullValue(DeserializationContext ctxt) + throws JsonMappingException { + throw new JsonMappingException( + ctxt.getParser(), "ActionQueryShowToastOnError cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQueryShowToastOnError() { + super("oneOf", Boolean.FALSE); + } + + public ActionQueryShowToastOnError(Boolean o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQueryShowToastOnError(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("Boolean", new GenericType() {}); + schemas.put("String", new GenericType() {}); + JSON.registerDescendants( + ActionQueryShowToastOnError.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQueryShowToastOnError.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: Boolean, String + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(Boolean.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException("Invalid instance type. Must be Boolean, String"); + } + + /** + * Get the actual instance, which can be the following: Boolean, String + * + * @return The actual instance (Boolean, String) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `Boolean`. If the actual instance is not `Boolean`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `Boolean` + * @throws ClassCastException if the instance is not `Boolean` + */ + public Boolean getBoolean() throws ClassCastException { + return (Boolean) super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpec.java b/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpec.java new file mode 100644 index 00000000000..36b10852c90 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpec.java @@ -0,0 +1,271 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize(using = ActionQuerySpec.ActionQuerySpecDeserializer.class) +@JsonSerialize(using = ActionQuerySpec.ActionQuerySpecSerializer.class) +public class ActionQuerySpec extends AbstractOpenApiSchema { + private static final Logger log = Logger.getLogger(ActionQuerySpec.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQuerySpecSerializer extends StdSerializer { + public ActionQuerySpecSerializer(Class t) { + super(t); + } + + public ActionQuerySpecSerializer() { + this(null); + } + + @Override + public void serialize(ActionQuerySpec value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQuerySpecDeserializer extends StdDeserializer { + public ActionQuerySpecDeserializer() { + this(ActionQuerySpec.class); + } + + public ActionQuerySpecDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQuerySpec deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + // deserialize ActionQuerySpecObject + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (ActionQuerySpecObject.class.equals(Integer.class) + || ActionQuerySpecObject.class.equals(Long.class) + || ActionQuerySpecObject.class.equals(Float.class) + || ActionQuerySpecObject.class.equals(Double.class) + || ActionQuerySpecObject.class.equals(Boolean.class) + || ActionQuerySpecObject.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((ActionQuerySpecObject.class.equals(Integer.class) + || ActionQuerySpecObject.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((ActionQuerySpecObject.class.equals(Float.class) + || ActionQuerySpecObject.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (ActionQuerySpecObject.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (ActionQuerySpecObject.class.equals(String.class) + && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(ActionQuerySpecObject.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + if (!((ActionQuerySpecObject) tmp).unparsed) { + deserialized = tmp; + match++; + } + log.log(Level.FINER, "Input data matches schema 'ActionQuerySpecObject'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'ActionQuerySpecObject'", e); + } + + ActionQuerySpec ret = new ActionQuerySpec(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQuerySpec getNullValue(DeserializationContext ctxt) throws JsonMappingException { + throw new JsonMappingException(ctxt.getParser(), "ActionQuerySpec cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQuerySpec() { + super("oneOf", Boolean.FALSE); + } + + public ActionQuerySpec(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQuerySpec(ActionQuerySpecObject o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("String", new GenericType() {}); + schemas.put("ActionQuerySpecObject", new GenericType() {}); + JSON.registerDescendants(ActionQuerySpec.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQuerySpec.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: String, ActionQuerySpecObject + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(ActionQuerySpecObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException("Invalid instance type. Must be String, ActionQuerySpecObject"); + } + + /** + * Get the actual instance, which can be the following: String, ActionQuerySpecObject + * + * @return The actual instance (String, ActionQuerySpecObject) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } + + /** + * Get the actual instance of `ActionQuerySpecObject`. If the actual instance is not + * `ActionQuerySpecObject`, the ClassCastException will be thrown. + * + * @return The actual instance of `ActionQuerySpecObject` + * @throws ClassCastException if the instance is not `ActionQuerySpecObject` + */ + public ActionQuerySpecObject getActionQuerySpecObject() throws ClassCastException { + return (ActionQuerySpecObject) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpecConnectionGroup.java b/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpecConnectionGroup.java new file mode 100644 index 00000000000..00b55491e3f --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpecConnectionGroup.java @@ -0,0 +1,177 @@ +/* + * 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; +import java.util.UUID; + +/** The connection group to use for an action query. */ +@JsonPropertyOrder({ + ActionQuerySpecConnectionGroup.JSON_PROPERTY_ID, + ActionQuerySpecConnectionGroup.JSON_PROPERTY_TAGS +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class ActionQuerySpecConnectionGroup { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_ID = "id"; + private UUID id; + + public static final String JSON_PROPERTY_TAGS = "tags"; + private List tags = null; + + public ActionQuerySpecConnectionGroup id(UUID id) { + this.id = id; + return this; + } + + /** + * The ID of the connection group. + * + * @return id + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_ID) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public UUID getId() { + return id; + } + + public void setId(UUID id) { + this.id = id; + } + + public ActionQuerySpecConnectionGroup tags(List tags) { + this.tags = tags; + return this; + } + + public ActionQuerySpecConnectionGroup addTagsItem(String tagsItem) { + if (this.tags == null) { + this.tags = new ArrayList<>(); + } + this.tags.add(tagsItem); + return this; + } + + /** + * The tags of the connection group. + * + * @return tags + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_TAGS) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public List getTags() { + return tags; + } + + public void setTags(List tags) { + this.tags = tags; + } + + /** + * 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 ActionQuerySpecConnectionGroup + */ + @JsonAnySetter + public ActionQuerySpecConnectionGroup 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 ActionQuerySpecConnectionGroup object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ActionQuerySpecConnectionGroup actionQuerySpecConnectionGroup = + (ActionQuerySpecConnectionGroup) o; + return Objects.equals(this.id, actionQuerySpecConnectionGroup.id) + && Objects.equals(this.tags, actionQuerySpecConnectionGroup.tags) + && Objects.equals( + this.additionalProperties, actionQuerySpecConnectionGroup.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(id, tags, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ActionQuerySpecConnectionGroup {\n"); + sb.append(" id: ").append(toIndentedString(id)).append("\n"); + sb.append(" tags: ").append(toIndentedString(tags)).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/ActionQuerySpecInputs.java b/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpecInputs.java new file mode 100644 index 00000000000..cd6f2139962 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpecInputs.java @@ -0,0 +1,269 @@ +/* + * 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.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; +import com.fasterxml.jackson.annotation.JsonIgnore; +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.logging.Level; +import java.util.logging.Logger; + +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +@JsonDeserialize(using = ActionQuerySpecInputs.ActionQuerySpecInputsDeserializer.class) +@JsonSerialize(using = ActionQuerySpecInputs.ActionQuerySpecInputsSerializer.class) +public class ActionQuerySpecInputs extends AbstractOpenApiSchema { + private static final Logger log = Logger.getLogger(ActionQuerySpecInputs.class.getName()); + + @JsonIgnore public boolean unparsed = false; + + public static class ActionQuerySpecInputsSerializer extends StdSerializer { + public ActionQuerySpecInputsSerializer(Class t) { + super(t); + } + + public ActionQuerySpecInputsSerializer() { + this(null); + } + + @Override + public void serialize( + ActionQuerySpecInputs value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); + } + } + + public static class ActionQuerySpecInputsDeserializer + extends StdDeserializer { + public ActionQuerySpecInputsDeserializer() { + this(ActionQuerySpecInputs.class); + } + + public ActionQuerySpecInputsDeserializer(Class vc) { + super(vc); + } + + @Override + public ActionQuerySpecInputs deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize String + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (String.class.equals(Integer.class) + || String.class.equals(Long.class) + || String.class.equals(Float.class) + || String.class.equals(Double.class) + || String.class.equals(Boolean.class) + || String.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((String.class.equals(Integer.class) || String.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((String.class.equals(Float.class) || String.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (String.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (String.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(String.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'String'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'String'", e); + } + + // deserialize Map + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (Map.class.equals(Integer.class) + || Map.class.equals(Long.class) + || Map.class.equals(Float.class) + || Map.class.equals(Double.class) + || Map.class.equals(Boolean.class) + || Map.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((Map.class.equals(Integer.class) || Map.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((Map.class.equals(Float.class) || Map.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (Map.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= (Map.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(Map.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + deserialized = tmp; + match++; + + log.log(Level.FINER, "Input data matches schema 'Map'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'Map'", e); + } + + ActionQuerySpecInputs ret = new ActionQuerySpecInputs(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } + + /** Handle deserialization of the 'null' value. */ + @Override + public ActionQuerySpecInputs getNullValue(DeserializationContext ctxt) + throws JsonMappingException { + throw new JsonMappingException(ctxt.getParser(), "ActionQuerySpecInputs cannot be null"); + } + } + + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); + + public ActionQuerySpecInputs() { + super("oneOf", Boolean.FALSE); + } + + public ActionQuerySpecInputs(String o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + public ActionQuerySpecInputs(Map o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); + } + + static { + schemas.put("String", new GenericType() {}); + schemas.put("Map", new GenericType>() {}); + JSON.registerDescendants(ActionQuerySpecInputs.class, Collections.unmodifiableMap(schemas)); + } + + @Override + public Map getSchemas() { + return ActionQuerySpecInputs.schemas; + } + + /** + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: String, Map<String, Object> + * + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). + */ + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(String.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(Map.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + throw new RuntimeException("Invalid instance type. Must be String, Map"); + } + + /** + * Get the actual instance, which can be the following: String, Map<String, Object> + * + * @return The actual instance (String, Map<String, Object>) + */ + @Override + public Object getActualInstance() { + return super.getActualInstance(); + } + + /** + * Get the actual instance of `String`. If the actual instance is not `String`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `String` + * @throws ClassCastException if the instance is not `String` + */ + public String getString() throws ClassCastException { + return (String) super.getActualInstance(); + } + + /** + * Get the actual instance of `Map<String, Object>`. If the actual instance is not + * `Map<String, Object>`, the ClassCastException will be thrown. + * + * @return The actual instance of `Map<String, Object>` + * @throws ClassCastException if the instance is not `Map<String, Object>` + */ + public Map getMap() throws ClassCastException { + return (Map) super.getActualInstance(); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpecObject.java b/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpecObject.java new file mode 100644 index 00000000000..24654ab9be5 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQuerySpecObject.java @@ -0,0 +1,229 @@ +/* + * 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; + +/** The action query spec object. */ +@JsonPropertyOrder({ + ActionQuerySpecObject.JSON_PROPERTY_CONNECTION_GROUP, + ActionQuerySpecObject.JSON_PROPERTY_CONNECTION_ID, + ActionQuerySpecObject.JSON_PROPERTY_FQN, + ActionQuerySpecObject.JSON_PROPERTY_INPUTS +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class ActionQuerySpecObject { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_CONNECTION_GROUP = "connectionGroup"; + private ActionQuerySpecConnectionGroup connectionGroup; + + public static final String JSON_PROPERTY_CONNECTION_ID = "connectionId"; + private String connectionId; + + public static final String JSON_PROPERTY_FQN = "fqn"; + private String fqn; + + public static final String JSON_PROPERTY_INPUTS = "inputs"; + private ActionQuerySpecInputs inputs; + + public ActionQuerySpecObject() {} + + @JsonCreator + public ActionQuerySpecObject( + @JsonProperty(required = true, value = JSON_PROPERTY_FQN) String fqn) { + this.fqn = fqn; + } + + public ActionQuerySpecObject connectionGroup(ActionQuerySpecConnectionGroup connectionGroup) { + this.connectionGroup = connectionGroup; + this.unparsed |= connectionGroup.unparsed; + return this; + } + + /** + * The connection group to use for an action query. + * + * @return connectionGroup + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_CONNECTION_GROUP) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public ActionQuerySpecConnectionGroup getConnectionGroup() { + return connectionGroup; + } + + public void setConnectionGroup(ActionQuerySpecConnectionGroup connectionGroup) { + this.connectionGroup = connectionGroup; + } + + public ActionQuerySpecObject connectionId(String connectionId) { + this.connectionId = connectionId; + return this; + } + + /** + * The ID of the custom connection to use for this action query. + * + * @return connectionId + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_CONNECTION_ID) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public String getConnectionId() { + return connectionId; + } + + public void setConnectionId(String connectionId) { + this.connectionId = connectionId; + } + + public ActionQuerySpecObject fqn(String fqn) { + this.fqn = fqn; + return this; + } + + /** + * The fully qualified name of the action type. + * + * @return fqn + */ + @JsonProperty(JSON_PROPERTY_FQN) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getFqn() { + return fqn; + } + + public void setFqn(String fqn) { + this.fqn = fqn; + } + + public ActionQuerySpecObject inputs(ActionQuerySpecInputs inputs) { + this.inputs = inputs; + this.unparsed |= inputs.unparsed; + return this; + } + + /** + * The inputs to the action query. These are the values that are passed to the action when it is + * triggered. + * + * @return inputs + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_INPUTS) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public ActionQuerySpecInputs getInputs() { + return inputs; + } + + public void setInputs(ActionQuerySpecInputs inputs) { + this.inputs = inputs; + } + + /** + * 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 ActionQuerySpecObject + */ + @JsonAnySetter + public ActionQuerySpecObject 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 ActionQuerySpecObject object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + ActionQuerySpecObject actionQuerySpecObject = (ActionQuerySpecObject) o; + return Objects.equals(this.connectionGroup, actionQuerySpecObject.connectionGroup) + && Objects.equals(this.connectionId, actionQuerySpecObject.connectionId) + && Objects.equals(this.fqn, actionQuerySpecObject.fqn) + && Objects.equals(this.inputs, actionQuerySpecObject.inputs) + && Objects.equals(this.additionalProperties, actionQuerySpecObject.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(connectionGroup, connectionId, fqn, inputs, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class ActionQuerySpecObject {\n"); + sb.append(" connectionGroup: ").append(toIndentedString(connectionGroup)).append("\n"); + sb.append(" connectionId: ").append(toIndentedString(connectionId)).append("\n"); + sb.append(" fqn: ").append(toIndentedString(fqn)).append("\n"); + sb.append(" inputs: ").append(toIndentedString(inputs)).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/ActionQueryType.java b/src/main/java/com/datadog/api/client/v2/model/ActionQueryType.java new file mode 100644 index 00000000000..909c8271f07 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/ActionQueryType.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; + +/** The action query type. */ +@JsonSerialize(using = ActionQueryType.ActionQueryTypeSerializer.class) +public class ActionQueryType extends ModelEnum { + + private static final Set allowedValues = new HashSet(Arrays.asList("action")); + + public static final ActionQueryType ACTION = new ActionQueryType("action"); + + ActionQueryType(String value) { + super(value, allowedValues); + } + + public static class ActionQueryTypeSerializer extends StdSerializer { + public ActionQueryTypeSerializer(Class t) { + super(t); + } + + public ActionQueryTypeSerializer() { + this(null); + } + + @Override + public void serialize(ActionQueryType value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.value); + } + } + + @JsonCreator + public static ActionQueryType fromValue(String value) { + return new ActionQueryType(value); + } +} diff --git a/src/main/java/com/datadog/api/client/v2/model/DataTransform.java b/src/main/java/com/datadog/api/client/v2/model/DataTransform.java new file mode 100644 index 00000000000..35f48c54aeb --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/DataTransform.java @@ -0,0 +1,242 @@ +/* + * 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; +import java.util.UUID; + +/** + * A data transformer, which is custom JavaScript code that executes and transforms data when its + * inputs change. + */ +@JsonPropertyOrder({ + DataTransform.JSON_PROPERTY_ID, + DataTransform.JSON_PROPERTY_NAME, + DataTransform.JSON_PROPERTY_PROPERTIES, + DataTransform.JSON_PROPERTY_TYPE +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class DataTransform { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_ID = "id"; + private UUID id; + + public static final String JSON_PROPERTY_NAME = "name"; + private String name; + + public static final String JSON_PROPERTY_PROPERTIES = "properties"; + private DataTransformProperties properties; + + public static final String JSON_PROPERTY_TYPE = "type"; + private DataTransformType type = DataTransformType.DATATRANSFORM; + + public DataTransform() {} + + @JsonCreator + public DataTransform( + @JsonProperty(required = true, value = JSON_PROPERTY_ID) UUID id, + @JsonProperty(required = true, value = JSON_PROPERTY_NAME) String name, + @JsonProperty(required = true, value = JSON_PROPERTY_PROPERTIES) + DataTransformProperties properties, + @JsonProperty(required = true, value = JSON_PROPERTY_TYPE) DataTransformType type) { + this.id = id; + this.name = name; + this.properties = properties; + this.unparsed |= properties.unparsed; + this.type = type; + this.unparsed |= !type.isValid(); + } + + public DataTransform id(UUID id) { + this.id = id; + return this; + } + + /** + * The ID of the data transformer. + * + * @return id + */ + @JsonProperty(JSON_PROPERTY_ID) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public UUID getId() { + return id; + } + + public void setId(UUID id) { + this.id = id; + } + + public DataTransform name(String name) { + this.name = name; + return this; + } + + /** + * A unique identifier for this data transformer. This name is also used to access the + * transformer's result throughout the app. + * + * @return name + */ + @JsonProperty(JSON_PROPERTY_NAME) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public DataTransform properties(DataTransformProperties properties) { + this.properties = properties; + this.unparsed |= properties.unparsed; + return this; + } + + /** + * The properties of the data transformer. + * + * @return properties + */ + @JsonProperty(JSON_PROPERTY_PROPERTIES) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public DataTransformProperties getProperties() { + return properties; + } + + public void setProperties(DataTransformProperties properties) { + this.properties = properties; + } + + public DataTransform type(DataTransformType type) { + this.type = type; + this.unparsed |= !type.isValid(); + return this; + } + + /** + * The data transform type. + * + * @return type + */ + @JsonProperty(JSON_PROPERTY_TYPE) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public DataTransformType getType() { + return type; + } + + public void setType(DataTransformType 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 DataTransform + */ + @JsonAnySetter + public DataTransform 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 DataTransform object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + DataTransform dataTransform = (DataTransform) o; + return Objects.equals(this.id, dataTransform.id) + && Objects.equals(this.name, dataTransform.name) + && Objects.equals(this.properties, dataTransform.properties) + && Objects.equals(this.type, dataTransform.type) + && Objects.equals(this.additionalProperties, dataTransform.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(id, name, properties, type, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DataTransform {\n"); + sb.append(" id: ").append(toIndentedString(id)).append("\n"); + sb.append(" name: ").append(toIndentedString(name)).append("\n"); + sb.append(" properties: ").append(toIndentedString(properties)).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/DataTransformProperties.java b/src/main/java/com/datadog/api/client/v2/model/DataTransformProperties.java new file mode 100644 index 00000000000..56d9a5fb329 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/DataTransformProperties.java @@ -0,0 +1,135 @@ +/* + * 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; + +/** The properties of the data transformer. */ +@JsonPropertyOrder({DataTransformProperties.JSON_PROPERTY_OUTPUTS}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class DataTransformProperties { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_OUTPUTS = "outputs"; + private String outputs; + + public DataTransformProperties outputs(String outputs) { + this.outputs = outputs; + return this; + } + + /** + * A JavaScript function that returns the transformed data. + * + * @return outputs + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_OUTPUTS) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public String getOutputs() { + return outputs; + } + + public void setOutputs(String outputs) { + this.outputs = outputs; + } + + /** + * 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 DataTransformProperties + */ + @JsonAnySetter + public DataTransformProperties 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 DataTransformProperties object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + DataTransformProperties dataTransformProperties = (DataTransformProperties) o; + return Objects.equals(this.outputs, dataTransformProperties.outputs) + && Objects.equals(this.additionalProperties, dataTransformProperties.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(outputs, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DataTransformProperties {\n"); + sb.append(" outputs: ").append(toIndentedString(outputs)).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/QueryType.java b/src/main/java/com/datadog/api/client/v2/model/DataTransformType.java similarity index 56% rename from src/main/java/com/datadog/api/client/v2/model/QueryType.java rename to src/main/java/com/datadog/api/client/v2/model/DataTransformType.java index f65d14040f6..75bc72db800 100644 --- a/src/main/java/com/datadog/api/client/v2/model/QueryType.java +++ b/src/main/java/com/datadog/api/client/v2/model/DataTransformType.java @@ -18,39 +18,37 @@ import java.util.HashSet; import java.util.Set; -/** The query type. */ -@JsonSerialize(using = QueryType.QueryTypeSerializer.class) -public class QueryType extends ModelEnum { +/** The data transform type. */ +@JsonSerialize(using = DataTransformType.DataTransformTypeSerializer.class) +public class DataTransformType extends ModelEnum { private static final Set allowedValues = - new HashSet(Arrays.asList("action", "stateVariable", "dataTransform")); + new HashSet(Arrays.asList("dataTransform")); - public static final QueryType ACTION = new QueryType("action"); - public static final QueryType STATEVARIABLE = new QueryType("stateVariable"); - public static final QueryType DATATRANSFORM = new QueryType("dataTransform"); + public static final DataTransformType DATATRANSFORM = new DataTransformType("dataTransform"); - QueryType(String value) { + DataTransformType(String value) { super(value, allowedValues); } - public static class QueryTypeSerializer extends StdSerializer { - public QueryTypeSerializer(Class t) { + public static class DataTransformTypeSerializer extends StdSerializer { + public DataTransformTypeSerializer(Class t) { super(t); } - public QueryTypeSerializer() { + public DataTransformTypeSerializer() { this(null); } @Override - public void serialize(QueryType value, JsonGenerator jgen, SerializerProvider provider) + public void serialize(DataTransformType value, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException { jgen.writeObject(value.value); } } @JsonCreator - public static QueryType fromValue(String value) { - return new QueryType(value); + public static DataTransformType fromValue(String value) { + return new DataTransformType(value); } } diff --git a/src/main/java/com/datadog/api/client/v2/model/Query.java b/src/main/java/com/datadog/api/client/v2/model/Query.java index 1ceaaf36728..10f290dc96a 100644 --- a/src/main/java/com/datadog/api/client/v2/model/Query.java +++ b/src/main/java/com/datadog/api/client/v2/model/Query.java @@ -6,273 +6,332 @@ 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.datadog.api.client.AbstractOpenApiSchema; +import com.datadog.api.client.JSON; +import com.datadog.api.client.UnparsedObject; 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 com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.core.JsonToken; +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonMappingException; +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import com.fasterxml.jackson.databind.deser.std.StdDeserializer; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import jakarta.ws.rs.core.GenericType; +import java.io.IOException; +import java.util.Collections; import java.util.HashMap; -import java.util.List; +import java.util.HashSet; import java.util.Map; -import java.util.Objects; -import java.util.UUID; +import java.util.logging.Level; +import java.util.logging.Logger; -/** - * A query used by an app. This can take the form of an external action, a data transformation, or a - * state variable change. - */ -@JsonPropertyOrder({ - Query.JSON_PROPERTY_EVENTS, - Query.JSON_PROPERTY_ID, - Query.JSON_PROPERTY_NAME, - Query.JSON_PROPERTY_PROPERTIES, - Query.JSON_PROPERTY_TYPE -}) @jakarta.annotation.Generated( value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") -public class Query { - @JsonIgnore public boolean unparsed = false; - public static final String JSON_PROPERTY_EVENTS = "events"; - private List events = null; - - public static final String JSON_PROPERTY_ID = "id"; - private UUID id; - - public static final String JSON_PROPERTY_NAME = "name"; - private String name; +@JsonDeserialize(using = Query.QueryDeserializer.class) +@JsonSerialize(using = Query.QuerySerializer.class) +public class Query extends AbstractOpenApiSchema { + private static final Logger log = Logger.getLogger(Query.class.getName()); - public static final String JSON_PROPERTY_PROPERTIES = "properties"; - private Object properties = null; - - public static final String JSON_PROPERTY_TYPE = "type"; - private QueryType type; + @JsonIgnore public boolean unparsed = false; - public Query() {} + public static class QuerySerializer extends StdSerializer { + public QuerySerializer(Class t) { + super(t); + } - @JsonCreator - public Query( - @JsonProperty(required = true, value = JSON_PROPERTY_ID) UUID id, - @JsonProperty(required = true, value = JSON_PROPERTY_NAME) String name, - @JsonProperty(required = true, value = JSON_PROPERTY_TYPE) QueryType type) { - this.id = id; - this.name = name; - this.type = type; - this.unparsed |= !type.isValid(); - } + public QuerySerializer() { + this(null); + } - public Query events(List events) { - this.events = events; - for (AppBuilderEvent item : events) { - this.unparsed |= item.unparsed; + @Override + public void serialize(Query value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.getActualInstance()); } - return this; } - public Query addEventsItem(AppBuilderEvent eventsItem) { - if (this.events == null) { - this.events = new ArrayList<>(); + public static class QueryDeserializer extends StdDeserializer { + public QueryDeserializer() { + this(Query.class); } - this.events.add(eventsItem); - this.unparsed |= eventsItem.unparsed; - return this; - } - /** - * Events to listen for downstream of the query. - * - * @return events - */ - @jakarta.annotation.Nullable - @JsonProperty(JSON_PROPERTY_EVENTS) - @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public List getEvents() { - return events; - } + public QueryDeserializer(Class vc) { + super(vc); + } - public void setEvents(List events) { - this.events = events; - } + @Override + public Query deserialize(JsonParser jp, DeserializationContext ctxt) + throws IOException, JsonProcessingException { + JsonNode tree = jp.readValueAsTree(); + Object deserialized = null; + Object tmp = null; + boolean typeCoercion = ctxt.isEnabled(MapperFeature.ALLOW_COERCION_OF_SCALARS); + int match = 0; + JsonToken token = tree.traverse(jp.getCodec()).nextToken(); + // deserialize ActionQuery + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (ActionQuery.class.equals(Integer.class) + || ActionQuery.class.equals(Long.class) + || ActionQuery.class.equals(Float.class) + || ActionQuery.class.equals(Double.class) + || ActionQuery.class.equals(Boolean.class) + || ActionQuery.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((ActionQuery.class.equals(Integer.class) || ActionQuery.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((ActionQuery.class.equals(Float.class) || ActionQuery.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (ActionQuery.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (ActionQuery.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(ActionQuery.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + if (!((ActionQuery) tmp).unparsed) { + deserialized = tmp; + match++; + } + log.log(Level.FINER, "Input data matches schema 'ActionQuery'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'ActionQuery'", e); + } + + // deserialize DataTransform + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (DataTransform.class.equals(Integer.class) + || DataTransform.class.equals(Long.class) + || DataTransform.class.equals(Float.class) + || DataTransform.class.equals(Double.class) + || DataTransform.class.equals(Boolean.class) + || DataTransform.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((DataTransform.class.equals(Integer.class) + || DataTransform.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((DataTransform.class.equals(Float.class) + || DataTransform.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (DataTransform.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (DataTransform.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(DataTransform.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + if (!((DataTransform) tmp).unparsed) { + deserialized = tmp; + match++; + } + log.log(Level.FINER, "Input data matches schema 'DataTransform'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'DataTransform'", e); + } + + // deserialize StateVariable + try { + boolean attemptParsing = true; + // ensure that we respect type coercion as set on the client ObjectMapper + if (StateVariable.class.equals(Integer.class) + || StateVariable.class.equals(Long.class) + || StateVariable.class.equals(Float.class) + || StateVariable.class.equals(Double.class) + || StateVariable.class.equals(Boolean.class) + || StateVariable.class.equals(String.class)) { + attemptParsing = typeCoercion; + if (!attemptParsing) { + attemptParsing |= + ((StateVariable.class.equals(Integer.class) + || StateVariable.class.equals(Long.class)) + && token == JsonToken.VALUE_NUMBER_INT); + attemptParsing |= + ((StateVariable.class.equals(Float.class) + || StateVariable.class.equals(Double.class)) + && (token == JsonToken.VALUE_NUMBER_FLOAT + || token == JsonToken.VALUE_NUMBER_INT)); + attemptParsing |= + (StateVariable.class.equals(Boolean.class) + && (token == JsonToken.VALUE_FALSE || token == JsonToken.VALUE_TRUE)); + attemptParsing |= + (StateVariable.class.equals(String.class) && token == JsonToken.VALUE_STRING); + } + } + if (attemptParsing) { + tmp = tree.traverse(jp.getCodec()).readValueAs(StateVariable.class); + // TODO: there is no validation against JSON schema constraints + // (min, max, enum, pattern...), this does not perform a strict JSON + // validation, which means the 'match' count may be higher than it should be. + if (!((StateVariable) tmp).unparsed) { + deserialized = tmp; + match++; + } + log.log(Level.FINER, "Input data matches schema 'StateVariable'"); + } + } catch (Exception e) { + // deserialization failed, continue + log.log(Level.FINER, "Input data does not match schema 'StateVariable'", e); + } + + Query ret = new Query(); + if (match == 1) { + ret.setActualInstance(deserialized); + } else { + Map res = + new ObjectMapper() + .readValue( + tree.traverse(jp.getCodec()).readValueAsTree().toString(), + new TypeReference>() {}); + ret.setActualInstance(new UnparsedObject(res)); + } + return ret; + } - public Query id(UUID id) { - this.id = id; - return this; + /** Handle deserialization of the 'null' value. */ + @Override + public Query getNullValue(DeserializationContext ctxt) throws JsonMappingException { + throw new JsonMappingException(ctxt.getParser(), "Query cannot be null"); + } } - /** - * The ID of the query. - * - * @return id - */ - @JsonProperty(JSON_PROPERTY_ID) - @JsonInclude(value = JsonInclude.Include.ALWAYS) - public UUID getId() { - return id; - } + // store a list of schema names defined in oneOf + public static final Map schemas = new HashMap(); - public void setId(UUID id) { - this.id = id; + public Query() { + super("oneOf", Boolean.FALSE); } - public Query name(String name) { - this.name = name; - return this; + public Query(ActionQuery o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); } - /** - * The name of the query. The name must be unique within the app and is visible in the app editor. - * - * @return name - */ - @JsonProperty(JSON_PROPERTY_NAME) - @JsonInclude(value = JsonInclude.Include.ALWAYS) - public String getName() { - return name; + public Query(DataTransform o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); } - public void setName(String name) { - this.name = name; + public Query(StateVariable o) { + super("oneOf", Boolean.FALSE); + setActualInstance(o); } - public Query properties(Object properties) { - this.properties = properties; - return this; + static { + schemas.put("ActionQuery", new GenericType() {}); + schemas.put("DataTransform", new GenericType() {}); + schemas.put("StateVariable", new GenericType() {}); + JSON.registerDescendants(Query.class, Collections.unmodifiableMap(schemas)); } - /** - * The properties of the query. The properties vary depending on the query type. - * - * @return properties - */ - @jakarta.annotation.Nullable - @JsonProperty(JSON_PROPERTY_PROPERTIES) - @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) - public Object getProperties() { - return properties; - } - - public void setProperties(Object properties) { - this.properties = properties; - } - - public Query type(QueryType type) { - this.type = type; - this.unparsed |= !type.isValid(); - return this; + @Override + public Map getSchemas() { + return Query.schemas; } /** - * The query type. + * Set the instance that matches the oneOf child schema, check the instance parameter is valid + * against the oneOf child schemas: ActionQuery, DataTransform, StateVariable * - * @return type + *

It could be an instance of the 'oneOf' schemas. The oneOf child schemas may themselves be a + * composed schema (allOf, anyOf, oneOf). */ - @JsonProperty(JSON_PROPERTY_TYPE) - @JsonInclude(value = JsonInclude.Include.ALWAYS) - public QueryType getType() { - return type; - } + @Override + public void setActualInstance(Object instance) { + if (JSON.isInstanceOf(ActionQuery.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(DataTransform.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } + if (JSON.isInstanceOf(StateVariable.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; + } - public void setType(QueryType type) { - if (!type.isValid()) { - this.unparsed = true; + if (JSON.isInstanceOf(UnparsedObject.class, instance, new HashSet>())) { + super.setActualInstance(instance); + return; } - this.type = type; + throw new RuntimeException( + "Invalid instance type. Must be ActionQuery, DataTransform, StateVariable"); } /** - * 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. + * Get the actual instance, which can be the following: ActionQuery, DataTransform, StateVariable * - * @param key The arbitrary key to set - * @param value The associated value - * @return Query + * @return The actual instance (ActionQuery, DataTransform, StateVariable) */ - @JsonAnySetter - public Query putAdditionalProperty(String key, Object value) { - if (this.additionalProperties == null) { - this.additionalProperties = new HashMap(); - } - this.additionalProperties.put(key, value); - return this; + @Override + public Object getActualInstance() { + return super.getActualInstance(); } /** - * Return the additional (undeclared) property. + * Get the actual instance of `ActionQuery`. If the actual instance is not `ActionQuery`, the + * ClassCastException will be thrown. * - * @return The additional properties + * @return The actual instance of `ActionQuery` + * @throws ClassCastException if the instance is not `ActionQuery` */ - @JsonAnyGetter - public Map getAdditionalProperties() { - return additionalProperties; + public ActionQuery getActionQuery() throws ClassCastException { + return (ActionQuery) super.getActualInstance(); } /** - * Return the additional (undeclared) property with the specified name. + * Get the actual instance of `DataTransform`. If the actual instance is not `DataTransform`, the + * ClassCastException will be thrown. * - * @param key The arbitrary key to get - * @return The specific additional property for the given key + * @return The actual instance of `DataTransform` + * @throws ClassCastException if the instance is not `DataTransform` */ - public Object getAdditionalProperty(String key) { - if (this.additionalProperties == null) { - return null; - } - return this.additionalProperties.get(key); - } - - /** Return true if this Query object is equal to o. */ - @Override - public boolean equals(Object o) { - if (this == o) { - return true; - } - if (o == null || getClass() != o.getClass()) { - return false; - } - Query query = (Query) o; - return Objects.equals(this.events, query.events) - && Objects.equals(this.id, query.id) - && Objects.equals(this.name, query.name) - && Objects.equals(this.properties, query.properties) - && Objects.equals(this.type, query.type) - && Objects.equals(this.additionalProperties, query.additionalProperties); - } - - @Override - public int hashCode() { - return Objects.hash(events, id, name, properties, type, additionalProperties); - } - - @Override - public String toString() { - StringBuilder sb = new StringBuilder(); - sb.append("class Query {\n"); - sb.append(" events: ").append(toIndentedString(events)).append("\n"); - sb.append(" id: ").append(toIndentedString(id)).append("\n"); - sb.append(" name: ").append(toIndentedString(name)).append("\n"); - sb.append(" properties: ").append(toIndentedString(properties)).append("\n"); - sb.append(" type: ").append(toIndentedString(type)).append("\n"); - sb.append(" additionalProperties: ") - .append(toIndentedString(additionalProperties)) - .append("\n"); - sb.append('}'); - return sb.toString(); + public DataTransform getDataTransform() throws ClassCastException { + return (DataTransform) super.getActualInstance(); } /** - * Convert the given object to string with each line indented by 4 spaces (except the first line). + * Get the actual instance of `StateVariable`. If the actual instance is not `StateVariable`, the + * ClassCastException will be thrown. + * + * @return The actual instance of `StateVariable` + * @throws ClassCastException if the instance is not `StateVariable` */ - private String toIndentedString(Object o) { - if (o == null) { - return "null"; - } - return o.toString().replace("\n", "\n "); + public StateVariable getStateVariable() throws ClassCastException { + return (StateVariable) super.getActualInstance(); } } diff --git a/src/main/java/com/datadog/api/client/v2/model/StateVariable.java b/src/main/java/com/datadog/api/client/v2/model/StateVariable.java new file mode 100644 index 00000000000..5e95166356d --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/StateVariable.java @@ -0,0 +1,239 @@ +/* + * 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; +import java.util.UUID; + +/** A variable, which can be set and read by other components in the app. */ +@JsonPropertyOrder({ + StateVariable.JSON_PROPERTY_ID, + StateVariable.JSON_PROPERTY_NAME, + StateVariable.JSON_PROPERTY_PROPERTIES, + StateVariable.JSON_PROPERTY_TYPE +}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class StateVariable { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_ID = "id"; + private UUID id; + + public static final String JSON_PROPERTY_NAME = "name"; + private String name; + + public static final String JSON_PROPERTY_PROPERTIES = "properties"; + private StateVariableProperties properties; + + public static final String JSON_PROPERTY_TYPE = "type"; + private StateVariableType type = StateVariableType.STATEVARIABLE; + + public StateVariable() {} + + @JsonCreator + public StateVariable( + @JsonProperty(required = true, value = JSON_PROPERTY_ID) UUID id, + @JsonProperty(required = true, value = JSON_PROPERTY_NAME) String name, + @JsonProperty(required = true, value = JSON_PROPERTY_PROPERTIES) + StateVariableProperties properties, + @JsonProperty(required = true, value = JSON_PROPERTY_TYPE) StateVariableType type) { + this.id = id; + this.name = name; + this.properties = properties; + this.unparsed |= properties.unparsed; + this.type = type; + this.unparsed |= !type.isValid(); + } + + public StateVariable id(UUID id) { + this.id = id; + return this; + } + + /** + * The ID of the state variable. + * + * @return id + */ + @JsonProperty(JSON_PROPERTY_ID) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public UUID getId() { + return id; + } + + public void setId(UUID id) { + this.id = id; + } + + public StateVariable name(String name) { + this.name = name; + return this; + } + + /** + * A unique identifier for this state variable. This name is also used to access the variable's + * value throughout the app. + * + * @return name + */ + @JsonProperty(JSON_PROPERTY_NAME) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public StateVariable properties(StateVariableProperties properties) { + this.properties = properties; + this.unparsed |= properties.unparsed; + return this; + } + + /** + * The properties of the state variable. + * + * @return properties + */ + @JsonProperty(JSON_PROPERTY_PROPERTIES) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public StateVariableProperties getProperties() { + return properties; + } + + public void setProperties(StateVariableProperties properties) { + this.properties = properties; + } + + public StateVariable type(StateVariableType type) { + this.type = type; + this.unparsed |= !type.isValid(); + return this; + } + + /** + * The state variable type. + * + * @return type + */ + @JsonProperty(JSON_PROPERTY_TYPE) + @JsonInclude(value = JsonInclude.Include.ALWAYS) + public StateVariableType getType() { + return type; + } + + public void setType(StateVariableType 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 StateVariable + */ + @JsonAnySetter + public StateVariable 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 StateVariable object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + StateVariable stateVariable = (StateVariable) o; + return Objects.equals(this.id, stateVariable.id) + && Objects.equals(this.name, stateVariable.name) + && Objects.equals(this.properties, stateVariable.properties) + && Objects.equals(this.type, stateVariable.type) + && Objects.equals(this.additionalProperties, stateVariable.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(id, name, properties, type, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class StateVariable {\n"); + sb.append(" id: ").append(toIndentedString(id)).append("\n"); + sb.append(" name: ").append(toIndentedString(name)).append("\n"); + sb.append(" properties: ").append(toIndentedString(properties)).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/StateVariableProperties.java b/src/main/java/com/datadog/api/client/v2/model/StateVariableProperties.java new file mode 100644 index 00000000000..3c9395b450e --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/StateVariableProperties.java @@ -0,0 +1,135 @@ +/* + * 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; + +/** The properties of the state variable. */ +@JsonPropertyOrder({StateVariableProperties.JSON_PROPERTY_DEFAULT_VALUE}) +@jakarta.annotation.Generated( + value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator") +public class StateVariableProperties { + @JsonIgnore public boolean unparsed = false; + public static final String JSON_PROPERTY_DEFAULT_VALUE = "defaultValue"; + private Object defaultValue = null; + + public StateVariableProperties defaultValue(Object defaultValue) { + this.defaultValue = defaultValue; + return this; + } + + /** + * The default value of the state variable. + * + * @return defaultValue + */ + @jakarta.annotation.Nullable + @JsonProperty(JSON_PROPERTY_DEFAULT_VALUE) + @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS) + public Object getDefaultValue() { + return defaultValue; + } + + public void setDefaultValue(Object defaultValue) { + this.defaultValue = defaultValue; + } + + /** + * 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 StateVariableProperties + */ + @JsonAnySetter + public StateVariableProperties 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 StateVariableProperties object is equal to o. */ + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + StateVariableProperties stateVariableProperties = (StateVariableProperties) o; + return Objects.equals(this.defaultValue, stateVariableProperties.defaultValue) + && Objects.equals(this.additionalProperties, stateVariableProperties.additionalProperties); + } + + @Override + public int hashCode() { + return Objects.hash(defaultValue, additionalProperties); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class StateVariableProperties {\n"); + sb.append(" defaultValue: ").append(toIndentedString(defaultValue)).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/StateVariableType.java b/src/main/java/com/datadog/api/client/v2/model/StateVariableType.java new file mode 100644 index 00000000000..e70442949d9 --- /dev/null +++ b/src/main/java/com/datadog/api/client/v2/model/StateVariableType.java @@ -0,0 +1,54 @@ +/* + * 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 state variable type. */ +@JsonSerialize(using = StateVariableType.StateVariableTypeSerializer.class) +public class StateVariableType extends ModelEnum { + + private static final Set allowedValues = + new HashSet(Arrays.asList("stateVariable")); + + public static final StateVariableType STATEVARIABLE = new StateVariableType("stateVariable"); + + StateVariableType(String value) { + super(value, allowedValues); + } + + public static class StateVariableTypeSerializer extends StdSerializer { + public StateVariableTypeSerializer(Class t) { + super(t); + } + + public StateVariableTypeSerializer() { + this(null); + } + + @Override + public void serialize(StateVariableType value, JsonGenerator jgen, SerializerProvider provider) + throws IOException, JsonProcessingException { + jgen.writeObject(value.value); + } + } + + @JsonCreator + public static StateVariableType fromValue(String value) { + return new StateVariableType(value); + } +} diff --git a/src/test/resources/cassettes/features/v2/Create_App_returns_Bad_Request_response.freeze b/src/test/resources/cassettes/features/v2/Create_App_returns_Bad_Request_response.freeze index f4fed19b332..2e31f9d19ca 100644 --- a/src/test/resources/cassettes/features/v2/Create_App_returns_Bad_Request_response.freeze +++ b/src/test/resources/cassettes/features/v2/Create_App_returns_Bad_Request_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:41.653Z \ No newline at end of file +2025-02-14T16:45:00.619Z \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Create_App_returns_Created_response.freeze b/src/test/resources/cassettes/features/v2/Create_App_returns_Created_response.freeze index e194fa4dff0..95773bb7105 100644 --- a/src/test/resources/cassettes/features/v2/Create_App_returns_Created_response.freeze +++ b/src/test/resources/cassettes/features/v2/Create_App_returns_Created_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:41.765Z \ No newline at end of file +2025-02-14T16:45:00.807Z \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Create_App_returns_Created_response.json b/src/test/resources/cassettes/features/v2/Create_App_returns_Created_response.json index 4bbf5a58df5..20b7a88786b 100644 --- a/src/test/resources/cassettes/features/v2/Create_App_returns_Created_response.json +++ b/src/test/resources/cassettes/features/v2/Create_App_returns_Created_response.json @@ -3,7 +3,7 @@ "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isLoading\":false,\"isUnpublishd\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"name\":\"Example App\",\"queries\":[],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"events\":[],\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}},\"type\":\"action\"},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"type\":\"stateVariable\"},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"type\":\"dataTransform\"}],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "POST", @@ -12,7 +12,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"444afc7d-6572-42eb-b655-b8763ba2d032\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"b6becff0-4703-4724-b92a-1445df194b75\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -27,18 +27,18 @@ "timeToLive": { "unlimited": true }, - "id": "eb2804a5-c50d-d6f3-1122-a88cc1a86a35" + "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50d" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/444afc7d-6572-42eb-b655-b8763ba2d032", + "path": "/api/v2/app-builder/apps/b6becff0-4703-4724-b92a-1445df194b75", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"444afc7d-6572-42eb-b655-b8763ba2d032\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"b6becff0-4703-4724-b92a-1445df194b75\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -53,6 +53,6 @@ "timeToLive": { "unlimited": true }, - "id": "0234ea5a-c365-c4dd-7545-c2e9b9c58785" + "id": "1bcd4b92-0b0f-c2f0-11de-38321071786b" } ] \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Delete_App_returns_Not_Found_response.freeze b/src/test/resources/cassettes/features/v2/Delete_App_returns_Not_Found_response.freeze index d59753b20fa..cc2b30020a0 100644 --- a/src/test/resources/cassettes/features/v2/Delete_App_returns_Not_Found_response.freeze +++ b/src/test/resources/cassettes/features/v2/Delete_App_returns_Not_Found_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:42.199Z \ No newline at end of file +2025-02-14T16:45:01.264Z \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Delete_App_returns_OK_response.freeze b/src/test/resources/cassettes/features/v2/Delete_App_returns_OK_response.freeze index 8d71c0bb47c..5b85436cbc7 100644 --- a/src/test/resources/cassettes/features/v2/Delete_App_returns_OK_response.freeze +++ b/src/test/resources/cassettes/features/v2/Delete_App_returns_OK_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:42.276Z \ No newline at end of file +2025-02-14T16:45:01.358Z \ 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 649092e3fca..a03b13eebf8 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 @@ -3,7 +3,7 @@ "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isDisabled\":false,\"isLoading\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"name\":\"Example App\",\"queries\":[],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"events\":[],\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}},\"type\":\"action\"},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"type\":\"stateVariable\"},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"type\":\"dataTransform\"}],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "POST", @@ -12,7 +12,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"6d05b89a-db5e-4f7d-aa03-26ccd05be44e\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"de4f1fa8-bd84-4d67-a245-507a500f12e1\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -27,18 +27,18 @@ "timeToLive": { "unlimited": true }, - "id": "b8e7d077-8c77-c831-844b-014fb6c12fa9" + "id": "c782b1f3-1b03-d50f-8fcd-12e51226c510" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/6d05b89a-db5e-4f7d-aa03-26ccd05be44e", + "path": "/api/v2/app-builder/apps/de4f1fa8-bd84-4d67-a245-507a500f12e1", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"6d05b89a-db5e-4f7d-aa03-26ccd05be44e\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"de4f1fa8-bd84-4d67-a245-507a500f12e1\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -53,13 +53,13 @@ "timeToLive": { "unlimited": true }, - "id": "5e9e830b-64c7-95ef-4d78-399feeacb528" + "id": "1e7a18e0-09c0-9b83-eded-7732dc1aac56" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/6d05b89a-db5e-4f7d-aa03-26ccd05be44e", + "path": "/api/v2/app-builder/apps/de4f1fa8-bd84-4d67-a245-507a500f12e1", "keepAlive": false, "secure": true }, @@ -79,6 +79,6 @@ "timeToLive": { "unlimited": true }, - "id": "5e9e830b-64c7-95ef-4d78-399feeacb529" + "id": "1e7a18e0-09c0-9b83-eded-7732dc1aac57" } ] \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_Not_Found_response.freeze b/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_Not_Found_response.freeze index 1e20d6bc1e2..76f15202ead 100644 --- a/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_Not_Found_response.freeze +++ b/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_Not_Found_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:42.693Z \ No newline at end of file +2025-02-14T16:45:01.993Z \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_OK_response.freeze b/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_OK_response.freeze index d5d8aa92f4b..54cb3a20fe0 100644 --- a/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_OK_response.freeze +++ b/src/test/resources/cassettes/features/v2/Delete_Multiple_Apps_returns_OK_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:42.770Z \ No newline at end of file +2025-02-14T16:45:02.105Z \ No newline at end of file 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 6b38f44e69b..a3cb24b8701 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 @@ -3,7 +3,7 @@ "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isDisabled\":false,\"isLoading\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"name\":\"Example App\",\"queries\":[],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"events\":[],\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}},\"type\":\"action\"},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"type\":\"stateVariable\"},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"type\":\"dataTransform\"}],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "POST", @@ -12,7 +12,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"91f80f89-33dc-4311-93fe-b4936275bc74\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"f33597bb-5c91-497c-ba26-68b7493905c0\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -27,13 +27,13 @@ "timeToLive": { "unlimited": true }, - "id": "b8e7d077-8c77-c831-844b-014fb6c12fa8" + "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50f" }, { "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":[{\"id\":\"91f80f89-33dc-4311-93fe-b4936275bc74\",\"type\":\"appDefinitions\"}]}" + "json": "{\"data\":[{\"id\":\"f33597bb-5c91-497c-ba26-68b7493905c0\",\"type\":\"appDefinitions\"}]}" }, "headers": {}, "method": "DELETE", @@ -42,7 +42,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":[{\"id\":\"91f80f89-33dc-4311-93fe-b4936275bc74\",\"type\":\"appDefinitions\"}]}", + "body": "{\"data\":[{\"id\":\"f33597bb-5c91-497c-ba26-68b7493905c0\",\"type\":\"appDefinitions\"}]}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -57,13 +57,13 @@ "timeToLive": { "unlimited": true }, - "id": "481d7c51-735a-0c5a-5976-4dafd7e85b05" + "id": "4a411ccb-628f-4b3c-3c09-b3974e3340fe" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/91f80f89-33dc-4311-93fe-b4936275bc74", + "path": "/api/v2/app-builder/apps/f33597bb-5c91-497c-ba26-68b7493905c0", "keepAlive": false, "secure": true }, @@ -83,6 +83,6 @@ "timeToLive": { "unlimited": true }, - "id": "a8653446-84d3-0c11-1761-0aae84f7da8e" + "id": "cde190dd-7687-ab56-1373-2565df647f4b" } ] \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Get_App_returns_Gone_response.freeze b/src/test/resources/cassettes/features/v2/Get_App_returns_Gone_response.freeze new file mode 100644 index 00000000000..d2e79599e8a --- /dev/null +++ b/src/test/resources/cassettes/features/v2/Get_App_returns_Gone_response.freeze @@ -0,0 +1 @@ +2025-02-14T16:45:02.544Z \ No newline at end of file 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 new file mode 100644 index 00000000000..d0faeb9a172 --- /dev/null +++ b/src/test/resources/cassettes/features/v2/Get_App_returns_Gone_response.json @@ -0,0 +1,89 @@ +[ + { + "httpRequest": { + "body": { + "type": "JSON", + "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"events\":[],\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}},\"type\":\"action\"},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"type\":\"stateVariable\"},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"type\":\"dataTransform\"}],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" + }, + "headers": {}, + "method": "POST", + "path": "/api/v2/app-builder/apps", + "keepAlive": false, + "secure": true + }, + "httpResponse": { + "body": "{\"data\":{\"id\":\"84b262f9-ae08-4be9-9050-93ff89ccd474\",\"type\":\"appDefinitions\"}}", + "headers": { + "Content-Type": [ + "application/vnd.api+json" + ] + }, + "statusCode": 201, + "reasonPhrase": "Created" + }, + "times": { + "remainingTimes": 1 + }, + "timeToLive": { + "unlimited": true + }, + "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50c" + }, + { + "httpRequest": { + "headers": {}, + "method": "GET", + "path": "/api/v2/app-builder/apps/84b262f9-ae08-4be9-9050-93ff89ccd474", + "queryStringParameters": { + "version": [ + "31" + ] + }, + "keepAlive": false, + "secure": true + }, + "httpResponse": { + "body": "{\"errors\":[{\"title\":\"app version not found\"}]}", + "headers": { + "Content-Type": [ + "application/vnd.api+json" + ] + }, + "statusCode": 410, + "reasonPhrase": "Gone" + }, + "times": { + "remainingTimes": 1 + }, + "timeToLive": { + "unlimited": true + }, + "id": "884f20ea-6d1c-d653-17ba-dd0718187d24" + }, + { + "httpRequest": { + "headers": {}, + "method": "DELETE", + "path": "/api/v2/app-builder/apps/84b262f9-ae08-4be9-9050-93ff89ccd474", + "keepAlive": false, + "secure": true + }, + "httpResponse": { + "body": "{\"data\":{\"id\":\"84b262f9-ae08-4be9-9050-93ff89ccd474\",\"type\":\"appDefinitions\"}}", + "headers": { + "Content-Type": [ + "application/vnd.api+json" + ] + }, + "statusCode": 200, + "reasonPhrase": "OK" + }, + "times": { + "remainingTimes": 1 + }, + "timeToLive": { + "unlimited": true + }, + "id": "e1e4c482-44bc-d12f-8ede-91e499f6182f" + } +] \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Get_App_returns_Not_Found_response.freeze b/src/test/resources/cassettes/features/v2/Get_App_returns_Not_Found_response.freeze index 6c7b9a9df98..f5cb3f69de0 100644 --- a/src/test/resources/cassettes/features/v2/Get_App_returns_Not_Found_response.freeze +++ b/src/test/resources/cassettes/features/v2/Get_App_returns_Not_Found_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:43.135Z \ No newline at end of file +2025-02-14T16:45:03.071Z \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Get_App_returns_OK_response.freeze b/src/test/resources/cassettes/features/v2/Get_App_returns_OK_response.freeze index bf7c9e277ef..485ec95c385 100644 --- a/src/test/resources/cassettes/features/v2/Get_App_returns_OK_response.freeze +++ b/src/test/resources/cassettes/features/v2/Get_App_returns_OK_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:43.220Z \ No newline at end of file +2025-02-14T16:45:03.186Z \ No newline at end of file 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 c787af5fea5..b461aa9101d 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 @@ -3,7 +3,7 @@ "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isDisabled\":false,\"isLoading\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"name\":\"Example App\",\"queries\":[],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"events\":[],\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}},\"type\":\"action\"},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"type\":\"stateVariable\"},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"type\":\"dataTransform\"}],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "POST", @@ -12,7 +12,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"25442f2c-fb75-4abe-b875-ed3497d2fc2c\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"55b4bd3f-a1e9-4595-95c8-ef3741481b97\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -27,18 +27,18 @@ "timeToLive": { "unlimited": true }, - "id": "b8e7d077-8c77-c831-844b-014fb6c12fa7" + "id": "c782b1f3-1b03-d50f-8fcd-12e51226c50e" }, { "httpRequest": { "headers": {}, "method": "GET", - "path": "/api/v2/app-builder/apps/25442f2c-fb75-4abe-b875-ed3497d2fc2c", + "path": "/api/v2/app-builder/apps/55b4bd3f-a1e9-4595-95c8-ef3741481b97", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"25442f2c-fb75-4abe-b875-ed3497d2fc2c\",\"type\":\"appDefinitions\",\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isDisabled\":false,\"isLoading\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"favorite\":false,\"name\":\"Example App\",\"queries\":[],\"rootInstanceName\":\"grid0\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":15479137,\"user_uuid\":\"b3f98453-b289-11ef-a4e9-d6d283f92d91\",\"user_name\":\"oliver.li@datadoghq.com\",\"version\":1,\"updated_since_deployment\":false,\"created_at\":\"2025-01-30T22:30:43.296595Z\",\"updated_at\":\"2025-01-30T22:30:43.296595Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}}}", + "body": "{\"data\":{\"id\":\"55b4bd3f-a1e9-4595-95c8-ef3741481b97\",\"type\":\"appDefinitions\",\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"favorite\":false,\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"type\":\"action\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}}},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"type\":\"stateVariable\",\"properties\":{\"defaultValue\":\"${20}\"}},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"type\":\"dataTransform\",\"properties\":{\"outputs\":\"${(() =\\u003e {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"}}],\"rootInstanceName\":\"grid0\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":15479137,\"user_uuid\":\"b3f98453-b289-11ef-a4e9-d6d283f92d91\",\"user_name\":\"oliver.li@datadoghq.com\",\"version\":1,\"updated_since_deployment\":false,\"created_at\":\"2025-02-14T16:45:03.266046Z\",\"updated_at\":\"2025-02-14T16:45:03.266046Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -53,18 +53,18 @@ "timeToLive": { "unlimited": true }, - "id": "870d6b19-06d2-60da-17d5-15f37c897c50" + "id": "accff7c5-0124-0039-e9ef-d5e1da5a4f08" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/25442f2c-fb75-4abe-b875-ed3497d2fc2c", + "path": "/api/v2/app-builder/apps/55b4bd3f-a1e9-4595-95c8-ef3741481b97", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"25442f2c-fb75-4abe-b875-ed3497d2fc2c\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"55b4bd3f-a1e9-4595-95c8-ef3741481b97\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -79,6 +79,6 @@ "timeToLive": { "unlimited": true }, - "id": "38da5923-743e-516a-91e7-e2e7295d722d" + "id": "484d3f44-9cf0-439a-a951-c2d5ae835108" } ] \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/List_Apps_returns_OK_response.freeze b/src/test/resources/cassettes/features/v2/List_Apps_returns_OK_response.freeze index c70176b29cc..f68dc360fe0 100644 --- a/src/test/resources/cassettes/features/v2/List_Apps_returns_OK_response.freeze +++ b/src/test/resources/cassettes/features/v2/List_Apps_returns_OK_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:43.707Z \ No newline at end of file +2025-02-14T16:45:03.738Z \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/List_Apps_returns_OK_response.json b/src/test/resources/cassettes/features/v2/List_Apps_returns_OK_response.json index 9354f1e0078..c67e782f63d 100644 --- a/src/test/resources/cassettes/features/v2/List_Apps_returns_OK_response.json +++ b/src/test/resources/cassettes/features/v2/List_Apps_returns_OK_response.json @@ -8,7 +8,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":[{\"id\":\"31bfe961-ba29-4c43-85d8-f7d02afdb9a3\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-29T15:53:32.324305Z\",\"updated_at\":\"2025-01-29T15:53:32.324305Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"2363c6a3-9077-4c58-a7e2-39f27ca42e02\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-23T00:18:13.328203Z\",\"updated_at\":\"2025-01-23T00:18:13.328203Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"a5557ecf-17c6-43dc-b20f-6c77869777c1\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-22T17:17:39.807236Z\",\"updated_at\":\"2025-01-22T17:17:39.807236Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"83ca3945-3c9f-4eb9-b46a-992a97f1acf3\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-22T13:16:57.34142Z\",\"updated_at\":\"2025-01-22T13:16:57.34142Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"9e02b865-585b-4da0-b2c3-aab734317e93\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-22T10:47:57.329697Z\",\"updated_at\":\"2025-01-22T10:47:57.329697Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"9ccf8f9b-d9ae-43ef-b1c6-c85e075a3ca7\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-21T23:30:39.902639Z\",\"updated_at\":\"2025-01-21T23:30:40.166756Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"d21c6da5-cb04-4ee6-aa7d-3fe6b2fd0be3\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-21T22:36:50.399181Z\",\"updated_at\":\"2025-01-21T22:36:50.399181Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"02343a47-9092-40a7-9464-aade9d617050\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-20T23:17:39.895098Z\",\"updated_at\":\"2025-01-20T23:17:40.19356Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"be847238-5f04-4e50-9cce-facc0b8fbb09\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-20T01:48:05.39422Z\",\"updated_at\":\"2025-01-20T01:48:05.39422Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"4b562f9c-3fe4-49dc-9e08-4a704db958a8\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"Kelly's App Thu, Jan 16, 1:13:37 pm\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":20776465,\"user_uuid\":\"8820640c-cdf5-11ef-b473-76727e778fd9\",\"user_name\":\"kelly.sun@datadoghq.com\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-16T18:14:00.896371Z\",\"updated_at\":\"2025-01-16T18:14:00.896371Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}}],\"meta\":{\"page\":{\"totalCount\":29,\"totalFilteredCount\":29}}}", + "body": "{\"data\":[{\"id\":\"b1c2bf4d-f987-4306-8dcd-a48bedecf19e\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-02-14T16:44:58.965378Z\",\"updated_at\":\"2025-02-14T16:44:58.965378Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"31bfe961-ba29-4c43-85d8-f7d02afdb9a3\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-29T15:53:32.324305Z\",\"updated_at\":\"2025-01-29T15:53:32.324305Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"2363c6a3-9077-4c58-a7e2-39f27ca42e02\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-23T00:18:13.328203Z\",\"updated_at\":\"2025-01-23T00:18:13.328203Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"a5557ecf-17c6-43dc-b20f-6c77869777c1\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-22T17:17:39.807236Z\",\"updated_at\":\"2025-01-22T17:17:39.807236Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"83ca3945-3c9f-4eb9-b46a-992a97f1acf3\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-22T13:16:57.34142Z\",\"updated_at\":\"2025-01-22T13:16:57.34142Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"9e02b865-585b-4da0-b2c3-aab734317e93\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-22T10:47:57.329697Z\",\"updated_at\":\"2025-01-22T10:47:57.329697Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"9ccf8f9b-d9ae-43ef-b1c6-c85e075a3ca7\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-21T23:30:39.902639Z\",\"updated_at\":\"2025-01-21T23:30:40.166756Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"d21c6da5-cb04-4ee6-aa7d-3fe6b2fd0be3\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-21T22:36:50.399181Z\",\"updated_at\":\"2025-01-21T22:36:50.399181Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"02343a47-9092-40a7-9464-aade9d617050\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-20T23:17:39.895098Z\",\"updated_at\":\"2025-01-20T23:17:40.19356Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}},{\"id\":\"be847238-5f04-4e50-9cce-facc0b8fbb09\",\"type\":\"appDefinitions\",\"attributes\":{\"description\":\"\",\"favorite\":false,\"name\":\"[synthetics] app name 0123456789\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":7571471,\"user_uuid\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"user_name\":\"01347f51-3fcd-11ef-95dd-a65df5ee2843\",\"version\":0,\"updated_since_deployment\":false,\"created_at\":\"2025-01-20T01:48:05.39422Z\",\"updated_at\":\"2025-01-20T01:48:05.39422Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}}],\"meta\":{\"page\":{\"totalCount\":30,\"totalFilteredCount\":30}}}", "headers": { "Content-Type": [ "application/vnd.api+json" diff --git a/src/test/resources/cassettes/features/v2/Publish_App_returns_Created_response.freeze b/src/test/resources/cassettes/features/v2/Publish_App_returns_Created_response.freeze index c28deba1baa..12979433e7b 100644 --- a/src/test/resources/cassettes/features/v2/Publish_App_returns_Created_response.freeze +++ b/src/test/resources/cassettes/features/v2/Publish_App_returns_Created_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:43.820Z \ No newline at end of file +2025-02-14T16:45:03.857Z \ 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 0f374e67d04..122367ac740 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 @@ -3,7 +3,7 @@ "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isDisabled\":false,\"isLoading\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"name\":\"Example App\",\"queries\":[],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"events\":[],\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}},\"type\":\"action\"},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"type\":\"stateVariable\"},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"type\":\"dataTransform\"}],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "POST", @@ -12,7 +12,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"4e22b013-8758-49b7-98ea-0b2508c97bbf\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"5677160c-03ea-41cf-b9cb-1dabc7904656\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -27,18 +27,18 @@ "timeToLive": { "unlimited": true }, - "id": "b8e7d077-8c77-c831-844b-014fb6c12faa" + "id": "c782b1f3-1b03-d50f-8fcd-12e51226c511" }, { "httpRequest": { "headers": {}, "method": "POST", - "path": "/api/v2/app-builder/apps/4e22b013-8758-49b7-98ea-0b2508c97bbf/deployment", + "path": "/api/v2/app-builder/apps/5677160c-03ea-41cf-b9cb-1dabc7904656/deployment", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"62438b66-95eb-47d3-b540-a5d4b0b0a791\",\"type\":\"deployment\",\"attributes\":{\"app_version_id\":\"178fbd22-f8b5-4841-92eb-f8c1c03d44c1\"},\"meta\":{\"created_at\":\"2025-01-30T22:30:44.12194Z\",\"user_id\":15479137,\"user_uuid\":\"b3f98453-b289-11ef-a4e9-d6d283f92d91\",\"user_name\":\"oliver.li@datadoghq.com\"}}}", + "body": "{\"data\":{\"id\":\"9f189b09-3c00-4922-9e01-66c76bf81519\",\"type\":\"deployment\",\"attributes\":{\"app_version_id\":\"8038b7ec-533a-4bb3-b6dd-4ac11cb45ff9\"},\"meta\":{\"created_at\":\"2025-02-14T16:45:04.203717Z\",\"user_id\":15479137,\"user_uuid\":\"b3f98453-b289-11ef-a4e9-d6d283f92d91\",\"user_name\":\"oliver.li@datadoghq.com\"}}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -53,18 +53,18 @@ "timeToLive": { "unlimited": true }, - "id": "8287658c-6e1c-bb6a-486a-73edd26af881" + "id": "72d9da7c-f6dc-60d9-75cf-70174ea103c3" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/4e22b013-8758-49b7-98ea-0b2508c97bbf", + "path": "/api/v2/app-builder/apps/5677160c-03ea-41cf-b9cb-1dabc7904656", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"4e22b013-8758-49b7-98ea-0b2508c97bbf\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"5677160c-03ea-41cf-b9cb-1dabc7904656\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -79,6 +79,6 @@ "timeToLive": { "unlimited": true }, - "id": "bbf23951-1d38-f770-32bd-f15be7a906ef" + "id": "1cdfbefe-ffab-53da-9238-dcd04a11e4d0" } ] \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Publish_App_returns_Not_Found_response.freeze b/src/test/resources/cassettes/features/v2/Publish_App_returns_Not_Found_response.freeze index 3a29d90cff8..ec6b85f75bd 100644 --- a/src/test/resources/cassettes/features/v2/Publish_App_returns_Not_Found_response.freeze +++ b/src/test/resources/cassettes/features/v2/Publish_App_returns_Not_Found_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:44.372Z \ No newline at end of file +2025-02-14T16:45:04.549Z \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Unpublish_App_returns_Not_Found_response.freeze b/src/test/resources/cassettes/features/v2/Unpublish_App_returns_Not_Found_response.freeze index 4e09395f987..b23f40e08bf 100644 --- a/src/test/resources/cassettes/features/v2/Unpublish_App_returns_Not_Found_response.freeze +++ b/src/test/resources/cassettes/features/v2/Unpublish_App_returns_Not_Found_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:44.457Z \ No newline at end of file +2025-02-14T16:45:04.715Z \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Unpublish_App_returns_OK_response.freeze b/src/test/resources/cassettes/features/v2/Unpublish_App_returns_OK_response.freeze index fbc38a5c7cf..09346df6699 100644 --- a/src/test/resources/cassettes/features/v2/Unpublish_App_returns_OK_response.freeze +++ b/src/test/resources/cassettes/features/v2/Unpublish_App_returns_OK_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:44.533Z \ No newline at end of file +2025-02-14T16:45:04.816Z \ No newline at end of file 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 7756a1be0b9..579f134693b 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 @@ -3,7 +3,7 @@ "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isDisabled\":false,\"isLoading\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"name\":\"Example App\",\"queries\":[],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"events\":[],\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}},\"type\":\"action\"},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"type\":\"stateVariable\"},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"type\":\"dataTransform\"}],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "POST", @@ -12,7 +12,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"74865138-3856-43bf-b309-e6c5f5599e36\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"24628726-cdf1-45e6-9e05-6e73d7612d3f\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -27,18 +27,18 @@ "timeToLive": { "unlimited": true }, - "id": "b8e7d077-8c77-c831-844b-014fb6c12fab" + "id": "c782b1f3-1b03-d50f-8fcd-12e51226c512" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/74865138-3856-43bf-b309-e6c5f5599e36/deployment", + "path": "/api/v2/app-builder/apps/24628726-cdf1-45e6-9e05-6e73d7612d3f/deployment", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"b8434408-826f-4fea-bd27-786526d74e30\",\"type\":\"deployment\",\"attributes\":{\"app_version_id\":\"00000000-0000-0000-0000-000000000000\"},\"meta\":{\"created_at\":\"2025-01-30T22:30:44.827748Z\",\"user_id\":15479137,\"user_uuid\":\"b3f98453-b289-11ef-a4e9-d6d283f92d91\",\"user_name\":\"oliver.li@datadoghq.com\"}}}", + "body": "{\"data\":{\"id\":\"892fa942-bd01-4e75-9582-e1a5c7736b46\",\"type\":\"deployment\",\"attributes\":{\"app_version_id\":\"00000000-0000-0000-0000-000000000000\"},\"meta\":{\"created_at\":\"2025-02-14T16:45:05.155785Z\",\"user_id\":15479137,\"user_uuid\":\"b3f98453-b289-11ef-a4e9-d6d283f92d91\",\"user_name\":\"oliver.li@datadoghq.com\"}}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -53,18 +53,18 @@ "timeToLive": { "unlimited": true }, - "id": "e2cfc50b-7aed-ede7-b7ea-df1b0d749561" + "id": "dc064ba9-eed2-4f84-4f4a-1cb4eea91d87" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/74865138-3856-43bf-b309-e6c5f5599e36", + "path": "/api/v2/app-builder/apps/24628726-cdf1-45e6-9e05-6e73d7612d3f", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"74865138-3856-43bf-b309-e6c5f5599e36\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"24628726-cdf1-45e6-9e05-6e73d7612d3f\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -79,6 +79,6 @@ "timeToLive": { "unlimited": true }, - "id": "a0b39d4c-5937-b304-4d99-c9178ea9dd7e" + "id": "07ec217a-d9b3-dda5-f191-87f79e39320f" } ] \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Update_App_returns_Bad_Request_response.freeze b/src/test/resources/cassettes/features/v2/Update_App_returns_Bad_Request_response.freeze index 84b4273039a..e826a902123 100644 --- a/src/test/resources/cassettes/features/v2/Update_App_returns_Bad_Request_response.freeze +++ b/src/test/resources/cassettes/features/v2/Update_App_returns_Bad_Request_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:45.101Z \ No newline at end of file +2025-02-14T16:45:05.461Z \ 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 a590ba2a5ce..b2d72b87ba2 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 @@ -3,7 +3,7 @@ "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isDisabled\":false,\"isLoading\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"name\":\"Example App\",\"queries\":[],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"events\":[],\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}},\"type\":\"action\"},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"type\":\"stateVariable\"},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"type\":\"dataTransform\"}],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "POST", @@ -12,7 +12,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"3800673b-840c-4c3a-8815-058b4a8ce38e\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"28f5b1d6-f416-46b5-8cc4-94ae094c97f4\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -27,17 +27,17 @@ "timeToLive": { "unlimited": true }, - "id": "b8e7d077-8c77-c831-844b-014fb6c12fad" + "id": "c782b1f3-1b03-d50f-8fcd-12e51226c514" }, { "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"rootInstanceName\":\"\"},\"id\":\"3800673b-840c-4c3a-8815-058b4a8ce38e\",\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"rootInstanceName\":\"\"},\"id\":\"28f5b1d6-f416-46b5-8cc4-94ae094c97f4\",\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "PATCH", - "path": "/api/v2/app-builder/apps/3800673b-840c-4c3a-8815-058b4a8ce38e", + "path": "/api/v2/app-builder/apps/28f5b1d6-f416-46b5-8cc4-94ae094c97f4", "keepAlive": false, "secure": true }, @@ -57,18 +57,18 @@ "timeToLive": { "unlimited": true }, - "id": "549223ff-f939-0d8e-9e85-13e16de11161" + "id": "93712cc0-6996-09af-e649-eedffa40b444" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/3800673b-840c-4c3a-8815-058b4a8ce38e", + "path": "/api/v2/app-builder/apps/28f5b1d6-f416-46b5-8cc4-94ae094c97f4", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"3800673b-840c-4c3a-8815-058b4a8ce38e\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"28f5b1d6-f416-46b5-8cc4-94ae094c97f4\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -83,6 +83,6 @@ "timeToLive": { "unlimited": true }, - "id": "066cbef5-ca0d-73d1-805e-791cd434dfff" + "id": "c0a80953-a649-b9db-3e5e-617ff1262830" } ] \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Update_App_returns_OK_response.freeze b/src/test/resources/cassettes/features/v2/Update_App_returns_OK_response.freeze index 0c72a214a00..47098e9adb5 100644 --- a/src/test/resources/cassettes/features/v2/Update_App_returns_OK_response.freeze +++ b/src/test/resources/cassettes/features/v2/Update_App_returns_OK_response.freeze @@ -1 +1 @@ -2025-01-30T22:30:45.511Z \ No newline at end of file +2025-02-14T16:45:05.966Z \ No newline at end of file diff --git a/src/test/resources/cassettes/features/v2/Update_App_returns_OK_response.json b/src/test/resources/cassettes/features/v2/Update_App_returns_OK_response.json index 2049e9ae6a5..561057ced5c 100644 --- a/src/test/resources/cassettes/features/v2/Update_App_returns_OK_response.json +++ b/src/test/resources/cassettes/features/v2/Update_App_returns_OK_response.json @@ -3,7 +3,7 @@ "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isDisabled\":false,\"isLoading\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"name\":\"Example App\",\"queries\":[],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"name\":\"Example Cat Facts Viewer\",\"queries\":[{\"events\":[],\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}},\"type\":\"action\"},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"type\":\"stateVariable\"},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"type\":\"dataTransform\"}],\"rootInstanceName\":\"grid0\"},\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "POST", @@ -12,7 +12,7 @@ "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"892d9225-fd31-4237-b218-e964ac33fc71\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"9f9a2053-6156-471b-aca8-2fa6ec87f797\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -27,22 +27,22 @@ "timeToLive": { "unlimited": true }, - "id": "b8e7d077-8c77-c831-844b-014fb6c12fac" + "id": "c782b1f3-1b03-d50f-8fcd-12e51226c513" }, { "httpRequest": { "body": { "type": "JSON", - "json": "{\"data\":{\"attributes\":{\"name\":\"Updated Name\",\"rootInstanceName\":\"grid0\"},\"id\":\"892d9225-fd31-4237-b218-e964ac33fc71\",\"type\":\"appDefinitions\"}}" + "json": "{\"data\":{\"attributes\":{\"name\":\"Updated Name\",\"rootInstanceName\":\"grid0\"},\"id\":\"9f9a2053-6156-471b-aca8-2fa6ec87f797\",\"type\":\"appDefinitions\"}}" }, "headers": {}, "method": "PATCH", - "path": "/api/v2/app-builder/apps/892d9225-fd31-4237-b218-e964ac33fc71", + "path": "/api/v2/app-builder/apps/9f9a2053-6156-471b-aca8-2fa6ec87f797", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"892d9225-fd31-4237-b218-e964ac33fc71\",\"type\":\"appDefinitions\",\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"calloutValue0\",\"properties\":{\"isDisabled\":false,\"isLoading\":false,\"isVisible\":true,\"label\":\"CPU Usage\",\"size\":\"sm\",\"style\":\"vivid_yellow\",\"unit\":\"kB\",\"value\":\"42\"},\"type\":\"calloutValue\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":8,\"width\":2,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a simple example app\",\"favorite\":false,\"name\":\"Updated Name\",\"queries\":[],\"rootInstanceName\":\"grid0\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":15479137,\"user_uuid\":\"b3f98453-b289-11ef-a4e9-d6d283f92d91\",\"user_name\":\"oliver.li@datadoghq.com\",\"version\":2,\"updated_since_deployment\":false,\"created_at\":\"2025-01-30T22:30:45.584607Z\",\"updated_at\":\"2025-01-30T22:30:45.785438Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}}}", + "body": "{\"data\":{\"id\":\"9f9a2053-6156-471b-aca8-2fa6ec87f797\",\"type\":\"appDefinitions\",\"attributes\":{\"components\":[{\"events\":[],\"name\":\"grid0\",\"properties\":{\"backgroundColor\":\"default\",\"children\":[{\"events\":[],\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text0\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":5,\"width\":4,\"x\":0,\"y\":0}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"table0\",\"properties\":{\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\",\"isHidden\":false},{\"dataPath\":\"length\",\"header\":\"length\",\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\",\"isHidden\":true},{\"dataPath\":\"Due Date\",\"disableSortBy\":false,\"formatter\":{\"format\":\"LARGE_WITHOUT_TIME\",\"type\":\"formatted_time\"},\"header\":\"Unused Old Column\",\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"isDeleted\":true}],\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"globalFilter\":false,\"isLoading\":\"${fetchFacts?.isLoading}\",\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"isVisible\":true,\"isWrappable\":false,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"rowButtons\":[],\"summary\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"type\":\"table\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":96,\"width\":12,\"x\":0,\"y\":5}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"events\":[],\"name\":\"text1\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"isVisible\":true,\"textAlign\":\"left\",\"verticalAlign\":\"top\"},\"type\":\"text\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":16,\"width\":12,\"x\":0,\"y\":101}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value + 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button0\",\"properties\":{\"iconLeft\":\"angleUp\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Increase Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":134}}},\"type\":\"gridCell\"},{\"events\":[],\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"events\":[{\"name\":\"click\",\"type\":\"setStateVariableValue\",\"value\":\"${pageSize?.value - 1}\",\"variableName\":\"pageSize\"}],\"name\":\"button1\",\"properties\":{\"iconLeft\":\"angleDown\",\"iconRight\":\"\",\"isBorderless\":false,\"isDisabled\":false,\"isLoading\":false,\"isPrimary\":true,\"isVisible\":true,\"label\":\"Decrease Page Size\",\"level\":\"default\"},\"type\":\"button\"}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"height\":4,\"width\":2,\"x\":10,\"y\":138}}},\"type\":\"gridCell\"}]},\"type\":\"grid\"}],\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\",\"favorite\":false,\"name\":\"Updated Name\",\"queries\":[{\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"name\":\"fetchFacts\",\"type\":\"action\",\"properties\":{\"spec\":{\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"fqn\":\"com.datadoghq.http.request\",\"inputs\":{\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}],\"verb\":\"GET\"}}}},{\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\",\"name\":\"pageSize\",\"type\":\"stateVariable\",\"properties\":{\"defaultValue\":\"${20}\"}},{\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\",\"name\":\"randomFact\",\"type\":\"dataTransform\",\"properties\":{\"outputs\":\"${(() =\\u003e {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"}}],\"rootInstanceName\":\"grid0\",\"selfService\":false,\"tags\":[]},\"meta\":{\"org_id\":1107852,\"user_id\":15479137,\"user_uuid\":\"b3f98453-b289-11ef-a4e9-d6d283f92d91\",\"user_name\":\"oliver.li@datadoghq.com\",\"version\":2,\"updated_since_deployment\":false,\"created_at\":\"2025-02-14T16:45:06.054293Z\",\"updated_at\":\"2025-02-14T16:45:06.268683Z\",\"deleted_at\":\"0001-01-01T00:00:00Z\"}}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -57,18 +57,18 @@ "timeToLive": { "unlimited": true }, - "id": "8fe8d822-0f46-5d3e-0143-f25cc28d3671" + "id": "d5715c56-8454-5207-e742-7df81a72db90" }, { "httpRequest": { "headers": {}, "method": "DELETE", - "path": "/api/v2/app-builder/apps/892d9225-fd31-4237-b218-e964ac33fc71", + "path": "/api/v2/app-builder/apps/9f9a2053-6156-471b-aca8-2fa6ec87f797", "keepAlive": false, "secure": true }, "httpResponse": { - "body": "{\"data\":{\"id\":\"892d9225-fd31-4237-b218-e964ac33fc71\",\"type\":\"appDefinitions\"}}", + "body": "{\"data\":{\"id\":\"9f9a2053-6156-471b-aca8-2fa6ec87f797\",\"type\":\"appDefinitions\"}}", "headers": { "Content-Type": [ "application/vnd.api+json" @@ -83,6 +83,6 @@ "timeToLive": { "unlimited": true }, - "id": "0a25ac3c-b220-ea14-fef4-3134607b158f" + "id": "727a1d39-df88-1168-4732-c223ca253368" } ] \ No newline at end of file diff --git a/src/test/resources/com/datadog/api/client/v2/api/app_builder.feature b/src/test/resources/com/datadog/api/client/v2/api/app_builder.feature index 1c8226e8970..1ef2502e807 100644 --- a/src/test/resources/com/datadog/api/client/v2/api/app_builder.feature +++ b/src/test/resources/com/datadog/api/client/v2/api/app_builder.feature @@ -12,8 +12,7 @@ Feature: App Builder @skip-typescript @team:DataDog/app-builder-backend Scenario: Create App returns "Bad Request" response - Given operation "CreateApp" enabled - And new "CreateApp" request + Given new "CreateApp" request And body with value {"data": {"attributes": {"description": "This is a bad example app", "queries": [], "rootInstanceName": "grid0"}, "type": "appDefinitions"}} When the request is sent Then the response status is 400 Bad Request @@ -22,41 +21,36 @@ Feature: App Builder @skip-typescript @team:DataDog/app-builder-backend Scenario: Create App returns "Created" response - Given operation "CreateApp" enabled - And new "CreateApp" request - And body with value {"data": {"attributes": {"components": [{"events": [], "name": "grid0", "properties": {"children": [{"events": [], "name": "gridCell0", "properties": {"children": [{"events": [], "name": "calloutValue0", "properties": {"isVisible": true, "isUnpublishd": false, "isLoading": false, "label": "CPU Usage", "size": "sm", "style": "vivid_yellow", "unit": "kB", "value": "42"}, "type": "calloutValue"}], "isVisible": "true", "layout": {"default": {"height": 8, "width": 2, "x": 0, "y": 0}}}, "type": "gridCell"}]}, "type": "grid"}], "description": "This is a simple example app", "queries": [], "name": "Example App", "rootInstanceName": "grid0"}, "type": "appDefinitions"}} + Given new "CreateApp" request + And body with value {"data":{"type":"appDefinitions","attributes":{"rootInstanceName":"grid0","components":[{"name":"grid0","type":"grid","properties":{"children":[{"type":"gridCell","name":"gridCell0","properties":{"children":[{"name":"text0","type":"text","properties":{"content":"# Cat Facts","contentType":"markdown","textAlign":"left","verticalAlign":"top","isVisible":true},"events":[]}],"isVisible":"true","layout":{"default":{"x":0,"y":0,"width":4,"height":5}}},"events":[]},{"type":"gridCell","name":"gridCell2","properties":{"children":[{"name":"table0","type":"table","properties":{"data":"${fetchFacts?.outputs?.body?.data}","columns":[{"dataPath":"fact","header":"fact","isHidden":false,"id":"0ae2ae9e-0280-4389-83c6-1c5949f7e674"},{"dataPath":"length","header":"length","isHidden":true,"id":"c9048611-0196-4a00-9366-1ef9e3ec0408"},{"id":"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f","dataPath":"Due Date","header":"Unused Old Column","disableSortBy":false,"formatter":{"type":"formatted_time","format":"LARGE_WITHOUT_TIME"},"isDeleted":true}],"summary":true,"pageSize":"${pageSize?.value}","paginationType":"server_side","isLoading":"${fetchFacts?.isLoading}","rowButtons":[],"isWrappable":false,"isScrollable":"vertical","isSubRowsEnabled":false,"globalFilter":false,"isVisible":true,"totalCount":"${fetchFacts?.outputs?.body?.total}"},"events":[]}],"isVisible":"true","layout":{"default":{"x":0,"y":5,"width":12,"height":96}}},"events":[]},{"type":"gridCell","name":"gridCell1","properties":{"children":[{"name":"text1","type":"text","properties":{"content":"## Random Fact\n\n${randomFact?.outputs?.fact}","contentType":"markdown","textAlign":"left","verticalAlign":"top","isVisible":true},"events":[]}],"isVisible":"true","layout":{"default":{"x":0,"y":101,"width":12,"height":16}}},"events":[]},{"type":"gridCell","name":"gridCell3","properties":{"children":[{"name":"button0","type":"button","properties":{"label":"Increase Page Size","level":"default","isPrimary":true,"isBorderless":false,"isLoading":false,"isDisabled":false,"isVisible":true,"iconLeft":"angleUp","iconRight":""},"events":[{"variableName":"pageSize","value":"${pageSize?.value + 1}","name":"click","type":"setStateVariableValue"}]}],"isVisible":"true","layout":{"default":{"x":10,"y":134,"width":2,"height":4}}},"events":[]},{"type":"gridCell","name":"gridCell4","properties":{"children":[{"name":"button1","type":"button","properties":{"label":"Decrease Page Size","level":"default","isPrimary":true,"isBorderless":false,"isLoading":false,"isDisabled":false,"isVisible":true,"iconLeft":"angleDown","iconRight":""},"events":[{"variableName":"pageSize","value":"${pageSize?.value - 1}","name":"click","type":"setStateVariableValue"}]}],"isVisible":"true","layout":{"default":{"x":10,"y":138,"width":2,"height":4}}},"events":[]}],"backgroundColor":"default"},"events":[]}],"queries":[{"id":"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5","type":"action","name":"fetchFacts","events":[],"properties":{"spec":{"fqn":"com.datadoghq.http.request","connectionId":"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3","inputs":{"verb":"GET","url":"https://catfact.ninja/facts","urlParams":[{"key":"limit","value":"${pageSize.value.toString()}"},{"key":"page","value":"${(table0.pageIndex + 1).toString()}"}]}}}},{"type":"stateVariable","name":"pageSize","properties":{"defaultValue":"${20}"},"id":"afd03c81-4075-4432-8618-ba09d52d2f2d"},{"type":"dataTransform","name":"randomFact","properties":{"outputs":"${(() => {const facts = fetchFacts.outputs.body.data\nreturn facts[Math.floor(Math.random()*facts.length)]\n})()}"},"id":"0fb22859-47dc-4137-9e41-7b67d04c525c"}],"name":"Example Cat Facts Viewer","description":"This is a slightly complicated example app that fetches and displays cat facts"}}} When the request is sent Then the response status is 201 Created And the response "data.type" is equal to "appDefinitions" @skip @team:DataDog/app-builder-backend Scenario: Delete App returns "Bad Request" response - Given operation "DeleteApp" enabled - And new "DeleteApp" request + Given new "DeleteApp" request And request contains "app_id" parameter with value "bad-app-id" When the request is sent Then the response status is 400 Bad Request @skip @team:DataDog/app-builder-backend Scenario: Delete App returns "Gone" response - Given operation "DeleteApp" enabled - And new "DeleteApp" request + Given new "DeleteApp" request And request contains "app_id" parameter with value "7addb29b-f935-472c-ae79-d1963979a23e" When the request is sent Then the response status is 410 Gone @skip-typescript @team:DataDog/app-builder-backend Scenario: Delete App returns "Not Found" response - Given operation "DeleteApp" enabled - And new "DeleteApp" request + Given new "DeleteApp" request And request contains "app_id" parameter with value "7addb29b-f935-472c-ae79-d1963979a23e" When the request is sent Then the response status is 404 Not Found @skip-typescript @team:DataDog/app-builder-backend Scenario: Delete App returns "OK" response - Given operation "DeleteApp" enabled - And there is a valid "app" in the system + Given there is a valid "app" in the system And new "DeleteApp" request And request contains "app_id" parameter from "app.data.id" When the request is sent @@ -66,24 +60,21 @@ Feature: App Builder @generated @skip @team:DataDog/app-builder-backend Scenario: Delete Multiple Apps returns "Bad Request" response - Given operation "DeleteApps" enabled - And new "DeleteApps" request + Given new "DeleteApps" request And body with value {"data": [{"id": "aea2ed17-b45f-40d0-ba59-c86b7972c901", "type": "appDefinitions"}, {"id": "f69bb8be-6168-4fe7-a30d-370256b6504a", "type": "appDefinitions"}, {"id": "ab1ed73e-13ad-4426-b0df-a0ff8876a088", "type": "appDefinitions"}]} When the request is sent Then the response status is 400 Bad Request @skip-typescript @team:DataDog/app-builder-backend Scenario: Delete Multiple Apps returns "Not Found" response - Given operation "DeleteApps" enabled - And new "DeleteApps" request + Given new "DeleteApps" request And body with value {"data": [{"id": "aea2ed17-b45f-40d0-ba59-c86b7972c901", "type": "appDefinitions"}, {"id": "f69bb8be-6168-4fe7-a30d-370256b6504a", "type": "appDefinitions"}, {"id": "ab1ed73e-13ad-4426-b0df-a0ff8876a088", "type": "appDefinitions"}]} When the request is sent Then the response status is 404 Not Found @skip-typescript @team:DataDog/app-builder-backend Scenario: Delete Multiple Apps returns "OK" response - Given operation "DeleteApps" enabled - And new "DeleteApps" request + Given new "DeleteApps" request And there is a valid "app" in the system And body with value {"data": [{"id": "{{ app.data.id }}", "type": "appDefinitions"}]} When the request is sent @@ -93,24 +84,30 @@ Feature: App Builder @skip @team:DataDog/app-builder-backend Scenario: Get App returns "Bad Request" response - Given operation "GetApp" enabled - And new "GetApp" request + Given new "GetApp" request And request contains "app_id" parameter with value "invalid-uuid" When the request is sent Then the response status is 400 Bad Request + @skip-typescript @team:DataDog/app-builder-backend + Scenario: Get App returns "Gone" response + Given new "GetApp" request + And there is a valid "app" in the system + And request contains "app_id" parameter from "app.data.id" + And request contains "version" parameter with value "31" + When the request is sent + Then the response status is 410 Gone + @skip-typescript @team:DataDog/app-builder-backend Scenario: Get App returns "Not Found" response - Given operation "GetApp" enabled - And new "GetApp" request + Given new "GetApp" request And request contains "app_id" parameter with value "7addb29b-f935-472c-ae79-d1963979a23e" When the request is sent Then the response status is 404 Not Found @skip-typescript @team:DataDog/app-builder-backend Scenario: Get App returns "OK" response - Given operation "GetApp" enabled - And new "GetApp" request + Given new "GetApp" request And there is a valid "app" in the system And request contains "app_id" parameter from "app.data.id" When the request is sent @@ -120,30 +117,26 @@ Feature: App Builder @generated @skip @team:DataDog/app-builder-backend Scenario: List Apps returns "Bad Request" response - Given operation "ListApps" enabled - And new "ListApps" request + Given new "ListApps" request When the request is sent Then the response status is 400 Bad Request @skip-typescript @team:DataDog/app-builder-backend Scenario: List Apps returns "OK" response - Given operation "ListApps" enabled - And new "ListApps" request + Given new "ListApps" request When the request is sent Then the response status is 200 OK @skip @team:DataDog/app-builder-backend Scenario: Publish App returns "Bad Request" response - Given operation "PublishApp" enabled - And new "PublishApp" request + Given new "PublishApp" request And request contains "app_id" parameter with value "invalid-uuid" When the request is sent Then the response status is 400 Bad Request @skip-typescript @team:DataDog/app-builder-backend Scenario: Publish App returns "Created" response - Given operation "PublishApp" enabled - And new "PublishApp" request + Given new "PublishApp" request And there is a valid "app" in the system And request contains "app_id" parameter from "app.data.id" When the request is sent @@ -151,32 +144,28 @@ Feature: App Builder @skip-typescript @team:DataDog/app-builder-backend Scenario: Publish App returns "Not Found" response - Given operation "PublishApp" enabled - And new "PublishApp" request + Given new "PublishApp" request And request contains "app_id" parameter with value "7addb29b-f935-472c-ae79-d1963979a23e" When the request is sent Then the response status is 404 Not Found @skip @team:DataDog/app-builder-backend Scenario: Unpublish App returns "Bad Request" response - Given operation "UnpublishApp" enabled - And new "UnpublishApp" request + Given new "UnpublishApp" request And request contains "app_id" parameter with value "invalid-uuid" When the request is sent Then the response status is 400 Bad Request @skip-typescript @team:DataDog/app-builder-backend Scenario: Unpublish App returns "Not Found" response - Given operation "UnpublishApp" enabled - And new "UnpublishApp" request + Given new "UnpublishApp" request And request contains "app_id" parameter with value "7addb29b-f935-472c-ae79-d1963979a23e" When the request is sent Then the response status is 404 Not Found @skip-typescript @team:DataDog/app-builder-backend Scenario: Unpublish App returns "OK" response - Given operation "UnpublishApp" enabled - And new "UnpublishApp" request + Given new "UnpublishApp" request And there is a valid "app" in the system And request contains "app_id" parameter from "app.data.id" When the request is sent @@ -184,8 +173,7 @@ Feature: App Builder @skip-typescript @team:DataDog/app-builder-backend Scenario: Update App returns "Bad Request" response - Given operation "UpdateApp" enabled - And new "UpdateApp" request + Given new "UpdateApp" request And there is a valid "app" in the system And request contains "app_id" parameter from "app.data.id" And body with value {"data": {"attributes": {"rootInstanceName": ""}, "id": "{{ app.data.id }}", "type": "appDefinitions"}} @@ -196,8 +184,7 @@ Feature: App Builder @skip-typescript @team:DataDog/app-builder-backend Scenario: Update App returns "OK" response - Given operation "UpdateApp" enabled - And new "UpdateApp" request + Given new "UpdateApp" request And there is a valid "app" in the system And request contains "app_id" parameter from "app.data.id" And body with value {"data": {"attributes": {"name": "Updated Name", "rootInstanceName": "grid0"}, "id": "{{ app.data.id }}", "type": "appDefinitions"}} diff --git a/src/test/resources/com/datadog/api/client/v2/api/given.json b/src/test/resources/com/datadog/api/client/v2/api/given.json index 57348eb2af3..b3c27699e52 100644 --- a/src/test/resources/com/datadog/api/client/v2/api/given.json +++ b/src/test/resources/com/datadog/api/client/v2/api/given.json @@ -63,7 +63,7 @@ "parameters": [ { "name": "body", - "value": "{\"data\": {\"attributes\": {\"components\": [{\"events\": [], \"name\": \"grid0\", \"properties\": {\"children\": [{\"events\": [], \"name\": \"gridCell0\", \"properties\": {\"children\": [{\"events\": [], \"name\": \"calloutValue0\", \"properties\": {\"isDisabled\": false, \"isLoading\": false, \"isVisible\": true, \"label\": \"CPU Usage\", \"size\": \"sm\", \"style\": \"vivid_yellow\", \"unit\": \"kB\", \"value\": \"42\"}, \"type\": \"calloutValue\"}], \"isVisible\": \"true\", \"layout\": {\"default\": {\"height\": 8, \"width\": 2, \"x\": 0, \"y\": 0}}}, \"type\": \"gridCell\"}]}, \"type\": \"grid\"}], \"description\": \"This is a simple example app\", \"queries\": [], \"name\": \"Example App\", \"rootInstanceName\": \"grid0\"}, \"type\": \"appDefinitions\"}}" + "value": "{\"data\":{\"type\":\"appDefinitions\",\"attributes\":{\"rootInstanceName\":\"grid0\",\"components\":[{\"name\":\"grid0\",\"type\":\"grid\",\"properties\":{\"children\":[{\"type\":\"gridCell\",\"name\":\"gridCell0\",\"properties\":{\"children\":[{\"name\":\"text0\",\"type\":\"text\",\"properties\":{\"content\":\"# Cat Facts\",\"contentType\":\"markdown\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"isVisible\":true},\"events\":[]}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"x\":0,\"y\":0,\"width\":4,\"height\":5}}},\"events\":[]},{\"type\":\"gridCell\",\"name\":\"gridCell2\",\"properties\":{\"children\":[{\"name\":\"table0\",\"type\":\"table\",\"properties\":{\"data\":\"${fetchFacts?.outputs?.body?.data}\",\"columns\":[{\"dataPath\":\"fact\",\"header\":\"fact\",\"isHidden\":false,\"id\":\"0ae2ae9e-0280-4389-83c6-1c5949f7e674\"},{\"dataPath\":\"length\",\"header\":\"length\",\"isHidden\":true,\"id\":\"c9048611-0196-4a00-9366-1ef9e3ec0408\"},{\"id\":\"8fa9284b-7a58-4f13-9959-57b7d8a7fe8f\",\"dataPath\":\"Due Date\",\"header\":\"Unused Old Column\",\"disableSortBy\":false,\"formatter\":{\"type\":\"formatted_time\",\"format\":\"LARGE_WITHOUT_TIME\"},\"isDeleted\":true}],\"summary\":true,\"pageSize\":\"${pageSize?.value}\",\"paginationType\":\"server_side\",\"isLoading\":\"${fetchFacts?.isLoading}\",\"rowButtons\":[],\"isWrappable\":false,\"isScrollable\":\"vertical\",\"isSubRowsEnabled\":false,\"globalFilter\":false,\"isVisible\":true,\"totalCount\":\"${fetchFacts?.outputs?.body?.total}\"},\"events\":[]}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"x\":0,\"y\":5,\"width\":12,\"height\":96}}},\"events\":[]},{\"type\":\"gridCell\",\"name\":\"gridCell1\",\"properties\":{\"children\":[{\"name\":\"text1\",\"type\":\"text\",\"properties\":{\"content\":\"## Random Fact\\n\\n${randomFact?.outputs?.fact}\",\"contentType\":\"markdown\",\"textAlign\":\"left\",\"verticalAlign\":\"top\",\"isVisible\":true},\"events\":[]}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"x\":0,\"y\":101,\"width\":12,\"height\":16}}},\"events\":[]},{\"type\":\"gridCell\",\"name\":\"gridCell3\",\"properties\":{\"children\":[{\"name\":\"button0\",\"type\":\"button\",\"properties\":{\"label\":\"Increase Page Size\",\"level\":\"default\",\"isPrimary\":true,\"isBorderless\":false,\"isLoading\":false,\"isDisabled\":false,\"isVisible\":true,\"iconLeft\":\"angleUp\",\"iconRight\":\"\"},\"events\":[{\"variableName\":\"pageSize\",\"value\":\"${pageSize?.value + 1}\",\"name\":\"click\",\"type\":\"setStateVariableValue\"}]}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"x\":10,\"y\":134,\"width\":2,\"height\":4}}},\"events\":[]},{\"type\":\"gridCell\",\"name\":\"gridCell4\",\"properties\":{\"children\":[{\"name\":\"button1\",\"type\":\"button\",\"properties\":{\"label\":\"Decrease Page Size\",\"level\":\"default\",\"isPrimary\":true,\"isBorderless\":false,\"isLoading\":false,\"isDisabled\":false,\"isVisible\":true,\"iconLeft\":\"angleDown\",\"iconRight\":\"\"},\"events\":[{\"variableName\":\"pageSize\",\"value\":\"${pageSize?.value - 1}\",\"name\":\"click\",\"type\":\"setStateVariableValue\"}]}],\"isVisible\":\"true\",\"layout\":{\"default\":{\"x\":10,\"y\":138,\"width\":2,\"height\":4}}},\"events\":[]}],\"backgroundColor\":\"default\"},\"events\":[]}],\"queries\":[{\"id\":\"92ff0bb8-553b-4f31-87c7-ef5bd16d47d5\",\"type\":\"action\",\"name\":\"fetchFacts\",\"events\":[],\"properties\":{\"spec\":{\"fqn\":\"com.datadoghq.http.request\",\"connectionId\":\"5e63f4a8-4ce6-47de-ba11-f6617c1d54f3\",\"inputs\":{\"verb\":\"GET\",\"url\":\"https://catfact.ninja/facts\",\"urlParams\":[{\"key\":\"limit\",\"value\":\"${pageSize.value.toString()}\"},{\"key\":\"page\",\"value\":\"${(table0.pageIndex + 1).toString()}\"}]}}}},{\"type\":\"stateVariable\",\"name\":\"pageSize\",\"properties\":{\"defaultValue\":\"${20}\"},\"id\":\"afd03c81-4075-4432-8618-ba09d52d2f2d\"},{\"type\":\"dataTransform\",\"name\":\"randomFact\",\"properties\":{\"outputs\":\"${(() => {const facts = fetchFacts.outputs.body.data\\nreturn facts[Math.floor(Math.random()*facts.length)]\\n})()}\"},\"id\":\"0fb22859-47dc-4137-9e41-7b67d04c525c\"}],\"name\":\"Example Cat Facts Viewer\",\"description\":\"This is a slightly complicated example app that fetches and displays cat facts\"}}}" } ], "step": "there is a valid \"app\" in the system",