com.pulumi.azure.orbital.inputs.SpacecraftLinkArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.orbital.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Double;
import java.lang.String;
import java.util.Objects;
public final class SpacecraftLinkArgs extends com.pulumi.resources.ResourceArgs {
public static final SpacecraftLinkArgs Empty = new SpacecraftLinkArgs();
/**
* Bandwidth in Mhz.
*
*/
@Import(name="bandwidthMhz", required=true)
private Output bandwidthMhz;
/**
* @return Bandwidth in Mhz.
*
*/
public Output bandwidthMhz() {
return this.bandwidthMhz;
}
/**
* Center frequency in Mhz.
*
* > **Note:** The value of `center_frequency_mhz +/- bandwidth_mhz / 2` should fall in one of these ranges: `Uplink/LHCP`: [2025, 2120]; `Uplink/Linear`: [399, 403],[435, 438],[449, 451]; `Uplink/RHCP`: [399, 403],[435, 438],[449, 451],[2025, 2120]; `Downlink/LHCP`: [2200, 2300], [7500, 8400]; `Downlink/Linear`: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]
*
*/
@Import(name="centerFrequencyMhz", required=true)
private Output centerFrequencyMhz;
/**
* @return Center frequency in Mhz.
*
* > **Note:** The value of `center_frequency_mhz +/- bandwidth_mhz / 2` should fall in one of these ranges: `Uplink/LHCP`: [2025, 2120]; `Uplink/Linear`: [399, 403],[435, 438],[449, 451]; `Uplink/RHCP`: [399, 403],[435, 438],[449, 451],[2025, 2120]; `Downlink/LHCP`: [2200, 2300], [7500, 8400]; `Downlink/Linear`: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]
*
*/
public Output centerFrequencyMhz() {
return this.centerFrequencyMhz;
}
/**
* Direction if the communication. Possible values are `Uplink` and `Downlink`.
*
*/
@Import(name="direction", required=true)
private Output direction;
/**
* @return Direction if the communication. Possible values are `Uplink` and `Downlink`.
*
*/
public Output direction() {
return this.direction;
}
/**
* Name of the link.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return Name of the link.
*
*/
public Output name() {
return this.name;
}
/**
* Polarization. Possible values are `RHCP`, `LHCP`, `linearVertical` and `linearHorizontal`.
*
*/
@Import(name="polarization", required=true)
private Output polarization;
/**
* @return Polarization. Possible values are `RHCP`, `LHCP`, `linearVertical` and `linearHorizontal`.
*
*/
public Output polarization() {
return this.polarization;
}
private SpacecraftLinkArgs() {}
private SpacecraftLinkArgs(SpacecraftLinkArgs $) {
this.bandwidthMhz = $.bandwidthMhz;
this.centerFrequencyMhz = $.centerFrequencyMhz;
this.direction = $.direction;
this.name = $.name;
this.polarization = $.polarization;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SpacecraftLinkArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private SpacecraftLinkArgs $;
public Builder() {
$ = new SpacecraftLinkArgs();
}
public Builder(SpacecraftLinkArgs defaults) {
$ = new SpacecraftLinkArgs(Objects.requireNonNull(defaults));
}
/**
* @param bandwidthMhz Bandwidth in Mhz.
*
* @return builder
*
*/
public Builder bandwidthMhz(Output bandwidthMhz) {
$.bandwidthMhz = bandwidthMhz;
return this;
}
/**
* @param bandwidthMhz Bandwidth in Mhz.
*
* @return builder
*
*/
public Builder bandwidthMhz(Double bandwidthMhz) {
return bandwidthMhz(Output.of(bandwidthMhz));
}
/**
* @param centerFrequencyMhz Center frequency in Mhz.
*
* > **Note:** The value of `center_frequency_mhz +/- bandwidth_mhz / 2` should fall in one of these ranges: `Uplink/LHCP`: [2025, 2120]; `Uplink/Linear`: [399, 403],[435, 438],[449, 451]; `Uplink/RHCP`: [399, 403],[435, 438],[449, 451],[2025, 2120]; `Downlink/LHCP`: [2200, 2300], [7500, 8400]; `Downlink/Linear`: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]
*
* @return builder
*
*/
public Builder centerFrequencyMhz(Output centerFrequencyMhz) {
$.centerFrequencyMhz = centerFrequencyMhz;
return this;
}
/**
* @param centerFrequencyMhz Center frequency in Mhz.
*
* > **Note:** The value of `center_frequency_mhz +/- bandwidth_mhz / 2` should fall in one of these ranges: `Uplink/LHCP`: [2025, 2120]; `Uplink/Linear`: [399, 403],[435, 438],[449, 451]; `Uplink/RHCP`: [399, 403],[435, 438],[449, 451],[2025, 2120]; `Downlink/LHCP`: [2200, 2300], [7500, 8400]; `Downlink/Linear`: [399, 403], [435, 438], [449, 451]; Downlink/Linear`: [399, 403], [435, 438], [449, 451], [2200, 2300], [7500, 8400]
*
* @return builder
*
*/
public Builder centerFrequencyMhz(Double centerFrequencyMhz) {
return centerFrequencyMhz(Output.of(centerFrequencyMhz));
}
/**
* @param direction Direction if the communication. Possible values are `Uplink` and `Downlink`.
*
* @return builder
*
*/
public Builder direction(Output direction) {
$.direction = direction;
return this;
}
/**
* @param direction Direction if the communication. Possible values are `Uplink` and `Downlink`.
*
* @return builder
*
*/
public Builder direction(String direction) {
return direction(Output.of(direction));
}
/**
* @param name Name of the link.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name Name of the link.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param polarization Polarization. Possible values are `RHCP`, `LHCP`, `linearVertical` and `linearHorizontal`.
*
* @return builder
*
*/
public Builder polarization(Output polarization) {
$.polarization = polarization;
return this;
}
/**
* @param polarization Polarization. Possible values are `RHCP`, `LHCP`, `linearVertical` and `linearHorizontal`.
*
* @return builder
*
*/
public Builder polarization(String polarization) {
return polarization(Output.of(polarization));
}
public SpacecraftLinkArgs build() {
if ($.bandwidthMhz == null) {
throw new MissingRequiredPropertyException("SpacecraftLinkArgs", "bandwidthMhz");
}
if ($.centerFrequencyMhz == null) {
throw new MissingRequiredPropertyException("SpacecraftLinkArgs", "centerFrequencyMhz");
}
if ($.direction == null) {
throw new MissingRequiredPropertyException("SpacecraftLinkArgs", "direction");
}
if ($.name == null) {
throw new MissingRequiredPropertyException("SpacecraftLinkArgs", "name");
}
if ($.polarization == null) {
throw new MissingRequiredPropertyException("SpacecraftLinkArgs", "polarization");
}
return $;
}
}
}