
com.pulumi.azurenative.devtestlab.inputs.GetServiceFabricSchedulePlainArgs 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.devtestlab.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetServiceFabricSchedulePlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetServiceFabricSchedulePlainArgs Empty = new GetServiceFabricSchedulePlainArgs();
/**
* Specify the $expand query. Example: 'properties($select=status)'
*
*/
@Import(name="expand")
private @Nullable String expand;
/**
* @return Specify the $expand query. Example: 'properties($select=status)'
*
*/
public Optional expand() {
return Optional.ofNullable(this.expand);
}
/**
* The name of the lab.
*
*/
@Import(name="labName", required=true)
private String labName;
/**
* @return The name of the lab.
*
*/
public String labName() {
return this.labName;
}
/**
* The name of the schedule.
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return The name of the schedule.
*
*/
public String name() {
return this.name;
}
/**
* 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;
}
/**
* The name of the service fabric.
*
*/
@Import(name="serviceFabricName", required=true)
private String serviceFabricName;
/**
* @return The name of the service fabric.
*
*/
public String serviceFabricName() {
return this.serviceFabricName;
}
/**
* The name of the user profile.
*
*/
@Import(name="userName", required=true)
private String userName;
/**
* @return The name of the user profile.
*
*/
public String userName() {
return this.userName;
}
private GetServiceFabricSchedulePlainArgs() {}
private GetServiceFabricSchedulePlainArgs(GetServiceFabricSchedulePlainArgs $) {
this.expand = $.expand;
this.labName = $.labName;
this.name = $.name;
this.resourceGroupName = $.resourceGroupName;
this.serviceFabricName = $.serviceFabricName;
this.userName = $.userName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetServiceFabricSchedulePlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetServiceFabricSchedulePlainArgs $;
public Builder() {
$ = new GetServiceFabricSchedulePlainArgs();
}
public Builder(GetServiceFabricSchedulePlainArgs defaults) {
$ = new GetServiceFabricSchedulePlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param expand Specify the $expand query. Example: 'properties($select=status)'
*
* @return builder
*
*/
public Builder expand(@Nullable String expand) {
$.expand = expand;
return this;
}
/**
* @param labName The name of the lab.
*
* @return builder
*
*/
public Builder labName(String labName) {
$.labName = labName;
return this;
}
/**
* @param name The name of the schedule.
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param serviceFabricName The name of the service fabric.
*
* @return builder
*
*/
public Builder serviceFabricName(String serviceFabricName) {
$.serviceFabricName = serviceFabricName;
return this;
}
/**
* @param userName The name of the user profile.
*
* @return builder
*
*/
public Builder userName(String userName) {
$.userName = userName;
return this;
}
public GetServiceFabricSchedulePlainArgs build() {
if ($.labName == null) {
throw new MissingRequiredPropertyException("GetServiceFabricSchedulePlainArgs", "labName");
}
if ($.name == null) {
throw new MissingRequiredPropertyException("GetServiceFabricSchedulePlainArgs", "name");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetServiceFabricSchedulePlainArgs", "resourceGroupName");
}
if ($.serviceFabricName == null) {
throw new MissingRequiredPropertyException("GetServiceFabricSchedulePlainArgs", "serviceFabricName");
}
if ($.userName == null) {
throw new MissingRequiredPropertyException("GetServiceFabricSchedulePlainArgs", "userName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy