POST /v1/services/storageServices
Create a Storage Service
Create a new storage service connection
POST
POST /v1/services/storageServices
Create a Storage Service
Create a new storage service connection to a platform such as S3, GCS, or ADLS.Body Parameters
string
required
Name of the storage service. Must be unique across all storage services.
string
required
Type of storage service (e.g.,
S3, GCS, ADLS, CustomStorage).object
required
Connection configuration specific to the service type.
string
Human-readable display name for the storage service.
string
Description of the storage service in Markdown format.
array
Array of owner references (users or teams) to assign to the service.
string
Fully qualified name of the domain to assign for governance purposes.
array
Array of classification tags to apply to the storage service.
POST /v1/services/storageServices
Returns
Returns the created storage service object with all specified properties and system-generated fields.Response
string
Unique identifier for the storage service (UUID format).
string
Storage service name.
string
Fully qualified name of the service.
string
Human-readable display name.
string
Description of the storage service in Markdown format.
string
Type of storage service (e.g., S3, GCS, ADLS, CustomStorage).
object
Connection configuration for the service.
array
List of owners assigned to the storage service.
string
Fully qualified name of the assigned domain.
array
Classification tags applied to the storage service.
number
Version number for the entity (starts at 0.1).
Create or Update (PUT)
UsePUT /v1/services/storageServices instead of POST to perform an upsert. If a storage service with the same fullyQualifiedName already exists, it will be updated; otherwise, a new service is created. The request body is the same as POST.
PUT will not return a 409 conflict error if the entity already exists — it will update the existing entity instead.Bulk Create or Update (PUT)
UsePUT /v1/services/storageServices/bulk to create or update multiple storage services in a single request. The request body is an array of create request objects.