import * as pulumi from "@pulumi/pulumi"; /** * This resource can activate a topology group. Only one topology group can be active at a time. To switch the active group, change the `id` attribute on the existing resource in place instead of replacing the resource (destroy + create); an in-place change issues a single activation that supersedes the previous group, whereas a replacement deactivates the previous group first and withdraws all overlay control policy from the vSmarts during the switch. * - Minimum SD-WAN Manager version: `20.15.0` */ export declare class ActivateTopologyGroup extends pulumi.CustomResource { /** * Get an existing ActivateTopologyGroup 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?: ActivateTopologyGroupState, opts?: pulumi.CustomResourceOptions): ActivateTopologyGroup; /** * Returns true if the given object is an instance of ActivateTopologyGroup. 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 ActivateTopologyGroup; /** * The ID of the topology group to activate */ readonly activateTopologyGroupId: pulumi.Output; /** * Server-side version of the topology group captured at last activation. Used internally for drift detection. */ readonly deployedVersion: pulumi.Output; /** * List of all associated feature versions. Any change to this list will trigger a re-deployment of the topology group. */ readonly featureVersions: pulumi.Output; /** * Create a ActivateTopologyGroup 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: ActivateTopologyGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ActivateTopologyGroup resources. */ export interface ActivateTopologyGroupState { /** * The ID of the topology group to activate */ activateTopologyGroupId?: pulumi.Input; /** * Server-side version of the topology group captured at last activation. Used internally for drift detection. */ deployedVersion?: pulumi.Input; /** * List of all associated feature versions. Any change to this list will trigger a re-deployment of the topology group. */ featureVersions?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a ActivateTopologyGroup resource. */ export interface ActivateTopologyGroupArgs { /** * The ID of the topology group to activate */ activateTopologyGroupId: pulumi.Input; /** * List of all associated feature versions. Any change to this list will trigger a re-deployment of the topology group. */ featureVersions?: pulumi.Input[] | undefined>; } //# sourceMappingURL=activateTopologyGroup.d.ts.map