
com.pulumi.azurenative.databoxedge.outputs.GetArcAddonResult 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.databoxedge.outputs;
import com.pulumi.azurenative.databoxedge.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class GetArcAddonResult {
/**
* @return Host OS supported by the Arc addon.
*
*/
private String hostPlatform;
/**
* @return Platform where the runtime is hosted.
*
*/
private String hostPlatformType;
/**
* @return The path ID that uniquely identifies the object.
*
*/
private String id;
/**
* @return Addon type.
* Expected value is 'ArcForKubernetes'.
*
*/
private String kind;
/**
* @return The object name.
*
*/
private String name;
/**
* @return Addon Provisioning State
*
*/
private String provisioningState;
/**
* @return Arc resource group name
*
*/
private String resourceGroupName;
/**
* @return Arc resource location
*
*/
private String resourceLocation;
/**
* @return Arc resource Name
*
*/
private String resourceName;
/**
* @return Arc resource subscription Id
*
*/
private String subscriptionId;
/**
* @return Metadata pertaining to creation and last modification of Addon
*
*/
private SystemDataResponse systemData;
/**
* @return The hierarchical type of the object.
*
*/
private String type;
/**
* @return Arc resource version
*
*/
private String version;
private GetArcAddonResult() {}
/**
* @return Host OS supported by the Arc addon.
*
*/
public String hostPlatform() {
return this.hostPlatform;
}
/**
* @return Platform where the runtime is hosted.
*
*/
public String hostPlatformType() {
return this.hostPlatformType;
}
/**
* @return The path ID that uniquely identifies the object.
*
*/
public String id() {
return this.id;
}
/**
* @return Addon type.
* Expected value is 'ArcForKubernetes'.
*
*/
public String kind() {
return this.kind;
}
/**
* @return The object name.
*
*/
public String name() {
return this.name;
}
/**
* @return Addon Provisioning State
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return Arc resource group name
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* @return Arc resource location
*
*/
public String resourceLocation() {
return this.resourceLocation;
}
/**
* @return Arc resource Name
*
*/
public String resourceName() {
return this.resourceName;
}
/**
* @return Arc resource subscription Id
*
*/
public String subscriptionId() {
return this.subscriptionId;
}
/**
* @return Metadata pertaining to creation and last modification of Addon
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return The hierarchical type of the object.
*
*/
public String type() {
return this.type;
}
/**
* @return Arc resource version
*
*/
public String version() {
return this.version;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetArcAddonResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String hostPlatform;
private String hostPlatformType;
private String id;
private String kind;
private String name;
private String provisioningState;
private String resourceGroupName;
private String resourceLocation;
private String resourceName;
private String subscriptionId;
private SystemDataResponse systemData;
private String type;
private String version;
public Builder() {}
public Builder(GetArcAddonResult defaults) {
Objects.requireNonNull(defaults);
this.hostPlatform = defaults.hostPlatform;
this.hostPlatformType = defaults.hostPlatformType;
this.id = defaults.id;
this.kind = defaults.kind;
this.name = defaults.name;
this.provisioningState = defaults.provisioningState;
this.resourceGroupName = defaults.resourceGroupName;
this.resourceLocation = defaults.resourceLocation;
this.resourceName = defaults.resourceName;
this.subscriptionId = defaults.subscriptionId;
this.systemData = defaults.systemData;
this.type = defaults.type;
this.version = defaults.version;
}
@CustomType.Setter
public Builder hostPlatform(String hostPlatform) {
if (hostPlatform == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "hostPlatform");
}
this.hostPlatform = hostPlatform;
return this;
}
@CustomType.Setter
public Builder hostPlatformType(String hostPlatformType) {
if (hostPlatformType == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "hostPlatformType");
}
this.hostPlatformType = hostPlatformType;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(String kind) {
if (kind == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "kind");
}
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder resourceGroupName(String resourceGroupName) {
if (resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "resourceGroupName");
}
this.resourceGroupName = resourceGroupName;
return this;
}
@CustomType.Setter
public Builder resourceLocation(String resourceLocation) {
if (resourceLocation == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "resourceLocation");
}
this.resourceLocation = resourceLocation;
return this;
}
@CustomType.Setter
public Builder resourceName(String resourceName) {
if (resourceName == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "resourceName");
}
this.resourceName = resourceName;
return this;
}
@CustomType.Setter
public Builder subscriptionId(String subscriptionId) {
if (subscriptionId == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "subscriptionId");
}
this.subscriptionId = subscriptionId;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "type");
}
this.type = type;
return this;
}
@CustomType.Setter
public Builder version(String version) {
if (version == null) {
throw new MissingRequiredPropertyException("GetArcAddonResult", "version");
}
this.version = version;
return this;
}
public GetArcAddonResult build() {
final var _resultValue = new GetArcAddonResult();
_resultValue.hostPlatform = hostPlatform;
_resultValue.hostPlatformType = hostPlatformType;
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.name = name;
_resultValue.provisioningState = provisioningState;
_resultValue.resourceGroupName = resourceGroupName;
_resultValue.resourceLocation = resourceLocation;
_resultValue.resourceName = resourceName;
_resultValue.subscriptionId = subscriptionId;
_resultValue.systemData = systemData;
_resultValue.type = type;
_resultValue.version = version;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy