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