import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdatePartnerAppRequest, UpdatePartnerAppResponse } from "../models/models_5"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdatePartnerAppCommand}. */ export interface UpdatePartnerAppCommandInput extends UpdatePartnerAppRequest { } /** * @public * * The output of {@link UpdatePartnerAppCommand}. */ export interface UpdatePartnerAppCommandOutput extends UpdatePartnerAppResponse, __MetadataBearer { } declare const UpdatePartnerAppCommand_base: { new (input: UpdatePartnerAppCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdatePartnerAppCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates all of the SageMaker Partner AI Apps in an account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, UpdatePartnerAppCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, UpdatePartnerAppCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * // import type { SageMakerClientConfig } from "@aws-sdk/client-sagemaker"; * const config = {}; // type is SageMakerClientConfig * const client = new SageMakerClient(config); * const input = { // UpdatePartnerAppRequest * Arn: "STRING_VALUE", // required * MaintenanceConfig: { // PartnerAppMaintenanceConfig * MaintenanceWindowStart: "STRING_VALUE", * }, * Tier: "STRING_VALUE", * ApplicationConfig: { // PartnerAppConfig * AdminUsers: [ // PartnerAppAdminUserList * "STRING_VALUE", * ], * Arguments: { // PartnerAppArguments * "": "STRING_VALUE", * }, * AssignedGroupPatterns: [ // AssignedGroupPatternsList * "STRING_VALUE", * ], * RoleGroupAssignments: [ // RoleGroupAssignmentsList * { // RoleGroupAssignment * RoleName: "STRING_VALUE", // required * GroupPatterns: [ // GroupPatternsList // required * "STRING_VALUE", * ], * }, * ], * }, * IdcConfig: { // IdcConfigInput * InstanceArn: "STRING_VALUE", // required * }, * AuthType: "IAM" || "IDC", * EnableIamSessionBasedIdentity: true || false, * EnableAutoMinorVersionUpgrade: true || false, * AppVersion: "STRING_VALUE", * ClientToken: "STRING_VALUE", * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", // required * Value: "STRING_VALUE", // required * }, * ], * }; * const command = new UpdatePartnerAppCommand(input); * const response = await client.send(command); * // { // UpdatePartnerAppResponse * // Arn: "STRING_VALUE", * // }; * * ``` * * @param UpdatePartnerAppCommandInput - {@link UpdatePartnerAppCommandInput} * @returns {@link UpdatePartnerAppCommandOutput} * @see {@link UpdatePartnerAppCommandInput} for command's `input` shape. * @see {@link UpdatePartnerAppCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

There was a conflict when you attempted to modify a SageMaker entity such as an Experiment or Artifact.

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

Resource being access is not found.

* * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class UpdatePartnerAppCommand extends UpdatePartnerAppCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdatePartnerAppRequest; output: UpdatePartnerAppResponse; }; sdk: { input: UpdatePartnerAppCommandInput; output: UpdatePartnerAppCommandOutput; }; }; }