azure-native.storagesync.ServerEndpoint
Explore with Pulumi AI
Server Endpoint object. Azure REST API version: 2022-06-01. Prior API version in Azure Native 1.x: 2020-03-01.
Other available API versions: 2022-09-01.
Example Usage
ServerEndpoints_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var serverEndpoint = new AzureNative.StorageSync.ServerEndpoint("serverEndpoint", new()
    {
        CloudTiering = AzureNative.StorageSync.FeatureStatus.Off,
        InitialDownloadPolicy = AzureNative.StorageSync.InitialDownloadPolicy.NamespaceThenModifiedFiles,
        InitialUploadPolicy = AzureNative.StorageSync.InitialUploadPolicy.ServerAuthoritative,
        LocalCacheMode = AzureNative.StorageSync.LocalCacheMode.UpdateLocallyCachedFiles,
        OfflineDataTransfer = AzureNative.StorageSync.FeatureStatus.@On,
        OfflineDataTransferShareName = "myfileshare",
        ResourceGroupName = "SampleResourceGroup_1",
        ServerEndpointName = "SampleServerEndpoint_1",
        ServerLocalPath = "D:\\SampleServerEndpoint_1",
        ServerResourceId = "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a",
        StorageSyncServiceName = "SampleStorageSyncService_1",
        SyncGroupName = "SampleSyncGroup_1",
        TierFilesOlderThanDays = 0,
        VolumeFreeSpacePercent = 100,
    });
});
package main
import (
	storagesync "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.NewServerEndpoint(ctx, "serverEndpoint", &storagesync.ServerEndpointArgs{
			CloudTiering:                 pulumi.String(storagesync.FeatureStatusOff),
			InitialDownloadPolicy:        pulumi.String(storagesync.InitialDownloadPolicyNamespaceThenModifiedFiles),
			InitialUploadPolicy:          pulumi.String(storagesync.InitialUploadPolicyServerAuthoritative),
			LocalCacheMode:               pulumi.String(storagesync.LocalCacheModeUpdateLocallyCachedFiles),
			OfflineDataTransfer:          pulumi.String(storagesync.FeatureStatusOn),
			OfflineDataTransferShareName: pulumi.String("myfileshare"),
			ResourceGroupName:            pulumi.String("SampleResourceGroup_1"),
			ServerEndpointName:           pulumi.String("SampleServerEndpoint_1"),
			ServerLocalPath:              pulumi.String("D:\\SampleServerEndpoint_1"),
			ServerResourceId:             pulumi.String("/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a"),
			StorageSyncServiceName:       pulumi.String("SampleStorageSyncService_1"),
			SyncGroupName:                pulumi.String("SampleSyncGroup_1"),
			TierFilesOlderThanDays:       pulumi.Int(0),
			VolumeFreeSpacePercent:       pulumi.Int(100),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storagesync.ServerEndpoint;
import com.pulumi.azurenative.storagesync.ServerEndpointArgs;
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 serverEndpoint = new ServerEndpoint("serverEndpoint", ServerEndpointArgs.builder()
            .cloudTiering("off")
            .initialDownloadPolicy("NamespaceThenModifiedFiles")
            .initialUploadPolicy("ServerAuthoritative")
            .localCacheMode("UpdateLocallyCachedFiles")
            .offlineDataTransfer("on")
            .offlineDataTransferShareName("myfileshare")
            .resourceGroupName("SampleResourceGroup_1")
            .serverEndpointName("SampleServerEndpoint_1")
            .serverLocalPath("D:\\SampleServerEndpoint_1")
            .serverResourceId("/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a")
            .storageSyncServiceName("SampleStorageSyncService_1")
            .syncGroupName("SampleSyncGroup_1")
            .tierFilesOlderThanDays(0)
            .volumeFreeSpacePercent(100)
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const serverEndpoint = new azure_native.storagesync.ServerEndpoint("serverEndpoint", {
    cloudTiering: azure_native.storagesync.FeatureStatus.Off,
    initialDownloadPolicy: azure_native.storagesync.InitialDownloadPolicy.NamespaceThenModifiedFiles,
    initialUploadPolicy: azure_native.storagesync.InitialUploadPolicy.ServerAuthoritative,
    localCacheMode: azure_native.storagesync.LocalCacheMode.UpdateLocallyCachedFiles,
    offlineDataTransfer: azure_native.storagesync.FeatureStatus.On,
    offlineDataTransferShareName: "myfileshare",
    resourceGroupName: "SampleResourceGroup_1",
    serverEndpointName: "SampleServerEndpoint_1",
    serverLocalPath: "D:\\SampleServerEndpoint_1",
    serverResourceId: "/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a",
    storageSyncServiceName: "SampleStorageSyncService_1",
    syncGroupName: "SampleSyncGroup_1",
    tierFilesOlderThanDays: 0,
    volumeFreeSpacePercent: 100,
});
import pulumi
import pulumi_azure_native as azure_native
server_endpoint = azure_native.storagesync.ServerEndpoint("serverEndpoint",
    cloud_tiering=azure_native.storagesync.FeatureStatus.OFF,
    initial_download_policy=azure_native.storagesync.InitialDownloadPolicy.NAMESPACE_THEN_MODIFIED_FILES,
    initial_upload_policy=azure_native.storagesync.InitialUploadPolicy.SERVER_AUTHORITATIVE,
    local_cache_mode=azure_native.storagesync.LocalCacheMode.UPDATE_LOCALLY_CACHED_FILES,
    offline_data_transfer=azure_native.storagesync.FeatureStatus.ON,
    offline_data_transfer_share_name="myfileshare",
    resource_group_name="SampleResourceGroup_1",
    server_endpoint_name="SampleServerEndpoint_1",
    server_local_path="D:\\SampleServerEndpoint_1",
    server_resource_id="/subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a",
    storage_sync_service_name="SampleStorageSyncService_1",
    sync_group_name="SampleSyncGroup_1",
    tier_files_older_than_days=0,
    volume_free_space_percent=100)
resources:
  serverEndpoint:
    type: azure-native:storagesync:ServerEndpoint
    properties:
      cloudTiering: off
      initialDownloadPolicy: NamespaceThenModifiedFiles
      initialUploadPolicy: ServerAuthoritative
      localCacheMode: UpdateLocallyCachedFiles
      offlineDataTransfer: on
      offlineDataTransferShareName: myfileshare
      resourceGroupName: SampleResourceGroup_1
      serverEndpointName: SampleServerEndpoint_1
      serverLocalPath: D:\SampleServerEndpoint_1
      serverResourceId: /subscriptions/52b8da2f-61e0-4a1f-8dde-336911f367fb/resourceGroups/SampleResourceGroup_1/providers/Microsoft.StorageSync/storageSyncServices/SampleStorageSyncService_1/registeredServers/080d4133-bdb5-40a0-96a0-71a6057bfe9a
      storageSyncServiceName: SampleStorageSyncService_1
      syncGroupName: SampleSyncGroup_1
      tierFilesOlderThanDays: 0
      volumeFreeSpacePercent: 100
Create ServerEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerEndpoint(name: string, args: ServerEndpointArgs, opts?: CustomResourceOptions);@overload
def ServerEndpoint(resource_name: str,
                   args: ServerEndpointArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def ServerEndpoint(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_group_name: Optional[str] = None,
                   sync_group_name: Optional[str] = None,
                   storage_sync_service_name: Optional[str] = None,
                   offline_data_transfer_share_name: Optional[str] = None,
                   local_cache_mode: Optional[Union[str, LocalCacheMode]] = None,
                   offline_data_transfer: Optional[Union[str, FeatureStatus]] = None,
                   cloud_tiering: Optional[Union[str, FeatureStatus]] = None,
                   initial_upload_policy: Optional[Union[str, InitialUploadPolicy]] = None,
                   server_endpoint_name: Optional[str] = None,
                   server_local_path: Optional[str] = None,
                   server_resource_id: Optional[str] = None,
                   initial_download_policy: Optional[Union[str, InitialDownloadPolicy]] = None,
                   friendly_name: Optional[str] = None,
                   tier_files_older_than_days: Optional[int] = None,
                   volume_free_space_percent: Optional[int] = None)func NewServerEndpoint(ctx *Context, name string, args ServerEndpointArgs, opts ...ResourceOption) (*ServerEndpoint, error)public ServerEndpoint(string name, ServerEndpointArgs args, CustomResourceOptions? opts = null)
public ServerEndpoint(String name, ServerEndpointArgs args)
public ServerEndpoint(String name, ServerEndpointArgs args, CustomResourceOptions options)
type: azure-native:storagesync:ServerEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServerEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServerEndpointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServerEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerEndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var serverEndpointResource = new AzureNative.StorageSync.ServerEndpoint("serverEndpointResource", new()
{
    ResourceGroupName = "string",
    SyncGroupName = "string",
    StorageSyncServiceName = "string",
    OfflineDataTransferShareName = "string",
    LocalCacheMode = "string",
    OfflineDataTransfer = "string",
    CloudTiering = "string",
    InitialUploadPolicy = "string",
    ServerEndpointName = "string",
    ServerLocalPath = "string",
    ServerResourceId = "string",
    InitialDownloadPolicy = "string",
    FriendlyName = "string",
    TierFilesOlderThanDays = 0,
    VolumeFreeSpacePercent = 0,
});
example, err := storagesync.NewServerEndpoint(ctx, "serverEndpointResource", &storagesync.ServerEndpointArgs{
	ResourceGroupName:            pulumi.String("string"),
	SyncGroupName:                pulumi.String("string"),
	StorageSyncServiceName:       pulumi.String("string"),
	OfflineDataTransferShareName: pulumi.String("string"),
	LocalCacheMode:               pulumi.String("string"),
	OfflineDataTransfer:          pulumi.String("string"),
	CloudTiering:                 pulumi.String("string"),
	InitialUploadPolicy:          pulumi.String("string"),
	ServerEndpointName:           pulumi.String("string"),
	ServerLocalPath:              pulumi.String("string"),
	ServerResourceId:             pulumi.String("string"),
	InitialDownloadPolicy:        pulumi.String("string"),
	FriendlyName:                 pulumi.String("string"),
	TierFilesOlderThanDays:       pulumi.Int(0),
	VolumeFreeSpacePercent:       pulumi.Int(0),
})
var serverEndpointResource = new ServerEndpoint("serverEndpointResource", ServerEndpointArgs.builder()
    .resourceGroupName("string")
    .syncGroupName("string")
    .storageSyncServiceName("string")
    .offlineDataTransferShareName("string")
    .localCacheMode("string")
    .offlineDataTransfer("string")
    .cloudTiering("string")
    .initialUploadPolicy("string")
    .serverEndpointName("string")
    .serverLocalPath("string")
    .serverResourceId("string")
    .initialDownloadPolicy("string")
    .friendlyName("string")
    .tierFilesOlderThanDays(0)
    .volumeFreeSpacePercent(0)
    .build());
server_endpoint_resource = azure_native.storagesync.ServerEndpoint("serverEndpointResource",
    resource_group_name="string",
    sync_group_name="string",
    storage_sync_service_name="string",
    offline_data_transfer_share_name="string",
    local_cache_mode="string",
    offline_data_transfer="string",
    cloud_tiering="string",
    initial_upload_policy="string",
    server_endpoint_name="string",
    server_local_path="string",
    server_resource_id="string",
    initial_download_policy="string",
    friendly_name="string",
    tier_files_older_than_days=0,
    volume_free_space_percent=0)
const serverEndpointResource = new azure_native.storagesync.ServerEndpoint("serverEndpointResource", {
    resourceGroupName: "string",
    syncGroupName: "string",
    storageSyncServiceName: "string",
    offlineDataTransferShareName: "string",
    localCacheMode: "string",
    offlineDataTransfer: "string",
    cloudTiering: "string",
    initialUploadPolicy: "string",
    serverEndpointName: "string",
    serverLocalPath: "string",
    serverResourceId: "string",
    initialDownloadPolicy: "string",
    friendlyName: "string",
    tierFilesOlderThanDays: 0,
    volumeFreeSpacePercent: 0,
});
type: azure-native:storagesync:ServerEndpoint
properties:
    cloudTiering: string
    friendlyName: string
    initialDownloadPolicy: string
    initialUploadPolicy: string
    localCacheMode: string
    offlineDataTransfer: string
    offlineDataTransferShareName: string
    resourceGroupName: string
    serverEndpointName: string
    serverLocalPath: string
    serverResourceId: string
    storageSyncServiceName: string
    syncGroupName: string
    tierFilesOlderThanDays: 0
    volumeFreeSpacePercent: 0
ServerEndpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ServerEndpoint resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- StorageSync stringService Name 
- Name of Storage Sync Service resource.
- SyncGroup stringName 
- Name of Sync Group resource.
- CloudTiering string | Pulumi.Azure Native. Storage Sync. Feature Status 
- Cloud Tiering.
- FriendlyName string
- Friendly Name
- InitialDownload string | Pulumi.Policy Azure Native. Storage Sync. Initial Download Policy 
- Policy for how namespace and files are recalled during FastDr.
- InitialUpload string | Pulumi.Policy Azure Native. Storage Sync. Initial Upload Policy 
- Policy for how the initial upload sync session is performed.
- LocalCache string | Pulumi.Mode Azure Native. Storage Sync. Local Cache Mode 
- Policy for enabling follow-the-sun business models: link local cache to cloud behavior to pre-populate before local access.
- OfflineData string | Pulumi.Transfer Azure Native. Storage Sync. Feature Status 
- Offline data transfer
- string
- Offline data transfer share name
- ServerEndpoint stringName 
- Name of Server Endpoint object.
- ServerLocal stringPath 
- Server Local path.
- ServerResource stringId 
- Server Resource Id.
- TierFiles intOlder Than Days 
- Tier files older than days.
- VolumeFree intSpace Percent 
- Level of free space to be maintained by Cloud Tiering if it is enabled.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- StorageSync stringService Name 
- Name of Storage Sync Service resource.
- SyncGroup stringName 
- Name of Sync Group resource.
- CloudTiering string | FeatureStatus 
- Cloud Tiering.
- FriendlyName string
- Friendly Name
- InitialDownload string | InitialPolicy Download Policy 
- Policy for how namespace and files are recalled during FastDr.
- InitialUpload string | InitialPolicy Upload Policy 
- Policy for how the initial upload sync session is performed.
- LocalCache string | LocalMode Cache Mode 
- Policy for enabling follow-the-sun business models: link local cache to cloud behavior to pre-populate before local access.
- OfflineData string | FeatureTransfer Status 
- Offline data transfer
- string
- Offline data transfer share name
- ServerEndpoint stringName 
- Name of Server Endpoint object.
- ServerLocal stringPath 
- Server Local path.
- ServerResource stringId 
- Server Resource Id.
- TierFiles intOlder Than Days 
- Tier files older than days.
- VolumeFree intSpace Percent 
- Level of free space to be maintained by Cloud Tiering if it is enabled.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- storageSync StringService Name 
- Name of Storage Sync Service resource.
- syncGroup StringName 
- Name of Sync Group resource.
- cloudTiering String | FeatureStatus 
- Cloud Tiering.
- friendlyName String
- Friendly Name
- initialDownload String | InitialPolicy Download Policy 
- Policy for how namespace and files are recalled during FastDr.
- initialUpload String | InitialPolicy Upload Policy 
- Policy for how the initial upload sync session is performed.
- localCache String | LocalMode Cache Mode 
- Policy for enabling follow-the-sun business models: link local cache to cloud behavior to pre-populate before local access.
- offlineData String | FeatureTransfer Status 
- Offline data transfer
- String
- Offline data transfer share name
- serverEndpoint StringName 
- Name of Server Endpoint object.
- serverLocal StringPath 
- Server Local path.
- serverResource StringId 
- Server Resource Id.
- tierFiles IntegerOlder Than Days 
- Tier files older than days.
- volumeFree IntegerSpace Percent 
- Level of free space to be maintained by Cloud Tiering if it is enabled.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- storageSync stringService Name 
- Name of Storage Sync Service resource.
- syncGroup stringName 
- Name of Sync Group resource.
- cloudTiering string | FeatureStatus 
- Cloud Tiering.
- friendlyName string
- Friendly Name
- initialDownload string | InitialPolicy Download Policy 
- Policy for how namespace and files are recalled during FastDr.
- initialUpload string | InitialPolicy Upload Policy 
- Policy for how the initial upload sync session is performed.
- localCache string | LocalMode Cache Mode 
- Policy for enabling follow-the-sun business models: link local cache to cloud behavior to pre-populate before local access.
- offlineData string | FeatureTransfer Status 
- Offline data transfer
- string
- Offline data transfer share name
- serverEndpoint stringName 
- Name of Server Endpoint object.
- serverLocal stringPath 
- Server Local path.
- serverResource stringId 
- Server Resource Id.
- tierFiles numberOlder Than Days 
- Tier files older than days.
- volumeFree numberSpace Percent 
- Level of free space to be maintained by Cloud Tiering if it is enabled.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- storage_sync_ strservice_ name 
- Name of Storage Sync Service resource.
- sync_group_ strname 
- Name of Sync Group resource.
- cloud_tiering str | FeatureStatus 
- Cloud Tiering.
- friendly_name str
- Friendly Name
- initial_download_ str | Initialpolicy Download Policy 
- Policy for how namespace and files are recalled during FastDr.
- initial_upload_ str | Initialpolicy Upload Policy 
- Policy for how the initial upload sync session is performed.
- local_cache_ str | Localmode Cache Mode 
- Policy for enabling follow-the-sun business models: link local cache to cloud behavior to pre-populate before local access.
- offline_data_ str | Featuretransfer Status 
- Offline data transfer
- str
- Offline data transfer share name
- server_endpoint_ strname 
- Name of Server Endpoint object.
- server_local_ strpath 
- Server Local path.
- server_resource_ strid 
- Server Resource Id.
- tier_files_ intolder_ than_ days 
- Tier files older than days.
- volume_free_ intspace_ percent 
- Level of free space to be maintained by Cloud Tiering if it is enabled.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- storageSync StringService Name 
- Name of Storage Sync Service resource.
- syncGroup StringName 
- Name of Sync Group resource.
- cloudTiering String | "on" | "off"
- Cloud Tiering.
- friendlyName String
- Friendly Name
- initialDownload String | "NamespacePolicy Only" | "Namespace Then Modified Files" | "Avoid Tiered Files" 
- Policy for how namespace and files are recalled during FastDr.
- initialUpload String | "ServerPolicy Authoritative" | "Merge" 
- Policy for how the initial upload sync session is performed.
- localCache String | "DownloadMode New And Modified Files" | "Update Locally Cached Files" 
- Policy for enabling follow-the-sun business models: link local cache to cloud behavior to pre-populate before local access.
- offlineData String | "on" | "off"Transfer 
- Offline data transfer
- String
- Offline data transfer share name
- serverEndpoint StringName 
- Name of Server Endpoint object.
- serverLocal StringPath 
- Server Local path.
- serverResource StringId 
- Server Resource Id.
- tierFiles NumberOlder Than Days 
- Tier files older than days.
- volumeFree NumberSpace Percent 
- Level of free space to be maintained by Cloud Tiering if it is enabled.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServerEndpoint resource produces the following output properties:
- CloudTiering Pulumi.Status Azure Native. Storage Sync. Outputs. Server Endpoint Cloud Tiering Status Response 
- Cloud tiering status. Only populated if cloud tiering is enabled.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastOperation stringName 
- Resource Last Operation Name
- LastWorkflow stringId 
- ServerEndpoint lastWorkflowId
- Name string
- The name of the resource
- OfflineData stringTransfer Storage Account Resource Id 
- Offline data transfer storage account resource ID
- OfflineData stringTransfer Storage Account Tenant Id 
- Offline data transfer storage account tenant ID
- ProvisioningState string
- ServerEndpoint Provisioning State
- RecallStatus Pulumi.Azure Native. Storage Sync. Outputs. Server Endpoint Recall Status Response 
- Recall status. Only populated if cloud tiering is enabled.
- ServerName string
- Server name
- SyncStatus Pulumi.Azure Native. Storage Sync. Outputs. Server Endpoint Sync Status Response 
- Server Endpoint sync status
- SystemData Pulumi.Azure Native. Storage Sync. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- CloudTiering ServerStatus Endpoint Cloud Tiering Status Response 
- Cloud tiering status. Only populated if cloud tiering is enabled.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastOperation stringName 
- Resource Last Operation Name
- LastWorkflow stringId 
- ServerEndpoint lastWorkflowId
- Name string
- The name of the resource
- OfflineData stringTransfer Storage Account Resource Id 
- Offline data transfer storage account resource ID
- OfflineData stringTransfer Storage Account Tenant Id 
- Offline data transfer storage account tenant ID
- ProvisioningState string
- ServerEndpoint Provisioning State
- RecallStatus ServerEndpoint Recall Status Response 
- Recall status. Only populated if cloud tiering is enabled.
- ServerName string
- Server name
- SyncStatus ServerEndpoint Sync Status Response 
- Server Endpoint sync status
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- cloudTiering ServerStatus Endpoint Cloud Tiering Status Response 
- Cloud tiering status. Only populated if cloud tiering is enabled.
- id String
- The provider-assigned unique ID for this managed resource.
- lastOperation StringName 
- Resource Last Operation Name
- lastWorkflow StringId 
- ServerEndpoint lastWorkflowId
- name String
- The name of the resource
- offlineData StringTransfer Storage Account Resource Id 
- Offline data transfer storage account resource ID
- offlineData StringTransfer Storage Account Tenant Id 
- Offline data transfer storage account tenant ID
- provisioningState String
- ServerEndpoint Provisioning State
- recallStatus ServerEndpoint Recall Status Response 
- Recall status. Only populated if cloud tiering is enabled.
- serverName String
- Server name
- syncStatus ServerEndpoint Sync Status Response 
- Server Endpoint sync status
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- cloudTiering ServerStatus Endpoint Cloud Tiering Status Response 
- Cloud tiering status. Only populated if cloud tiering is enabled.
- id string
- The provider-assigned unique ID for this managed resource.
- lastOperation stringName 
- Resource Last Operation Name
- lastWorkflow stringId 
- ServerEndpoint lastWorkflowId
- name string
- The name of the resource
- offlineData stringTransfer Storage Account Resource Id 
- Offline data transfer storage account resource ID
- offlineData stringTransfer Storage Account Tenant Id 
- Offline data transfer storage account tenant ID
- provisioningState string
- ServerEndpoint Provisioning State
- recallStatus ServerEndpoint Recall Status Response 
- Recall status. Only populated if cloud tiering is enabled.
- serverName string
- Server name
- syncStatus ServerEndpoint Sync Status Response 
- Server Endpoint sync status
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- cloud_tiering_ Serverstatus Endpoint Cloud Tiering Status Response 
- Cloud tiering status. Only populated if cloud tiering is enabled.
- id str
- The provider-assigned unique ID for this managed resource.
- last_operation_ strname 
- Resource Last Operation Name
- last_workflow_ strid 
- ServerEndpoint lastWorkflowId
- name str
- The name of the resource
- offline_data_ strtransfer_ storage_ account_ resource_ id 
- Offline data transfer storage account resource ID
- offline_data_ strtransfer_ storage_ account_ tenant_ id 
- Offline data transfer storage account tenant ID
- provisioning_state str
- ServerEndpoint Provisioning State
- recall_status ServerEndpoint Recall Status Response 
- Recall status. Only populated if cloud tiering is enabled.
- server_name str
- Server name
- sync_status ServerEndpoint Sync Status Response 
- Server Endpoint sync status
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- cloudTiering Property MapStatus 
- Cloud tiering status. Only populated if cloud tiering is enabled.
- id String
- The provider-assigned unique ID for this managed resource.
- lastOperation StringName 
- Resource Last Operation Name
- lastWorkflow StringId 
- ServerEndpoint lastWorkflowId
- name String
- The name of the resource
- offlineData StringTransfer Storage Account Resource Id 
- Offline data transfer storage account resource ID
- offlineData StringTransfer Storage Account Tenant Id 
- Offline data transfer storage account tenant ID
- provisioningState String
- ServerEndpoint Provisioning State
- recallStatus Property Map
- Recall status. Only populated if cloud tiering is enabled.
- serverName String
- Server name
- syncStatus Property Map
- Server Endpoint sync status
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
CloudTieringCachePerformanceResponse, CloudTieringCachePerformanceResponseArgs          
- CacheHit doubleBytes 
- Count of bytes that were served from the local server
- CacheHit intBytes Percent 
- Percentage of total bytes (hit + miss) that were served from the local server
- CacheMiss doubleBytes 
- Count of bytes that were served from the cloud
- LastUpdated stringTimestamp 
- Last updated timestamp
- CacheHit float64Bytes 
- Count of bytes that were served from the local server
- CacheHit intBytes Percent 
- Percentage of total bytes (hit + miss) that were served from the local server
- CacheMiss float64Bytes 
- Count of bytes that were served from the cloud
- LastUpdated stringTimestamp 
- Last updated timestamp
- cacheHit DoubleBytes 
- Count of bytes that were served from the local server
- cacheHit IntegerBytes Percent 
- Percentage of total bytes (hit + miss) that were served from the local server
- cacheMiss DoubleBytes 
- Count of bytes that were served from the cloud
- lastUpdated StringTimestamp 
- Last updated timestamp
- cacheHit numberBytes 
- Count of bytes that were served from the local server
- cacheHit numberBytes Percent 
- Percentage of total bytes (hit + miss) that were served from the local server
- cacheMiss numberBytes 
- Count of bytes that were served from the cloud
- lastUpdated stringTimestamp 
- Last updated timestamp
- cache_hit_ floatbytes 
- Count of bytes that were served from the local server
- cache_hit_ intbytes_ percent 
- Percentage of total bytes (hit + miss) that were served from the local server
- cache_miss_ floatbytes 
- Count of bytes that were served from the cloud
- last_updated_ strtimestamp 
- Last updated timestamp
- cacheHit NumberBytes 
- Count of bytes that were served from the local server
- cacheHit NumberBytes Percent 
- Percentage of total bytes (hit + miss) that were served from the local server
- cacheMiss NumberBytes 
- Count of bytes that were served from the cloud
- lastUpdated StringTimestamp 
- Last updated timestamp
CloudTieringDatePolicyStatusResponse, CloudTieringDatePolicyStatusResponseArgs            
- LastUpdated stringTimestamp 
- Last updated timestamp
- TieredFiles stringMost Recent Access Timestamp 
- Most recent access time of tiered files
- LastUpdated stringTimestamp 
- Last updated timestamp
- TieredFiles stringMost Recent Access Timestamp 
- Most recent access time of tiered files
- lastUpdated StringTimestamp 
- Last updated timestamp
- tieredFiles StringMost Recent Access Timestamp 
- Most recent access time of tiered files
- lastUpdated stringTimestamp 
- Last updated timestamp
- tieredFiles stringMost Recent Access Timestamp 
- Most recent access time of tiered files
- last_updated_ strtimestamp 
- Last updated timestamp
- tiered_files_ strmost_ recent_ access_ timestamp 
- Most recent access time of tiered files
- lastUpdated StringTimestamp 
- Last updated timestamp
- tieredFiles StringMost Recent Access Timestamp 
- Most recent access time of tiered files
CloudTieringFilesNotTieringResponse, CloudTieringFilesNotTieringResponseArgs            
- Errors
List<Pulumi.Azure Native. Storage Sync. Inputs. Files Not Tiering Error Response> 
- Array of tiering errors
- LastUpdated stringTimestamp 
- Last updated timestamp
- TotalFile doubleCount 
- Last cloud tiering result (HResult)
- Errors
[]FilesNot Tiering Error Response 
- Array of tiering errors
- LastUpdated stringTimestamp 
- Last updated timestamp
- TotalFile float64Count 
- Last cloud tiering result (HResult)
- errors
List<FilesNot Tiering Error Response> 
- Array of tiering errors
- lastUpdated StringTimestamp 
- Last updated timestamp
- totalFile DoubleCount 
- Last cloud tiering result (HResult)
- errors
FilesNot Tiering Error Response[] 
- Array of tiering errors
- lastUpdated stringTimestamp 
- Last updated timestamp
- totalFile numberCount 
- Last cloud tiering result (HResult)
- errors
Sequence[FilesNot Tiering Error Response] 
- Array of tiering errors
- last_updated_ strtimestamp 
- Last updated timestamp
- total_file_ floatcount 
- Last cloud tiering result (HResult)
- errors List<Property Map>
- Array of tiering errors
- lastUpdated StringTimestamp 
- Last updated timestamp
- totalFile NumberCount 
- Last cloud tiering result (HResult)
CloudTieringLowDiskModeResponse, CloudTieringLowDiskModeResponseArgs            
- LastUpdated stringTimestamp 
- Last updated timestamp
- State string
- Low disk mode state
- LastUpdated stringTimestamp 
- Last updated timestamp
- State string
- Low disk mode state
- lastUpdated StringTimestamp 
- Last updated timestamp
- state String
- Low disk mode state
- lastUpdated stringTimestamp 
- Last updated timestamp
- state string
- Low disk mode state
- last_updated_ strtimestamp 
- Last updated timestamp
- state str
- Low disk mode state
- lastUpdated StringTimestamp 
- Last updated timestamp
- state String
- Low disk mode state
CloudTieringSpaceSavingsResponse, CloudTieringSpaceSavingsResponseArgs          
- CachedSize doubleBytes 
- Cached content size on the server
- LastUpdated stringTimestamp 
- Last updated timestamp
- SpaceSavings doubleBytes 
- Count of bytes saved on the server
- SpaceSavings intPercent 
- Percentage of cached size over total size
- TotalSize doubleCloud Bytes 
- Total size of content in the azure file share
- VolumeSize doubleBytes 
- Volume size
- CachedSize float64Bytes 
- Cached content size on the server
- LastUpdated stringTimestamp 
- Last updated timestamp
- SpaceSavings float64Bytes 
- Count of bytes saved on the server
- SpaceSavings intPercent 
- Percentage of cached size over total size
- TotalSize float64Cloud Bytes 
- Total size of content in the azure file share
- VolumeSize float64Bytes 
- Volume size
- cachedSize DoubleBytes 
- Cached content size on the server
- lastUpdated StringTimestamp 
- Last updated timestamp
- spaceSavings DoubleBytes 
- Count of bytes saved on the server
- spaceSavings IntegerPercent 
- Percentage of cached size over total size
- totalSize DoubleCloud Bytes 
- Total size of content in the azure file share
- volumeSize DoubleBytes 
- Volume size
- cachedSize numberBytes 
- Cached content size on the server
- lastUpdated stringTimestamp 
- Last updated timestamp
- spaceSavings numberBytes 
- Count of bytes saved on the server
- spaceSavings numberPercent 
- Percentage of cached size over total size
- totalSize numberCloud Bytes 
- Total size of content in the azure file share
- volumeSize numberBytes 
- Volume size
- cached_size_ floatbytes 
- Cached content size on the server
- last_updated_ strtimestamp 
- Last updated timestamp
- space_savings_ floatbytes 
- Count of bytes saved on the server
- space_savings_ intpercent 
- Percentage of cached size over total size
- total_size_ floatcloud_ bytes 
- Total size of content in the azure file share
- volume_size_ floatbytes 
- Volume size
- cachedSize NumberBytes 
- Cached content size on the server
- lastUpdated StringTimestamp 
- Last updated timestamp
- spaceSavings NumberBytes 
- Count of bytes saved on the server
- spaceSavings NumberPercent 
- Percentage of cached size over total size
- totalSize NumberCloud Bytes 
- Total size of content in the azure file share
- volumeSize NumberBytes 
- Volume size
CloudTieringVolumeFreeSpacePolicyStatusResponse, CloudTieringVolumeFreeSpacePolicyStatusResponseArgs                
- CurrentVolume intFree Space Percent 
- Current volume free space percentage.
- EffectiveVolume intFree Space Policy 
- In the case where multiple server endpoints are present in a volume, an effective free space policy is applied.
- LastUpdated stringTimestamp 
- Last updated timestamp
- CurrentVolume intFree Space Percent 
- Current volume free space percentage.
- EffectiveVolume intFree Space Policy 
- In the case where multiple server endpoints are present in a volume, an effective free space policy is applied.
- LastUpdated stringTimestamp 
- Last updated timestamp
- currentVolume IntegerFree Space Percent 
- Current volume free space percentage.
- effectiveVolume IntegerFree Space Policy 
- In the case where multiple server endpoints are present in a volume, an effective free space policy is applied.
- lastUpdated StringTimestamp 
- Last updated timestamp
- currentVolume numberFree Space Percent 
- Current volume free space percentage.
- effectiveVolume numberFree Space Policy 
- In the case where multiple server endpoints are present in a volume, an effective free space policy is applied.
- lastUpdated stringTimestamp 
- Last updated timestamp
- current_volume_ intfree_ space_ percent 
- Current volume free space percentage.
- effective_volume_ intfree_ space_ policy 
- In the case where multiple server endpoints are present in a volume, an effective free space policy is applied.
- last_updated_ strtimestamp 
- Last updated timestamp
- currentVolume NumberFree Space Percent 
- Current volume free space percentage.
- effectiveVolume NumberFree Space Policy 
- In the case where multiple server endpoints are present in a volume, an effective free space policy is applied.
- lastUpdated StringTimestamp 
- Last updated timestamp
FeatureStatus, FeatureStatusArgs    
- @On
- on
- Off
- off
- FeatureStatus On 
- on
- FeatureStatus Off 
- off
- On
- on
- Off
- off
- On
- on
- Off
- off
- ON
- on
- OFF
- off
- "on"
- on
- "off"
- off
FilesNotTieringErrorResponse, FilesNotTieringErrorResponseArgs          
- error_code int
- Error code (HResult)
- file_count float
- Count of files with this error
InitialDownloadPolicy, InitialDownloadPolicyArgs      
- NamespaceOnly 
- NamespaceOnly
- NamespaceThen Modified Files 
- NamespaceThenModifiedFiles
- AvoidTiered Files 
- AvoidTieredFiles
- InitialDownload Policy Namespace Only 
- NamespaceOnly
- InitialDownload Policy Namespace Then Modified Files 
- NamespaceThenModifiedFiles
- InitialDownload Policy Avoid Tiered Files 
- AvoidTieredFiles
- NamespaceOnly 
- NamespaceOnly
- NamespaceThen Modified Files 
- NamespaceThenModifiedFiles
- AvoidTiered Files 
- AvoidTieredFiles
- NamespaceOnly 
- NamespaceOnly
- NamespaceThen Modified Files 
- NamespaceThenModifiedFiles
- AvoidTiered Files 
- AvoidTieredFiles
- NAMESPACE_ONLY
- NamespaceOnly
- NAMESPACE_THEN_MODIFIED_FILES
- NamespaceThenModifiedFiles
- AVOID_TIERED_FILES
- AvoidTieredFiles
- "NamespaceOnly" 
- NamespaceOnly
- "NamespaceThen Modified Files" 
- NamespaceThenModifiedFiles
- "AvoidTiered Files" 
- AvoidTieredFiles
InitialUploadPolicy, InitialUploadPolicyArgs      
- ServerAuthoritative 
- ServerAuthoritative
- Merge
- Merge
- InitialUpload Policy Server Authoritative 
- ServerAuthoritative
- InitialUpload Policy Merge 
- Merge
- ServerAuthoritative 
- ServerAuthoritative
- Merge
- Merge
- ServerAuthoritative 
- ServerAuthoritative
- Merge
- Merge
- SERVER_AUTHORITATIVE
- ServerAuthoritative
- MERGE
- Merge
- "ServerAuthoritative" 
- ServerAuthoritative
- "Merge"
- Merge
LocalCacheMode, LocalCacheModeArgs      
- DownloadNew And Modified Files 
- DownloadNewAndModifiedFiles
- UpdateLocally Cached Files 
- UpdateLocallyCachedFiles
- LocalCache Mode Download New And Modified Files 
- DownloadNewAndModifiedFiles
- LocalCache Mode Update Locally Cached Files 
- UpdateLocallyCachedFiles
- DownloadNew And Modified Files 
- DownloadNewAndModifiedFiles
- UpdateLocally Cached Files 
- UpdateLocallyCachedFiles
- DownloadNew And Modified Files 
- DownloadNewAndModifiedFiles
- UpdateLocally Cached Files 
- UpdateLocallyCachedFiles
- DOWNLOAD_NEW_AND_MODIFIED_FILES
- DownloadNewAndModifiedFiles
- UPDATE_LOCALLY_CACHED_FILES
- UpdateLocallyCachedFiles
- "DownloadNew And Modified Files" 
- DownloadNewAndModifiedFiles
- "UpdateLocally Cached Files" 
- UpdateLocallyCachedFiles
ServerEndpointBackgroundDataDownloadActivityResponse, ServerEndpointBackgroundDataDownloadActivityResponseArgs              
- DownloadedBytes double
- Running count of bytes downloaded
- PercentProgress int
- Progress percentage
- StartedTimestamp string
- Timestamp when the operation started
- Timestamp string
- Timestamp when properties were updated
- DownloadedBytes float64
- Running count of bytes downloaded
- PercentProgress int
- Progress percentage
- StartedTimestamp string
- Timestamp when the operation started
- Timestamp string
- Timestamp when properties were updated
- downloadedBytes Double
- Running count of bytes downloaded
- percentProgress Integer
- Progress percentage
- startedTimestamp String
- Timestamp when the operation started
- timestamp String
- Timestamp when properties were updated
- downloadedBytes number
- Running count of bytes downloaded
- percentProgress number
- Progress percentage
- startedTimestamp string
- Timestamp when the operation started
- timestamp string
- Timestamp when properties were updated
- downloaded_bytes float
- Running count of bytes downloaded
- percent_progress int
- Progress percentage
- started_timestamp str
- Timestamp when the operation started
- timestamp str
- Timestamp when properties were updated
- downloadedBytes Number
- Running count of bytes downloaded
- percentProgress Number
- Progress percentage
- startedTimestamp String
- Timestamp when the operation started
- timestamp String
- Timestamp when properties were updated
ServerEndpointCloudTieringStatusResponse, ServerEndpointCloudTieringStatusResponseArgs            
- CachePerformance Pulumi.Azure Native. Storage Sync. Inputs. Cloud Tiering Cache Performance Response 
- Information regarding how well the local cache on the server is performing.
- DatePolicy Pulumi.Status Azure Native. Storage Sync. Inputs. Cloud Tiering Date Policy Status Response 
- Status of the date policy
- FilesNot Pulumi.Tiering Azure Native. Storage Sync. Inputs. Cloud Tiering Files Not Tiering Response 
- Information regarding files that failed to be tiered
- Health string
- Cloud tiering health state.
- HealthLast stringUpdated Timestamp 
- The last updated timestamp of health state
- LastCloud intTiering Result 
- Last cloud tiering result (HResult)
- LastSuccess stringTimestamp 
- Last cloud tiering success timestamp
- LastUpdated stringTimestamp 
- Last updated timestamp
- LowDisk Pulumi.Mode Azure Native. Storage Sync. Inputs. Cloud Tiering Low Disk Mode Response 
- Information regarding the low disk mode state
- SpaceSavings Pulumi.Azure Native. Storage Sync. Inputs. Cloud Tiering Space Savings Response 
- Information regarding how much local space cloud tiering is saving.
- VolumeFree Pulumi.Space Policy Status Azure Native. Storage Sync. Inputs. Cloud Tiering Volume Free Space Policy Status Response 
- Status of the volume free space policy
- CachePerformance CloudTiering Cache Performance Response 
- Information regarding how well the local cache on the server is performing.
- DatePolicy CloudStatus Tiering Date Policy Status Response 
- Status of the date policy
- FilesNot CloudTiering Tiering Files Not Tiering Response 
- Information regarding files that failed to be tiered
- Health string
- Cloud tiering health state.
- HealthLast stringUpdated Timestamp 
- The last updated timestamp of health state
- LastCloud intTiering Result 
- Last cloud tiering result (HResult)
- LastSuccess stringTimestamp 
- Last cloud tiering success timestamp
- LastUpdated stringTimestamp 
- Last updated timestamp
- LowDisk CloudMode Tiering Low Disk Mode Response 
- Information regarding the low disk mode state
- SpaceSavings CloudTiering Space Savings Response 
- Information regarding how much local space cloud tiering is saving.
- VolumeFree CloudSpace Policy Status Tiering Volume Free Space Policy Status Response 
- Status of the volume free space policy
- cachePerformance CloudTiering Cache Performance Response 
- Information regarding how well the local cache on the server is performing.
- datePolicy CloudStatus Tiering Date Policy Status Response 
- Status of the date policy
- filesNot CloudTiering Tiering Files Not Tiering Response 
- Information regarding files that failed to be tiered
- health String
- Cloud tiering health state.
- healthLast StringUpdated Timestamp 
- The last updated timestamp of health state
- lastCloud IntegerTiering Result 
- Last cloud tiering result (HResult)
- lastSuccess StringTimestamp 
- Last cloud tiering success timestamp
- lastUpdated StringTimestamp 
- Last updated timestamp
- lowDisk CloudMode Tiering Low Disk Mode Response 
- Information regarding the low disk mode state
- spaceSavings CloudTiering Space Savings Response 
- Information regarding how much local space cloud tiering is saving.
- volumeFree CloudSpace Policy Status Tiering Volume Free Space Policy Status Response 
- Status of the volume free space policy
- cachePerformance CloudTiering Cache Performance Response 
- Information regarding how well the local cache on the server is performing.
- datePolicy CloudStatus Tiering Date Policy Status Response 
- Status of the date policy
- filesNot CloudTiering Tiering Files Not Tiering Response 
- Information regarding files that failed to be tiered
- health string
- Cloud tiering health state.
- healthLast stringUpdated Timestamp 
- The last updated timestamp of health state
- lastCloud numberTiering Result 
- Last cloud tiering result (HResult)
- lastSuccess stringTimestamp 
- Last cloud tiering success timestamp
- lastUpdated stringTimestamp 
- Last updated timestamp
- lowDisk CloudMode Tiering Low Disk Mode Response 
- Information regarding the low disk mode state
- spaceSavings CloudTiering Space Savings Response 
- Information regarding how much local space cloud tiering is saving.
- volumeFree CloudSpace Policy Status Tiering Volume Free Space Policy Status Response 
- Status of the volume free space policy
- cache_performance CloudTiering Cache Performance Response 
- Information regarding how well the local cache on the server is performing.
- date_policy_ Cloudstatus Tiering Date Policy Status Response 
- Status of the date policy
- files_not_ Cloudtiering Tiering Files Not Tiering Response 
- Information regarding files that failed to be tiered
- health str
- Cloud tiering health state.
- health_last_ strupdated_ timestamp 
- The last updated timestamp of health state
- last_cloud_ inttiering_ result 
- Last cloud tiering result (HResult)
- last_success_ strtimestamp 
- Last cloud tiering success timestamp
- last_updated_ strtimestamp 
- Last updated timestamp
- low_disk_ Cloudmode Tiering Low Disk Mode Response 
- Information regarding the low disk mode state
- space_savings CloudTiering Space Savings Response 
- Information regarding how much local space cloud tiering is saving.
- volume_free_ Cloudspace_ policy_ status Tiering Volume Free Space Policy Status Response 
- Status of the volume free space policy
- cachePerformance Property Map
- Information regarding how well the local cache on the server is performing.
- datePolicy Property MapStatus 
- Status of the date policy
- filesNot Property MapTiering 
- Information regarding files that failed to be tiered
- health String
- Cloud tiering health state.
- healthLast StringUpdated Timestamp 
- The last updated timestamp of health state
- lastCloud NumberTiering Result 
- Last cloud tiering result (HResult)
- lastSuccess StringTimestamp 
- Last cloud tiering success timestamp
- lastUpdated StringTimestamp 
- Last updated timestamp
- lowDisk Property MapMode 
- Information regarding the low disk mode state
- spaceSavings Property Map
- Information regarding how much local space cloud tiering is saving.
- volumeFree Property MapSpace Policy Status 
- Status of the volume free space policy
ServerEndpointFilesNotSyncingErrorResponse, ServerEndpointFilesNotSyncingErrorResponseArgs              
- ErrorCode int
- Error code (HResult)
- PersistentCount double
- Count of persistent files not syncing with the specified error code
- TransientCount double
- Count of transient files not syncing with the specified error code
- ErrorCode int
- Error code (HResult)
- PersistentCount float64
- Count of persistent files not syncing with the specified error code
- TransientCount float64
- Count of transient files not syncing with the specified error code
- errorCode Integer
- Error code (HResult)
- persistentCount Double
- Count of persistent files not syncing with the specified error code
- transientCount Double
- Count of transient files not syncing with the specified error code
- errorCode number
- Error code (HResult)
- persistentCount number
- Count of persistent files not syncing with the specified error code
- transientCount number
- Count of transient files not syncing with the specified error code
- error_code int
- Error code (HResult)
- persistent_count float
- Count of persistent files not syncing with the specified error code
- transient_count float
- Count of transient files not syncing with the specified error code
- errorCode Number
- Error code (HResult)
- persistentCount Number
- Count of persistent files not syncing with the specified error code
- transientCount Number
- Count of transient files not syncing with the specified error code
ServerEndpointRecallErrorResponse, ServerEndpointRecallErrorResponseArgs          
- count float
- Count of occurences of the error
- error_code int
- Error code (HResult)
ServerEndpointRecallStatusResponse, ServerEndpointRecallStatusResponseArgs          
- LastUpdated stringTimestamp 
- Last updated timestamp
- RecallErrors List<Pulumi.Azure Native. Storage Sync. Inputs. Server Endpoint Recall Error Response> 
- Array of recall errors
- TotalRecall doubleErrors Count 
- Total count of recall errors.
- LastUpdated stringTimestamp 
- Last updated timestamp
- RecallErrors []ServerEndpoint Recall Error Response 
- Array of recall errors
- TotalRecall float64Errors Count 
- Total count of recall errors.
- lastUpdated StringTimestamp 
- Last updated timestamp
- recallErrors List<ServerEndpoint Recall Error Response> 
- Array of recall errors
- totalRecall DoubleErrors Count 
- Total count of recall errors.
- lastUpdated stringTimestamp 
- Last updated timestamp
- recallErrors ServerEndpoint Recall Error Response[] 
- Array of recall errors
- totalRecall numberErrors Count 
- Total count of recall errors.
- last_updated_ strtimestamp 
- Last updated timestamp
- recall_errors Sequence[ServerEndpoint Recall Error Response] 
- Array of recall errors
- total_recall_ floaterrors_ count 
- Total count of recall errors.
- lastUpdated StringTimestamp 
- Last updated timestamp
- recallErrors List<Property Map>
- Array of recall errors
- totalRecall NumberErrors Count 
- Total count of recall errors.
ServerEndpointSyncActivityStatusResponse, ServerEndpointSyncActivityStatusResponseArgs            
- AppliedBytes double
- Applied bytes
- AppliedItem doubleCount 
- Applied item count.
- PerItem doubleError Count 
- Per item error count
- SessionMinutes intRemaining 
- Session minutes remaining (if available)
- SyncMode string
- Sync mode
- Timestamp string
- Timestamp when properties were updated
- TotalBytes double
- Total bytes (if available)
- TotalItem doubleCount 
- Total item count (if available)
- AppliedBytes float64
- Applied bytes
- AppliedItem float64Count 
- Applied item count.
- PerItem float64Error Count 
- Per item error count
- SessionMinutes intRemaining 
- Session minutes remaining (if available)
- SyncMode string
- Sync mode
- Timestamp string
- Timestamp when properties were updated
- TotalBytes float64
- Total bytes (if available)
- TotalItem float64Count 
- Total item count (if available)
- appliedBytes Double
- Applied bytes
- appliedItem DoubleCount 
- Applied item count.
- perItem DoubleError Count 
- Per item error count
- sessionMinutes IntegerRemaining 
- Session minutes remaining (if available)
- syncMode String
- Sync mode
- timestamp String
- Timestamp when properties were updated
- totalBytes Double
- Total bytes (if available)
- totalItem DoubleCount 
- Total item count (if available)
- appliedBytes number
- Applied bytes
- appliedItem numberCount 
- Applied item count.
- perItem numberError Count 
- Per item error count
- sessionMinutes numberRemaining 
- Session minutes remaining (if available)
- syncMode string
- Sync mode
- timestamp string
- Timestamp when properties were updated
- totalBytes number
- Total bytes (if available)
- totalItem numberCount 
- Total item count (if available)
- applied_bytes float
- Applied bytes
- applied_item_ floatcount 
- Applied item count.
- per_item_ floaterror_ count 
- Per item error count
- session_minutes_ intremaining 
- Session minutes remaining (if available)
- sync_mode str
- Sync mode
- timestamp str
- Timestamp when properties were updated
- total_bytes float
- Total bytes (if available)
- total_item_ floatcount 
- Total item count (if available)
- appliedBytes Number
- Applied bytes
- appliedItem NumberCount 
- Applied item count.
- perItem NumberError Count 
- Per item error count
- sessionMinutes NumberRemaining 
- Session minutes remaining (if available)
- syncMode String
- Sync mode
- timestamp String
- Timestamp when properties were updated
- totalBytes Number
- Total bytes (if available)
- totalItem NumberCount 
- Total item count (if available)
ServerEndpointSyncSessionStatusResponse, ServerEndpointSyncSessionStatusResponseArgs            
- FilesNot List<Pulumi.Syncing Errors Azure Native. Storage Sync. Inputs. Server Endpoint Files Not Syncing Error Response> 
- Array of per-item errors coming from the last sync session.
- LastSync stringMode 
- Sync mode
- LastSync doublePer Item Error Count 
- Last sync per item error count.
- LastSync intResult 
- Last sync result (HResult)
- LastSync stringSuccess Timestamp 
- Last sync success timestamp
- LastSync stringTimestamp 
- Last sync timestamp
- PersistentFiles doubleNot Syncing Count 
- Count of persistent files not syncing.
- TransientFiles doubleNot Syncing Count 
- Count of transient files not syncing.
- FilesNot []ServerSyncing Errors Endpoint Files Not Syncing Error Response 
- Array of per-item errors coming from the last sync session.
- LastSync stringMode 
- Sync mode
- LastSync float64Per Item Error Count 
- Last sync per item error count.
- LastSync intResult 
- Last sync result (HResult)
- LastSync stringSuccess Timestamp 
- Last sync success timestamp
- LastSync stringTimestamp 
- Last sync timestamp
- PersistentFiles float64Not Syncing Count 
- Count of persistent files not syncing.
- TransientFiles float64Not Syncing Count 
- Count of transient files not syncing.
- filesNot List<ServerSyncing Errors Endpoint Files Not Syncing Error Response> 
- Array of per-item errors coming from the last sync session.
- lastSync StringMode 
- Sync mode
- lastSync DoublePer Item Error Count 
- Last sync per item error count.
- lastSync IntegerResult 
- Last sync result (HResult)
- lastSync StringSuccess Timestamp 
- Last sync success timestamp
- lastSync StringTimestamp 
- Last sync timestamp
- persistentFiles DoubleNot Syncing Count 
- Count of persistent files not syncing.
- transientFiles DoubleNot Syncing Count 
- Count of transient files not syncing.
- filesNot ServerSyncing Errors Endpoint Files Not Syncing Error Response[] 
- Array of per-item errors coming from the last sync session.
- lastSync stringMode 
- Sync mode
- lastSync numberPer Item Error Count 
- Last sync per item error count.
- lastSync numberResult 
- Last sync result (HResult)
- lastSync stringSuccess Timestamp 
- Last sync success timestamp
- lastSync stringTimestamp 
- Last sync timestamp
- persistentFiles numberNot Syncing Count 
- Count of persistent files not syncing.
- transientFiles numberNot Syncing Count 
- Count of transient files not syncing.
- files_not_ Sequence[Serversyncing_ errors Endpoint Files Not Syncing Error Response] 
- Array of per-item errors coming from the last sync session.
- last_sync_ strmode 
- Sync mode
- last_sync_ floatper_ item_ error_ count 
- Last sync per item error count.
- last_sync_ intresult 
- Last sync result (HResult)
- last_sync_ strsuccess_ timestamp 
- Last sync success timestamp
- last_sync_ strtimestamp 
- Last sync timestamp
- persistent_files_ floatnot_ syncing_ count 
- Count of persistent files not syncing.
- transient_files_ floatnot_ syncing_ count 
- Count of transient files not syncing.
- filesNot List<Property Map>Syncing Errors 
- Array of per-item errors coming from the last sync session.
- lastSync StringMode 
- Sync mode
- lastSync NumberPer Item Error Count 
- Last sync per item error count.
- lastSync NumberResult 
- Last sync result (HResult)
- lastSync StringSuccess Timestamp 
- Last sync success timestamp
- lastSync StringTimestamp 
- Last sync timestamp
- persistentFiles NumberNot Syncing Count 
- Count of persistent files not syncing.
- transientFiles NumberNot Syncing Count 
- Count of transient files not syncing.
ServerEndpointSyncStatusResponse, ServerEndpointSyncStatusResponseArgs          
- BackgroundData Pulumi.Download Activity Azure Native. Storage Sync. Inputs. Server Endpoint Background Data Download Activity Response 
- Background data download activity
- CombinedHealth string
- Combined Health Status.
- DownloadActivity Pulumi.Azure Native. Storage Sync. Inputs. Server Endpoint Sync Activity Status Response 
- Download sync activity
- DownloadHealth string
- Download Health Status.
- DownloadStatus Pulumi.Azure Native. Storage Sync. Inputs. Server Endpoint Sync Session Status Response 
- Download Status
- LastUpdated stringTimestamp 
- Last Updated Timestamp
- OfflineData stringTransfer Status 
- Offline Data Transfer State
- SyncActivity string
- Sync activity
- TotalPersistent doubleFiles Not Syncing Count 
- Total count of persistent files not syncing (combined upload + download).
- UploadActivity Pulumi.Azure Native. Storage Sync. Inputs. Server Endpoint Sync Activity Status Response 
- Upload sync activity
- UploadHealth string
- Upload Health Status.
- UploadStatus Pulumi.Azure Native. Storage Sync. Inputs. Server Endpoint Sync Session Status Response 
- Upload Status
- BackgroundData ServerDownload Activity Endpoint Background Data Download Activity Response 
- Background data download activity
- CombinedHealth string
- Combined Health Status.
- DownloadActivity ServerEndpoint Sync Activity Status Response 
- Download sync activity
- DownloadHealth string
- Download Health Status.
- DownloadStatus ServerEndpoint Sync Session Status Response 
- Download Status
- LastUpdated stringTimestamp 
- Last Updated Timestamp
- OfflineData stringTransfer Status 
- Offline Data Transfer State
- SyncActivity string
- Sync activity
- TotalPersistent float64Files Not Syncing Count 
- Total count of persistent files not syncing (combined upload + download).
- UploadActivity ServerEndpoint Sync Activity Status Response 
- Upload sync activity
- UploadHealth string
- Upload Health Status.
- UploadStatus ServerEndpoint Sync Session Status Response 
- Upload Status
- backgroundData ServerDownload Activity Endpoint Background Data Download Activity Response 
- Background data download activity
- combinedHealth String
- Combined Health Status.
- downloadActivity ServerEndpoint Sync Activity Status Response 
- Download sync activity
- downloadHealth String
- Download Health Status.
- downloadStatus ServerEndpoint Sync Session Status Response 
- Download Status
- lastUpdated StringTimestamp 
- Last Updated Timestamp
- offlineData StringTransfer Status 
- Offline Data Transfer State
- syncActivity String
- Sync activity
- totalPersistent DoubleFiles Not Syncing Count 
- Total count of persistent files not syncing (combined upload + download).
- uploadActivity ServerEndpoint Sync Activity Status Response 
- Upload sync activity
- uploadHealth String
- Upload Health Status.
- uploadStatus ServerEndpoint Sync Session Status Response 
- Upload Status
- backgroundData ServerDownload Activity Endpoint Background Data Download Activity Response 
- Background data download activity
- combinedHealth string
- Combined Health Status.
- downloadActivity ServerEndpoint Sync Activity Status Response 
- Download sync activity
- downloadHealth string
- Download Health Status.
- downloadStatus ServerEndpoint Sync Session Status Response 
- Download Status
- lastUpdated stringTimestamp 
- Last Updated Timestamp
- offlineData stringTransfer Status 
- Offline Data Transfer State
- syncActivity string
- Sync activity
- totalPersistent numberFiles Not Syncing Count 
- Total count of persistent files not syncing (combined upload + download).
- uploadActivity ServerEndpoint Sync Activity Status Response 
- Upload sync activity
- uploadHealth string
- Upload Health Status.
- uploadStatus ServerEndpoint Sync Session Status Response 
- Upload Status
- background_data_ Serverdownload_ activity Endpoint Background Data Download Activity Response 
- Background data download activity
- combined_health str
- Combined Health Status.
- download_activity ServerEndpoint Sync Activity Status Response 
- Download sync activity
- download_health str
- Download Health Status.
- download_status ServerEndpoint Sync Session Status Response 
- Download Status
- last_updated_ strtimestamp 
- Last Updated Timestamp
- offline_data_ strtransfer_ status 
- Offline Data Transfer State
- sync_activity str
- Sync activity
- total_persistent_ floatfiles_ not_ syncing_ count 
- Total count of persistent files not syncing (combined upload + download).
- upload_activity ServerEndpoint Sync Activity Status Response 
- Upload sync activity
- upload_health str
- Upload Health Status.
- upload_status ServerEndpoint Sync Session Status Response 
- Upload Status
- backgroundData Property MapDownload Activity 
- Background data download activity
- combinedHealth String
- Combined Health Status.
- downloadActivity Property Map
- Download sync activity
- downloadHealth String
- Download Health Status.
- downloadStatus Property Map
- Download Status
- lastUpdated StringTimestamp 
- Last Updated Timestamp
- offlineData StringTransfer Status 
- Offline Data Transfer State
- syncActivity String
- Sync activity
- totalPersistent NumberFiles Not Syncing Count 
- Total count of persistent files not syncing (combined upload + download).
- uploadActivity Property Map
- Upload sync activity
- uploadHealth String
- Upload Health Status.
- uploadStatus Property Map
- Upload Status
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:storagesync:ServerEndpoint SampleServerEndpoint_1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/serverEndpoints/{serverEndpointName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0