Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PsModuleName>DataMigration</PsModuleName>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)..\..\Az.props" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Microsoft.Azure.PowerShell.DataMigration.Management.Sdk</AssemblyName>
<RootNamespace>Microsoft.Azure.Management.DataMigration</RootNamespace>
<NoWarn>$(NoWarn);CS0108;CS1573</NoWarn>
</PropertyGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., build.proj))\src\Az.Post.props" />
</Project>

Large diffs are not rendered by default.

1,837 changes: 1,837 additions & 0 deletions src/DataMigration/DataMigration.Management.Sdk/Generated/FilesOperations.cs

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.

namespace Microsoft.Azure.Management.DataMigration
{
using Microsoft.Rest;
using Microsoft.Rest.Azure;
using Models;

/// <summary>
/// Data Migration Client
/// </summary>
public partial interface IDataMigrationServiceClient : System.IDisposable
{
/// <summary>
/// The base URI of the service.
/// </summary>
System.Uri BaseUri { get; set; }

/// <summary>
/// Gets or sets json serialization settings.
/// </summary>
Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; }

/// <summary>
/// Gets or sets json deserialization settings.
/// </summary>
Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; }

/// <summary>
/// Credentials needed for the client to connect to Azure.
/// </summary>
Microsoft.Rest.ServiceClientCredentials Credentials { get;}


/// <summary>
/// The API version to use for this operation.
/// </summary>
string ApiVersion { get;}


/// <summary>
/// Identifier of the subscription
/// </summary>
string SubscriptionId { get; set;}


/// <summary>
/// The preferred language for the response.
/// </summary>
string AcceptLanguage { get; set;}


/// <summary>
/// The retry timeout in seconds for Long Running Operations. Default
/// /// value is 30.
/// </summary>
int? LongRunningOperationRetryTimeout { get; set;}


/// <summary>
/// Whether a unique x-ms-client-request-id should be generated. When
/// /// set to true a unique x-ms-client-request-id value is generated and
/// /// included in each request. Default is true.
/// </summary>
bool? GenerateClientRequestId { get; set;}


/// <summary>
/// Gets the IResourceSkusOperations
/// </summary>
IResourceSkusOperations ResourceSkus { get; }

/// <summary>
/// Gets the IServicesOperations
/// </summary>
IServicesOperations Services { get; }

/// <summary>
/// Gets the ITasksOperations
/// </summary>
ITasksOperations Tasks { get; }

/// <summary>
/// Gets the IProjectsOperations
/// </summary>
IProjectsOperations Projects { get; }

/// <summary>
/// Gets the IUsagesOperations
/// </summary>
IUsagesOperations Usages { get; }

/// <summary>
/// Gets the IOperations
/// </summary>
IOperations Operations { get; }

/// <summary>
/// Gets the IFilesOperations
/// </summary>
IFilesOperations Files { get; }

}
}
Loading