
com.pulumi.azurenative.orbital.outputs.AuthorizedGroundstationResponse Maven / Gradle / Ivy
// *** 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.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class AuthorizedGroundstationResponse {
/**
* @return Date of authorization expiration.
*
*/
private String expirationDate;
/**
* @return Groundstation name.
*
*/
private String groundStation;
private AuthorizedGroundstationResponse() {}
/**
* @return Date of authorization expiration.
*
*/
public String expirationDate() {
return this.expirationDate;
}
/**
* @return Groundstation name.
*
*/
public String groundStation() {
return this.groundStation;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AuthorizedGroundstationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String expirationDate;
private String groundStation;
public Builder() {}
public Builder(AuthorizedGroundstationResponse defaults) {
Objects.requireNonNull(defaults);
this.expirationDate = defaults.expirationDate;
this.groundStation = defaults.groundStation;
}
@CustomType.Setter
public Builder expirationDate(String expirationDate) {
if (expirationDate == null) {
throw new MissingRequiredPropertyException("AuthorizedGroundstationResponse", "expirationDate");
}
this.expirationDate = expirationDate;
return this;
}
@CustomType.Setter
public Builder groundStation(String groundStation) {
if (groundStation == null) {
throw new MissingRequiredPropertyException("AuthorizedGroundstationResponse", "groundStation");
}
this.groundStation = groundStation;
return this;
}
public AuthorizedGroundstationResponse build() {
final var _resultValue = new AuthorizedGroundstationResponse();
_resultValue.expirationDate = expirationDate;
_resultValue.groundStation = groundStation;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy