com.pulumi.azurenative.iotoperationsorchestrator.inputs.ExtendedLocationArgs 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.
The 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.iotoperationsorchestrator.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* Extended location is an extension of Azure locations. They provide a way to use their Azure ARC enabled Kubernetes clusters as target locations for deploying Azure services instances.
*
*/
public final class ExtendedLocationArgs extends com.pulumi.resources.ResourceArgs {
public static final ExtendedLocationArgs Empty = new ExtendedLocationArgs();
/**
* The name of the extended location.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the extended location.
*
*/
public Output name() {
return this.name;
}
/**
* The type of the extended location.
*
*/
@Import(name="type", required=true)
private Output type;
/**
* @return The type of the extended location.
*
*/
public Output type() {
return this.type;
}
private ExtendedLocationArgs() {}
private ExtendedLocationArgs(ExtendedLocationArgs $) {
this.name = $.name;
this.type = $.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ExtendedLocationArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ExtendedLocationArgs $;
public Builder() {
$ = new ExtendedLocationArgs();
}
public Builder(ExtendedLocationArgs defaults) {
$ = new ExtendedLocationArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the extended location.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name The name of the extended location.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param type The type of the extended location.
*
* @return builder
*
*/
public Builder type(Output type) {
$.type = type;
return this;
}
/**
* @param type The type of the extended location.
*
* @return builder
*
*/
public Builder type(String type) {
return type(Output.of(type));
}
public ExtendedLocationArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("ExtendedLocationArgs", "name");
}
if ($.type == null) {
throw new MissingRequiredPropertyException("ExtendedLocationArgs", "type");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy