import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateLocationAzureBlobRequest, UpdateLocationAzureBlobResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateLocationAzureBlobCommand}. */ export interface UpdateLocationAzureBlobCommandInput extends UpdateLocationAzureBlobRequest { } /** * @public * * The output of {@link UpdateLocationAzureBlobCommand}. */ export interface UpdateLocationAzureBlobCommandOutput extends UpdateLocationAzureBlobResponse, __MetadataBearer { } declare const UpdateLocationAzureBlobCommand_base: { new (input: UpdateLocationAzureBlobCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateLocationAzureBlobCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Modifies the following configurations of the Microsoft Azure Blob Storage transfer * location that you're using with DataSync.

*

For more information, see Configuring DataSync transfers with Azure Blob Storage.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataSyncClient, UpdateLocationAzureBlobCommand } from "@aws-sdk/client-datasync"; // ES Modules import * // const { DataSyncClient, UpdateLocationAzureBlobCommand } = require("@aws-sdk/client-datasync"); // CommonJS import * // import type { DataSyncClientConfig } from "@aws-sdk/client-datasync"; * const config = {}; // type is DataSyncClientConfig * const client = new DataSyncClient(config); * const input = { // UpdateLocationAzureBlobRequest * LocationArn: "STRING_VALUE", // required * Subdirectory: "STRING_VALUE", * AuthenticationType: "SAS" || "NONE", * SasConfiguration: { // AzureBlobSasConfiguration * Token: "STRING_VALUE", // required * }, * BlobType: "BLOCK", * AccessTier: "HOT" || "COOL" || "ARCHIVE", * AgentArns: [ // AgentArnList * "STRING_VALUE", * ], * CmkSecretConfig: { // CmkSecretConfig * SecretArn: "STRING_VALUE", * KmsKeyArn: "STRING_VALUE", * }, * CustomSecretConfig: { // CustomSecretConfig * SecretArn: "STRING_VALUE", * SecretAccessRoleArn: "STRING_VALUE", * }, * }; * const command = new UpdateLocationAzureBlobCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateLocationAzureBlobCommandInput - {@link UpdateLocationAzureBlobCommandInput} * @returns {@link UpdateLocationAzureBlobCommandOutput} * @see {@link UpdateLocationAzureBlobCommandInput} for command's `input` shape. * @see {@link UpdateLocationAzureBlobCommandOutput} for command's `response` shape. * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape. * * @throws {@link InternalException} (server fault) *

This exception is thrown when an error occurs in the DataSync * service.

* * @throws {@link InvalidRequestException} (client fault) *

This exception is thrown when the client submits a malformed request.

* * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* * * @public */ export declare class UpdateLocationAzureBlobCommand extends UpdateLocationAzureBlobCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateLocationAzureBlobRequest; output: {}; }; sdk: { input: UpdateLocationAzureBlobCommandInput; output: UpdateLocationAzureBlobCommandOutput; }; }; }