
com.pulumi.azurenative.devcenter.inputs.GetSchedulePlainArgs 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.devcenter.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetSchedulePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSchedulePlainArgs Empty = new GetSchedulePlainArgs();
/**
* Name of the pool.
*
*/
@Import(name="poolName", required=true)
private String poolName;
/**
* @return Name of the pool.
*
*/
public String poolName() {
return this.poolName;
}
/**
* The name of the project.
*
*/
@Import(name="projectName", required=true)
private String projectName;
/**
* @return The name of the project.
*
*/
public String projectName() {
return this.projectName;
}
/**
* 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 schedule that uniquely identifies it.
*
*/
@Import(name="scheduleName", required=true)
private String scheduleName;
/**
* @return The name of the schedule that uniquely identifies it.
*
*/
public String scheduleName() {
return this.scheduleName;
}
/**
* The maximum number of resources to return from the operation. Example: '$top=10'.
*
*/
@Import(name="top")
private @Nullable Integer top;
/**
* @return The maximum number of resources to return from the operation. Example: '$top=10'.
*
*/
public Optional top() {
return Optional.ofNullable(this.top);
}
private GetSchedulePlainArgs() {}
private GetSchedulePlainArgs(GetSchedulePlainArgs $) {
this.poolName = $.poolName;
this.projectName = $.projectName;
this.resourceGroupName = $.resourceGroupName;
this.scheduleName = $.scheduleName;
this.top = $.top;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSchedulePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetSchedulePlainArgs $;
public Builder() {
$ = new GetSchedulePlainArgs();
}
public Builder(GetSchedulePlainArgs defaults) {
$ = new GetSchedulePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param poolName Name of the pool.
*
* @return builder
*
*/
public Builder poolName(String poolName) {
$.poolName = poolName;
return this;
}
/**
* @param projectName The name of the project.
*
* @return builder
*
*/
public Builder projectName(String projectName) {
$.projectName = projectName;
return this;
}
/**
* @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 scheduleName The name of the schedule that uniquely identifies it.
*
* @return builder
*
*/
public Builder scheduleName(String scheduleName) {
$.scheduleName = scheduleName;
return this;
}
/**
* @param top The maximum number of resources to return from the operation. Example: '$top=10'.
*
* @return builder
*
*/
public Builder top(@Nullable Integer top) {
$.top = top;
return this;
}
public GetSchedulePlainArgs build() {
if ($.poolName == null) {
throw new MissingRequiredPropertyException("GetSchedulePlainArgs", "poolName");
}
if ($.projectName == null) {
throw new MissingRequiredPropertyException("GetSchedulePlainArgs", "projectName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetSchedulePlainArgs", "resourceGroupName");
}
if ($.scheduleName == null) {
throw new MissingRequiredPropertyException("GetSchedulePlainArgs", "scheduleName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy