export declare const CapacityCommitmentPlan: { /** * Invalid plan value. Requests with this value will be rejected with error code `google.rpc.Code.INVALID_ARGUMENT`. */ readonly CommitmentPlanUnspecified: "COMMITMENT_PLAN_UNSPECIFIED"; /** * Flex commitments have committed period of 1 minute after becoming ACTIVE. After that, they are not in a committed period anymore and can be removed any time. */ readonly Flex: "FLEX"; /** * Trial commitments have a committed period of 182 days after becoming ACTIVE. After that, they are converted to a new commitment based on the `renewal_plan`. Default `renewal_plan` for Trial commitment is Flex so that it can be deleted right after committed period ends. */ readonly Trial: "TRIAL"; /** * Monthly commitments have a committed period of 30 days after becoming ACTIVE. After that, they are not in a committed period anymore and can be removed any time. */ readonly Monthly: "MONTHLY"; /** * Annual commitments have a committed period of 365 days after becoming ACTIVE. After that they are converted to a new commitment based on the renewal_plan. */ readonly Annual: "ANNUAL"; }; /** * Capacity commitment commitment plan. */ export type CapacityCommitmentPlan = (typeof CapacityCommitmentPlan)[keyof typeof CapacityCommitmentPlan]; export declare const CapacityCommitmentRenewalPlan: { /** * Invalid plan value. Requests with this value will be rejected with error code `google.rpc.Code.INVALID_ARGUMENT`. */ readonly CommitmentPlanUnspecified: "COMMITMENT_PLAN_UNSPECIFIED"; /** * Flex commitments have committed period of 1 minute after becoming ACTIVE. After that, they are not in a committed period anymore and can be removed any time. */ readonly Flex: "FLEX"; /** * Trial commitments have a committed period of 182 days after becoming ACTIVE. After that, they are converted to a new commitment based on the `renewal_plan`. Default `renewal_plan` for Trial commitment is Flex so that it can be deleted right after committed period ends. */ readonly Trial: "TRIAL"; /** * Monthly commitments have a committed period of 30 days after becoming ACTIVE. After that, they are not in a committed period anymore and can be removed any time. */ readonly Monthly: "MONTHLY"; /** * Annual commitments have a committed period of 365 days after becoming ACTIVE. After that they are converted to a new commitment based on the renewal_plan. */ readonly Annual: "ANNUAL"; }; /** * The plan this capacity commitment is converted to after commitment_end_time passes. Once the plan is changed, committed period is extended according to commitment plan. Only applicable for ANNUAL commitments. */ export type CapacityCommitmentRenewalPlan = (typeof CapacityCommitmentRenewalPlan)[keyof typeof CapacityCommitmentRenewalPlan];