import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetSoftwareUpdatesRequest, GetSoftwareUpdatesResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetSoftwareUpdatesCommand}. */ export interface GetSoftwareUpdatesCommandInput extends GetSoftwareUpdatesRequest { } /** * @public * * The output of {@link GetSoftwareUpdatesCommand}. */ export interface GetSoftwareUpdatesCommandOutput extends GetSoftwareUpdatesResult, __MetadataBearer { } declare const GetSoftwareUpdatesCommand_base: { new (input: GetSoftwareUpdatesCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetSoftwareUpdatesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns an Amazon S3 presigned URL for an update file associated with a specified * JobId.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SnowballClient, GetSoftwareUpdatesCommand } from "@aws-sdk/client-snowball"; // ES Modules import * // const { SnowballClient, GetSoftwareUpdatesCommand } = require("@aws-sdk/client-snowball"); // CommonJS import * // import type { SnowballClientConfig } from "@aws-sdk/client-snowball"; * const config = {}; // type is SnowballClientConfig * const client = new SnowballClient(config); * const input = { // GetSoftwareUpdatesRequest * JobId: "STRING_VALUE", // required * }; * const command = new GetSoftwareUpdatesCommand(input); * const response = await client.send(command); * // { // GetSoftwareUpdatesResult * // UpdatesURI: "STRING_VALUE", * // }; * * ``` * * @param GetSoftwareUpdatesCommandInput - {@link GetSoftwareUpdatesCommandInput} * @returns {@link GetSoftwareUpdatesCommandOutput} * @see {@link GetSoftwareUpdatesCommandInput} for command's `input` shape. * @see {@link GetSoftwareUpdatesCommandOutput} for command's `response` shape. * @see {@link SnowballClientResolvedConfig | config} for SnowballClient's `config` shape. * * @throws {@link InvalidJobStateException} (client fault) *

The action can't be performed because the job's current state doesn't allow that action * to be performed.

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

The specified resource can't be found. Check the information you provided in your last * request, and try again.

* * @throws {@link SnowballServiceException} *

Base exception class for all service exceptions from Snowball service.

* * * @public */ export declare class GetSoftwareUpdatesCommand extends GetSoftwareUpdatesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetSoftwareUpdatesRequest; output: GetSoftwareUpdatesResult; }; sdk: { input: GetSoftwareUpdatesCommandInput; output: GetSoftwareUpdatesCommandOutput; }; }; }