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

com.pulumi.azurenative.peering.Prefix Maven / Gradle / Ivy

There is a newer version: 2.78.0
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.azurenative.peering;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.peering.PrefixArgs;
import com.pulumi.azurenative.peering.outputs.PeeringServicePrefixEventResponse;
import com.pulumi.core.Alias;
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.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * The peering service prefix class.
 * Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2021-01-01.
 * 
 * ## Example Usage
 * ### Create or update a prefix for the peering service
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.peering.Prefix;
 * import com.pulumi.azurenative.peering.PrefixArgs;
 * 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 prefix = new Prefix("prefix", PrefixArgs.builder()
 *             .peeringServiceName("peeringServiceName")
 *             .peeringServicePrefixKey("00000000-0000-0000-0000-000000000000")
 *             .prefix("192.168.1.0/24")
 *             .prefixName("peeringServicePrefixName")
 *             .resourceGroupName("rgName")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:peering:Prefix peeringServicePrefixName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Peering/peeringServices/{peeringServiceName}/prefixes/{prefixName} * ``` * */ @ResourceType(type="azure-native:peering:Prefix") public class Prefix extends com.pulumi.resources.CustomResource { /** * The error message for validation state * */ @Export(name="errorMessage", refs={String.class}, tree="[0]") private Output errorMessage; /** * @return The error message for validation state * */ public Output errorMessage() { return this.errorMessage; } /** * The list of events for peering service prefix * */ @Export(name="events", refs={List.class,PeeringServicePrefixEventResponse.class}, tree="[0,1]") private Output> events; /** * @return The list of events for peering service prefix * */ public Output> events() { return this.events; } /** * The prefix learned type * */ @Export(name="learnedType", refs={String.class}, tree="[0]") private Output learnedType; /** * @return The prefix learned type * */ public Output learnedType() { return this.learnedType; } /** * The name of the resource. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name of the resource. * */ public Output name() { return this.name; } /** * The peering service prefix key * */ @Export(name="peeringServicePrefixKey", refs={String.class}, tree="[0]") private Output peeringServicePrefixKey; /** * @return The peering service prefix key * */ public Output> peeringServicePrefixKey() { return Codegen.optional(this.peeringServicePrefixKey); } /** * The prefix from which your traffic originates. * */ @Export(name="prefix", refs={String.class}, tree="[0]") private Output prefix; /** * @return The prefix from which your traffic originates. * */ public Output> prefix() { return Codegen.optional(this.prefix); } /** * The prefix validation state * */ @Export(name="prefixValidationState", refs={String.class}, tree="[0]") private Output prefixValidationState; /** * @return The prefix validation state * */ public Output prefixValidationState() { return this.prefixValidationState; } /** * The provisioning state of the resource. * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return The provisioning state of the resource. * */ public Output provisioningState() { return this.provisioningState; } /** * The type of the resource. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return The type of the resource. * */ public Output type() { return this.type; } /** * * @param name The _unique_ name of the resulting resource. */ public Prefix(java.lang.String name) { this(name, PrefixArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public Prefix(java.lang.String name, PrefixArgs 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 Prefix(java.lang.String name, PrefixArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:peering:Prefix", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private Prefix(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:peering:Prefix", name, null, makeResourceOptions(options, id), false); } private static PrefixArgs makeArgs(PrefixArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? PrefixArgs.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()) .aliases(List.of( Output.of(Alias.builder().type("azure-native:peering/v20190801preview:Prefix").build()), Output.of(Alias.builder().type("azure-native:peering/v20190901preview:Prefix").build()), Output.of(Alias.builder().type("azure-native:peering/v20200101preview:Prefix").build()), Output.of(Alias.builder().type("azure-native:peering/v20200401:Prefix").build()), Output.of(Alias.builder().type("azure-native:peering/v20201001:Prefix").build()), Output.of(Alias.builder().type("azure-native:peering/v20210101:Prefix").build()), Output.of(Alias.builder().type("azure-native:peering/v20210601:Prefix").build()), Output.of(Alias.builder().type("azure-native:peering/v20220101:Prefix").build()), Output.of(Alias.builder().type("azure-native:peering/v20220601:Prefix").build()), Output.of(Alias.builder().type("azure-native:peering/v20221001:Prefix").build()) )) .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 options Optional settings to control the behavior of the CustomResource. */ public static Prefix get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new Prefix(name, id, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy