com.pulumi.azurenative.connectedvmwarevsphere.Host Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.HostArgs;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.ExtendedLocationResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.ResourceStatusResponse;
import com.pulumi.azurenative.connectedvmwarevsphere.outputs.SystemDataResponse;
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.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Define the host.
* 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
* ### CreateHost
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.connectedvmwarevsphere.Host;
* import com.pulumi.azurenative.connectedvmwarevsphere.HostArgs;
* 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 host = new Host("host", HostArgs.builder()
* .extendedLocation(ExtendedLocationArgs.builder()
* .name("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso")
* .type("customLocation")
* .build())
* .hostName("HRHost")
* .location("East US")
* .moRefId("aaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee")
* .resourceGroupName("testrg")
* .vCenterId("/subscriptions/fd3c3665-1729-4b7b-9a38-238e83b0f98b/resourceGroups/testrg/providers/Microsoft.ConnectedVMwarevSphere/VCenters/ContosoVCenter")
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:connectedvmwarevsphere:Host HRHost /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ConnectedVMwarevSphere/hosts/{hostName}
* ```
*
*/
@ResourceType(type="azure-native:connectedvmwarevsphere:Host")
public class Host extends com.pulumi.resources.CustomResource {
/**
* 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 datastore ARM ids.
*
*/
@Export(name="datastoreIds", refs={List.class,String.class}, tree="[0,1]")
private Output> datastoreIds;
/**
* @return Gets or sets the datastore ARM ids.
*
*/
public Output> datastoreIds() {
return this.datastoreIds;
}
/**
* Gets or sets the extended location.
*
*/
@Export(name="extendedLocation", refs={ExtendedLocationResponse.class}, tree="[0]")
private Output* @Nullable */ ExtendedLocationResponse> extendedLocation;
/**
* @return Gets or sets the extended location.
*
*/
public Output> extendedLocation() {
return Codegen.optional(this.extendedLocation);
}
/**
* Gets or sets the inventory Item ID for the host.
*
*/
@Export(name="inventoryItemId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> inventoryItemId;
/**
* @return Gets or sets the inventory Item ID for the host.
*
*/
public Output> inventoryItemId() {
return Codegen.optional(this.inventoryItemId);
}
/**
* 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* @Nullable */ String> 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 vCenter Managed Object name for the host.
*
*/
@Export(name="moName", refs={String.class}, tree="[0]")
private Output moName;
/**
* @return Gets or sets the vCenter Managed Object name for the host.
*
*/
public Output moName() {
return this.moName;
}
/**
* Gets or sets the vCenter MoRef (Managed Object Reference) ID for the host.
*
*/
@Export(name="moRefId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> moRefId;
/**
* @return Gets or sets the vCenter MoRef (Managed Object Reference) ID for the host.
*
*/
public Output> moRefId() {
return Codegen.optional(this.moRefId);
}
/**
* 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 network ARM ids.
*
*/
@Export(name="networkIds", refs={List.class,String.class}, tree="[0,1]")
private Output> networkIds;
/**
* @return Gets or sets the network ARM ids.
*
*/
public Output> networkIds() {
return this.networkIds;
}
/**
* 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* @Nullable */ Map> 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 ARM Id of the vCenter resource in which this host resides.
*
*/
@Export(name="vCenterId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> vCenterId;
/**
* @return Gets or sets the ARM Id of the vCenter resource in which this host resides.
*
*/
public Output> vCenterId() {
return Codegen.optional(this.vCenterId);
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public Host(java.lang.String name) {
this(name, HostArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public Host(java.lang.String name, HostArgs 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 Host(java.lang.String name, HostArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:connectedvmwarevsphere:Host", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private Host(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:connectedvmwarevsphere:Host", name, null, makeResourceOptions(options, id), false);
}
private static HostArgs makeArgs(HostArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? HostArgs.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:Host").build()),
Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20220110preview:Host").build()),
Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20220715preview:Host").build()),
Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20230301preview:Host").build()),
Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20231001:Host").build()),
Output.of(Alias.builder().type("azure-native:connectedvmwarevsphere/v20231201:Host").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 Host get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new Host(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy