import * as pulumi from "@pulumi/pulumi"; export declare class EdgeGroup extends pulumi.CustomResource { /** * Get an existing EdgeGroup 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?: EdgeGroupState, opts?: pulumi.CustomResourceOptions): EdgeGroup; /** * Returns true if the given object is an instance of EdgeGroup. 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 EdgeGroup; /** * Whether the Edge group is dynamic (membership determined by tags) or static (explicit endpoints). */ readonly dynamic: pulumi.Output; readonly edgeGroupId: pulumi.Output; /** * List of Portainer environment (endpoint) IDs that are statically assigned to the Edge group. Used when dynamic is false. */ readonly endpoints: pulumi.Output; /** * Name of the Portainer Edge group. */ readonly name: pulumi.Output; /** * For dynamic groups, whether to match endpoints with any (true) or all (false) of the specified tags. */ readonly partialMatch: pulumi.Output; /** * List of tag IDs used to dynamically select endpoints. Used when dynamic is true. */ readonly tagIds: pulumi.Output; /** * Create a EdgeGroup 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: EdgeGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EdgeGroup resources. */ export interface EdgeGroupState { /** * Whether the Edge group is dynamic (membership determined by tags) or static (explicit endpoints). */ dynamic?: pulumi.Input; edgeGroupId?: pulumi.Input; /** * List of Portainer environment (endpoint) IDs that are statically assigned to the Edge group. Used when dynamic is false. */ endpoints?: pulumi.Input[] | undefined>; /** * Name of the Portainer Edge group. */ name?: pulumi.Input; /** * For dynamic groups, whether to match endpoints with any (true) or all (false) of the specified tags. */ partialMatch?: pulumi.Input; /** * List of tag IDs used to dynamically select endpoints. Used when dynamic is true. */ tagIds?: pulumi.Input[] | undefined>; } /** * The set of arguments for constructing a EdgeGroup resource. */ export interface EdgeGroupArgs { /** * Whether the Edge group is dynamic (membership determined by tags) or static (explicit endpoints). */ dynamic: pulumi.Input; edgeGroupId?: pulumi.Input; /** * List of Portainer environment (endpoint) IDs that are statically assigned to the Edge group. Used when dynamic is false. */ endpoints?: pulumi.Input[] | undefined>; /** * Name of the Portainer Edge group. */ name?: pulumi.Input; /** * For dynamic groups, whether to match endpoints with any (true) or all (false) of the specified tags. */ partialMatch?: pulumi.Input; /** * List of tag IDs used to dynamically select endpoints. Used when dynamic is true. */ tagIds?: pulumi.Input[] | undefined>; } //# sourceMappingURL=edgeGroup.d.ts.map