com.pulumi.azurenative.orbital.inputs.GetContactArgs 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.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetContactArgs extends com.pulumi.resources.InvokeArgs {
public static final GetContactArgs Empty = new GetContactArgs();
/**
* Contact name.
*
*/
@Import(name="contactName", required=true)
private Output contactName;
/**
* @return Contact name.
*
*/
public Output contactName() {
return this.contactName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* Spacecraft ID.
*
*/
@Import(name="spacecraftName", required=true)
private Output spacecraftName;
/**
* @return Spacecraft ID.
*
*/
public Output spacecraftName() {
return this.spacecraftName;
}
private GetContactArgs() {}
private GetContactArgs(GetContactArgs $) {
this.contactName = $.contactName;
this.resourceGroupName = $.resourceGroupName;
this.spacecraftName = $.spacecraftName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetContactArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetContactArgs $;
public Builder() {
$ = new GetContactArgs();
}
public Builder(GetContactArgs defaults) {
$ = new GetContactArgs(Objects.requireNonNull(defaults));
}
/**
* @param contactName Contact name.
*
* @return builder
*
*/
public Builder contactName(Output contactName) {
$.contactName = contactName;
return this;
}
/**
* @param contactName Contact name.
*
* @return builder
*
*/
public Builder contactName(String contactName) {
return contactName(Output.of(contactName));
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param spacecraftName Spacecraft ID.
*
* @return builder
*
*/
public Builder spacecraftName(Output spacecraftName) {
$.spacecraftName = spacecraftName;
return this;
}
/**
* @param spacecraftName Spacecraft ID.
*
* @return builder
*
*/
public Builder spacecraftName(String spacecraftName) {
return spacecraftName(Output.of(spacecraftName));
}
public GetContactArgs build() {
if ($.contactName == null) {
throw new MissingRequiredPropertyException("GetContactArgs", "contactName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetContactArgs", "resourceGroupName");
}
if ($.spacecraftName == null) {
throw new MissingRequiredPropertyException("GetContactArgs", "spacecraftName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy