import * as pulumi from "@pulumi/pulumi"; export declare class NetworkZone extends pulumi.CustomResource { /** * Get an existing NetworkZone 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?: NetworkZoneState, opts?: pulumi.CustomResourceOptions): NetworkZone; /** * Returns true if the given object is an instance of NetworkZone. 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 NetworkZone; /** * A list of alternative network zones. */ readonly alternativeZones: pulumi.Output; /** * A short description of the network zone */ readonly description: pulumi.Output; /** * The fallback mode of the network zone. Possible values: `ANY_ACTIVE_GATE`, `NONE`, `ONLY_DEFAULT_ZONE` */ readonly fallbackMode: pulumi.Output; /** * Name of the network zone cannot be modified once created. Dynatrace stores the field in lowercase, allowed characters: alphanumeric, hyphen, underscore, dot */ readonly name: pulumi.Output; /** * The number of ActiveGates in the network zone. */ readonly numOfConfiguredActivegates: pulumi.Output; /** * The number of OneAgents that are configured to use the network zone as primary. */ readonly numOfConfiguredOneagents: pulumi.Output; /** * The number of OneAgents from other network zones that are using ActiveGates in the network zone. */ readonly numOfOneagentsFromOtherZones: pulumi.Output; /** * The number of OneAgents that are using ActiveGates in the network zone. */ readonly numOfOneagentsUsing: pulumi.Output; /** * Create a NetworkZone 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?: NetworkZoneArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering NetworkZone resources. */ export interface NetworkZoneState { /** * A list of alternative network zones. */ alternativeZones?: pulumi.Input[]>; /** * A short description of the network zone */ description?: pulumi.Input; /** * The fallback mode of the network zone. Possible values: `ANY_ACTIVE_GATE`, `NONE`, `ONLY_DEFAULT_ZONE` */ fallbackMode?: pulumi.Input; /** * Name of the network zone cannot be modified once created. Dynatrace stores the field in lowercase, allowed characters: alphanumeric, hyphen, underscore, dot */ name?: pulumi.Input; /** * The number of ActiveGates in the network zone. */ numOfConfiguredActivegates?: pulumi.Input; /** * The number of OneAgents that are configured to use the network zone as primary. */ numOfConfiguredOneagents?: pulumi.Input; /** * The number of OneAgents from other network zones that are using ActiveGates in the network zone. */ numOfOneagentsFromOtherZones?: pulumi.Input; /** * The number of OneAgents that are using ActiveGates in the network zone. */ numOfOneagentsUsing?: pulumi.Input; } /** * The set of arguments for constructing a NetworkZone resource. */ export interface NetworkZoneArgs { /** * A list of alternative network zones. */ alternativeZones?: pulumi.Input[]>; /** * A short description of the network zone */ description?: pulumi.Input; /** * The fallback mode of the network zone. Possible values: `ANY_ACTIVE_GATE`, `NONE`, `ONLY_DEFAULT_ZONE` */ fallbackMode?: pulumi.Input; /** * Name of the network zone cannot be modified once created. Dynatrace stores the field in lowercase, allowed characters: alphanumeric, hyphen, underscore, dot */ name?: pulumi.Input; /** * The number of ActiveGates in the network zone. */ numOfConfiguredActivegates?: pulumi.Input; /** * The number of OneAgents that are configured to use the network zone as primary. */ numOfConfiguredOneagents?: pulumi.Input; /** * The number of OneAgents from other network zones that are using ActiveGates in the network zone. */ numOfOneagentsFromOtherZones?: pulumi.Input; /** * The number of OneAgents that are using ActiveGates in the network zone. */ numOfOneagentsUsing?: pulumi.Input; }