Skip to content

Commit 4d19b01

Browse files
authored
[DataMigration] Remove DataMigration 0.7.0-preview dependencies on released track 1 SDK and add Microsoft.Azure.PowerShell.DataMigration.Management.Sdk (#26081)
* Add DataMigration.Management.Sdk generated by autopowershell, remove Microsoft.Azure.Management.DataMigration 0.7.0 preview * use date time offset * fix parent additional properties type from string to object * DataMigration changelog * DataMigration changelog * revert Generated change and record with new parameter order * test secret hide
1 parent fb6e430 commit 4d19b01

File tree

317 files changed

+35425
-322
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

317 files changed

+35425
-322
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<PsModuleName>DataMigration</PsModuleName>
4+
</PropertyGroup>
5+
<Import Project="$(MSBuildThisFileDirectory)..\..\Az.props" />
6+
<PropertyGroup>
7+
<TargetFramework>netstandard2.0</TargetFramework>
8+
<AssemblyName>Microsoft.Azure.PowerShell.DataMigration.Management.Sdk</AssemblyName>
9+
<RootNamespace>Microsoft.Azure.Management.DataMigration</RootNamespace>
10+
<NoWarn>$(NoWarn);CS0108;CS1573</NoWarn>
11+
</PropertyGroup>
12+
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., build.proj))\src\Az.Post.props" />
13+
</Project>

src/DataMigration/DataMigration.Management.Sdk/Generated/DataMigrationServiceClient.cs

Lines changed: 393 additions & 0 deletions
Large diffs are not rendered by default.

src/DataMigration/DataMigration.Management.Sdk/Generated/FilesOperations.cs

Lines changed: 1837 additions & 0 deletions
Large diffs are not rendered by default.

src/DataMigration/DataMigration.Management.Sdk/Generated/FilesOperationsExtensions.cs

Lines changed: 409 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License. See License.txt in the project root for license information.
3+
// Code generated by Microsoft (R) AutoRest Code Generator.
4+
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
5+
6+
namespace Microsoft.Azure.Management.DataMigration
7+
{
8+
using Microsoft.Rest;
9+
using Microsoft.Rest.Azure;
10+
using Models;
11+
12+
/// <summary>
13+
/// Data Migration Client
14+
/// </summary>
15+
public partial interface IDataMigrationServiceClient : System.IDisposable
16+
{
17+
/// <summary>
18+
/// The base URI of the service.
19+
/// </summary>
20+
System.Uri BaseUri { get; set; }
21+
22+
/// <summary>
23+
/// Gets or sets json serialization settings.
24+
/// </summary>
25+
Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; }
26+
27+
/// <summary>
28+
/// Gets or sets json deserialization settings.
29+
/// </summary>
30+
Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; }
31+
32+
/// <summary>
33+
/// Credentials needed for the client to connect to Azure.
34+
/// </summary>
35+
Microsoft.Rest.ServiceClientCredentials Credentials { get;}
36+
37+
38+
/// <summary>
39+
/// The API version to use for this operation.
40+
/// </summary>
41+
string ApiVersion { get;}
42+
43+
44+
/// <summary>
45+
/// Identifier of the subscription
46+
/// </summary>
47+
string SubscriptionId { get; set;}
48+
49+
50+
/// <summary>
51+
/// The preferred language for the response.
52+
/// </summary>
53+
string AcceptLanguage { get; set;}
54+
55+
56+
/// <summary>
57+
/// The retry timeout in seconds for Long Running Operations. Default
58+
/// /// value is 30.
59+
/// </summary>
60+
int? LongRunningOperationRetryTimeout { get; set;}
61+
62+
63+
/// <summary>
64+
/// Whether a unique x-ms-client-request-id should be generated. When
65+
/// /// set to true a unique x-ms-client-request-id value is generated and
66+
/// /// included in each request. Default is true.
67+
/// </summary>
68+
bool? GenerateClientRequestId { get; set;}
69+
70+
71+
/// <summary>
72+
/// Gets the IResourceSkusOperations
73+
/// </summary>
74+
IResourceSkusOperations ResourceSkus { get; }
75+
76+
/// <summary>
77+
/// Gets the IServicesOperations
78+
/// </summary>
79+
IServicesOperations Services { get; }
80+
81+
/// <summary>
82+
/// Gets the ITasksOperations
83+
/// </summary>
84+
ITasksOperations Tasks { get; }
85+
86+
/// <summary>
87+
/// Gets the IProjectsOperations
88+
/// </summary>
89+
IProjectsOperations Projects { get; }
90+
91+
/// <summary>
92+
/// Gets the IUsagesOperations
93+
/// </summary>
94+
IUsagesOperations Usages { get; }
95+
96+
/// <summary>
97+
/// Gets the IOperations
98+
/// </summary>
99+
IOperations Operations { get; }
100+
101+
/// <summary>
102+
/// Gets the IFilesOperations
103+
/// </summary>
104+
IFilesOperations Files { get; }
105+
106+
}
107+
}

0 commit comments

Comments
 (0)