From 32433b743f06b7851fac469d413fd0a8198d751e Mon Sep 17 00:00:00 2001 From: Daan Rademaker Date: Mon, 27 Nov 2023 11:38:48 +0100 Subject: [PATCH] fix typo properties --- typescript/src/resources/unity-catalog/unityCatalogVolume.ts | 2 +- .../tests/resources/unity-catalog/unityCatalogVolume.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/typescript/src/resources/unity-catalog/unityCatalogVolume.ts b/typescript/src/resources/unity-catalog/unityCatalogVolume.ts index c8c98d07..c1b0cf3b 100644 --- a/typescript/src/resources/unity-catalog/unityCatalogVolume.ts +++ b/typescript/src/resources/unity-catalog/unityCatalogVolume.ts @@ -33,7 +33,7 @@ export class UnityCatalogVolume extends CustomResource { properties: { action: "volume", workspace_url: props.workspace_url, - catalog: props.volume, + volume: props.volume, } }); } diff --git a/typescript/tests/resources/unity-catalog/unityCatalogVolume.test.ts b/typescript/tests/resources/unity-catalog/unityCatalogVolume.test.ts index 7f4c39b6..278f69fe 100644 --- a/typescript/tests/resources/unity-catalog/unityCatalogVolume.test.ts +++ b/typescript/tests/resources/unity-catalog/unityCatalogVolume.test.ts @@ -32,7 +32,7 @@ describe("UnityCatalogVolume", () => { "workspace_url": { "Fn::ImportValue": "databricks-workspace-url" }, - "catalog": { + "volume": { "name": "some-name", "catalog_name": "some-catalog-name", "schema_name": "some-schema-name",