import * as pulumi from "@pulumi/pulumi"; /** * Manages an API Security operation tag for a Fastly service. Operation tags can be used to group and organize operations. * * ## Example Usage * * Basic usage: * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fastly from "@pulumi/fastly"; * * const svc1 = new fastly.ServiceVcl("svc1", { * name: "test-svc-1-example", * forceDestroy: true, * backends: [{ * address: "example.com", * name: "tf-test-backend-1", * }], * }); * const example = new fastly.ApiSecurityOperationTag("example", { * serviceId: svc1.id, * name: "production", * description: "Tag for production endpoints", * }); * ``` * * ## Import * * API Security operation tags can be imported using a composite ID of the form `/`, e.g. * * ```sh * $ pulumi import fastly:index/apiSecurityOperationTag:ApiSecurityOperationTag example / * ``` */ export declare class ApiSecurityOperationTag extends pulumi.CustomResource { /** * Get an existing ApiSecurityOperationTag 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?: ApiSecurityOperationTagState, opts?: pulumi.CustomResourceOptions): ApiSecurityOperationTag; /** * Returns true if the given object is an instance of ApiSecurityOperationTag. 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 ApiSecurityOperationTag; /** * Created timestamp (when present). */ readonly createdAt: pulumi.Output; /** * The description of the operation tag. */ readonly description: pulumi.Output; /** * The name of the operation tag. */ readonly name: pulumi.Output; /** * Number of operations associated with this tag (when present). */ readonly operationCount: pulumi.Output; /** * Service ID the tag belongs to. To import, use: \n\n/\n\n. */ readonly serviceId: pulumi.Output; /** * The tag ID. */ readonly tagId: pulumi.Output; /** * Updated timestamp (when present). */ readonly updatedAt: pulumi.Output; /** * Create a ApiSecurityOperationTag 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: ApiSecurityOperationTagArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ApiSecurityOperationTag resources. */ export interface ApiSecurityOperationTagState { /** * Created timestamp (when present). */ createdAt?: pulumi.Input; /** * The description of the operation tag. */ description?: pulumi.Input; /** * The name of the operation tag. */ name?: pulumi.Input; /** * Number of operations associated with this tag (when present). */ operationCount?: pulumi.Input; /** * Service ID the tag belongs to. To import, use: \n\n/\n\n. */ serviceId?: pulumi.Input; /** * The tag ID. */ tagId?: pulumi.Input; /** * Updated timestamp (when present). */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a ApiSecurityOperationTag resource. */ export interface ApiSecurityOperationTagArgs { /** * The description of the operation tag. */ description?: pulumi.Input; /** * The name of the operation tag. */ name?: pulumi.Input; /** * Service ID the tag belongs to. To import, use: \n\n/\n\n. */ serviceId: pulumi.Input; } //# sourceMappingURL=apiSecurityOperationTag.d.ts.map