@databricks/sdk-uc-volumes 0.38.0 → 0.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/package.js +1 -1
- package/dist/v1/model.js +10 -2
- package/dist/v1/model.js.map +1 -1
- package/package.json +4 -4
package/dist/package.js
CHANGED
package/dist/v1/model.js
CHANGED
|
@@ -40,9 +40,17 @@ const unmarshalVolumeInfoSchema = z.object({
|
|
|
40
40
|
full_name: z.string().optional(),
|
|
41
41
|
volume_id: z.string().optional(),
|
|
42
42
|
metastore_id: z.string().optional(),
|
|
43
|
-
created_at: z.union([
|
|
43
|
+
created_at: z.union([
|
|
44
|
+
z.number(),
|
|
45
|
+
z.bigint(),
|
|
46
|
+
z.string()
|
|
47
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
44
48
|
created_by: z.string().optional(),
|
|
45
|
-
updated_at: z.union([
|
|
49
|
+
updated_at: z.union([
|
|
50
|
+
z.number(),
|
|
51
|
+
z.bigint(),
|
|
52
|
+
z.string()
|
|
53
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
46
54
|
updated_by: z.string().optional(),
|
|
47
55
|
access_point: z.string().optional(),
|
|
48
56
|
encryption_details: z.lazy(() => unmarshalEncryptionDetailsSchema).optional(),
|
package/dist/v1/model.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport {z} from 'zod';\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SseEncryptionAlgorithm = {\n SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED: 'SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED',\n AWS_SSE_S3: 'AWS_SSE_S3',\n AWS_SSE_KMS: 'AWS_SSE_KMS',\n} as const;\nexport type SseEncryptionAlgorithm =\n | (typeof SseEncryptionAlgorithm)[keyof typeof SseEncryptionAlgorithm]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const VolumeType = {\n MANAGED: 'MANAGED',\n EXTERNAL: 'EXTERNAL',\n} as const;\nexport type VolumeType =\n | (typeof VolumeType)[keyof typeof VolumeType]\n | (string & {});\n\nexport interface CreateVolumeRequest {\n /** The name of the volume */\n name?: string | undefined;\n /** The name of the catalog where the schema and the volume are */\n catalogName?: string | undefined;\n /** The name of the schema where the volume is */\n schemaName?: string | undefined;\n /**\n * The type of the volume. An external volume is located in the specified external location.\n * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.\n * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)\n */\n volumeType?: VolumeType | undefined;\n /** The storage location on the cloud */\n storageLocation?: string | undefined;\n /** The identifier of the user who owns the volume */\n owner?: string | undefined;\n /** The comment attached to the volume */\n comment?: string | undefined;\n /** The three-level (fully qualified) name of the volume */\n fullName?: string | undefined;\n /** The unique identifier of the volume */\n volumeId?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the volume */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the volume last time */\n updatedBy?: string | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n}\n\nexport interface DeleteVolumeRequest {\n /** The three-level (fully qualified) name of the volume */\n fullNameArg?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteVolumeResponse {}\n\n/** Encryption options that apply to clients connecting to cloud storage. */\nexport interface EncryptionDetails {\n encryptionDetailsType?:\n | {\n $case: 'sseEncryptionDetails';\n /** Server-Side Encryption properties for clients communicating with AWS s3. */\n sseEncryptionDetails: SseEncryptionDetails;\n }\n | undefined;\n}\n\nexport interface GetVolumeRequest {\n /** The three-level (fully qualified) name of the volume */\n fullNameArg?: string | undefined;\n /** Whether to include volumes in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n}\n\nexport interface ListVolumesRequest {\n /** The identifier of the catalog */\n catalogName?: string | undefined;\n /** The identifier of the schema */\n schemaName?: string | undefined;\n /** Whether to include volumes in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n /**\n * Maximum number of volumes to return (page length).\n *\n * If not set, the page length is set to a server configured value (10000, as of 1/29/2024).\n * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value (10000, as of 1/29/2024);\n * - when set to 0, the page length is set to a server configured value (10000, as of 1/29/2024) (recommended);\n * - when set to a value less than 0, an invalid parameter error is returned;\n *\n * Note: this parameter controls only the maximum number of volumes to return. The actual number of volumes returned in a page\n * may be smaller than this value, including 0, even if there are more pages.\n */\n maxResults?: number | undefined;\n /** Opaque token returned by a previous request. It must be included in the request to retrieve the next page of results (pagination). */\n pageToken?: string | undefined;\n}\n\nexport interface ListVolumesResponse {\n volumes?: VolumeInfo[] | undefined;\n /**\n * Opaque token to retrieve the next page of results. Absent if there are no more pages.\n * __page_token__ should be set to this value for the next request to retrieve the next page of results.\n */\n nextPageToken?: string | undefined;\n}\n\n/** Server-Side Encryption properties for clients communicating with AWS s3. */\nexport interface SseEncryptionDetails {\n /** Sets the value of the 'x-amz-server-side-encryption' header in S3 request. */\n algorithm?: SseEncryptionAlgorithm | undefined;\n /**\n * Optional. The ARN of the SSE-KMS key used with the S3 location, when algorithm = \"SSE-KMS\".\n * Sets the value of the 'x-amz-server-side-encryption-aws-kms-key-id' header.\n */\n awsKmsKeyArn?: string | undefined;\n}\n\nexport interface UpdateVolumeRequest {\n /** The three-level (fully qualified) name of the volume */\n fullNameArg?: string | undefined;\n /** New name for the volume. */\n newName?: string | undefined;\n /** The name of the volume */\n name?: string | undefined;\n /** The name of the catalog where the schema and the volume are */\n catalogName?: string | undefined;\n /** The name of the schema where the volume is */\n schemaName?: string | undefined;\n /**\n * The type of the volume. An external volume is located in the specified external location.\n * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.\n * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)\n */\n volumeType?: VolumeType | undefined;\n /** The storage location on the cloud */\n storageLocation?: string | undefined;\n /** The identifier of the user who owns the volume */\n owner?: string | undefined;\n /** The comment attached to the volume */\n comment?: string | undefined;\n /** The three-level (fully qualified) name of the volume */\n fullName?: string | undefined;\n /** The unique identifier of the volume */\n volumeId?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the volume */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the volume last time */\n updatedBy?: string | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n}\n\nexport interface VolumeInfo {\n /** The name of the volume */\n name?: string | undefined;\n /** The name of the catalog where the schema and the volume are */\n catalogName?: string | undefined;\n /** The name of the schema where the volume is */\n schemaName?: string | undefined;\n /**\n * The type of the volume. An external volume is located in the specified external location.\n * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.\n * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)\n */\n volumeType?: VolumeType | undefined;\n /** The storage location on the cloud */\n storageLocation?: string | undefined;\n /** The identifier of the user who owns the volume */\n owner?: string | undefined;\n /** The comment attached to the volume */\n comment?: string | undefined;\n /** The three-level (fully qualified) name of the volume */\n fullName?: string | undefined;\n /** The unique identifier of the volume */\n volumeId?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the volume */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the volume last time */\n updatedBy?: string | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n}\n\nexport const unmarshalDeleteVolumeResponseSchema: z.ZodType<DeleteVolumeResponse> =\n z.object({});\n\nexport const unmarshalEncryptionDetailsSchema: z.ZodType<EncryptionDetails> = z\n .object({\n sse_encryption_details: z\n .lazy(() => unmarshalSseEncryptionDetailsSchema)\n .optional(),\n })\n .transform(d => ({\n encryptionDetailsType:\n d.sse_encryption_details !== undefined\n ? {\n $case: 'sseEncryptionDetails' as const,\n sseEncryptionDetails: d.sse_encryption_details,\n }\n : undefined,\n }));\n\nexport const unmarshalListVolumesResponseSchema: z.ZodType<ListVolumesResponse> =\n z\n .object({\n volumes: z.array(z.lazy(() => unmarshalVolumeInfoSchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n volumes: d.volumes,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalSseEncryptionDetailsSchema: z.ZodType<SseEncryptionDetails> =\n z\n .object({\n algorithm: z.string().optional(),\n aws_kms_key_arn: z.string().optional(),\n })\n .transform(d => ({\n algorithm: d.algorithm,\n awsKmsKeyArn: d.aws_kms_key_arn,\n }));\n\nexport const unmarshalVolumeInfoSchema: z.ZodType<VolumeInfo> = z\n .object({\n name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n volume_type: z.string().optional(),\n storage_location: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n full_name: z.string().optional(),\n volume_id: z.string().optional(),\n metastore_id: z.string().optional(),\n created_at: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n created_by: z.string().optional(),\n updated_at: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n updated_by: z.string().optional(),\n access_point: z.string().optional(),\n encryption_details: z\n .lazy(() => unmarshalEncryptionDetailsSchema)\n .optional(),\n browse_only: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n volumeType: d.volume_type,\n storageLocation: d.storage_location,\n owner: d.owner,\n comment: d.comment,\n fullName: d.full_name,\n volumeId: d.volume_id,\n metastoreId: d.metastore_id,\n createdAt: d.created_at,\n createdBy: d.created_by,\n updatedAt: d.updated_at,\n updatedBy: d.updated_by,\n accessPoint: d.access_point,\n encryptionDetails: d.encryption_details,\n browseOnly: d.browse_only,\n }));\n\nexport const marshalCreateVolumeRequestSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n volumeType: z.string().optional(),\n storageLocation: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n fullName: z.string().optional(),\n volumeId: z.string().optional(),\n metastoreId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n accessPoint: z.string().optional(),\n encryptionDetails: z.lazy(() => marshalEncryptionDetailsSchema).optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n volume_type: d.volumeType,\n storage_location: d.storageLocation,\n owner: d.owner,\n comment: d.comment,\n full_name: d.fullName,\n volume_id: d.volumeId,\n metastore_id: d.metastoreId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n access_point: d.accessPoint,\n encryption_details: d.encryptionDetails,\n browse_only: d.browseOnly,\n }));\n\nexport const marshalEncryptionDetailsSchema: z.ZodType = z\n .object({\n encryptionDetailsType: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('sseEncryptionDetails'),\n sseEncryptionDetails: z.lazy(() => marshalSseEncryptionDetailsSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.encryptionDetailsType?.$case === 'sseEncryptionDetails' && {\n sse_encryption_details: d.encryptionDetailsType.sseEncryptionDetails,\n }),\n }));\n\nexport const marshalSseEncryptionDetailsSchema: z.ZodType = z\n .object({\n algorithm: z.string().optional(),\n awsKmsKeyArn: z.string().optional(),\n })\n .transform(d => ({\n algorithm: d.algorithm,\n aws_kms_key_arn: d.awsKmsKeyArn,\n }));\n\nexport const marshalUpdateVolumeRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n newName: z.string().optional(),\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n volumeType: z.string().optional(),\n storageLocation: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n fullName: z.string().optional(),\n volumeId: z.string().optional(),\n metastoreId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n accessPoint: z.string().optional(),\n encryptionDetails: z.lazy(() => marshalEncryptionDetailsSchema).optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n new_name: d.newName,\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n volume_type: d.volumeType,\n storage_location: d.storageLocation,\n owner: d.owner,\n comment: d.comment,\n full_name: d.fullName,\n volume_id: d.volumeId,\n metastore_id: d.metastoreId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n access_point: d.accessPoint,\n encryption_details: d.encryptionDetails,\n browse_only: d.browseOnly,\n }));\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport {z} from 'zod';\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SseEncryptionAlgorithm = {\n SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED: 'SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED',\n AWS_SSE_S3: 'AWS_SSE_S3',\n AWS_SSE_KMS: 'AWS_SSE_KMS',\n} as const;\nexport type SseEncryptionAlgorithm =\n | (typeof SseEncryptionAlgorithm)[keyof typeof SseEncryptionAlgorithm]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const VolumeType = {\n MANAGED: 'MANAGED',\n EXTERNAL: 'EXTERNAL',\n} as const;\nexport type VolumeType =\n | (typeof VolumeType)[keyof typeof VolumeType]\n | (string & {});\n\nexport interface CreateVolumeRequest {\n /** The name of the volume */\n name?: string | undefined;\n /** The name of the catalog where the schema and the volume are */\n catalogName?: string | undefined;\n /** The name of the schema where the volume is */\n schemaName?: string | undefined;\n /**\n * The type of the volume. An external volume is located in the specified external location.\n * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.\n * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)\n */\n volumeType?: VolumeType | undefined;\n /** The storage location on the cloud */\n storageLocation?: string | undefined;\n /** The identifier of the user who owns the volume */\n owner?: string | undefined;\n /** The comment attached to the volume */\n comment?: string | undefined;\n /** The three-level (fully qualified) name of the volume */\n fullName?: string | undefined;\n /** The unique identifier of the volume */\n volumeId?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the volume */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the volume last time */\n updatedBy?: string | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n}\n\nexport interface DeleteVolumeRequest {\n /** The three-level (fully qualified) name of the volume */\n fullNameArg?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteVolumeResponse {}\n\n/** Encryption options that apply to clients connecting to cloud storage. */\nexport interface EncryptionDetails {\n encryptionDetailsType?:\n | {\n $case: 'sseEncryptionDetails';\n /** Server-Side Encryption properties for clients communicating with AWS s3. */\n sseEncryptionDetails: SseEncryptionDetails;\n }\n | undefined;\n}\n\nexport interface GetVolumeRequest {\n /** The three-level (fully qualified) name of the volume */\n fullNameArg?: string | undefined;\n /** Whether to include volumes in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n}\n\nexport interface ListVolumesRequest {\n /** The identifier of the catalog */\n catalogName?: string | undefined;\n /** The identifier of the schema */\n schemaName?: string | undefined;\n /** Whether to include volumes in the response for which the principal can only access selective metadata for */\n includeBrowse?: boolean | undefined;\n /**\n * Maximum number of volumes to return (page length).\n *\n * If not set, the page length is set to a server configured value (10000, as of 1/29/2024).\n * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value (10000, as of 1/29/2024);\n * - when set to 0, the page length is set to a server configured value (10000, as of 1/29/2024) (recommended);\n * - when set to a value less than 0, an invalid parameter error is returned;\n *\n * Note: this parameter controls only the maximum number of volumes to return. The actual number of volumes returned in a page\n * may be smaller than this value, including 0, even if there are more pages.\n */\n maxResults?: number | undefined;\n /** Opaque token returned by a previous request. It must be included in the request to retrieve the next page of results (pagination). */\n pageToken?: string | undefined;\n}\n\nexport interface ListVolumesResponse {\n volumes?: VolumeInfo[] | undefined;\n /**\n * Opaque token to retrieve the next page of results. Absent if there are no more pages.\n * __page_token__ should be set to this value for the next request to retrieve the next page of results.\n */\n nextPageToken?: string | undefined;\n}\n\n/** Server-Side Encryption properties for clients communicating with AWS s3. */\nexport interface SseEncryptionDetails {\n /** Sets the value of the 'x-amz-server-side-encryption' header in S3 request. */\n algorithm?: SseEncryptionAlgorithm | undefined;\n /**\n * Optional. The ARN of the SSE-KMS key used with the S3 location, when algorithm = \"SSE-KMS\".\n * Sets the value of the 'x-amz-server-side-encryption-aws-kms-key-id' header.\n */\n awsKmsKeyArn?: string | undefined;\n}\n\nexport interface UpdateVolumeRequest {\n /** The three-level (fully qualified) name of the volume */\n fullNameArg?: string | undefined;\n /** New name for the volume. */\n newName?: string | undefined;\n /** The name of the volume */\n name?: string | undefined;\n /** The name of the catalog where the schema and the volume are */\n catalogName?: string | undefined;\n /** The name of the schema where the volume is */\n schemaName?: string | undefined;\n /**\n * The type of the volume. An external volume is located in the specified external location.\n * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.\n * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)\n */\n volumeType?: VolumeType | undefined;\n /** The storage location on the cloud */\n storageLocation?: string | undefined;\n /** The identifier of the user who owns the volume */\n owner?: string | undefined;\n /** The comment attached to the volume */\n comment?: string | undefined;\n /** The three-level (fully qualified) name of the volume */\n fullName?: string | undefined;\n /** The unique identifier of the volume */\n volumeId?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the volume */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the volume last time */\n updatedBy?: string | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n}\n\nexport interface VolumeInfo {\n /** The name of the volume */\n name?: string | undefined;\n /** The name of the catalog where the schema and the volume are */\n catalogName?: string | undefined;\n /** The name of the schema where the volume is */\n schemaName?: string | undefined;\n /**\n * The type of the volume. An external volume is located in the specified external location.\n * A managed volume is located in the default location which is specified by the parent schema, or the parent catalog, or the Metastore.\n * [Learn more](https://docs.databricks.com/aws/en/volumes/managed-vs-external)\n */\n volumeType?: VolumeType | undefined;\n /** The storage location on the cloud */\n storageLocation?: string | undefined;\n /** The identifier of the user who owns the volume */\n owner?: string | undefined;\n /** The comment attached to the volume */\n comment?: string | undefined;\n /** The three-level (fully qualified) name of the volume */\n fullName?: string | undefined;\n /** The unique identifier of the volume */\n volumeId?: string | undefined;\n /** The unique identifier of the metastore */\n metastoreId?: string | undefined;\n createdAt?: bigint | undefined;\n /** The identifier of the user who created the volume */\n createdBy?: string | undefined;\n updatedAt?: bigint | undefined;\n /** The identifier of the user who updated the volume last time */\n updatedBy?: string | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n}\n\nexport const unmarshalDeleteVolumeResponseSchema: z.ZodType<DeleteVolumeResponse> =\n z.object({});\n\nexport const unmarshalEncryptionDetailsSchema: z.ZodType<EncryptionDetails> = z\n .object({\n sse_encryption_details: z\n .lazy(() => unmarshalSseEncryptionDetailsSchema)\n .optional(),\n })\n .transform(d => ({\n encryptionDetailsType:\n d.sse_encryption_details !== undefined\n ? {\n $case: 'sseEncryptionDetails' as const,\n sseEncryptionDetails: d.sse_encryption_details,\n }\n : undefined,\n }));\n\nexport const unmarshalListVolumesResponseSchema: z.ZodType<ListVolumesResponse> =\n z\n .object({\n volumes: z.array(z.lazy(() => unmarshalVolumeInfoSchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n volumes: d.volumes,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalSseEncryptionDetailsSchema: z.ZodType<SseEncryptionDetails> =\n z\n .object({\n algorithm: z.string().optional(),\n aws_kms_key_arn: z.string().optional(),\n })\n .transform(d => ({\n algorithm: d.algorithm,\n awsKmsKeyArn: d.aws_kms_key_arn,\n }));\n\nexport const unmarshalVolumeInfoSchema: z.ZodType<VolumeInfo> = z\n .object({\n name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n volume_type: z.string().optional(),\n storage_location: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n full_name: z.string().optional(),\n volume_id: z.string().optional(),\n metastore_id: z.string().optional(),\n created_at: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n created_by: z.string().optional(),\n updated_at: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n updated_by: z.string().optional(),\n access_point: z.string().optional(),\n encryption_details: z\n .lazy(() => unmarshalEncryptionDetailsSchema)\n .optional(),\n browse_only: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n volumeType: d.volume_type,\n storageLocation: d.storage_location,\n owner: d.owner,\n comment: d.comment,\n fullName: d.full_name,\n volumeId: d.volume_id,\n metastoreId: d.metastore_id,\n createdAt: d.created_at,\n createdBy: d.created_by,\n updatedAt: d.updated_at,\n updatedBy: d.updated_by,\n accessPoint: d.access_point,\n encryptionDetails: d.encryption_details,\n browseOnly: d.browse_only,\n }));\n\nexport const marshalCreateVolumeRequestSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n volumeType: z.string().optional(),\n storageLocation: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n fullName: z.string().optional(),\n volumeId: z.string().optional(),\n metastoreId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n accessPoint: z.string().optional(),\n encryptionDetails: z.lazy(() => marshalEncryptionDetailsSchema).optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n volume_type: d.volumeType,\n storage_location: d.storageLocation,\n owner: d.owner,\n comment: d.comment,\n full_name: d.fullName,\n volume_id: d.volumeId,\n metastore_id: d.metastoreId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n access_point: d.accessPoint,\n encryption_details: d.encryptionDetails,\n browse_only: d.browseOnly,\n }));\n\nexport const marshalEncryptionDetailsSchema: z.ZodType = z\n .object({\n encryptionDetailsType: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('sseEncryptionDetails'),\n sseEncryptionDetails: z.lazy(() => marshalSseEncryptionDetailsSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.encryptionDetailsType?.$case === 'sseEncryptionDetails' && {\n sse_encryption_details: d.encryptionDetailsType.sseEncryptionDetails,\n }),\n }));\n\nexport const marshalSseEncryptionDetailsSchema: z.ZodType = z\n .object({\n algorithm: z.string().optional(),\n awsKmsKeyArn: z.string().optional(),\n })\n .transform(d => ({\n algorithm: d.algorithm,\n aws_kms_key_arn: d.awsKmsKeyArn,\n }));\n\nexport const marshalUpdateVolumeRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n newName: z.string().optional(),\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n volumeType: z.string().optional(),\n storageLocation: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n fullName: z.string().optional(),\n volumeId: z.string().optional(),\n metastoreId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n accessPoint: z.string().optional(),\n encryptionDetails: z.lazy(() => marshalEncryptionDetailsSchema).optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n new_name: d.newName,\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n volume_type: d.volumeType,\n storage_location: d.storageLocation,\n owner: d.owner,\n comment: d.comment,\n full_name: d.fullName,\n volume_id: d.volumeId,\n metastore_id: d.metastoreId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n access_point: d.accessPoint,\n encryption_details: d.encryptionDetails,\n browse_only: d.browseOnly,\n }));\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databricks/sdk-uc-volumes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.40.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"directory": "packages/uc/volumes"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@databricks/sdk-auth": ">=0.
|
|
37
|
-
"@databricks/sdk-core": ">=0.
|
|
38
|
-
"@databricks/sdk-options": ">=0.
|
|
36
|
+
"@databricks/sdk-auth": ">=0.40.0 <1.0.0",
|
|
37
|
+
"@databricks/sdk-core": ">=0.40.0 <1.0.0",
|
|
38
|
+
"@databricks/sdk-options": ">=0.40.0 <1.0.0",
|
|
39
39
|
"@js-temporal/polyfill": "^0.5.0",
|
|
40
40
|
"json-bigint": "^1.0.0",
|
|
41
41
|
"zod": "^4.3.6"
|