1. Packages
  2. Azure Native v2
  3. API Docs
  4. storagesync
  5. CloudEndpoint
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.storagesync.CloudEndpoint

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Cloud 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

CloudEndpoints_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var cloudEndpoint = new AzureNative.StorageSync.CloudEndpoint("cloudEndpoint", new()
    {
        AzureFileShareName = "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4",
        CloudEndpointName = "SampleCloudEndpoint_1",
        FriendlyName = "ankushbsubscriptionmgmtmab",
        ResourceGroupName = "SampleResourceGroup_1",
        StorageAccountResourceId = "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage",
        StorageAccountTenantId = "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"",
        StorageSyncServiceName = "SampleStorageSyncService_1",
        SyncGroupName = "SampleSyncGroup_1",
    });

});
Copy
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.NewCloudEndpoint(ctx, "cloudEndpoint", &storagesync.CloudEndpointArgs{
			AzureFileShareName:       pulumi.String("cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4"),
			CloudEndpointName:        pulumi.String("SampleCloudEndpoint_1"),
			FriendlyName:             pulumi.String("ankushbsubscriptionmgmtmab"),
			ResourceGroupName:        pulumi.String("SampleResourceGroup_1"),
			StorageAccountResourceId: pulumi.String("/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage"),
			StorageAccountTenantId:   pulumi.String("\"72f988bf-86f1-41af-91ab-2d7cd011db47\""),
			StorageSyncServiceName:   pulumi.String("SampleStorageSyncService_1"),
			SyncGroupName:            pulumi.String("SampleSyncGroup_1"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storagesync.CloudEndpoint;
import com.pulumi.azurenative.storagesync.CloudEndpointArgs;
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 cloudEndpoint = new CloudEndpoint("cloudEndpoint", CloudEndpointArgs.builder()
            .azureFileShareName("cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4")
            .cloudEndpointName("SampleCloudEndpoint_1")
            .friendlyName("ankushbsubscriptionmgmtmab")
            .resourceGroupName("SampleResourceGroup_1")
            .storageAccountResourceId("/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage")
            .storageAccountTenantId("\"72f988bf-86f1-41af-91ab-2d7cd011db47\"")
            .storageSyncServiceName("SampleStorageSyncService_1")
            .syncGroupName("SampleSyncGroup_1")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const cloudEndpoint = new azure_native.storagesync.CloudEndpoint("cloudEndpoint", {
    azureFileShareName: "cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4",
    cloudEndpointName: "SampleCloudEndpoint_1",
    friendlyName: "ankushbsubscriptionmgmtmab",
    resourceGroupName: "SampleResourceGroup_1",
    storageAccountResourceId: "/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage",
    storageAccountTenantId: "\"72f988bf-86f1-41af-91ab-2d7cd011db47\"",
    storageSyncServiceName: "SampleStorageSyncService_1",
    syncGroupName: "SampleSyncGroup_1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

cloud_endpoint = azure_native.storagesync.CloudEndpoint("cloudEndpoint",
    azure_file_share_name="cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4",
    cloud_endpoint_name="SampleCloudEndpoint_1",
    friendly_name="ankushbsubscriptionmgmtmab",
    resource_group_name="SampleResourceGroup_1",
    storage_account_resource_id="/subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage",
    storage_account_tenant_id="\"72f988bf-86f1-41af-91ab-2d7cd011db47\"",
    storage_sync_service_name="SampleStorageSyncService_1",
    sync_group_name="SampleSyncGroup_1")
Copy
resources:
  cloudEndpoint:
    type: azure-native:storagesync:CloudEndpoint
    properties:
      azureFileShareName: cvcloud-afscv-0719-058-a94a1354-a1fd-4e9a-9a50-919fad8c4ba4
      cloudEndpointName: SampleCloudEndpoint_1
      friendlyName: ankushbsubscriptionmgmtmab
      resourceGroupName: SampleResourceGroup_1
      storageAccountResourceId: /subscriptions/744f4d70-6d17-4921-8970-a765d14f763f/resourceGroups/tminienv59svc/providers/Microsoft.Storage/storageAccounts/tminienv59storage
      storageAccountTenantId: '"72f988bf-86f1-41af-91ab-2d7cd011db47"'
      storageSyncServiceName: SampleStorageSyncService_1
      syncGroupName: SampleSyncGroup_1
Copy

Create CloudEndpoint Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CloudEndpoint(name: string, args: CloudEndpointArgs, opts?: CustomResourceOptions);
@overload
def CloudEndpoint(resource_name: str,
                  args: CloudEndpointArgs,
                  opts: Optional[ResourceOptions] = None)

@overload
def CloudEndpoint(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  resource_group_name: Optional[str] = None,
                  storage_sync_service_name: Optional[str] = None,
                  sync_group_name: Optional[str] = None,
                  azure_file_share_name: Optional[str] = None,
                  cloud_endpoint_name: Optional[str] = None,
                  friendly_name: Optional[str] = None,
                  storage_account_resource_id: Optional[str] = None,
                  storage_account_tenant_id: Optional[str] = None)
func NewCloudEndpoint(ctx *Context, name string, args CloudEndpointArgs, opts ...ResourceOption) (*CloudEndpoint, error)
public CloudEndpoint(string name, CloudEndpointArgs args, CustomResourceOptions? opts = null)
public CloudEndpoint(String name, CloudEndpointArgs args)
public CloudEndpoint(String name, CloudEndpointArgs args, CustomResourceOptions options)
type: azure-native:storagesync:CloudEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CloudEndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CloudEndpointArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CloudEndpointArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CloudEndpointArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CloudEndpointArgs
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 cloudEndpointResource = new AzureNative.Storagesync.CloudEndpoint("cloudEndpointResource", new()
{
    ResourceGroupName = "string",
    StorageSyncServiceName = "string",
    SyncGroupName = "string",
    AzureFileShareName = "string",
    CloudEndpointName = "string",
    FriendlyName = "string",
    StorageAccountResourceId = "string",
    StorageAccountTenantId = "string",
});
Copy
example, err := storagesync.NewCloudEndpoint(ctx, "cloudEndpointResource", &storagesync.CloudEndpointArgs{
	ResourceGroupName:        "string",
	StorageSyncServiceName:   "string",
	SyncGroupName:            "string",
	AzureFileShareName:       "string",
	CloudEndpointName:        "string",
	FriendlyName:             "string",
	StorageAccountResourceId: "string",
	StorageAccountTenantId:   "string",
})
Copy
var cloudEndpointResource = new CloudEndpoint("cloudEndpointResource", CloudEndpointArgs.builder()
    .resourceGroupName("string")
    .storageSyncServiceName("string")
    .syncGroupName("string")
    .azureFileShareName("string")
    .cloudEndpointName("string")
    .friendlyName("string")
    .storageAccountResourceId("string")
    .storageAccountTenantId("string")
    .build());
Copy
cloud_endpoint_resource = azure_native.storagesync.CloudEndpoint("cloudEndpointResource",
    resource_group_name=string,
    storage_sync_service_name=string,
    sync_group_name=string,
    azure_file_share_name=string,
    cloud_endpoint_name=string,
    friendly_name=string,
    storage_account_resource_id=string,
    storage_account_tenant_id=string)
Copy
const cloudEndpointResource = new azure_native.storagesync.CloudEndpoint("cloudEndpointResource", {
    resourceGroupName: "string",
    storageSyncServiceName: "string",
    syncGroupName: "string",
    azureFileShareName: "string",
    cloudEndpointName: "string",
    friendlyName: "string",
    storageAccountResourceId: "string",
    storageAccountTenantId: "string",
});
Copy
type: azure-native:storagesync:CloudEndpoint
properties:
    azureFileShareName: string
    cloudEndpointName: string
    friendlyName: string
    resourceGroupName: string
    storageAccountResourceId: string
    storageAccountTenantId: string
    storageSyncServiceName: string
    syncGroupName: string
Copy

CloudEndpoint 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 CloudEndpoint resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
StorageSyncServiceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Storage Sync Service resource.
SyncGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of Sync Group resource.
AzureFileShareName string
Azure file share name
CloudEndpointName Changes to this property will trigger replacement. string
Name of Cloud Endpoint object.
FriendlyName string
Friendly Name
StorageAccountResourceId string
Storage Account Resource Id
StorageAccountTenantId string
Storage Account Tenant Id
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
StorageSyncServiceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Storage Sync Service resource.
SyncGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of Sync Group resource.
AzureFileShareName string
Azure file share name
CloudEndpointName Changes to this property will trigger replacement. string
Name of Cloud Endpoint object.
FriendlyName string
Friendly Name
StorageAccountResourceId string
Storage Account Resource Id
StorageAccountTenantId string
Storage Account Tenant Id
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
storageSyncServiceName
This property is required.
Changes to this property will trigger replacement.
String
Name of Storage Sync Service resource.
syncGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of Sync Group resource.
azureFileShareName String
Azure file share name
cloudEndpointName Changes to this property will trigger replacement. String
Name of Cloud Endpoint object.
friendlyName String
Friendly Name
storageAccountResourceId String
Storage Account Resource Id
storageAccountTenantId String
Storage Account Tenant Id
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
storageSyncServiceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Storage Sync Service resource.
syncGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of Sync Group resource.
azureFileShareName string
Azure file share name
cloudEndpointName Changes to this property will trigger replacement. string
Name of Cloud Endpoint object.
friendlyName string
Friendly Name
storageAccountResourceId string
Storage Account Resource Id
storageAccountTenantId string
Storage Account Tenant Id
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
storage_sync_service_name
This property is required.
Changes to this property will trigger replacement.
str
Name of Storage Sync Service resource.
sync_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of Sync Group resource.
azure_file_share_name str
Azure file share name
cloud_endpoint_name Changes to this property will trigger replacement. str
Name of Cloud Endpoint object.
friendly_name str
Friendly Name
storage_account_resource_id str
Storage Account Resource Id
storage_account_tenant_id str
Storage Account Tenant Id
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
storageSyncServiceName
This property is required.
Changes to this property will trigger replacement.
String
Name of Storage Sync Service resource.
syncGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of Sync Group resource.
azureFileShareName String
Azure file share name
cloudEndpointName Changes to this property will trigger replacement. String
Name of Cloud Endpoint object.
friendlyName String
Friendly Name
storageAccountResourceId String
Storage Account Resource Id
storageAccountTenantId String
Storage Account Tenant Id

Outputs

All input properties are implicitly available as output properties. Additionally, the CloudEndpoint resource produces the following output properties:

BackupEnabled string
Backup Enabled
ChangeEnumerationStatus Pulumi.AzureNative.StorageSync.Outputs.CloudEndpointChangeEnumerationStatusResponse
Cloud endpoint change enumeration status
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.StorageSync.Outputs.SystemDataResponse
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"
LastOperationName string
Resource Last Operation Name
LastWorkflowId string
CloudEndpoint lastWorkflowId
PartnershipId string
Partnership Id
ProvisioningState string
CloudEndpoint Provisioning State
BackupEnabled string
Backup Enabled
ChangeEnumerationStatus CloudEndpointChangeEnumerationStatusResponse
Cloud endpoint change enumeration status
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
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"
LastOperationName string
Resource Last Operation Name
LastWorkflowId string
CloudEndpoint lastWorkflowId
PartnershipId string
Partnership Id
ProvisioningState string
CloudEndpoint Provisioning State
backupEnabled String
Backup Enabled
changeEnumerationStatus CloudEndpointChangeEnumerationStatusResponse
Cloud endpoint change enumeration status
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
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"
lastOperationName String
Resource Last Operation Name
lastWorkflowId String
CloudEndpoint lastWorkflowId
partnershipId String
Partnership Id
provisioningState String
CloudEndpoint Provisioning State
backupEnabled string
Backup Enabled
changeEnumerationStatus CloudEndpointChangeEnumerationStatusResponse
Cloud endpoint change enumeration status
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
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"
lastOperationName string
Resource Last Operation Name
lastWorkflowId string
CloudEndpoint lastWorkflowId
partnershipId string
Partnership Id
provisioningState string
CloudEndpoint Provisioning State
backup_enabled str
Backup Enabled
change_enumeration_status CloudEndpointChangeEnumerationStatusResponse
Cloud endpoint change enumeration status
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
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"
last_operation_name str
Resource Last Operation Name
last_workflow_id str
CloudEndpoint lastWorkflowId
partnership_id str
Partnership Id
provisioning_state str
CloudEndpoint Provisioning State
backupEnabled String
Backup Enabled
changeEnumerationStatus Property Map
Cloud endpoint change enumeration status
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
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"
lastOperationName String
Resource Last Operation Name
lastWorkflowId String
CloudEndpoint lastWorkflowId
partnershipId String
Partnership Id
provisioningState String
CloudEndpoint Provisioning State

Supporting Types

CloudEndpointChangeEnumerationActivityResponse
, CloudEndpointChangeEnumerationActivityResponseArgs

DeletesProgressPercent This property is required. int
Progress percentage for processing deletes. This is done separately from the rest of the enumeration run
LastUpdatedTimestamp This property is required. string
Last updated timestamp
MinutesRemaining This property is required. int
Estimate of time remaining for the enumeration run
OperationState This property is required. string
Change enumeration operation state
ProcessedDirectoriesCount This property is required. double
Count of directories processed
ProcessedFilesCount This property is required. double
Count of files processed
ProgressPercent This property is required. int
Progress percentage for change enumeration run, excluding processing of deletes
StartedTimestamp This property is required. string
Timestamp when change enumeration started
StatusCode This property is required. int
When non-zero, indicates an issue that is delaying change enumeration
TotalCountsState This property is required. string
Change enumeration total counts state
TotalDirectoriesCount This property is required. double
Total count of directories enumerated
TotalFilesCount This property is required. double
Total count of files enumerated
TotalSizeBytes This property is required. double
Total enumerated size in bytes
DeletesProgressPercent This property is required. int
Progress percentage for processing deletes. This is done separately from the rest of the enumeration run
LastUpdatedTimestamp This property is required. string
Last updated timestamp
MinutesRemaining This property is required. int
Estimate of time remaining for the enumeration run
OperationState This property is required. string
Change enumeration operation state
ProcessedDirectoriesCount This property is required. float64
Count of directories processed
ProcessedFilesCount This property is required. float64
Count of files processed
ProgressPercent This property is required. int
Progress percentage for change enumeration run, excluding processing of deletes
StartedTimestamp This property is required. string
Timestamp when change enumeration started
StatusCode This property is required. int
When non-zero, indicates an issue that is delaying change enumeration
TotalCountsState This property is required. string
Change enumeration total counts state
TotalDirectoriesCount This property is required. float64
Total count of directories enumerated
TotalFilesCount This property is required. float64
Total count of files enumerated
TotalSizeBytes This property is required. float64
Total enumerated size in bytes
deletesProgressPercent This property is required. Integer
Progress percentage for processing deletes. This is done separately from the rest of the enumeration run
lastUpdatedTimestamp This property is required. String
Last updated timestamp
minutesRemaining This property is required. Integer
Estimate of time remaining for the enumeration run
operationState This property is required. String
Change enumeration operation state
processedDirectoriesCount This property is required. Double
Count of directories processed
processedFilesCount This property is required. Double
Count of files processed
progressPercent This property is required. Integer
Progress percentage for change enumeration run, excluding processing of deletes
startedTimestamp This property is required. String
Timestamp when change enumeration started
statusCode This property is required. Integer
When non-zero, indicates an issue that is delaying change enumeration
totalCountsState This property is required. String
Change enumeration total counts state
totalDirectoriesCount This property is required. Double
Total count of directories enumerated
totalFilesCount This property is required. Double
Total count of files enumerated
totalSizeBytes This property is required. Double
Total enumerated size in bytes
deletesProgressPercent This property is required. number
Progress percentage for processing deletes. This is done separately from the rest of the enumeration run
lastUpdatedTimestamp This property is required. string
Last updated timestamp
minutesRemaining This property is required. number
Estimate of time remaining for the enumeration run
operationState This property is required. string
Change enumeration operation state
processedDirectoriesCount This property is required. number
Count of directories processed
processedFilesCount This property is required. number
Count of files processed
progressPercent This property is required. number
Progress percentage for change enumeration run, excluding processing of deletes
startedTimestamp This property is required. string
Timestamp when change enumeration started
statusCode This property is required. number
When non-zero, indicates an issue that is delaying change enumeration
totalCountsState This property is required. string
Change enumeration total counts state
totalDirectoriesCount This property is required. number
Total count of directories enumerated
totalFilesCount This property is required. number
Total count of files enumerated
totalSizeBytes This property is required. number
Total enumerated size in bytes
deletes_progress_percent This property is required. int
Progress percentage for processing deletes. This is done separately from the rest of the enumeration run
last_updated_timestamp This property is required. str
Last updated timestamp
minutes_remaining This property is required. int
Estimate of time remaining for the enumeration run
operation_state This property is required. str
Change enumeration operation state
processed_directories_count This property is required. float
Count of directories processed
processed_files_count This property is required. float
Count of files processed
progress_percent This property is required. int
Progress percentage for change enumeration run, excluding processing of deletes
started_timestamp This property is required. str
Timestamp when change enumeration started
status_code This property is required. int
When non-zero, indicates an issue that is delaying change enumeration
total_counts_state This property is required. str
Change enumeration total counts state
total_directories_count This property is required. float
Total count of directories enumerated
total_files_count This property is required. float
Total count of files enumerated
total_size_bytes This property is required. float
Total enumerated size in bytes
deletesProgressPercent This property is required. Number
Progress percentage for processing deletes. This is done separately from the rest of the enumeration run
lastUpdatedTimestamp This property is required. String
Last updated timestamp
minutesRemaining This property is required. Number
Estimate of time remaining for the enumeration run
operationState This property is required. String
Change enumeration operation state
processedDirectoriesCount This property is required. Number
Count of directories processed
processedFilesCount This property is required. Number
Count of files processed
progressPercent This property is required. Number
Progress percentage for change enumeration run, excluding processing of deletes
startedTimestamp This property is required. String
Timestamp when change enumeration started
statusCode This property is required. Number
When non-zero, indicates an issue that is delaying change enumeration
totalCountsState This property is required. String
Change enumeration total counts state
totalDirectoriesCount This property is required. Number
Total count of directories enumerated
totalFilesCount This property is required. Number
Total count of files enumerated
totalSizeBytes This property is required. Number
Total enumerated size in bytes

CloudEndpointChangeEnumerationStatusResponse
, CloudEndpointChangeEnumerationStatusResponseArgs

Activity This property is required. Pulumi.AzureNative.StorageSync.Inputs.CloudEndpointChangeEnumerationActivityResponse
Change enumeration activity
LastEnumerationStatus This property is required. Pulumi.AzureNative.StorageSync.Inputs.CloudEndpointLastChangeEnumerationStatusResponse
Status of last completed change enumeration
LastUpdatedTimestamp This property is required. string
Last updated timestamp
Activity This property is required. CloudEndpointChangeEnumerationActivityResponse
Change enumeration activity
LastEnumerationStatus This property is required. CloudEndpointLastChangeEnumerationStatusResponse
Status of last completed change enumeration
LastUpdatedTimestamp This property is required. string
Last updated timestamp
activity This property is required. CloudEndpointChangeEnumerationActivityResponse
Change enumeration activity
lastEnumerationStatus This property is required. CloudEndpointLastChangeEnumerationStatusResponse
Status of last completed change enumeration
lastUpdatedTimestamp This property is required. String
Last updated timestamp
activity This property is required. CloudEndpointChangeEnumerationActivityResponse
Change enumeration activity
lastEnumerationStatus This property is required. CloudEndpointLastChangeEnumerationStatusResponse
Status of last completed change enumeration
lastUpdatedTimestamp This property is required. string
Last updated timestamp
activity This property is required. CloudEndpointChangeEnumerationActivityResponse
Change enumeration activity
last_enumeration_status This property is required. CloudEndpointLastChangeEnumerationStatusResponse
Status of last completed change enumeration
last_updated_timestamp This property is required. str
Last updated timestamp
activity This property is required. Property Map
Change enumeration activity
lastEnumerationStatus This property is required. Property Map
Status of last completed change enumeration
lastUpdatedTimestamp This property is required. String
Last updated timestamp

CloudEndpointLastChangeEnumerationStatusResponse
, CloudEndpointLastChangeEnumerationStatusResponseArgs

CompletedTimestamp This property is required. string
Timestamp when change enumeration completed
NamespaceDirectoriesCount This property is required. double
Count of directories in the namespace
NamespaceFilesCount This property is required. double
Count of files in the namespace
NamespaceSizeBytes This property is required. double
Namespace size in bytes
NextRunTimestamp This property is required. string
Timestamp of when change enumeration is expected to run again
StartedTimestamp This property is required. string
Timestamp when change enumeration started
CompletedTimestamp This property is required. string
Timestamp when change enumeration completed
NamespaceDirectoriesCount This property is required. float64
Count of directories in the namespace
NamespaceFilesCount This property is required. float64
Count of files in the namespace
NamespaceSizeBytes This property is required. float64
Namespace size in bytes
NextRunTimestamp This property is required. string
Timestamp of when change enumeration is expected to run again
StartedTimestamp This property is required. string
Timestamp when change enumeration started
completedTimestamp This property is required. String
Timestamp when change enumeration completed
namespaceDirectoriesCount This property is required. Double
Count of directories in the namespace
namespaceFilesCount This property is required. Double
Count of files in the namespace
namespaceSizeBytes This property is required. Double
Namespace size in bytes
nextRunTimestamp This property is required. String
Timestamp of when change enumeration is expected to run again
startedTimestamp This property is required. String
Timestamp when change enumeration started
completedTimestamp This property is required. string
Timestamp when change enumeration completed
namespaceDirectoriesCount This property is required. number
Count of directories in the namespace
namespaceFilesCount This property is required. number
Count of files in the namespace
namespaceSizeBytes This property is required. number
Namespace size in bytes
nextRunTimestamp This property is required. string
Timestamp of when change enumeration is expected to run again
startedTimestamp This property is required. string
Timestamp when change enumeration started
completed_timestamp This property is required. str
Timestamp when change enumeration completed
namespace_directories_count This property is required. float
Count of directories in the namespace
namespace_files_count This property is required. float
Count of files in the namespace
namespace_size_bytes This property is required. float
Namespace size in bytes
next_run_timestamp This property is required. str
Timestamp of when change enumeration is expected to run again
started_timestamp This property is required. str
Timestamp when change enumeration started
completedTimestamp This property is required. String
Timestamp when change enumeration completed
namespaceDirectoriesCount This property is required. Number
Count of directories in the namespace
namespaceFilesCount This property is required. Number
Count of files in the namespace
namespaceSizeBytes This property is required. Number
Namespace size in bytes
nextRunTimestamp This property is required. String
Timestamp of when change enumeration is expected to run again
startedTimestamp This property is required. String
Timestamp when change enumeration started

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
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.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
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.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
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.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
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_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
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.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
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:CloudEndpoint SampleCloudEndpoint_1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorageSync/storageSyncServices/{storageSyncServiceName}/syncGroups/{syncGroupName}/cloudEndpoints/{cloudEndpointName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi