Storage Sync Service
    Storage Sync Service object. Azure REST API version: 2022-06-01. Prior API version in Azure Native 1.x: 2020-03-01. Other available API versions: 2017-06-05-preview, 2019-10-01, 2022-09-01.
Example Usage
StorageSyncServices_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
    var storageSyncService = new AzureNative.StorageSync.StorageSyncService("storageSyncService", new()
    {
        IncomingTrafficPolicy = "AllowAllTraffic",
        Location = "WestUS",
        ResourceGroupName = "SampleResourceGroup_1",
        StorageSyncServiceName = "SampleStorageSyncService_1",
        Tags = null,
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-azure-native-sdk/storagesync/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storagesync.NewStorageSyncService(ctx, "storageSyncService", &storagesync.StorageSyncServiceArgs{
			IncomingTrafficPolicy:  pulumi.String("AllowAllTraffic"),
			Location:               pulumi.String("WestUS"),
			ResourceGroupName:      pulumi.String("SampleResourceGroup_1"),
			StorageSyncServiceName: pulumi.String("SampleStorageSyncService_1"),
			Tags:                   nil,
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storagesync.StorageSyncService;
import com.pulumi.azurenative.storagesync.StorageSyncServiceArgs;
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 storageSyncService = new StorageSyncService("storageSyncService", StorageSyncServiceArgs.builder()
            .incomingTrafficPolicy("AllowAllTraffic")
            .location("WestUS")
            .resourceGroupName("SampleResourceGroup_1")
            .storageSyncServiceName("SampleStorageSyncService_1")
            .tags()
            .build());
    }
}Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:storagesync:StorageSyncService SampleStorageSyncService_1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}Content copied to clipboard