All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.alicloud.ga.BasicAccelerator Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.alicloud.ga;

import com.pulumi.alicloud.Utilities;
import com.pulumi.alicloud.ga.BasicAcceleratorArgs;
import com.pulumi.alicloud.ga.inputs.BasicAcceleratorState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.Boolean;
import java.lang.Integer;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Provides a Global Accelerator (GA) Basic Accelerator resource.
 * 
 * For information about Global Accelerator (GA) Basic Accelerator and how to use it, see [What is Basic Accelerator](https://www.alibabacloud.com/help/en/global-accelerator/latest/api-ga-2019-11-20-createbasicaccelerator).
 * 
 * > **NOTE:** Available since v1.194.0.
 * 
 * ## Example Usage
 * 
 * Basic Usage
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.alicloud.ga.BasicAccelerator;
 * import com.pulumi.alicloud.ga.BasicAcceleratorArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * 
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 * 
 *     public static void stack(Context ctx) {
 *         var default_ = new BasicAccelerator("default", BasicAcceleratorArgs.builder()
 *             .duration(1)
 *             .pricingCycle("Month")
 *             .basicAcceleratorName("tf-example-value")
 *             .description("tf-example-value")
 *             .bandwidthBillingType("BandwidthPackage")
 *             .autoPay(true)
 *             .autoUseCoupon("true")
 *             .build());
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * Global Accelerator (GA) Basic Accelerator can be imported using the id, e.g. * * ```sh * $ pulumi import alicloud:ga/basicAccelerator:BasicAccelerator example <id> * ``` * */ @ResourceType(type="alicloud:ga/basicAccelerator:BasicAccelerator") public class BasicAccelerator extends com.pulumi.resources.CustomResource { /** * Specifies whether to enable automatic payment. Default value: `false`. Valid values: * */ @Export(name="autoPay", refs={Boolean.class}, tree="[0]") private Output autoPay; /** * @return Specifies whether to enable automatic payment. Default value: `false`. Valid values: * */ public Output> autoPay() { return Codegen.optional(this.autoPay); } /** * Specifies whether to enable auto-renewal for the GA Basic Accelerator instance. Default value: `false`. Valid values: * */ @Export(name="autoRenew", refs={Boolean.class}, tree="[0]") private Output autoRenew; /** * @return Specifies whether to enable auto-renewal for the GA Basic Accelerator instance. Default value: `false`. Valid values: * */ public Output> autoRenew() { return Codegen.optional(this.autoRenew); } /** * The auto-renewal period. Unit: months. Default value: `1`. Valid values: `1` to `12`. **NOTE:** This parameter is required only if `auto_renew` is set to `true`. * */ @Export(name="autoRenewDuration", refs={Integer.class}, tree="[0]") private Output autoRenewDuration; /** * @return The auto-renewal period. Unit: months. Default value: `1`. Valid values: `1` to `12`. **NOTE:** This parameter is required only if `auto_renew` is set to `true`. * */ public Output> autoRenewDuration() { return Codegen.optional(this.autoRenewDuration); } /** * Specifies whether to automatically pay bills by using coupons. Default value: `false`. **NOTE:** This parameter is required only if `auto_pay` is set to `true`. * */ @Export(name="autoUseCoupon", refs={String.class}, tree="[0]") private Output autoUseCoupon; /** * @return Specifies whether to automatically pay bills by using coupons. Default value: `false`. **NOTE:** This parameter is required only if `auto_pay` is set to `true`. * */ public Output> autoUseCoupon() { return Codegen.optional(this.autoUseCoupon); } /** * The bandwidth billing method. Valid values: `BandwidthPackage`, `CDT`, `CDT95`. * */ @Export(name="bandwidthBillingType", refs={String.class}, tree="[0]") private Output bandwidthBillingType; /** * @return The bandwidth billing method. Valid values: `BandwidthPackage`, `CDT`, `CDT95`. * */ public Output> bandwidthBillingType() { return Codegen.optional(this.bandwidthBillingType); } /** * The name of the Global Accelerator Basic Accelerator instance. * */ @Export(name="basicAcceleratorName", refs={String.class}, tree="[0]") private Output basicAcceleratorName; /** * @return The name of the Global Accelerator Basic Accelerator instance. * */ public Output> basicAcceleratorName() { return Codegen.optional(this.basicAcceleratorName); } /** * Indicates whether cross-border acceleration is enabled. Default value: `false`. Valid values: * */ @Export(name="crossBorderStatus", refs={Boolean.class}, tree="[0]") private Output crossBorderStatus; /** * @return Indicates whether cross-border acceleration is enabled. Default value: `false`. Valid values: * */ public Output> crossBorderStatus() { return Codegen.optional(this.crossBorderStatus); } /** * The description of the Global Accelerator Basic Accelerator instance. * */ @Export(name="description", refs={String.class}, tree="[0]") private Output description; /** * @return The description of the Global Accelerator Basic Accelerator instance. * */ public Output> description() { return Codegen.optional(this.description); } /** * The subscription duration. Default value: `1`. * * If the `pricing_cycle` parameter is set to `Month`, the valid values for the `duration` parameter are `1` to `9`. * * If the `pricing_cycle` parameter is set to `Year`, the valid values for the `duration` parameter are `1` to `3`. * */ @Export(name="duration", refs={Integer.class}, tree="[0]") private Output duration; /** * @return The subscription duration. Default value: `1`. * * If the `pricing_cycle` parameter is set to `Month`, the valid values for the `duration` parameter are `1` to `9`. * * If the `pricing_cycle` parameter is set to `Year`, the valid values for the `duration` parameter are `1` to `3`. * */ public Output> duration() { return Codegen.optional(this.duration); } /** * The payment type. Default value: `Subscription`. Valid values: `PayAsYouGo`, `Subscription`. * */ @Export(name="paymentType", refs={String.class}, tree="[0]") private Output paymentType; /** * @return The payment type. Default value: `Subscription`. Valid values: `PayAsYouGo`, `Subscription`. * */ public Output paymentType() { return this.paymentType; } /** * The billing cycle. Default value: `Month`. Valid values: `Month`, `Year`. * */ @Export(name="pricingCycle", refs={String.class}, tree="[0]") private Output pricingCycle; /** * @return The billing cycle. Default value: `Month`. Valid values: `Month`, `Year`. * */ public Output> pricingCycle() { return Codegen.optional(this.pricingCycle); } /** * The code of the coupon. **NOTE:** The `promotion_option_no` takes effect only for accounts registered on the international site (alibabacloud.com). * */ @Export(name="promotionOptionNo", refs={String.class}, tree="[0]") private Output promotionOptionNo; /** * @return The code of the coupon. **NOTE:** The `promotion_option_no` takes effect only for accounts registered on the international site (alibabacloud.com). * */ public Output> promotionOptionNo() { return Codegen.optional(this.promotionOptionNo); } /** * The status of the Basic Accelerator instance. * */ @Export(name="status", refs={String.class}, tree="[0]") private Output status; /** * @return The status of the Basic Accelerator instance. * */ public Output status() { return this.status; } /** * A mapping of tags to assign to the resource. * */ @Export(name="tags", refs={Map.class,String.class,Object.class}, tree="[0,1,2]") private Output> tags; /** * @return A mapping of tags to assign to the resource. * */ public Output>> tags() { return Codegen.optional(this.tags); } /** * * @param name The _unique_ name of the resulting resource. */ public BasicAccelerator(String name) { this(name, BasicAcceleratorArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public BasicAccelerator(String name, @Nullable BasicAcceleratorArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public BasicAccelerator(String name, @Nullable BasicAcceleratorArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("alicloud:ga/basicAccelerator:BasicAccelerator", name, args == null ? BasicAcceleratorArgs.Empty : args, makeResourceOptions(options, Codegen.empty())); } private BasicAccelerator(String name, Output id, @Nullable BasicAcceleratorState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("alicloud:ga/basicAccelerator:BasicAccelerator", name, state, makeResourceOptions(options, id)); } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host 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 * @param options Optional settings to control the behavior of the CustomResource. */ public static BasicAccelerator get(String name, Output id, @Nullable BasicAcceleratorState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new BasicAccelerator(name, id, state, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy