
com.pulumi.azurenative.orbital.outputs.GetGroundStationResult 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.orbital.outputs;
import com.pulumi.azurenative.orbital.outputs.GroundStationsPropertiesResponseGlobalCommunicationsSite;
import com.pulumi.azurenative.orbital.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetGroundStationResult {
/**
* @return Altitude of the ground station.
*
*/
private @Nullable Double altitudeMeters;
/**
* @return Ground station capabilities.
*
*/
private List capabilities;
/**
* @return City of ground station.
*
*/
private @Nullable String city;
/**
* @return A reference to global communications site.
*
*/
private GroundStationsPropertiesResponseGlobalCommunicationsSite globalCommunicationsSite;
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
private String id;
/**
* @return Latitude of the ground station in decimal degrees.
*
*/
private @Nullable Double latitudeDegrees;
/**
* @return The geo-location where the resource lives
*
*/
private String location;
/**
* @return Longitude of the ground station in decimal degrees.
*
*/
private @Nullable Double longitudeDegrees;
/**
* @return The name of the resource
*
*/
private String name;
/**
* @return Ground station provider name.
*
*/
private @Nullable String providerName;
/**
* @return Release Status of a ground station.
*
*/
private String releaseMode;
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
private SystemDataResponse systemData;
/**
* @return Resource tags.
*
*/
private @Nullable Map tags;
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
private String type;
private GetGroundStationResult() {}
/**
* @return Altitude of the ground station.
*
*/
public Optional altitudeMeters() {
return Optional.ofNullable(this.altitudeMeters);
}
/**
* @return Ground station capabilities.
*
*/
public List capabilities() {
return this.capabilities;
}
/**
* @return City of ground station.
*
*/
public Optional city() {
return Optional.ofNullable(this.city);
}
/**
* @return A reference to global communications site.
*
*/
public GroundStationsPropertiesResponseGlobalCommunicationsSite globalCommunicationsSite() {
return this.globalCommunicationsSite;
}
/**
* @return Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*
*/
public String id() {
return this.id;
}
/**
* @return Latitude of the ground station in decimal degrees.
*
*/
public Optional latitudeDegrees() {
return Optional.ofNullable(this.latitudeDegrees);
}
/**
* @return The geo-location where the resource lives
*
*/
public String location() {
return this.location;
}
/**
* @return Longitude of the ground station in decimal degrees.
*
*/
public Optional longitudeDegrees() {
return Optional.ofNullable(this.longitudeDegrees);
}
/**
* @return The name of the resource
*
*/
public String name() {
return this.name;
}
/**
* @return Ground station provider name.
*
*/
public Optional providerName() {
return Optional.ofNullable(this.providerName);
}
/**
* @return Release Status of a ground station.
*
*/
public String releaseMode() {
return this.releaseMode;
}
/**
* @return Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
*/
public SystemDataResponse systemData() {
return this.systemData;
}
/**
* @return Resource tags.
*
*/
public Map tags() {
return this.tags == null ? Map.of() : this.tags;
}
/**
* @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetGroundStationResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Double altitudeMeters;
private List capabilities;
private @Nullable String city;
private GroundStationsPropertiesResponseGlobalCommunicationsSite globalCommunicationsSite;
private String id;
private @Nullable Double latitudeDegrees;
private String location;
private @Nullable Double longitudeDegrees;
private String name;
private @Nullable String providerName;
private String releaseMode;
private SystemDataResponse systemData;
private @Nullable Map tags;
private String type;
public Builder() {}
public Builder(GetGroundStationResult defaults) {
Objects.requireNonNull(defaults);
this.altitudeMeters = defaults.altitudeMeters;
this.capabilities = defaults.capabilities;
this.city = defaults.city;
this.globalCommunicationsSite = defaults.globalCommunicationsSite;
this.id = defaults.id;
this.latitudeDegrees = defaults.latitudeDegrees;
this.location = defaults.location;
this.longitudeDegrees = defaults.longitudeDegrees;
this.name = defaults.name;
this.providerName = defaults.providerName;
this.releaseMode = defaults.releaseMode;
this.systemData = defaults.systemData;
this.tags = defaults.tags;
this.type = defaults.type;
}
@CustomType.Setter
public Builder altitudeMeters(@Nullable Double altitudeMeters) {
this.altitudeMeters = altitudeMeters;
return this;
}
@CustomType.Setter
public Builder capabilities(List capabilities) {
if (capabilities == null) {
throw new MissingRequiredPropertyException("GetGroundStationResult", "capabilities");
}
this.capabilities = capabilities;
return this;
}
public Builder capabilities(String... capabilities) {
return capabilities(List.of(capabilities));
}
@CustomType.Setter
public Builder city(@Nullable String city) {
this.city = city;
return this;
}
@CustomType.Setter
public Builder globalCommunicationsSite(GroundStationsPropertiesResponseGlobalCommunicationsSite globalCommunicationsSite) {
if (globalCommunicationsSite == null) {
throw new MissingRequiredPropertyException("GetGroundStationResult", "globalCommunicationsSite");
}
this.globalCommunicationsSite = globalCommunicationsSite;
return this;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("GetGroundStationResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder latitudeDegrees(@Nullable Double latitudeDegrees) {
this.latitudeDegrees = latitudeDegrees;
return this;
}
@CustomType.Setter
public Builder location(String location) {
if (location == null) {
throw new MissingRequiredPropertyException("GetGroundStationResult", "location");
}
this.location = location;
return this;
}
@CustomType.Setter
public Builder longitudeDegrees(@Nullable Double longitudeDegrees) {
this.longitudeDegrees = longitudeDegrees;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("GetGroundStationResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder providerName(@Nullable String providerName) {
this.providerName = providerName;
return this;
}
@CustomType.Setter
public Builder releaseMode(String releaseMode) {
if (releaseMode == null) {
throw new MissingRequiredPropertyException("GetGroundStationResult", "releaseMode");
}
this.releaseMode = releaseMode;
return this;
}
@CustomType.Setter
public Builder systemData(SystemDataResponse systemData) {
if (systemData == null) {
throw new MissingRequiredPropertyException("GetGroundStationResult", "systemData");
}
this.systemData = systemData;
return this;
}
@CustomType.Setter
public Builder tags(@Nullable Map tags) {
this.tags = tags;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("GetGroundStationResult", "type");
}
this.type = type;
return this;
}
public GetGroundStationResult build() {
final var _resultValue = new GetGroundStationResult();
_resultValue.altitudeMeters = altitudeMeters;
_resultValue.capabilities = capabilities;
_resultValue.city = city;
_resultValue.globalCommunicationsSite = globalCommunicationsSite;
_resultValue.id = id;
_resultValue.latitudeDegrees = latitudeDegrees;
_resultValue.location = location;
_resultValue.longitudeDegrees = longitudeDegrees;
_resultValue.name = name;
_resultValue.providerName = providerName;
_resultValue.releaseMode = releaseMode;
_resultValue.systemData = systemData;
_resultValue.tags = tags;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy