All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.sql.StartStopManagedInstanceSchedule Maven / Gradle / Ivy

There is a newer version: 2.78.0
Show newest version
// *** 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;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.sql.StartStopManagedInstanceScheduleArgs;
import com.pulumi.azurenative.sql.outputs.ScheduleItemResponse;
import com.pulumi.azurenative.sql.outputs.SystemDataResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Managed instance's Start/Stop schedule.
 * Azure REST API version: 2022-11-01-preview.
 * 
 * Other available API versions: 2023-02-01-preview, 2023-05-01-preview, 2023-08-01-preview, 2024-05-01-preview.
 * 
 * ## Example Usage
 * ### Creates or updates the managed instance's Start/Stop schedule with all optional parameters specified.
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.sql.StartStopManagedInstanceSchedule;
 * import com.pulumi.azurenative.sql.StartStopManagedInstanceScheduleArgs;
 * import com.pulumi.azurenative.sql.inputs.ScheduleItemArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * 
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 * 
 *     public static void stack(Context ctx) {
 *         var startStopManagedInstanceSchedule = new StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule", StartStopManagedInstanceScheduleArgs.builder()
 *             .description("This is a schedule for our Dev/Test environment.")
 *             .managedInstanceName("schedulemi")
 *             .resourceGroupName("schedulerg")
 *             .scheduleList(            
 *                 ScheduleItemArgs.builder()
 *                     .startDay("Thursday")
 *                     .startTime("18:00")
 *                     .stopDay("Thursday")
 *                     .stopTime("17:00")
 *                     .build(),
 *                 ScheduleItemArgs.builder()
 *                     .startDay("Thursday")
 *                     .startTime("15:00")
 *                     .stopDay("Thursday")
 *                     .stopTime("14:00")
 *                     .build())
 *             .startStopScheduleName("default")
 *             .timeZoneId("Central European Standard Time")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* ### Creates or updates the managed instance's Start/Stop schedule with no optional parameters specified. * *
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.sql.StartStopManagedInstanceSchedule;
 * import com.pulumi.azurenative.sql.StartStopManagedInstanceScheduleArgs;
 * import com.pulumi.azurenative.sql.inputs.ScheduleItemArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * 
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 * 
 *     public static void stack(Context ctx) {
 *         var startStopManagedInstanceSchedule = new StartStopManagedInstanceSchedule("startStopManagedInstanceSchedule", StartStopManagedInstanceScheduleArgs.builder()
 *             .managedInstanceName("schedulemi")
 *             .resourceGroupName("schedulerg")
 *             .scheduleList(            
 *                 ScheduleItemArgs.builder()
 *                     .startDay("Thursday")
 *                     .startTime("18:00")
 *                     .stopDay("Thursday")
 *                     .stopTime("17:00")
 *                     .build(),
 *                 ScheduleItemArgs.builder()
 *                     .startDay("Thursday")
 *                     .startTime("15:00")
 *                     .stopDay("Thursday")
 *                     .stopTime("14:00")
 *                     .build())
 *             .startStopScheduleName("default")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:sql:StartStopManagedInstanceSchedule default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/managedInstances/{managedInstanceName}/startStopSchedules/{startStopScheduleName} * ``` * */ @ResourceType(type="azure-native:sql:StartStopManagedInstanceSchedule") public class StartStopManagedInstanceSchedule extends com.pulumi.resources.CustomResource { /** * The description of the schedule. * */ @Export(name="description", refs={String.class}, tree="[0]") private Output description; /** * @return The description of the schedule. * */ public Output> description() { return Codegen.optional(this.description); } /** * Resource name. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return Resource name. * */ public Output name() { return this.name; } /** * Timestamp when the next action will be executed in the corresponding schedule time zone. * */ @Export(name="nextExecutionTime", refs={String.class}, tree="[0]") private Output nextExecutionTime; /** * @return Timestamp when the next action will be executed in the corresponding schedule time zone. * */ public Output nextExecutionTime() { return this.nextExecutionTime; } /** * Next action to be executed (Start or Stop) * */ @Export(name="nextRunAction", refs={String.class}, tree="[0]") private Output nextRunAction; /** * @return Next action to be executed (Start or Stop) * */ public Output nextRunAction() { return this.nextRunAction; } /** * Schedule list. * */ @Export(name="scheduleList", refs={List.class,ScheduleItemResponse.class}, tree="[0,1]") private Output> scheduleList; /** * @return Schedule list. * */ public Output> scheduleList() { return this.scheduleList; } /** * System data of the scheduled resource. * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return System data of the scheduled resource. * */ public Output systemData() { return this.systemData; } /** * The time zone of the schedule. * */ @Export(name="timeZoneId", refs={String.class}, tree="[0]") private Output timeZoneId; /** * @return The time zone of the schedule. * */ public Output> timeZoneId() { return Codegen.optional(this.timeZoneId); } /** * Resource type. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return Resource type. * */ public Output type() { return this.type; } /** * * @param name The _unique_ name of the resulting resource. */ public StartStopManagedInstanceSchedule(java.lang.String name) { this(name, StartStopManagedInstanceScheduleArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public StartStopManagedInstanceSchedule(java.lang.String name, StartStopManagedInstanceScheduleArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public StartStopManagedInstanceSchedule(java.lang.String name, StartStopManagedInstanceScheduleArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:sql:StartStopManagedInstanceSchedule", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private StartStopManagedInstanceSchedule(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:sql:StartStopManagedInstanceSchedule", name, null, makeResourceOptions(options, id), false); } private static StartStopManagedInstanceScheduleArgs makeArgs(StartStopManagedInstanceScheduleArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? StartStopManagedInstanceScheduleArgs.Empty : args; } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .aliases(List.of( Output.of(Alias.builder().type("azure-native:sql/v20220801preview:StartStopManagedInstanceSchedule").build()), Output.of(Alias.builder().type("azure-native:sql/v20221101preview:StartStopManagedInstanceSchedule").build()), Output.of(Alias.builder().type("azure-native:sql/v20230201preview:StartStopManagedInstanceSchedule").build()), Output.of(Alias.builder().type("azure-native:sql/v20230501preview:StartStopManagedInstanceSchedule").build()), Output.of(Alias.builder().type("azure-native:sql/v20230801preview:StartStopManagedInstanceSchedule").build()), Output.of(Alias.builder().type("azure-native:sql/v20240501preview:StartStopManagedInstanceSchedule").build()) )) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param options Optional settings to control the behavior of the CustomResource. */ public static StartStopManagedInstanceSchedule get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new StartStopManagedInstanceSchedule(name, id, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy