UNPKG

@volcengine/pulumi

Version:

A Pulumi package for creating and managing volcengine cloud resources.

100 lines (99 loc) 3.38 kB
import * as pulumi from "@pulumi/pulumi"; /** * Provides a resource to manage transit router grant rule * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcengine from "@volcengine/pulumi"; * * const fooTransitRouter = new volcengine.transit_router.TransitRouter("fooTransitRouter", { * transitRouterName: "acc-test-tf", * description: "acc-test-tf", * }); * const fooGrantRule = new volcengine.transit_router.GrantRule("fooGrantRule", { * grantAccountId: "2000xxxxx", * description: "acc-test-tf", * transitRouterId: fooTransitRouter.id, * }); * ``` * * ## Import * * TransitRouterGrantRule can be imported using the transit router id and accountId, e.g. * * ```sh * $ pulumi import volcengine:transit_router/grantRule:GrantRule default trId:accountId * ``` */ export declare class GrantRule extends pulumi.CustomResource { /** * Get an existing GrantRule 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?: GrantRuleState, opts?: pulumi.CustomResourceOptions): GrantRule; /** * Returns true if the given object is an instance of GrantRule. 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 GrantRule; /** * The description of the rule. */ readonly description: pulumi.Output<string>; /** * Account ID awaiting authorization for intermediate router instance. */ readonly grantAccountId: pulumi.Output<string>; /** * The id of the transit router. */ readonly transitRouterId: pulumi.Output<string>; /** * Create a GrantRule 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: GrantRuleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering GrantRule resources. */ export interface GrantRuleState { /** * The description of the rule. */ description?: pulumi.Input<string>; /** * Account ID awaiting authorization for intermediate router instance. */ grantAccountId?: pulumi.Input<string>; /** * The id of the transit router. */ transitRouterId?: pulumi.Input<string>; } /** * The set of arguments for constructing a GrantRule resource. */ export interface GrantRuleArgs { /** * The description of the rule. */ description?: pulumi.Input<string>; /** * Account ID awaiting authorization for intermediate router instance. */ grantAccountId: pulumi.Input<string>; /** * The id of the transit router. */ transitRouterId: pulumi.Input<string>; }