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

com.pulumi.alicloud.pvtz.ZoneRecord 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.pvtz;

import com.pulumi.alicloud.Utilities;
import com.pulumi.alicloud.pvtz.ZoneRecordArgs;
import com.pulumi.alicloud.pvtz.inputs.ZoneRecordState;
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.Integer;
import java.lang.String;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * ## 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.pvtz.Zone;
 * import com.pulumi.alicloud.pvtz.ZoneArgs;
 * import com.pulumi.alicloud.pvtz.ZoneRecord;
 * import com.pulumi.alicloud.pvtz.ZoneRecordArgs;
 * 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 zone = new Zone("zone", ZoneArgs.builder()
 *             .zoneName("foo.test.com")
 *             .build());
 * 
 *         var foo = new ZoneRecord("foo", ZoneRecordArgs.builder()
 *             .zoneId(zone.id())
 *             .rr("www")
 *             .type("CNAME")
 *             .value("bbb.test.com")
 *             .ttl(60)
 *             .build());
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * Private Zone Record can be imported using the id, e.g. * * ```sh * $ pulumi import alicloud:pvtz/zoneRecord:ZoneRecord example abc123456 * ``` * */ @ResourceType(type="alicloud:pvtz/zoneRecord:ZoneRecord") public class ZoneRecord extends com.pulumi.resources.CustomResource { /** * User language. * */ @Export(name="lang", refs={String.class}, tree="[0]") private Output lang; /** * @return User language. * */ public Output> lang() { return Codegen.optional(this.lang); } /** * The priority of the Private Zone Record. At present, only can "MX" record support it. Valid values: [1-99]. Default to 1. * */ @Export(name="priority", refs={Integer.class}, tree="[0]") private Output priority; /** * @return The priority of the Private Zone Record. At present, only can "MX" record support it. Valid values: [1-99]. Default to 1. * */ public Output> priority() { return Codegen.optional(this.priority); } /** * The Private Zone Record ID. * */ @Export(name="recordId", refs={String.class}, tree="[0]") private Output recordId; /** * @return The Private Zone Record ID. * */ public Output recordId() { return this.recordId; } /** * The remark of the Private Zone Record. * */ @Export(name="remark", refs={String.class}, tree="[0]") private Output remark; /** * @return The remark of the Private Zone Record. * */ public Output> remark() { return Codegen.optional(this.remark); } /** * The resource record of the Private Zone Record. * * @deprecated * Field 'resource_record' has been deprecated from version 1.109.0. Use 'rr' instead. * */ @Deprecated /* Field 'resource_record' has been deprecated from version 1.109.0. Use 'rr' instead. */ @Export(name="resourceRecord", refs={String.class}, tree="[0]") private Output resourceRecord; /** * @return The resource record of the Private Zone Record. * */ public Output resourceRecord() { return this.resourceRecord; } /** * The rr of the Private Zone Record. * */ @Export(name="rr", refs={String.class}, tree="[0]") private Output rr; /** * @return The rr of the Private Zone Record. * */ public Output rr() { return this.rr; } /** * Resolve record status. Value: * - ENABLE: enable resolution. * - DISABLE: pause parsing. * */ @Export(name="status", refs={String.class}, tree="[0]") private Output status; /** * @return Resolve record status. Value: * - ENABLE: enable resolution. * - DISABLE: pause parsing. * */ public Output> status() { return Codegen.optional(this.status); } /** * The ttl of the Private Zone Record. Default to `60`. * */ @Export(name="ttl", refs={Integer.class}, tree="[0]") private Output ttl; /** * @return The ttl of the Private Zone Record. Default to `60`. * */ public Output> ttl() { return Codegen.optional(this.ttl); } /** * The type of the Private Zone Record. Valid values: A, CNAME, TXT, MX, PTR, SRV. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return The type of the Private Zone Record. Valid values: A, CNAME, TXT, MX, PTR, SRV. * */ public Output type() { return this.type; } @Export(name="userClientIp", refs={String.class}, tree="[0]") private Output userClientIp; public Output> userClientIp() { return Codegen.optional(this.userClientIp); } /** * The value of the Private Zone Record. * */ @Export(name="value", refs={String.class}, tree="[0]") private Output value; /** * @return The value of the Private Zone Record. * */ public Output value() { return this.value; } /** * The name of the Private Zone Record. * */ @Export(name="zoneId", refs={String.class}, tree="[0]") private Output zoneId; /** * @return The name of the Private Zone Record. * */ public Output zoneId() { return this.zoneId; } /** * * @param name The _unique_ name of the resulting resource. */ public ZoneRecord(java.lang.String name) { this(name, ZoneRecordArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public ZoneRecord(java.lang.String name, ZoneRecordArgs 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 ZoneRecord(java.lang.String name, ZoneRecordArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("alicloud:pvtz/zoneRecord:ZoneRecord", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private ZoneRecord(java.lang.String name, Output id, @Nullable ZoneRecordState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("alicloud:pvtz/zoneRecord:ZoneRecord", name, state, makeResourceOptions(options, id), false); } private static ZoneRecordArgs makeArgs(ZoneRecordArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? ZoneRecordArgs.Empty : args; } 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 ZoneRecord get(java.lang.String name, Output id, @Nullable ZoneRecordState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new ZoneRecord(name, id, state, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy