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