Function CloudstoragesApiAxiosParamCreator

CloudstoragesApi - axios parameter creator

  • Parameters

    Returns {
        cloudstoragesCreate: (
            cloudStorageWriteRequest: CloudStorageWriteRequest,
            xOrganization?: string,
            org?: string,
            orgId?: number,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        cloudstoragesDestroy: (
            id: number,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        cloudstoragesList: (
            xOrganization?: string,
            credentialsType?: CloudstoragesListCredentialsTypeEnum,
            filter?: string,
            name?: string,
            org?: string,
            orgId?: number,
            owner?: string,
            page?: number,
            pageSize?: number,
            providerType?: CloudstoragesListProviderTypeEnum,
            resource?: string,
            search?: string,
            sort?: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        cloudstoragesPartialUpdate: (
            id: number,
            patchedCloudStorageWriteRequest?: PatchedCloudStorageWriteRequest,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        cloudstoragesRetrieve: (
            id: number,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        cloudstoragesRetrieveActions: (
            id: number,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        cloudstoragesRetrieveContentV2: (
            id: number,
            manifestPath?: string,
            nextToken?: string,
            pageSize?: number,
            prefix?: string,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        cloudstoragesRetrievePreview: (
            id: number,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
        cloudstoragesRetrieveStatus: (
            id: number,
            options?: RawAxiosRequestConfig,
        ) => Promise<RequestArgs>;
    }

    • cloudstoragesCreate: (
          cloudStorageWriteRequest: CloudStorageWriteRequest,
          xOrganization?: string,
          org?: string,
          orgId?: number,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>
    • cloudstoragesDestroy: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
    • cloudstoragesList: (
          xOrganization?: string,
          credentialsType?: CloudstoragesListCredentialsTypeEnum,
          filter?: string,
          name?: string,
          org?: string,
          orgId?: number,
          owner?: string,
          page?: number,
          pageSize?: number,
          providerType?: CloudstoragesListProviderTypeEnum,
          resource?: string,
          search?: string,
          sort?: string,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>
    • cloudstoragesPartialUpdate: (
          id: number,
          patchedCloudStorageWriteRequest?: PatchedCloudStorageWriteRequest,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>
    • cloudstoragesRetrieve: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
    • cloudstoragesRetrieveActions: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>

      Method return allowed actions for cloud storage. It's required for reading/writing

    • cloudstoragesRetrieveContentV2: (
          id: number,
          manifestPath?: string,
          nextToken?: string,
          pageSize?: number,
          prefix?: string,
          options?: RawAxiosRequestConfig,
      ) => Promise<RequestArgs>
    • cloudstoragesRetrievePreview: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>
    • cloudstoragesRetrieveStatus: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>