
com.pulumi.azurenative.sql.inputs.GetStartStopManagedInstanceScheduleArgs Maven / Gradle / Ivy
// *** 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.sql.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 GetStartStopManagedInstanceScheduleArgs extends com.pulumi.resources.InvokeArgs {
public static final GetStartStopManagedInstanceScheduleArgs Empty = new GetStartStopManagedInstanceScheduleArgs();
/**
* The name of the managed instance.
*
*/
@Import(name="managedInstanceName", required=true)
private Output managedInstanceName;
/**
* @return The name of the managed instance.
*
*/
public Output managedInstanceName() {
return this.managedInstanceName;
}
/**
* The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* Name of the managed instance Start/Stop schedule.
*
*/
@Import(name="startStopScheduleName", required=true)
private Output startStopScheduleName;
/**
* @return Name of the managed instance Start/Stop schedule.
*
*/
public Output startStopScheduleName() {
return this.startStopScheduleName;
}
private GetStartStopManagedInstanceScheduleArgs() {}
private GetStartStopManagedInstanceScheduleArgs(GetStartStopManagedInstanceScheduleArgs $) {
this.managedInstanceName = $.managedInstanceName;
this.resourceGroupName = $.resourceGroupName;
this.startStopScheduleName = $.startStopScheduleName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetStartStopManagedInstanceScheduleArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetStartStopManagedInstanceScheduleArgs $;
public Builder() {
$ = new GetStartStopManagedInstanceScheduleArgs();
}
public Builder(GetStartStopManagedInstanceScheduleArgs defaults) {
$ = new GetStartStopManagedInstanceScheduleArgs(Objects.requireNonNull(defaults));
}
/**
* @param managedInstanceName The name of the managed instance.
*
* @return builder
*
*/
public Builder managedInstanceName(Output managedInstanceName) {
$.managedInstanceName = managedInstanceName;
return this;
}
/**
* @param managedInstanceName The name of the managed instance.
*
* @return builder
*
*/
public Builder managedInstanceName(String managedInstanceName) {
return managedInstanceName(Output.of(managedInstanceName));
}
/**
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param startStopScheduleName Name of the managed instance Start/Stop schedule.
*
* @return builder
*
*/
public Builder startStopScheduleName(Output startStopScheduleName) {
$.startStopScheduleName = startStopScheduleName;
return this;
}
/**
* @param startStopScheduleName Name of the managed instance Start/Stop schedule.
*
* @return builder
*
*/
public Builder startStopScheduleName(String startStopScheduleName) {
return startStopScheduleName(Output.of(startStopScheduleName));
}
public GetStartStopManagedInstanceScheduleArgs build() {
if ($.managedInstanceName == null) {
throw new MissingRequiredPropertyException("GetStartStopManagedInstanceScheduleArgs", "managedInstanceName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetStartStopManagedInstanceScheduleArgs", "resourceGroupName");
}
if ($.startStopScheduleName == null) {
throw new MissingRequiredPropertyException("GetStartStopManagedInstanceScheduleArgs", "startStopScheduleName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy