import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::SageMaker::PartnerApp */ export declare class PartnerApp extends pulumi.CustomResource { /** * Get an existing PartnerApp resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): PartnerApp; /** * Returns true if the given object is an instance of PartnerApp. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is PartnerApp; /** * The version of the PartnerApp. */ readonly appVersion: pulumi.Output; /** * A collection of settings that specify the maintenance schedule for the PartnerApp. */ readonly applicationConfig: pulumi.Output; /** * The Amazon Resource Name (ARN) of the created PartnerApp. */ readonly arn: pulumi.Output; /** * The Auth type of PartnerApp. */ readonly authType: pulumi.Output; /** * The AppServerUrl based on app and account-info. */ readonly baseUrl: pulumi.Output; /** * The client token for the PartnerApp. */ readonly clientToken: pulumi.Output; /** * The end-of-life date for the current version of the PartnerApp. */ readonly currentVersionEolDate: pulumi.Output; /** * Enables automatic minor version upgrades for the PartnerApp. */ readonly enableAutoMinorVersionUpgrade: pulumi.Output; /** * Enables IAM Session based Identity for PartnerApp. */ readonly enableIamSessionBasedIdentity: pulumi.Output; /** * The execution role for the user. */ readonly executionRoleArn: pulumi.Output; /** * The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp. */ readonly kmsKeyId: pulumi.Output; /** * A collection of settings that specify the maintenance schedule for the PartnerApp. */ readonly maintenanceConfig: pulumi.Output; /** * A name for the PartnerApp. */ readonly name: pulumi.Output; /** * A list of tags to apply to the PartnerApp. */ readonly tags: pulumi.Output; /** * The tier of the PartnerApp. */ readonly tier: pulumi.Output; /** * The type of PartnerApp. */ readonly type: pulumi.Output; /** * Create a PartnerApp resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: PartnerAppArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a PartnerApp resource. */ export interface PartnerAppArgs { /** * The version of the PartnerApp. */ appVersion?: pulumi.Input; /** * A collection of settings that specify the maintenance schedule for the PartnerApp. */ applicationConfig?: pulumi.Input; /** * The Auth type of PartnerApp. */ authType: pulumi.Input; /** * The client token for the PartnerApp. */ clientToken?: pulumi.Input; /** * Enables automatic minor version upgrades for the PartnerApp. */ enableAutoMinorVersionUpgrade?: pulumi.Input; /** * Enables IAM Session based Identity for PartnerApp. */ enableIamSessionBasedIdentity?: pulumi.Input; /** * The execution role for the user. */ executionRoleArn: pulumi.Input; /** * The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp. */ kmsKeyId?: pulumi.Input; /** * A collection of settings that specify the maintenance schedule for the PartnerApp. */ maintenanceConfig?: pulumi.Input; /** * A name for the PartnerApp. */ name?: pulumi.Input; /** * A list of tags to apply to the PartnerApp. */ tags?: pulumi.Input[]>; /** * The tier of the PartnerApp. */ tier: pulumi.Input; /** * The type of PartnerApp. */ type: pulumi.Input; }