create_storage

imerit_ango.sdk.SDK.

create_storage(storage_data)

Integrate a cloud storage provider with your organization by specifying the provider type, access credentials, and configuration parameters.

Parameters

  • storage_data: Storage

    • A Storage object containing the following attributes:

    • name: string

      • The name of the storage instance.

    • provider: StorageProvider

      • The cloud storage provider. Options:

        • StorageProvider.AWS

        • StorageProvider.GCP

        • StorageProvider.AZURE

    • public_key: string

      • The public access key for your cloud storage account.

    • private_key: string

      • The private access key for your cloud storage account.

    • region: string, default "eu-central-1"

      • The geographical region where your storage is located.

    • credentials: string

      • Additional credentials required for accessing the cloud storage.

Returns:

  • output: dict

    • A dictionary containing the result of the operation.

Example

Last updated