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 schema for AWS::DataSync::StorageSystem. */ export declare class StorageSystem extends pulumi.CustomResource { /** * Get an existing StorageSystem 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): StorageSystem; /** * Returns true if the given object is an instance of StorageSystem. 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 StorageSystem; /** * The ARN of the DataSync agent that connects to and reads from the on-premises storage system's management interface. */ readonly agentArns: pulumi.Output; /** * The ARN of the Amazon CloudWatch log group used to monitor and log discovery job events. */ readonly cloudWatchLogGroupArn: pulumi.Output; /** * Indicates whether the DataSync agent can access the on-premises storage system. */ readonly connectivityStatus: pulumi.Output; /** * A familiar name for the on-premises storage system. */ readonly name: pulumi.Output; /** * The ARN of a secret stored by AWS Secrets Manager. */ readonly secretsManagerArn: pulumi.Output; readonly serverConfiguration: pulumi.Output; readonly serverCredentials: pulumi.Output; /** * The ARN of the on-premises storage system added to DataSync Discovery. */ readonly storageSystemArn: pulumi.Output; /** * The type of on-premises storage system that DataSync Discovery will analyze. */ readonly systemType: pulumi.Output; /** * An array of key-value pairs to apply to this resource. */ readonly tags: pulumi.Output; /** * Create a StorageSystem 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: StorageSystemArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a StorageSystem resource. */ export interface StorageSystemArgs { /** * The ARN of the DataSync agent that connects to and reads from the on-premises storage system's management interface. */ agentArns: pulumi.Input[]>; /** * The ARN of the Amazon CloudWatch log group used to monitor and log discovery job events. */ cloudWatchLogGroupArn?: pulumi.Input; /** * A familiar name for the on-premises storage system. */ name?: pulumi.Input; serverConfiguration: pulumi.Input; serverCredentials?: pulumi.Input; /** * The type of on-premises storage system that DataSync Discovery will analyze. */ systemType: pulumi.Input; /** * An array of key-value pairs to apply to this resource. */ tags?: pulumi.Input[]>; }