import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a new ManagementServer in a given project and location. * Auto-naming is currently not supported for this resource. */ export declare class ManagementServer extends pulumi.CustomResource { /** * Get an existing ManagementServer 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): ManagementServer; /** * Returns true if the given object is an instance of ManagementServer. 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 ManagementServer; /** * The time when the instance was created. */ readonly createTime: pulumi.Output; /** * Optional. The description of the ManagementServer instance (2048 characters or less). */ readonly description: pulumi.Output; /** * Optional. Server specified ETag for the ManagementServer resource to prevent simultaneous updates from overwiting each other. */ readonly etag: pulumi.Output; /** * Optional. Resource labels to represent user provided metadata. Labels currently defined: 1. migrate_from_go= If set to true, the MS is created in migration ready mode. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * Required. The name of the management server to create. The name must be unique for the specified project and location. */ readonly managementServerId: pulumi.Output; /** * The hostname or ip address of the exposed AGM endpoints, used by clients to connect to AGM/RD graphical user interface and APIs. */ readonly managementUri: pulumi.Output; /** * The resource name. */ readonly name: pulumi.Output; /** * VPC networks to which the ManagementServer instance is connected. For this version, only a single network is supported. */ readonly networks: pulumi.Output; /** * The OAuth 2.0 client id is required to make API calls to the BackupDR instance API of this ManagementServer. This is the value that should be provided in the ‘aud’ field of the OIDC ID Token (see openid specification https://openid.net/specs/openid-connect-core-1_0.html#IDToken). */ readonly oauth2ClientId: pulumi.Output; readonly project: pulumi.Output; /** * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */ readonly requestId: pulumi.Output; /** * The ManagementServer state. */ readonly state: pulumi.Output; /** * The type of the ManagementServer resource. */ readonly type: pulumi.Output; /** * The time when the instance was updated. */ readonly updateTime: pulumi.Output; /** * The hostnames of the exposed AGM endpoints for both types of user i.e. 1p and 3p, used to connect AGM/RM UI. */ readonly workforceIdentityBasedManagementUri: pulumi.Output; /** * The OAuth client IDs for both types of user i.e. 1p and 3p. */ readonly workforceIdentityBasedOauth2ClientId: pulumi.Output; /** * Create a ManagementServer 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: ManagementServerArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ManagementServer resource. */ export interface ManagementServerArgs { /** * Optional. The description of the ManagementServer instance (2048 characters or less). */ description?: pulumi.Input; /** * Optional. Server specified ETag for the ManagementServer resource to prevent simultaneous updates from overwiting each other. */ etag?: pulumi.Input; /** * Optional. Resource labels to represent user provided metadata. Labels currently defined: 1. migrate_from_go= If set to true, the MS is created in migration ready mode. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * Required. The name of the management server to create. The name must be unique for the specified project and location. */ managementServerId: pulumi.Input; /** * VPC networks to which the ManagementServer instance is connected. For this version, only a single network is supported. */ networks: pulumi.Input[]>; project?: pulumi.Input; /** * Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */ requestId?: pulumi.Input; /** * The type of the ManagementServer resource. */ type: pulumi.Input; }