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

com.pulumi.azurenative.datashare.ScheduledSynchronizationSetting 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.datashare;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.datashare.ScheduledSynchronizationSettingArgs;
import com.pulumi.azurenative.datashare.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 javax.annotation.Nullable;

/**
 * A type of synchronization setting based on schedule
 * Azure REST API version: 2021-08-01. Prior API version in Azure Native 1.x: 2020-09-01.
 * 
 * ## Example Usage
 * ### SynchronizationSettings_Create
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.datashare.ScheduledSynchronizationSetting;
 * import com.pulumi.azurenative.datashare.ScheduledSynchronizationSettingArgs;
 * 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 scheduledSynchronizationSetting = new ScheduledSynchronizationSetting("scheduledSynchronizationSetting", ScheduledSynchronizationSettingArgs.builder()
 *             .accountName("Account1")
 *             .kind("ScheduleBased")
 *             .recurrenceInterval("Day")
 *             .resourceGroupName("SampleResourceGroup")
 *             .shareName("Share1")
 *             .synchronizationSettingName("Dataset1")
 *             .synchronizationTime("2018-11-14T04:47:52.9614956Z")
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:datashare:ScheduledSynchronizationSetting SynchronizationSetting1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/synchronizationSettings/{synchronizationSettingName} * ``` * */ @ResourceType(type="azure-native:datashare:ScheduledSynchronizationSetting") public class ScheduledSynchronizationSetting extends com.pulumi.resources.CustomResource { /** * Time at which the synchronization setting was created. * */ @Export(name="createdAt", refs={String.class}, tree="[0]") private Output createdAt; /** * @return Time at which the synchronization setting was created. * */ public Output createdAt() { return this.createdAt; } /** * Kind of synchronization setting. * Expected value is 'ScheduleBased'. * */ @Export(name="kind", refs={String.class}, tree="[0]") private Output kind; /** * @return Kind of synchronization setting. * Expected value is 'ScheduleBased'. * */ public Output kind() { return this.kind; } /** * Name of the azure resource * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return Name of the azure resource * */ public Output name() { return this.name; } /** * Gets or sets the provisioning state * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return Gets or sets the provisioning state * */ public Output provisioningState() { return this.provisioningState; } /** * Recurrence Interval * */ @Export(name="recurrenceInterval", refs={String.class}, tree="[0]") private Output recurrenceInterval; /** * @return Recurrence Interval * */ public Output recurrenceInterval() { return this.recurrenceInterval; } /** * Synchronization time * */ @Export(name="synchronizationTime", refs={String.class}, tree="[0]") private Output synchronizationTime; /** * @return Synchronization time * */ public Output synchronizationTime() { return this.synchronizationTime; } /** * System Data of the Azure resource. * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return System Data of the Azure resource. * */ public Output systemData() { return this.systemData; } /** * Type of the azure resource * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return Type of the azure resource * */ public Output type() { return this.type; } /** * Name of the user who created the synchronization setting. * */ @Export(name="userName", refs={String.class}, tree="[0]") private Output userName; /** * @return Name of the user who created the synchronization setting. * */ public Output userName() { return this.userName; } /** * * @param name The _unique_ name of the resulting resource. */ public ScheduledSynchronizationSetting(java.lang.String name) { this(name, ScheduledSynchronizationSettingArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public ScheduledSynchronizationSetting(java.lang.String name, ScheduledSynchronizationSettingArgs 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 ScheduledSynchronizationSetting(java.lang.String name, ScheduledSynchronizationSettingArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:datashare:ScheduledSynchronizationSetting", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private ScheduledSynchronizationSetting(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:datashare:ScheduledSynchronizationSetting", name, null, makeResourceOptions(options, id), false); } private static ScheduledSynchronizationSettingArgs makeArgs(ScheduledSynchronizationSettingArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } var builder = args == null ? ScheduledSynchronizationSettingArgs.builder() : ScheduledSynchronizationSettingArgs.builder(args); return builder .kind("ScheduleBased") .build(); } 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:datashare/v20181101preview:ScheduledSynchronizationSetting").build()), Output.of(Alias.builder().type("azure-native:datashare/v20191101:ScheduledSynchronizationSetting").build()), Output.of(Alias.builder().type("azure-native:datashare/v20200901:ScheduledSynchronizationSetting").build()), Output.of(Alias.builder().type("azure-native:datashare/v20201001preview:ScheduledSynchronizationSetting").build()), Output.of(Alias.builder().type("azure-native:datashare/v20210801:ScheduledSynchronizationSetting").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 ScheduledSynchronizationSetting get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new ScheduledSynchronizationSetting(name, id, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy