import * as pulumi from "@pulumi/pulumi"; export declare class ManagedRemoteAccess extends pulumi.CustomResource { /** * Get an existing ManagedRemoteAccess 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ManagedRemoteAccessState, opts?: pulumi.CustomResourceOptions): ManagedRemoteAccess; /** * Returns true if the given object is an instance of ManagedRemoteAccess. 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 ManagedRemoteAccess; /** * Request reason description, cannot be changed once created */ readonly reason: pulumi.Output; /** * For how many days access is requested, cannot be changed once created */ readonly requestedDays: pulumi.Output; /** * Requested role, cannot be changed once created */ readonly role: pulumi.Output; /** * Access request state. Automatically set as `ACCEPTED` on create, state can be changed in subsequent updates. */ readonly state: pulumi.Output; /** * User id, cannot be changed once created */ readonly userId: pulumi.Output; /** * Create a ManagedRemoteAccess 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: ManagedRemoteAccessArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ManagedRemoteAccess resources. */ export interface ManagedRemoteAccessState { /** * Request reason description, cannot be changed once created */ reason?: pulumi.Input; /** * For how many days access is requested, cannot be changed once created */ requestedDays?: pulumi.Input; /** * Requested role, cannot be changed once created */ role?: pulumi.Input; /** * Access request state. Automatically set as `ACCEPTED` on create, state can be changed in subsequent updates. */ state?: pulumi.Input; /** * User id, cannot be changed once created */ userId?: pulumi.Input; } /** * The set of arguments for constructing a ManagedRemoteAccess resource. */ export interface ManagedRemoteAccessArgs { /** * Request reason description, cannot be changed once created */ reason: pulumi.Input; /** * For how many days access is requested, cannot be changed once created */ requestedDays: pulumi.Input; /** * Requested role, cannot be changed once created */ role: pulumi.Input; /** * Access request state. Automatically set as `ACCEPTED` on create, state can be changed in subsequent updates. */ state?: pulumi.Input; /** * User id, cannot be changed once created */ userId: pulumi.Input; }