1. Packages
  2. Azure Native
  3. API Docs
  4. datamigration
  5. File
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.21.0 published on Tuesday, Dec 5, 2023 by Pulumi

azure-native.datamigration.File

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.21.0 published on Tuesday, Dec 5, 2023 by Pulumi

    A file resource Azure REST API version: 2021-06-30. Prior API version in Azure Native 1.x: 2018-07-15-preview.

    Other available API versions: 2022-03-30-preview.

    Example Usage

    Files_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var file = new AzureNative.DataMigration.File("file", new()
        {
            FileName = "x114d023d8",
            GroupName = "DmsSdkRg",
            ProjectName = "DmsSdkProject",
            Properties = new AzureNative.DataMigration.Inputs.ProjectFilePropertiesArgs
            {
                FilePath = "DmsSdkFilePath/DmsSdkFile.sql",
            },
            ServiceName = "DmsSdkService",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/datamigration/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datamigration.NewFile(ctx, "file", &datamigration.FileArgs{
    			FileName:    pulumi.String("x114d023d8"),
    			GroupName:   pulumi.String("DmsSdkRg"),
    			ProjectName: pulumi.String("DmsSdkProject"),
    			Properties: &datamigration.ProjectFilePropertiesArgs{
    				FilePath: pulumi.String("DmsSdkFilePath/DmsSdkFile.sql"),
    			},
    			ServiceName: pulumi.String("DmsSdkService"),
    		})
    		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.datamigration.File;
    import com.pulumi.azurenative.datamigration.FileArgs;
    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 file = new File("file", FileArgs.builder()        
                .fileName("x114d023d8")
                .groupName("DmsSdkRg")
                .projectName("DmsSdkProject")
                .properties(Map.of("filePath", "DmsSdkFilePath/DmsSdkFile.sql"))
                .serviceName("DmsSdkService")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    file = azure_native.datamigration.File("file",
        file_name="x114d023d8",
        group_name="DmsSdkRg",
        project_name="DmsSdkProject",
        properties=azure_native.datamigration.ProjectFilePropertiesArgs(
            file_path="DmsSdkFilePath/DmsSdkFile.sql",
        ),
        service_name="DmsSdkService")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const file = new azure_native.datamigration.File("file", {
        fileName: "x114d023d8",
        groupName: "DmsSdkRg",
        projectName: "DmsSdkProject",
        properties: {
            filePath: "DmsSdkFilePath/DmsSdkFile.sql",
        },
        serviceName: "DmsSdkService",
    });
    
    resources:
      file:
        type: azure-native:datamigration:File
        properties:
          fileName: x114d023d8
          groupName: DmsSdkRg
          projectName: DmsSdkProject
          properties:
            filePath: DmsSdkFilePath/DmsSdkFile.sql
          serviceName: DmsSdkService
    

    Create File Resource

    new File(name: string, args: FileArgs, opts?: CustomResourceOptions);
    @overload
    def File(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             file_name: Optional[str] = None,
             group_name: Optional[str] = None,
             project_name: Optional[str] = None,
             properties: Optional[ProjectFilePropertiesArgs] = None,
             service_name: Optional[str] = None)
    @overload
    def File(resource_name: str,
             args: FileArgs,
             opts: Optional[ResourceOptions] = None)
    func NewFile(ctx *Context, name string, args FileArgs, opts ...ResourceOption) (*File, error)
    public File(string name, FileArgs args, CustomResourceOptions? opts = null)
    public File(String name, FileArgs args)
    public File(String name, FileArgs args, CustomResourceOptions options)
    
    type: azure-native:datamigration:File
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args FileArgs
    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 FileArgs
    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 FileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    File Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The File resource accepts the following input properties:

    GroupName string

    Name of the resource group

    ProjectName string

    Name of the project

    ServiceName string

    Name of the service

    FileName string

    Name of the File

    Properties Pulumi.AzureNative.DataMigration.Inputs.ProjectFileProperties

    Custom file properties

    GroupName string

    Name of the resource group

    ProjectName string

    Name of the project

    ServiceName string

    Name of the service

    FileName string

    Name of the File

    Properties ProjectFilePropertiesArgs

    Custom file properties

    groupName String

    Name of the resource group

    projectName String

    Name of the project

    serviceName String

    Name of the service

    fileName String

    Name of the File

    properties ProjectFileProperties

    Custom file properties

    groupName string

    Name of the resource group

    projectName string

    Name of the project

    serviceName string

    Name of the service

    fileName string

    Name of the File

    properties ProjectFileProperties

    Custom file properties

    group_name str

    Name of the resource group

    project_name str

    Name of the project

    service_name str

    Name of the service

    file_name str

    Name of the File

    properties ProjectFilePropertiesArgs

    Custom file properties

    groupName String

    Name of the resource group

    projectName String

    Name of the project

    serviceName String

    Name of the service

    fileName String

    Name of the File

    properties Property Map

    Custom file properties

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Resource name.

    SystemData Pulumi.AzureNative.DataMigration.Outputs.SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    Type string

    Resource type.

    Etag string

    HTTP strong entity tag value. This is ignored if submitted.

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Resource name.

    SystemData SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    Type string

    Resource type.

    Etag string

    HTTP strong entity tag value. This is ignored if submitted.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Resource name.

    systemData SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    type String

    Resource type.

    etag String

    HTTP strong entity tag value. This is ignored if submitted.

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    Resource name.

    systemData SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    type string

    Resource type.

    etag string

    HTTP strong entity tag value. This is ignored if submitted.

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    Resource name.

    system_data SystemDataResponse

    Metadata pertaining to creation and last modification of the resource.

    type str

    Resource type.

    etag str

    HTTP strong entity tag value. This is ignored if submitted.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Resource name.

    systemData Property Map

    Metadata pertaining to creation and last modification of the resource.

    type String

    Resource type.

    etag String

    HTTP strong entity tag value. This is ignored if submitted.

    Supporting Types

    ProjectFileProperties, ProjectFilePropertiesArgs

    Extension string

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    FilePath string

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    MediaType string

    File content type. This property can be modified to reflect the file content type.

    Extension string

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    FilePath string

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    MediaType string

    File content type. This property can be modified to reflect the file content type.

    extension String

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    filePath String

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    mediaType String

    File content type. This property can be modified to reflect the file content type.

    extension string

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    filePath string

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    mediaType string

    File content type. This property can be modified to reflect the file content type.

    extension str

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    file_path str

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    media_type str

    File content type. This property can be modified to reflect the file content type.

    extension String

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    filePath String

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    mediaType String

    File content type. This property can be modified to reflect the file content type.

    ProjectFilePropertiesResponse, ProjectFilePropertiesResponseArgs

    LastModified string

    Modification DateTime.

    Size double

    File size.

    Extension string

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    FilePath string

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    MediaType string

    File content type. This property can be modified to reflect the file content type.

    LastModified string

    Modification DateTime.

    Size float64

    File size.

    Extension string

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    FilePath string

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    MediaType string

    File content type. This property can be modified to reflect the file content type.

    lastModified String

    Modification DateTime.

    size Double

    File size.

    extension String

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    filePath String

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    mediaType String

    File content type. This property can be modified to reflect the file content type.

    lastModified string

    Modification DateTime.

    size number

    File size.

    extension string

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    filePath string

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    mediaType string

    File content type. This property can be modified to reflect the file content type.

    last_modified str

    Modification DateTime.

    size float

    File size.

    extension str

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    file_path str

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    media_type str

    File content type. This property can be modified to reflect the file content type.

    lastModified String

    Modification DateTime.

    size Number

    File size.

    extension String

    Optional File extension. If submitted it should not have a leading period and must match the extension from filePath.

    filePath String

    Relative path of this file resource. This property can be set when creating or updating the file resource.

    mediaType String

    File content type. This property can be modified to reflect the file content type.

    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:datamigration:File x114d023d8 /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}/files/{fileName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.21.0 published on Tuesday, Dec 5, 2023 by Pulumi