com.pulumi.azure.orbital.inputs.ContactProfileLinkArgs 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.azure.orbital.inputs.ContactProfileLinkChannelArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
public final class ContactProfileLinkArgs extends com.pulumi.resources.ResourceArgs {
public static final ContactProfileLinkArgs Empty = new ContactProfileLinkArgs();
/**
* A list of contact profile link channels. A `channels` block as defined below.
*
*/
@Import(name="channels", required=true)
private Output> channels;
/**
* @return A list of contact profile link channels. A `channels` block as defined below.
*
*/
public Output> channels() {
return this.channels;
}
/**
* Direction of the link. Possible values are `Uplink` and `Downlink`.
*
*/
@Import(name="direction", required=true)
private Output direction;
/**
* @return Direction of the link. 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 of the link. Possible values are `LHCP`, `RHCP`, `linearVertical` and `linearHorizontal`.
*
*/
@Import(name="polarization", required=true)
private Output polarization;
/**
* @return Polarization of the link. Possible values are `LHCP`, `RHCP`, `linearVertical` and `linearHorizontal`.
*
*/
public Output polarization() {
return this.polarization;
}
private ContactProfileLinkArgs() {}
private ContactProfileLinkArgs(ContactProfileLinkArgs $) {
this.channels = $.channels;
this.direction = $.direction;
this.name = $.name;
this.polarization = $.polarization;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ContactProfileLinkArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ContactProfileLinkArgs $;
public Builder() {
$ = new ContactProfileLinkArgs();
}
public Builder(ContactProfileLinkArgs defaults) {
$ = new ContactProfileLinkArgs(Objects.requireNonNull(defaults));
}
/**
* @param channels A list of contact profile link channels. A `channels` block as defined below.
*
* @return builder
*
*/
public Builder channels(Output> channels) {
$.channels = channels;
return this;
}
/**
* @param channels A list of contact profile link channels. A `channels` block as defined below.
*
* @return builder
*
*/
public Builder channels(List channels) {
return channels(Output.of(channels));
}
/**
* @param channels A list of contact profile link channels. A `channels` block as defined below.
*
* @return builder
*
*/
public Builder channels(ContactProfileLinkChannelArgs... channels) {
return channels(List.of(channels));
}
/**
* @param direction Direction of the link. Possible values are `Uplink` and `Downlink`.
*
* @return builder
*
*/
public Builder direction(Output direction) {
$.direction = direction;
return this;
}
/**
* @param direction Direction of the link. 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 of the link. Possible values are `LHCP`, `RHCP`, `linearVertical` and `linearHorizontal`.
*
* @return builder
*
*/
public Builder polarization(Output polarization) {
$.polarization = polarization;
return this;
}
/**
* @param polarization Polarization of the link. Possible values are `LHCP`, `RHCP`, `linearVertical` and `linearHorizontal`.
*
* @return builder
*
*/
public Builder polarization(String polarization) {
return polarization(Output.of(polarization));
}
public ContactProfileLinkArgs build() {
if ($.channels == null) {
throw new MissingRequiredPropertyException("ContactProfileLinkArgs", "channels");
}
if ($.direction == null) {
throw new MissingRequiredPropertyException("ContactProfileLinkArgs", "direction");
}
if ($.name == null) {
throw new MissingRequiredPropertyException("ContactProfileLinkArgs", "name");
}
if ($.polarization == null) {
throw new MissingRequiredPropertyException("ContactProfileLinkArgs", "polarization");
}
return $;
}
}
}