Merge pull request #3 from krabhishek8260/generateclientwithauth

Generated Client with Auth code
This commit is contained in:
Brendan Burns
2017-06-16 22:21:49 -07:00
committed by GitHub
330 changed files with 5158 additions and 332 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.vscode .vscode
.vs
obj/ obj/
bin/ bin/

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.
@@ -31,6 +31,12 @@ namespace k8s
/// </summary> /// </summary>
JsonSerializerSettings DeserializationSettings { get; } JsonSerializerSettings DeserializationSettings { get; }
/// <summary>
/// Subscription credentials which uniquely identify client
/// subscription.
/// </summary>
ServiceClientCredentials Credentials { get; }
/// <summary> /// <summary>
/// get available API versions /// get available API versions
@@ -13771,5 +13777,144 @@ namespace k8s
/// </param> /// </param>
Task<HttpOperationResponse<VersionInfo>> GetCodeWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); Task<HttpOperationResponse<VersionInfo>> GetCodeWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets Resources
/// </summary>
/// <remarks>
/// Returns a list of Resources
/// </remarks>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='watch'>
/// Watch for changes to the described resources and return them as a
/// stream of add, update, and remove notifications. Specify
/// resourceVersion.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
Task<HttpOperationResponse<object>> ListThirdPartyResource1WithHttpMessagesAsync(string fqdn, string resource, bool? watch = default(bool?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Update a Resource
/// </summary>
/// <remarks>
/// Update the specified third party resource of the type specified
/// </remarks>
/// <param name='namespaceParameter'>
/// The Resource's namespace
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='body'>
/// The JSON schema of the Resource to create.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
Task<HttpOperationResponse<object>> UpdateThirdPartyResourceWithHttpMessagesAsync(string namespaceParameter, string fqdn, string resource, object body, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a specific Resource
/// </summary>
/// <remarks>
/// Deletes the specified Resource in the specified namespace
/// </remarks>
/// <param name='body'>
/// </param>
/// <param name='gracePeriodSeconds'>
/// The duration in seconds before the object should be deleted. Value
/// must be non-negative integer. The value zero indicates delete
/// immediately. If this value is nil, the default grace period for the
/// specified type will be used. Defaults to a per object value if not
/// specified. zero means delete immediately.
/// </param>
/// <param name='orphanDependents'>
/// Deprecated: please use the PropagationPolicy, this field will be
/// deprecated in 1.7. Should the dependent objects be orphaned. If
/// true/false, the "orphan" finalizer will be added to/removed from
/// the object's finalizers list. Either this field or
/// PropagationPolicy may be set, but not both.
/// </param>
/// <param name='propagationPolicy'>
/// Whether and how garbage collection will be performed. Either this
/// field or OrphanDependents may be set, but not both. The default
/// policy is decided by the existing finalizer set in the
/// metadata.finalizers and the resource-specific default policy.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
Task<HttpOperationResponse<object>> DeleteThirdPartyResource1WithHttpMessagesAsync(V1DeleteOptions body, int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a specific Resource
/// </summary>
/// <remarks>
/// Returns a specific Resource in a namespace
/// </remarks>
/// <param name='namespaceParameter'>
/// The Resource's namespace
/// </param>
/// <param name='name'>
/// The Resource's name
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
Task<HttpOperationResponse<object>> GetThirdPartyResourceWithHttpMessagesAsync(string namespaceParameter, string name, string fqdn, string resource, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Create a Resource
/// </summary>
/// <remarks>
/// Creates a third party resource of the type specified
/// </remarks>
/// <param name='namespaceParameter'>
/// The Resource's namespace
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='body'>
/// The JSON schema of the Resource to create.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
Task<HttpOperationResponse<object>> CreateThirdPartyResource1WithHttpMessagesAsync(string namespaceParameter, string fqdn, string resource, object body, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken));
} }
} }

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.
@@ -30077,5 +30077,309 @@ namespace k8s
} }
} }
/// <summary>
/// Gets Resources
/// </summary>
/// <remarks>
/// Returns a list of Resources
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='watch'>
/// Watch for changes to the described resources and return them as a stream of
/// add, update, and remove notifications. Specify resourceVersion.
/// </param>
public static object ListThirdPartyResource1(this IKubernetes operations, string fqdn, string resource, bool? watch = default(bool?))
{
return operations.ListThirdPartyResource1Async(fqdn, resource, watch).GetAwaiter().GetResult();
}
/// <summary>
/// Gets Resources
/// </summary>
/// <remarks>
/// Returns a list of Resources
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='watch'>
/// Watch for changes to the described resources and return them as a stream of
/// add, update, and remove notifications. Specify resourceVersion.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
public static async Task<object> ListThirdPartyResource1Async(this IKubernetes operations, string fqdn, string resource, bool? watch = default(bool?), CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.ListThirdPartyResource1WithHttpMessagesAsync(fqdn, resource, watch, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
/// <summary>
/// Update a Resource
/// </summary>
/// <remarks>
/// Update the specified third party resource of the type specified
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='namespaceParameter'>
/// The Resource's namespace
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='body'>
/// The JSON schema of the Resource to create.
/// </param>
public static object UpdateThirdPartyResource(this IKubernetes operations, string namespaceParameter, string fqdn, string resource, object body)
{
return operations.UpdateThirdPartyResourceAsync(namespaceParameter, fqdn, resource, body).GetAwaiter().GetResult();
}
/// <summary>
/// Update a Resource
/// </summary>
/// <remarks>
/// Update the specified third party resource of the type specified
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='namespaceParameter'>
/// The Resource's namespace
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='body'>
/// The JSON schema of the Resource to create.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
public static async Task<object> UpdateThirdPartyResourceAsync(this IKubernetes operations, string namespaceParameter, string fqdn, string resource, object body, CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.UpdateThirdPartyResourceWithHttpMessagesAsync(namespaceParameter, fqdn, resource, body, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
/// <summary>
/// Deletes a specific Resource
/// </summary>
/// <remarks>
/// Deletes the specified Resource in the specified namespace
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='body'>
/// </param>
/// <param name='gracePeriodSeconds'>
/// The duration in seconds before the object should be deleted. Value must be
/// non-negative integer. The value zero indicates delete immediately. If this
/// value is nil, the default grace period for the specified type will be used.
/// Defaults to a per object value if not specified. zero means delete
/// immediately.
/// </param>
/// <param name='orphanDependents'>
/// Deprecated: please use the PropagationPolicy, this field will be deprecated
/// in 1.7. Should the dependent objects be orphaned. If true/false, the
/// "orphan" finalizer will be added to/removed from the object's finalizers
/// list. Either this field or PropagationPolicy may be set, but not both.
/// </param>
/// <param name='propagationPolicy'>
/// Whether and how garbage collection will be performed. Either this field or
/// OrphanDependents may be set, but not both. The default policy is decided by
/// the existing finalizer set in the metadata.finalizers and the
/// resource-specific default policy.
/// </param>
public static object DeleteThirdPartyResource1(this IKubernetes operations, V1DeleteOptions body, int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string))
{
return operations.DeleteThirdPartyResource1Async(body, gracePeriodSeconds, orphanDependents, propagationPolicy).GetAwaiter().GetResult();
}
/// <summary>
/// Deletes a specific Resource
/// </summary>
/// <remarks>
/// Deletes the specified Resource in the specified namespace
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='body'>
/// </param>
/// <param name='gracePeriodSeconds'>
/// The duration in seconds before the object should be deleted. Value must be
/// non-negative integer. The value zero indicates delete immediately. If this
/// value is nil, the default grace period for the specified type will be used.
/// Defaults to a per object value if not specified. zero means delete
/// immediately.
/// </param>
/// <param name='orphanDependents'>
/// Deprecated: please use the PropagationPolicy, this field will be deprecated
/// in 1.7. Should the dependent objects be orphaned. If true/false, the
/// "orphan" finalizer will be added to/removed from the object's finalizers
/// list. Either this field or PropagationPolicy may be set, but not both.
/// </param>
/// <param name='propagationPolicy'>
/// Whether and how garbage collection will be performed. Either this field or
/// OrphanDependents may be set, but not both. The default policy is decided by
/// the existing finalizer set in the metadata.finalizers and the
/// resource-specific default policy.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
public static async Task<object> DeleteThirdPartyResource1Async(this IKubernetes operations, V1DeleteOptions body, int? gracePeriodSeconds = default(int?), bool? orphanDependents = default(bool?), string propagationPolicy = default(string), CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.DeleteThirdPartyResource1WithHttpMessagesAsync(body, gracePeriodSeconds, orphanDependents, propagationPolicy, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
/// <summary>
/// Gets a specific Resource
/// </summary>
/// <remarks>
/// Returns a specific Resource in a namespace
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='namespaceParameter'>
/// The Resource's namespace
/// </param>
/// <param name='name'>
/// The Resource's name
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
public static object GetThirdPartyResource(this IKubernetes operations, string namespaceParameter, string name, string fqdn, string resource)
{
return operations.GetThirdPartyResourceAsync(namespaceParameter, name, fqdn, resource).GetAwaiter().GetResult();
}
/// <summary>
/// Gets a specific Resource
/// </summary>
/// <remarks>
/// Returns a specific Resource in a namespace
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='namespaceParameter'>
/// The Resource's namespace
/// </param>
/// <param name='name'>
/// The Resource's name
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
public static async Task<object> GetThirdPartyResourceAsync(this IKubernetes operations, string namespaceParameter, string name, string fqdn, string resource, CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.GetThirdPartyResourceWithHttpMessagesAsync(namespaceParameter, name, fqdn, resource, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
/// <summary>
/// Create a Resource
/// </summary>
/// <remarks>
/// Creates a third party resource of the type specified
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='namespaceParameter'>
/// The Resource's namespace
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='body'>
/// The JSON schema of the Resource to create.
/// </param>
public static object CreateThirdPartyResource1(this IKubernetes operations, string namespaceParameter, string fqdn, string resource, object body)
{
return operations.CreateThirdPartyResource1Async(namespaceParameter, fqdn, resource, body).GetAwaiter().GetResult();
}
/// <summary>
/// Create a Resource
/// </summary>
/// <remarks>
/// Creates a third party resource of the type specified
/// </remarks>
/// <param name='operations'>
/// The operations group for this extension method.
/// </param>
/// <param name='namespaceParameter'>
/// The Resource's namespace
/// </param>
/// <param name='fqdn'>
/// The Third party Resource fqdn
/// </param>
/// <param name='resource'>
/// The Resource type
/// </param>
/// <param name='body'>
/// The JSON schema of the Resource to create.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
public static async Task<object> CreateThirdPartyResource1Async(this IKubernetes operations, string namespaceParameter, string fqdn, string resource, object body, CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.CreateThirdPartyResource1WithHttpMessagesAsync(namespaceParameter, fqdn, resource, body, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
} }
} }

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

View File

@@ -1,4 +1,4 @@
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0 // Code generated by Microsoft (R) AutoRest Code Generator 1.1.0.0
// Changes may cause incorrect behavior and will be lost if the code is // Changes may cause incorrect behavior and will be lost if the code is
// regenerated. // regenerated.

Some files were not shown because too many files have changed in this diff Show More