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

com.pulumi.alicloud.vpc.PeerConnectionAccepter 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.vpc;

import com.pulumi.alicloud.Utilities;
import com.pulumi.alicloud.vpc.PeerConnectionAccepterArgs;
import com.pulumi.alicloud.vpc.inputs.PeerConnectionAccepterState;
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.String;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Provides a Vpc Peer Connection Accepter resource.
 * 
 * For information about Vpc Peer Connection Accepter and how to use it, see [What is Peer Connection Accepter](https://www.alibabacloud.com/help/en/vpc/developer-reference/api-vpcpeer-2022-01-01-acceptvpcpeerconnection).
 * 
 * > **NOTE:** Available since v1.196.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.vpc.Network;
 * import com.pulumi.alicloud.vpc.NetworkArgs;
 * import com.pulumi.alicloud.AlicloudFunctions;
 * import com.pulumi.alicloud.vpc.PeerConnection;
 * import com.pulumi.alicloud.vpc.PeerConnectionArgs;
 * import com.pulumi.alicloud.vpc.PeerConnectionAccepter;
 * import com.pulumi.alicloud.vpc.PeerConnectionAccepterArgs;
 * 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) {
 *         final var config = ctx.config();
 *         final var name = config.get("name").orElse("tf-example");
 *         final var acceptingRegion = config.get("acceptingRegion").orElse("cn-beijing");
 *         final var anotherUid = config.get("anotherUid").orElse("xxxx");
 *         var local = new Network("local", NetworkArgs.builder()
 *             .vpcName(name)
 *             .cidrBlock("10.4.0.0/16")
 *             .build());
 * 
 *         var acceptingNetwork = new Network("acceptingNetwork", NetworkArgs.builder()
 *             .vpcName(name)
 *             .cidrBlock("192.168.0.0/16")
 *             .build());
 * 
 *         final var accepting = AlicloudFunctions.getAccount();
 * 
 *         var default_ = new PeerConnection("default", PeerConnectionArgs.builder()
 *             .peerConnectionName(name)
 *             .vpcId(local.id())
 *             .acceptingAliUid(accepting.applyValue(getAccountResult -> getAccountResult.id()))
 *             .acceptingRegionId(acceptingRegion)
 *             .acceptingVpcId(acceptingNetwork.id())
 *             .description(name)
 *             .build());
 * 
 *         var defaultPeerConnectionAccepter = new PeerConnectionAccepter("defaultPeerConnectionAccepter", PeerConnectionAccepterArgs.builder()
 *             .instanceId(default_.id())
 *             .build());
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * Vpc Peer Connection Accepter can be imported using the id, e.g. * * ```sh * $ pulumi import alicloud:vpc/peerConnectionAccepter:PeerConnectionAccepter example <id> * ``` * */ @ResourceType(type="alicloud:vpc/peerConnectionAccepter:PeerConnectionAccepter") public class PeerConnectionAccepter extends com.pulumi.resources.CustomResource { /** * The ID of the Alibaba Cloud account (primary account) of the receiving end of the VPC peering connection to be created.-Enter the ID of your Alibaba Cloud account to create a peer-to-peer connection to the VPC account.-Enter the ID of another Alibaba Cloud account to create a cross-account VPC peer-to-peer connection.> If the recipient account is a RAM user (sub-account), enter the ID of the Alibaba Cloud account corresponding to the RAM user. * */ @Export(name="acceptingOwnerUid", refs={Integer.class}, tree="[0]") private Output acceptingOwnerUid; /** * @return The ID of the Alibaba Cloud account (primary account) of the receiving end of the VPC peering connection to be created.-Enter the ID of your Alibaba Cloud account to create a peer-to-peer connection to the VPC account.-Enter the ID of another Alibaba Cloud account to create a cross-account VPC peer-to-peer connection.> If the recipient account is a RAM user (sub-account), enter the ID of the Alibaba Cloud account corresponding to the RAM user. * */ public Output acceptingOwnerUid() { return this.acceptingOwnerUid; } /** * The region ID of the recipient of the VPC peering connection to be created.-When creating a VPC peer-to-peer connection in the same region, enter the same region ID as the region ID of the initiator.-When creating a cross-region VPC peer-to-peer connection, enter a region ID that is different from the region ID of the initiator. * */ @Export(name="acceptingRegionId", refs={String.class}, tree="[0]") private Output acceptingRegionId; /** * @return The region ID of the recipient of the VPC peering connection to be created.-When creating a VPC peer-to-peer connection in the same region, enter the same region ID as the region ID of the initiator.-When creating a cross-region VPC peer-to-peer connection, enter a region ID that is different from the region ID of the initiator. * */ public Output acceptingRegionId() { return this.acceptingRegionId; } /** * The VPC ID of the receiving end of the VPC peer connection. * */ @Export(name="acceptingVpcId", refs={String.class}, tree="[0]") private Output acceptingVpcId; /** * @return The VPC ID of the receiving end of the VPC peer connection. * */ public Output acceptingVpcId() { return this.acceptingVpcId; } /** * The bandwidth of the VPC peering connection to be modified. Unit: Mbps. The value range is an integer greater than 0. * */ @Export(name="bandwidth", refs={Integer.class}, tree="[0]") private Output bandwidth; /** * @return The bandwidth of the VPC peering connection to be modified. Unit: Mbps. The value range is an integer greater than 0. * */ public Output bandwidth() { return this.bandwidth; } /** * The description of the VPC peer connection to be created.It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https. * */ @Export(name="description", refs={String.class}, tree="[0]") private Output description; /** * @return The description of the VPC peer connection to be created.It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with http:// or https. * */ public Output description() { return this.description; } /** * The dry run. * */ @Export(name="dryRun", refs={Boolean.class}, tree="[0]") private Output dryRun; /** * @return The dry run. * */ public Output> dryRun() { return Codegen.optional(this.dryRun); } /** * The ID of the instance of the created VPC peer connection. * */ @Export(name="instanceId", refs={String.class}, tree="[0]") private Output instanceId; /** * @return The ID of the instance of the created VPC peer connection. * */ public Output instanceId() { return this.instanceId; } /** * The name of the resource * */ @Export(name="peerConnectionAccepterName", refs={String.class}, tree="[0]") private Output peerConnectionAccepterName; /** * @return The name of the resource * */ public Output peerConnectionAccepterName() { return this.peerConnectionAccepterName; } /** * The status of the resource * */ @Export(name="status", refs={String.class}, tree="[0]") private Output status; /** * @return The status of the resource * */ public Output status() { return this.status; } /** * You must create a VPC ID on the initiator of a VPC peer connection. * */ @Export(name="vpcId", refs={String.class}, tree="[0]") private Output vpcId; /** * @return You must create a VPC ID on the initiator of a VPC peer connection. * */ public Output vpcId() { return this.vpcId; } /** * * @param name The _unique_ name of the resulting resource. */ public PeerConnectionAccepter(String name) { this(name, PeerConnectionAccepterArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public PeerConnectionAccepter(String name, PeerConnectionAccepterArgs 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 PeerConnectionAccepter(String name, PeerConnectionAccepterArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("alicloud:vpc/peerConnectionAccepter:PeerConnectionAccepter", name, args == null ? PeerConnectionAccepterArgs.Empty : args, makeResourceOptions(options, Codegen.empty())); } private PeerConnectionAccepter(String name, Output id, @Nullable PeerConnectionAccepterState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("alicloud:vpc/peerConnectionAccepter:PeerConnectionAccepter", 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 PeerConnectionAccepter get(String name, Output id, @Nullable PeerConnectionAccepterState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new PeerConnectionAccepter(name, id, state, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy