UNPKG

@pulumi/f5bigip

Version:

A Pulumi package for creating and managing F5 BigIP resources.

100 lines (99 loc) 3.08 kB
import * as pulumi from "@pulumi/pulumi"; /** * `f5bigip.Partition` Manages F5 BIG-IP partitions * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as f5bigip from "@pulumi/f5bigip"; * * const test_partition = new f5bigip.Partition("test-partition", { * name: "test-partition", * description: "created by terraform", * routeDomainId: 2, * }); * ``` * * ## Importing * * An existing cipher group can be imported into this resource by supplying the cipher rule full path name ex : `/partition/name` * * An example is below: * * ```sh * $ terraform import bigip_partition.test_partition test_partition * * ``` */ export declare class Partition extends pulumi.CustomResource { /** * Get an existing Partition 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<pulumi.ID>, state?: PartitionState, opts?: pulumi.CustomResourceOptions): Partition; /** * Returns true if the given object is an instance of Partition. 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 Partition; /** * Description of the partition. */ readonly description: pulumi.Output<string | undefined>; /** * Name of the partition. */ readonly name: pulumi.Output<string>; /** * Route domain id of the partition. */ readonly routeDomainId: pulumi.Output<number | undefined>; /** * Create a Partition 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: PartitionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Partition resources. */ export interface PartitionState { /** * Description of the partition. */ description?: pulumi.Input<string>; /** * Name of the partition. */ name?: pulumi.Input<string>; /** * Route domain id of the partition. */ routeDomainId?: pulumi.Input<number>; } /** * The set of arguments for constructing a Partition resource. */ export interface PartitionArgs { /** * Description of the partition. */ description?: pulumi.Input<string>; /** * Name of the partition. */ name: pulumi.Input<string>; /** * Route domain id of the partition. */ routeDomainId?: pulumi.Input<number>; }