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

com.pulumi.azurenative.connectedvmwarevsphere.VCenter 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.connectedvmwarevsphere;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.connectedvmwarevsphere.VCenterArgs;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.ExtendedLocationResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.ResourceStatusResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.SystemDataResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.VICredentialResponse;
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.Integer;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Defines the vCenter.
 * Azure REST API version: 2022-07-15-preview. Prior API version in Azure Native 1.x: 2020-10-01-preview.
 * 
 * Other available API versions: 2023-03-01-preview, 2023-10-01, 2023-12-01.
 * 
 * ## Example Usage
 * ### CreateVCenter
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.connectedvmwarevsphere.VCenter;
 * import com.pulumi.azurenative.connectedvmwarevsphere.VCenterArgs;
 * import com.pulumi.azurenative.connectedvmwarevsphere.inputs.VICredentialArgs;
 * import com.pulumi.azurenative.connectedvmwarevsphere.inputs.ExtendedLocationArgs;
 * 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 vCenter = new VCenter("vCenter", VCenterArgs.builder()
 *             .credentials(VICredentialArgs.builder()
 *                 .password("")
 *                 .username("tempuser")
 *                 .build())
 *             .extendedLocation(ExtendedLocationArgs.builder()
 *                 .name("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso")
 *                 .type("customLocation")
 *                 .build())
 *             .fqdn("ContosoVMware.contoso.com")
 *             .location("East US")
 *             .port(1234)
 *             .resourceGroupName("testrg")
 *             .vcenterName("ContosoVCenter")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:connectedvmwarevsphere:VCenter ContosoVCenter /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/vcenters/{vcenterName} * ``` * */ @ResourceType(type="azure-native:connectedvmwarevsphere:VCenter") public class VCenter extends com.pulumi.resources.CustomResource { /** * Gets or sets the connection status to the vCenter. * */ @Export(name="connectionStatus", refs={String.class}, tree="[0]") private Output connectionStatus; /** * @return Gets or sets the connection status to the vCenter. * */ public Output connectionStatus() { return this.connectionStatus; } /** * Username / Password Credentials to connect to vcenter. * */ @Export(name="credentials", refs={VICredentialResponse.class}, tree="[0]") private Output credentials; /** * @return Username / Password Credentials to connect to vcenter. * */ public Output> credentials() { return Codegen.optional(this.credentials); } /** * Gets the name of the corresponding resource in Kubernetes. * */ @Export(name="customResourceName", refs={String.class}, tree="[0]") private Output customResourceName; /** * @return Gets the name of the corresponding resource in Kubernetes. * */ public Output customResourceName() { return this.customResourceName; } /** * Gets or sets the extended location. * */ @Export(name="extendedLocation", refs={ExtendedLocationResponse.class}, tree="[0]") private Output extendedLocation; /** * @return Gets or sets the extended location. * */ public Output> extendedLocation() { return Codegen.optional(this.extendedLocation); } /** * Gets or sets the FQDN/IPAddress of the vCenter. * */ @Export(name="fqdn", refs={String.class}, tree="[0]") private Output fqdn; /** * @return Gets or sets the FQDN/IPAddress of the vCenter. * */ public Output fqdn() { return this.fqdn; } /** * Gets or sets the instance UUID of the vCenter. * */ @Export(name="instanceUuid", refs={String.class}, tree="[0]") private Output instanceUuid; /** * @return Gets or sets the instance UUID of the vCenter. * */ public Output instanceUuid() { return this.instanceUuid; } /** * Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value. * */ @Export(name="kind", refs={String.class}, tree="[0]") private Output kind; /** * @return Metadata used by portal/tooling/etc to render different UX experiences for resources of the same type; e.g. ApiApps are a kind of Microsoft.Web/sites type. If supported, the resource provider must validate and persist this value. * */ public Output> kind() { return Codegen.optional(this.kind); } /** * Gets or sets the location. * */ @Export(name="location", refs={String.class}, tree="[0]") private Output location; /** * @return Gets or sets the location. * */ public Output location() { return this.location; } /** * Gets or sets the name. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return Gets or sets the name. * */ public Output name() { return this.name; } /** * Gets or sets the port of the vCenter. * */ @Export(name="port", refs={Integer.class}, tree="[0]") private Output port; /** * @return Gets or sets the port of the vCenter. * */ public Output> port() { return Codegen.optional(this.port); } /** * Gets or sets the provisioning state. * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return Gets or sets the provisioning state. * */ public Output provisioningState() { return this.provisioningState; } /** * The resource status information. * */ @Export(name="statuses", refs={List.class,ResourceStatusResponse.class}, tree="[0,1]") private Output> statuses; /** * @return The resource status information. * */ public Output> statuses() { return this.statuses; } /** * The system data. * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return The system data. * */ public Output systemData() { return this.systemData; } /** * Gets or sets the Resource tags. * */ @Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]") private Output> tags; /** * @return Gets or sets the Resource tags. * */ public Output>> tags() { return Codegen.optional(this.tags); } /** * Gets or sets the type of the resource. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return Gets or sets the type of the resource. * */ public Output type() { return this.type; } /** * Gets or sets a unique identifier for this resource. * */ @Export(name="uuid", refs={String.class}, tree="[0]") private Output uuid; /** * @return Gets or sets a unique identifier for this resource. * */ public Output uuid() { return this.uuid; } /** * Gets or sets the version of the vCenter. * */ @Export(name="version", refs={String.class}, tree="[0]") private Output version; /** * @return Gets or sets the version of the vCenter. * */ public Output version() { return this.version; } /** * * @param name The _unique_ name of the resulting resource. */ public VCenter(java.lang.String name) { this(name, VCenterArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public VCenter(java.lang.String name, VCenterArgs 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 VCenter(java.lang.String name, VCenterArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:connectedvmwarevsphere:VCenter", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private VCenter(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:connectedvmwarevsphere:VCenter", name, null, makeResourceOptions(options, id), false); } private static VCenterArgs makeArgs(VCenterArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? VCenterArgs.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:connectedvmwarevsphere/v20201001preview:VCenter").build()), Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20220110preview:VCenter").build()), Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20220715preview:VCenter").build()), Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20230301preview:VCenter").build()), Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20231001:VCenter").build()), Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20231201:VCenter").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 VCenter get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new VCenter(name, id, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy