All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.orbital.outputs.SpacecraftLinkResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show 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.orbital.outputs;

import com.pulumi.azurenative.orbital.outputs.AuthorizedGroundstationResponse;
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.Objects;

@CustomType
public final class SpacecraftLinkResponse {
    /**
     * @return Authorized Ground Stations
     * 
     */
    private List authorizations;
    /**
     * @return Bandwidth in MHz.
     * 
     */
    private Double bandwidthMHz;
    /**
     * @return Center Frequency in MHz.
     * 
     */
    private Double centerFrequencyMHz;
    /**
     * @return Direction (Uplink or Downlink).
     * 
     */
    private String direction;
    /**
     * @return Link name.
     * 
     */
    private String name;
    /**
     * @return Polarization. e.g. (RHCP, LHCP).
     * 
     */
    private String polarization;

    private SpacecraftLinkResponse() {}
    /**
     * @return Authorized Ground Stations
     * 
     */
    public List authorizations() {
        return this.authorizations;
    }
    /**
     * @return Bandwidth in MHz.
     * 
     */
    public Double bandwidthMHz() {
        return this.bandwidthMHz;
    }
    /**
     * @return Center Frequency in MHz.
     * 
     */
    public Double centerFrequencyMHz() {
        return this.centerFrequencyMHz;
    }
    /**
     * @return Direction (Uplink or Downlink).
     * 
     */
    public String direction() {
        return this.direction;
    }
    /**
     * @return Link name.
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return Polarization. e.g. (RHCP, LHCP).
     * 
     */
    public String polarization() {
        return this.polarization;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(SpacecraftLinkResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private List authorizations;
        private Double bandwidthMHz;
        private Double centerFrequencyMHz;
        private String direction;
        private String name;
        private String polarization;
        public Builder() {}
        public Builder(SpacecraftLinkResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.authorizations = defaults.authorizations;
    	      this.bandwidthMHz = defaults.bandwidthMHz;
    	      this.centerFrequencyMHz = defaults.centerFrequencyMHz;
    	      this.direction = defaults.direction;
    	      this.name = defaults.name;
    	      this.polarization = defaults.polarization;
        }

        @CustomType.Setter
        public Builder authorizations(List authorizations) {
            if (authorizations == null) {
              throw new MissingRequiredPropertyException("SpacecraftLinkResponse", "authorizations");
            }
            this.authorizations = authorizations;
            return this;
        }
        public Builder authorizations(AuthorizedGroundstationResponse... authorizations) {
            return authorizations(List.of(authorizations));
        }
        @CustomType.Setter
        public Builder bandwidthMHz(Double bandwidthMHz) {
            if (bandwidthMHz == null) {
              throw new MissingRequiredPropertyException("SpacecraftLinkResponse", "bandwidthMHz");
            }
            this.bandwidthMHz = bandwidthMHz;
            return this;
        }
        @CustomType.Setter
        public Builder centerFrequencyMHz(Double centerFrequencyMHz) {
            if (centerFrequencyMHz == null) {
              throw new MissingRequiredPropertyException("SpacecraftLinkResponse", "centerFrequencyMHz");
            }
            this.centerFrequencyMHz = centerFrequencyMHz;
            return this;
        }
        @CustomType.Setter
        public Builder direction(String direction) {
            if (direction == null) {
              throw new MissingRequiredPropertyException("SpacecraftLinkResponse", "direction");
            }
            this.direction = direction;
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            if (name == null) {
              throw new MissingRequiredPropertyException("SpacecraftLinkResponse", "name");
            }
            this.name = name;
            return this;
        }
        @CustomType.Setter
        public Builder polarization(String polarization) {
            if (polarization == null) {
              throw new MissingRequiredPropertyException("SpacecraftLinkResponse", "polarization");
            }
            this.polarization = polarization;
            return this;
        }
        public SpacecraftLinkResponse build() {
            final var _resultValue = new SpacecraftLinkResponse();
            _resultValue.authorizations = authorizations;
            _resultValue.bandwidthMHz = bandwidthMHz;
            _resultValue.centerFrequencyMHz = centerFrequencyMHz;
            _resultValue.direction = direction;
            _resultValue.name = name;
            _resultValue.polarization = polarization;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy