Last active
June 4, 2018 18:58
-
-
Save fearthecowboy/049bc3d666364eb4c7c0288866821c00 to your computer and use it in GitHub Desktop.
Work-in-progress - generated API for OpenAPI/Swagger file (see notes at bottom!!! https://gist.github.com/fearthecowboy/049bc3d666364eb4c7c0288866821c00#gistcomment-2609915)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Sample.API | |
{ | |
using static Microsoft.Rest.ClientRuntime.IEventListenerExtensions; | |
public class ContainerRegistryManagementClient | |
{ | |
public Microsoft.Rest.ClientRuntime.ISendAsync Sender { get; set; } | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task OperationsList(string apiVersion, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IOperationListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//providers/Microsoft.ContainerRegistry/operations?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Get, _url); | |
// make the call | |
await this.OperationsList_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task OperationsList_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IOperationListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IOperationListResult>(async () => Sample.API.Models.OperationListResult.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task OperationsList_Validate(string apiVersion, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="body"> The object containing information for the availability request. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesCheckNameAvailability(string apiVersion, string subscriptionId, Sample.API.Models.IRegistryNameCheckRequest body, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryNameStatus> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Post, _url); | |
// set body content | |
request.Content = new System.Net.Http.StringContent( null != body ? body.ToJson(null) : "{}", System.Text.Encoding.UTF8); | |
request.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); | |
// make the call | |
await this.RegistriesCheckNameAvailability_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesCheckNameAvailability_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryNameStatus> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistryNameStatus>(async () => Sample.API.Models.RegistryNameStatus.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="body"> The object containing information for the availability request. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesCheckNameAvailability_Validate(string apiVersion, string subscriptionId, Sample.API.Models.IRegistryNameCheckRequest body, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(body), body); | |
await listener.AssertObjectIsValid(nameof(body), body); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="body"> The parameters for creating a container registry. </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesCreate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Sample.API.Models.IRegistry body, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Put, _url); | |
// set body content | |
request.Content = new System.Net.Http.StringContent( null != body ? body.ToJson(null) : "{}", System.Text.Encoding.UTF8); | |
request.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); | |
// make the call | |
await this.RegistriesCreate_Call(request,on200,on201,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesCreate_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistry>(async () => Sample.API.Models.Registry.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)201: | |
await on201( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistry>(async () => Sample.API.Models.Registry.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="body"> The parameters for creating a container registry. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesCreate_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Sample.API.Models.IRegistry body, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(body), body); | |
await listener.AssertObjectIsValid(nameof(body), body); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="on200"> </param> | |
/// <param name="on202"> </param> | |
/// <param name="on204"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesDelete(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.OnResponse on200, Microsoft.Rest.ClientRuntime.OnResponse on202, Microsoft.Rest.ClientRuntime.OnResponse on204, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Delete, _url); | |
// make the call | |
await this.RegistriesDelete_Call(request,on200,on202,on204,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="on202"> </param> | |
/// <param name="on204"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesDelete_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse on200, Microsoft.Rest.ClientRuntime.OnResponse on202, Microsoft.Rest.ClientRuntime.OnResponse on204, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200(new Microsoft.Rest.ClientRuntime.Response(){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)202: | |
await on202(new Microsoft.Rest.ClientRuntime.Response(){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)204: | |
await on204(new Microsoft.Rest.ClientRuntime.Response(){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesDelete_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesGet(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Get, _url); | |
// make the call | |
await this.RegistriesGet_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesGet_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistry>(async () => Sample.API.Models.Registry.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesGet_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesList(string apiVersion, string subscriptionId, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/providers/Microsoft.ContainerRegistry/registries?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Get, _url); | |
// make the call | |
await this.RegistriesList_Call(request,on200,listener,sender); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesListByResourceGroup(string apiVersion, string subscriptionId, string resourceGroupName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Get, _url); | |
// make the call | |
await this.RegistriesListByResourceGroup_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesListByResourceGroup_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistryListResult>(async () => Sample.API.Models.RegistryListResult.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesListByResourceGroup_Validate(string apiVersion, string subscriptionId, string resourceGroupName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesListCredentials(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryListCredentialsResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/listCredentials?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Post, _url); | |
// make the call | |
await this.RegistriesListCredentials_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesListCredentials_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryListCredentialsResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistryListCredentialsResult>(async () => Sample.API.Models.RegistryListCredentialsResult.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesListCredentials_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesListUsages(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryUsageListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/listUsages?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Get, _url); | |
// make the call | |
await this.RegistriesListUsages_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesListUsages_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryUsageListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistryUsageListResult>(async () => Sample.API.Models.RegistryUsageListResult.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesListUsages_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesList_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistryListResult>(async () => Sample.API.Models.RegistryListResult.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesList_Validate(string apiVersion, string subscriptionId, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="body"> Specifies name of the password which should be regenerated -- password or password2. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesRegenerateCredential(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Sample.API.Models.IRegenerateCredentialParameters body, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryListCredentialsResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/regenerateCredential?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Post, _url); | |
// set body content | |
request.Content = new System.Net.Http.StringContent( null != body ? body.ToJson(null) : "{}", System.Text.Encoding.UTF8); | |
request.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); | |
// make the call | |
await this.RegistriesRegenerateCredential_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesRegenerateCredential_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistryListCredentialsResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistryListCredentialsResult>(async () => Sample.API.Models.RegistryListCredentialsResult.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="body"> Specifies name of the password which should be regenerated -- password or password2. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesRegenerateCredential_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Sample.API.Models.IRegenerateCredentialParameters body, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(body), body); | |
await listener.AssertObjectIsValid(nameof(body), body); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="body"> The parameters for updating a container registry. </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task RegistriesUpdate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Sample.API.Models.IRegistryUpdateParameters body, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Patch, _url); | |
// set body content | |
request.Content = new System.Net.Http.StringContent( null != body ? body.ToJson(null) : "{}", System.Text.Encoding.UTF8); | |
request.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); | |
// make the call | |
await this.RegistriesUpdate_Call(request,on200,on201,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task RegistriesUpdate_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IRegistry> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistry>(async () => Sample.API.Models.Registry.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)201: | |
await on201( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IRegistry>(async () => Sample.API.Models.Registry.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="body"> The parameters for updating a container registry. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task RegistriesUpdate_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Sample.API.Models.IRegistryUpdateParameters body, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(body), body); | |
await listener.AssertObjectIsValid(nameof(body), body); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="replicationName"> The name of the replication. </param> | |
/// <param name="body"> The parameters for creating a replication. </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task ReplicationsCreate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string replicationName, Sample.API.Models.IReplication body, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/replications/{System.Uri.EscapeDataString(replicationName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Put, _url); | |
// set body content | |
request.Content = new System.Net.Http.StringContent( null != body ? body.ToJson(null) : "{}", System.Text.Encoding.UTF8); | |
request.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); | |
// make the call | |
await this.ReplicationsCreate_Call(request,on200,on201,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsCreate_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IReplication>(async () => Sample.API.Models.Replication.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)201: | |
await on201( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IReplication>(async () => Sample.API.Models.Replication.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="replicationName"> The name of the replication. </param> | |
/// <param name="body"> The parameters for creating a replication. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsCreate_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string replicationName, Sample.API.Models.IReplication body, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(replicationName),replicationName); | |
await listener.AssertMinimumLength(nameof(replicationName),replicationName,5); | |
await listener.AssertMaximumLength(nameof(replicationName),replicationName,5); | |
await listener.AssertRegEx(nameof(replicationName),replicationName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(body), body); | |
await listener.AssertObjectIsValid(nameof(body), body); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="replicationName"> The name of the replication. </param> | |
/// <param name="on200"> </param> | |
/// <param name="on202"> </param> | |
/// <param name="on204"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task ReplicationsDelete(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string replicationName, Microsoft.Rest.ClientRuntime.OnResponse on200, Microsoft.Rest.ClientRuntime.OnResponse on202, Microsoft.Rest.ClientRuntime.OnResponse on204, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/replications/{System.Uri.EscapeDataString(replicationName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Delete, _url); | |
// make the call | |
await this.ReplicationsDelete_Call(request,on200,on202,on204,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="on202"> </param> | |
/// <param name="on204"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsDelete_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse on200, Microsoft.Rest.ClientRuntime.OnResponse on202, Microsoft.Rest.ClientRuntime.OnResponse on204, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200(new Microsoft.Rest.ClientRuntime.Response(){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)202: | |
await on202(new Microsoft.Rest.ClientRuntime.Response(){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)204: | |
await on204(new Microsoft.Rest.ClientRuntime.Response(){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="replicationName"> The name of the replication. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsDelete_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string replicationName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(replicationName),replicationName); | |
await listener.AssertMinimumLength(nameof(replicationName),replicationName,5); | |
await listener.AssertMaximumLength(nameof(replicationName),replicationName,5); | |
await listener.AssertRegEx(nameof(replicationName),replicationName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="replicationName"> The name of the replication. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task ReplicationsGet(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string replicationName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/replications/{System.Uri.EscapeDataString(replicationName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Get, _url); | |
// make the call | |
await this.ReplicationsGet_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsGet_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IReplication>(async () => Sample.API.Models.Replication.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="replicationName"> The name of the replication. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsGet_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string replicationName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(replicationName),replicationName); | |
await listener.AssertMinimumLength(nameof(replicationName),replicationName,5); | |
await listener.AssertMaximumLength(nameof(replicationName),replicationName,5); | |
await listener.AssertRegEx(nameof(replicationName),replicationName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task ReplicationsList(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplicationListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/replications?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Get, _url); | |
// make the call | |
await this.ReplicationsList_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsList_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplicationListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IReplicationListResult>(async () => Sample.API.Models.ReplicationListResult.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsList_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="replicationName"> The name of the replication. </param> | |
/// <param name="body"> The parameters for updating a replication. </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task ReplicationsUpdate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string replicationName, Sample.API.Models.IReplicationUpdateParameters body, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/replications/{System.Uri.EscapeDataString(replicationName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Patch, _url); | |
// set body content | |
request.Content = new System.Net.Http.StringContent( null != body ? body.ToJson(null) : "{}", System.Text.Encoding.UTF8); | |
request.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); | |
// make the call | |
await this.ReplicationsUpdate_Call(request,on200,on201,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsUpdate_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IReplication> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IReplication>(async () => Sample.API.Models.Replication.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)201: | |
await on201( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IReplication>(async () => Sample.API.Models.Replication.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="replicationName"> The name of the replication. </param> | |
/// <param name="body"> The parameters for updating a replication. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task ReplicationsUpdate_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string replicationName, Sample.API.Models.IReplicationUpdateParameters body, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(replicationName),replicationName); | |
await listener.AssertMinimumLength(nameof(replicationName),replicationName,5); | |
await listener.AssertMaximumLength(nameof(replicationName),replicationName,5); | |
await listener.AssertRegEx(nameof(replicationName),replicationName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(body), body); | |
await listener.AssertObjectIsValid(nameof(body), body); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="body"> The parameters for creating a webhook. </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task WebhooksCreate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Sample.API.Models.IWebhookCreateParameters body, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/webhooks/{System.Uri.EscapeDataString(webhookName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Put, _url); | |
// set body content | |
request.Content = new System.Net.Http.StringContent( null != body ? body.ToJson(null) : "{}", System.Text.Encoding.UTF8); | |
request.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); | |
// make the call | |
await this.WebhooksCreate_Call(request,on200,on201,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task WebhooksCreate_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IWebhook>(async () => Sample.API.Models.Webhook.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)201: | |
await on201( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IWebhook>(async () => Sample.API.Models.Webhook.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="body"> The parameters for creating a webhook. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task WebhooksCreate_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Sample.API.Models.IWebhookCreateParameters body, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(webhookName),webhookName); | |
await listener.AssertMinimumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertMaximumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertRegEx(nameof(webhookName),webhookName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(body), body); | |
await listener.AssertObjectIsValid(nameof(body), body); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="on200"> </param> | |
/// <param name="on202"> </param> | |
/// <param name="on204"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task WebhooksDelete(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.OnResponse on200, Microsoft.Rest.ClientRuntime.OnResponse on202, Microsoft.Rest.ClientRuntime.OnResponse on204, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/webhooks/{System.Uri.EscapeDataString(webhookName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Delete, _url); | |
// make the call | |
await this.WebhooksDelete_Call(request,on200,on202,on204,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="on202"> </param> | |
/// <param name="on204"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task WebhooksDelete_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse on200, Microsoft.Rest.ClientRuntime.OnResponse on202, Microsoft.Rest.ClientRuntime.OnResponse on204, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200(new Microsoft.Rest.ClientRuntime.Response(){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)202: | |
await on202(new Microsoft.Rest.ClientRuntime.Response(){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)204: | |
await on204(new Microsoft.Rest.ClientRuntime.Response(){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task WebhooksDelete_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(webhookName),webhookName); | |
await listener.AssertMinimumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertMaximumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertRegEx(nameof(webhookName),webhookName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task WebhooksGet(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/webhooks/{System.Uri.EscapeDataString(webhookName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Get, _url); | |
// make the call | |
await this.WebhooksGet_Call(request,on200,listener,sender); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task WebhooksGetCallbackConfig(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.ICallbackConfig> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/webhooks/{System.Uri.EscapeDataString(webhookName)}/getCallbackConfig?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Post, _url); | |
// make the call | |
await this.WebhooksGetCallbackConfig_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task WebhooksGetCallbackConfig_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.ICallbackConfig> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.ICallbackConfig>(async () => Sample.API.Models.CallbackConfig.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task WebhooksGetCallbackConfig_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(webhookName),webhookName); | |
await listener.AssertMinimumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertMaximumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertRegEx(nameof(webhookName),webhookName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task WebhooksGet_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IWebhook>(async () => Sample.API.Models.Webhook.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task WebhooksGet_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(webhookName),webhookName); | |
await listener.AssertMinimumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertMaximumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertRegEx(nameof(webhookName),webhookName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task WebhooksList(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhookListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/webhooks?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Get, _url); | |
// make the call | |
await this.WebhooksList_Call(request,on200,listener,sender); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task WebhooksListEvents(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IEventListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/webhooks/{System.Uri.EscapeDataString(webhookName)}/listEvents?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Post, _url); | |
// make the call | |
await this.WebhooksListEvents_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task WebhooksListEvents_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IEventListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IEventListResult>(async () => Sample.API.Models.EventListResult.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task WebhooksListEvents_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(webhookName),webhookName); | |
await listener.AssertMinimumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertMaximumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertRegEx(nameof(webhookName),webhookName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task WebhooksList_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhookListResult> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IWebhookListResult>(async () => Sample.API.Models.WebhookListResult.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task WebhooksList_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task WebhooksPing(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IEventInfo> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/webhooks/{System.Uri.EscapeDataString(webhookName)}/ping?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Post, _url); | |
// make the call | |
await this.WebhooksPing_Call(request,on200,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task WebhooksPing_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IEventInfo> on200, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IEventInfo>(async () => Sample.API.Models.EventInfo.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task WebhooksPing_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(webhookName),webhookName); | |
await listener.AssertMinimumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertMaximumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertRegEx(nameof(webhookName),webhookName,@"^[a-zA-Z0-9]*$"); | |
} | |
/// <summary>MISSING DESCRIPTION 05</summary> | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="body"> The parameters for updating a webhook. </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
public async System.Threading.Tasks.Task WebhooksUpdate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Sample.API.Models.IWebhookUpdateParameters body, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
// should we call validation? | |
// construct URL | |
var _url = $"https://management.azure.com//subscriptions/{System.Uri.EscapeDataString(subscriptionId)}/resourceGroups/{System.Uri.EscapeDataString(resourceGroupName)}/providers/Microsoft.ContainerRegistry/registries/{System.Uri.EscapeDataString(registryName)}/webhooks/{System.Uri.EscapeDataString(webhookName)}?api-version={System.Uri.EscapeDataString(apiVersion)}"; | |
// generate request object | |
var request = new System.Net.Http.HttpRequestMessage(Microsoft.Rest.ClientRuntime.Method.Patch, _url); | |
// set body content | |
request.Content = new System.Net.Http.StringContent( null != body ? body.ToJson(null) : "{}", System.Text.Encoding.UTF8); | |
request.Content.Headers.ContentType = System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); | |
// make the call | |
await this.WebhooksUpdate_Call(request,on200,on201,listener,sender); | |
} | |
/// <param name="request"> </param> | |
/// <param name="on200"> </param> | |
/// <param name="on201"> </param> | |
/// <param name="listener"> </param> | |
/// <param name="sender"> </param> | |
internal async System.Threading.Tasks.Task WebhooksUpdate_Call(System.Net.Http.HttpRequestMessage request, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on200, Microsoft.Rest.ClientRuntime.OnResponse<Sample.API.Models.IWebhook> on201, Microsoft.Rest.ClientRuntime.IEventListener listener, Microsoft.Rest.ClientRuntime.ISendAsync sender) | |
{ | |
using( request ) | |
{ | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.RequestCreated, request); | |
System.Net.Http.HttpResponseMessage _response = null; | |
try | |
{ | |
_response = await sender.SendAsync(request, listener); | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.ResponseCreated, _response); | |
var _contentType = (_response.Headers.TryGetValues("Content-Type", out var values) ? System.Linq.Enumerable.FirstOrDefault(values) : string.Empty).ToLowerInvariant(); | |
switch( _response.StatusCode ) | |
{ | |
case (System.Net.HttpStatusCode)200: | |
await on200( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IWebhook>(async () => Sample.API.Models.Webhook.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
case (System.Net.HttpStatusCode)201: | |
await on201( new Microsoft.Rest.ClientRuntime.Response<Sample.API.Models.IWebhook>(async () => Sample.API.Models.Webhook.FromJson(Carbon.Json.JsonNode.Parse( await _response.Content.ReadAsStringAsync() )) ){ requestMessage = request,responseMessage = _response }); | |
break; | |
default: | |
throw new Microsoft.Rest.ClientRuntime.UndeclaredResponseException(_response.StatusCode); | |
} | |
} | |
finally | |
{ | |
// finally statements | |
await listener.Signal(Microsoft.Rest.ClientRuntime.Events.Finally, request, _response); | |
_response?.Dispose(); | |
} | |
} | |
} | |
/// <param name="apiVersion"> The client API version. </param> | |
/// <param name="subscriptionId"> The Microsoft Azure subscription ID. </param> | |
/// <param name="resourceGroupName"> The name of the resource group to which the container registry belongs. </param> | |
/// <param name="registryName"> The name of the container registry. </param> | |
/// <param name="webhookName"> The name of the webhook. </param> | |
/// <param name="body"> The parameters for updating a webhook. </param> | |
/// <param name="listener"> </param> | |
internal async System.Threading.Tasks.Task WebhooksUpdate_Validate(string apiVersion, string subscriptionId, string resourceGroupName, string registryName, string webhookName, Sample.API.Models.IWebhookUpdateParameters body, Microsoft.Rest.ClientRuntime.IEventListener listener) | |
{ | |
await listener.AssertNotNull(nameof(apiVersion),apiVersion); | |
await listener.AssertNotNull(nameof(subscriptionId),subscriptionId); | |
await listener.AssertNotNull(nameof(resourceGroupName),resourceGroupName); | |
await listener.AssertNotNull(nameof(registryName),registryName); | |
await listener.AssertMinimumLength(nameof(registryName),registryName,5); | |
await listener.AssertMaximumLength(nameof(registryName),registryName,5); | |
await listener.AssertRegEx(nameof(registryName),registryName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(webhookName),webhookName); | |
await listener.AssertMinimumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertMaximumLength(nameof(webhookName),webhookName,5); | |
await listener.AssertRegEx(nameof(webhookName),webhookName,@"^[a-zA-Z0-9]*$"); | |
await listener.AssertNotNull(nameof(body), body); | |
await listener.AssertObjectIsValid(nameof(body), body); | |
} | |
} | |
} |
Example generated model class:
namespace Sample.API.Models
{
using static Microsoft.Rest.ClientRuntime.IEventListenerExtensions;
using Sample.API.Support;
public partial class WebhookPropertiesUpdateParameters : Sample.API.Models.IWebhookPropertiesUpdateParameters
{
/// <summary>Backing field for Actions property</summary>
private Sample.API.Support.WebhookAction[] _actions;
/// <summary>The list of actions that trigger the webhook to post notifications.</summary>
public Sample.API.Support.WebhookAction[] Actions { get { return this._actions; } set { this._actions = value; } }
/// <summary>Backing field for CustomHeaders property</summary>
private System.Collections.Generic.Dictionary<string,string> _customHeaders;
/// <summary>Custom headers that will be added to the webhook notifications.</summary>
public System.Collections.Generic.Dictionary<string,string> CustomHeaders { get { return this._customHeaders; } set { this._customHeaders = value; } }
/// <summary>Backing field for Scope property</summary>
private string _scope;
/// <summary>
/// The scope of repositories where the event can be triggered. For example, 'foo:*' means events for all tags under repository
/// 'foo'. 'foo:bar' means events for 'foo:bar' only. 'foo' is equivalent to 'foo:latest'. Empty means all events.
/// </summary>
public string Scope { get { return this._scope; } set { this._scope = value; } }
/// <summary>Backing field for ServiceUri property</summary>
private string _serviceUri;
/// <summary>The service URI for the webhook to post notifications.</summary>
public string ServiceUri { get { return this._serviceUri; } set { this._serviceUri = value; } }
/// <summary>Backing field for Status property</summary>
private Sample.API.Support.WebhookStatus _status;
/// <summary>The status of the webhook at the time the operation was called.</summary>
public Sample.API.Support.WebhookStatus Status { get { return this._status; } set { this._status = value; } }
/// <param name="json"> The JsonNode that should be deserialized into this object. </param>
partial void AfterFromJson(Carbon.Json.JsonObject json);
/// <param name="container"> The JSON container that the serialization result will be placed in. </param>
partial void AfterToJson(ref Carbon.Json.JsonObject container);
/// <param name="json"> The JsonNode that should be deserialized into this object. </param>
/// <param name="returnNow"> Determines if the rest of the deserialization should be processed, or if the method should return
/// instantly. </param>
partial void BeforeFromJson(Carbon.Json.JsonObject json, ref bool returnNow);
/// <param name="container"> The JSON container that the serialization result will be placed in. </param>
/// <param name="returnNow"> Determines if the rest of the serialization should be processed, or if the method should return
/// instantly. </param>
partial void BeforeToJson(ref Carbon.Json.JsonObject container, ref bool returnNow);
/// <param name="node"> </param>
public static Sample.API.Models.IWebhookPropertiesUpdateParameters FromJson(Carbon.Json.JsonNode node)
{
return node is Carbon.Json.JsonObject json ? new WebhookPropertiesUpdateParameters(json) : null;
}
/// <param name="container"> </param>
/// <param name="serializationMode"> </param>
public Carbon.Json.JsonNode ToJson(Carbon.Json.JsonObject container, Microsoft.Rest.ClientRuntime.JsonMode serializationMode)
{
var result = container ?? new Carbon.Json.JsonObject();
bool returnNow = false;
BeforeToJson(ref result, ref returnNow);
if(returnNow)
{
return result;
}
result.SafeAdd( "actions", Carbon.Json.XNodeArray.Create( Actions, __each=> Carbon.Json.JsonString.Create(__each)));
result.SafeAdd( "customHeaders", Carbon.Json.JsonObject.Create( CustomHeaders, __each=> Carbon.Json.JsonString.Create(__each)));
result.SafeAdd( "scope", Carbon.Json.JsonString.Create(Scope));
result.SafeAdd( "serviceUri", Carbon.Json.JsonString.Create(ServiceUri));
result.SafeAdd( "status", Carbon.Json.JsonString.Create(Status));
AfterToJson(ref result);
return result;
}
/// <param name="json"> </param>
internal WebhookPropertiesUpdateParameters(Carbon.Json.JsonObject json)
{
bool returnNow = false;
BeforeFromJson(json, ref returnNow);
if(returnNow)
{
return;
}
json.ArrayProperty("actions", ref this._actions, __each => __each is Carbon.Json.JsonString s ? s.Value : null );
json.DictionaryProperty("customHeaders", ref this._customHeaders, __each => __each is Carbon.Json.JsonString s ? s : null );
json.StringProperty("scope", ref this._scope);
json.StringProperty("serviceUri", ref this._serviceUri);
json.SafeAdd( "status", Carbon.Json.JsonString.Create(this._status));
AfterFromJson(json);
}
public WebhookPropertiesUpdateParameters()
{
}
}
public interface IWebhookPropertiesUpdateParameters : Microsoft.Rest.ClientRuntime.IJsonSerializable {
Sample.API.Support.WebhookAction[] Actions { get; set; }
System.Collections.Generic.Dictionary<string,string> CustomHeaders { get; set; }
string Scope { get; set; }
string ServiceUri { get; set; }
Sample.API.Support.WebhookStatus Status { get; set; }
}
}
Example generated PowerShell cmdlet implementation (this is the private implementation -- there is a facade generated on top of this) :
namespace Sample.API.Cmdlets
{
[System.Management.Automation.Cmdlet(System.Management.Automation.VerbsCommon.Get, @"RegistryUsage_UsagesApiVersionSubscriptionIdResourceGroupNameRegistryNameRegistriesListUsages")]
[System.Management.Automation.OutputType(typeof(Sample.API.Models.IRegistryUsage[]))]
public class GetRegistryUsage_UsagesApiVersionSubscriptionIdResourceGroupNameRegistryNameRegistriesListUsages : System.Management.Automation.PSCmdlet, Microsoft.Rest.ClientRuntime.IEventListener
{
private System.Threading.CancellationTokenSource _cancellationTokenSource = new System.Threading.CancellationTokenSource();
/// <summary>Backing field for ApiVersion property</summary>
private string _apiVersion;
[System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The client API version.")]
public string ApiVersion { get { return this._apiVersion; } set { this._apiVersion = value; } }
public System.Threading.CancellationToken CancellationToken => _cancellationTokenSource.Token;
public Sample.API.ContainerRegistryManagementClient Client => Sample.API.Module.Instance.ClientAPI;
[System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "SendAsync Pipeline Steps to be appended to the front of the pipeline")]
[System.Management.Automation.ValidateNotNull]
public Microsoft.Rest.ClientRuntime.SendAsyncStep[] HttpPipelineAppend { get; set; }
[System.Management.Automation.Parameter(Mandatory = false, HelpMessage = "SendAsync Pipeline Steps to be prepended to the front of the pipeline")]
[System.Management.Automation.ValidateNotNull]
public Microsoft.Rest.ClientRuntime.SendAsyncStep[] HttpPipelinePrepend { get; set; }
public Microsoft.Rest.ClientRuntime.HttpPipeline Pipeline => Sample.API.Module.Instance.Pipeline;
/// <summary>Backing field for RegistryName property</summary>
private string _registryName;
[System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the container registry.")]
public string RegistryName { get { return this._registryName; } set { this._registryName = value; } }
/// <summary>Backing field for ResourceGroupName property</summary>
private string _resourceGroupName;
[System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The name of the resource group to which the container registry belongs.")]
public string ResourceGroupName { get { return this._resourceGroupName; } set { this._resourceGroupName = value; } }
/// <summary>Backing field for SubscriptionId property</summary>
private string _subscriptionId;
[System.Management.Automation.Parameter(Mandatory = true, HelpMessage = "The Microsoft Azure subscription ID.")]
public string SubscriptionId { get { return this._subscriptionId; } set { this._subscriptionId = value; } }
public void Cancel()
{
_cancellationTokenSource.Cancel();
}
/// <param name="delay"> </param>
public void CancelAfter(System.TimeSpan delay)
{
_cancellationTokenSource.CancelAfter(delay);
}
/// <param name="millisecondDelay"> </param>
public void CancelAfter(int millisecondDelay)
{
_cancellationTokenSource.CancelAfter(millisecondDelay);
}
public Sample.API.Cmdlets.GetRegistryUsage_UsagesApiVersionSubscriptionIdResourceGroupNameRegistryNameRegistriesListUsages Clone()
{
var clone = FromJson(this.ToJson(null, Microsoft.Rest.ClientRuntime.JsonMode.IncludeAll));
clone.HttpPipelinePrepend = this.HttpPipelinePrepend;
clone.HttpPipelineAppend = this.HttpPipelineAppend;
return clone;
}
/// <param name="node"> </param>
public static Sample.API.Cmdlets.GetRegistryUsage_UsagesApiVersionSubscriptionIdResourceGroupNameRegistryNameRegistriesListUsages FromJson(Carbon.Json.JsonNode node)
{
return node is Carbon.Json.JsonObject json ? new GetRegistryUsage_UsagesApiVersionSubscriptionIdResourceGroupNameRegistryNameRegistriesListUsages(json) : null;
}
/// <param name="jsonText"> </param>
public static Sample.API.Cmdlets.GetRegistryUsage_UsagesApiVersionSubscriptionIdResourceGroupNameRegistryNameRegistriesListUsages FromJsonString(string jsonText) => string.IsNullOrEmpty(jsonText) ? null : FromJson(Carbon.Json.JsonObject.Parse(jsonText));
public GetRegistryUsage_UsagesApiVersionSubscriptionIdResourceGroupNameRegistryNameRegistriesListUsages()
{
}
/// <param name="json"> </param>
internal GetRegistryUsage_UsagesApiVersionSubscriptionIdResourceGroupNameRegistryNameRegistriesListUsages(Carbon.Json.JsonObject json)
{
// deserialize the contents
json.StringProperty("ApiVersion", ref _apiVersion);
json.StringProperty("SubscriptionId", ref _subscriptionId);
json.StringProperty("ResourceGroupName", ref _resourceGroupName);
json.StringProperty("RegistryName", ref _registryName);
}
protected override void ProcessRecord()
{
try
{
// work
using( var asyncCommandRuntime = new Microsoft.Rest.ClientRuntime.PowerShell.AsyncCommandRuntime(this, CancellationToken) )
{
asyncCommandRuntime.Wait( ProcessRecordAsync(),CancellationToken);
}
}
catch(System.Exception exception)
{
// Write exception out to error channel.
WriteError( new System.Management.Automation.ErrorRecord(exception,string.Empty, System.Management.Automation.ErrorCategory.CloseError, null) );
}
}
protected async System.Threading.Tasks.Task ProcessRecordAsync()
{
var pipeline = Pipeline.Clone();
pipeline.Prepend(HttpPipelinePrepend);
pipeline.Append(HttpPipelineAppend);
// get the client instance
await this.Client.RegistriesListUsages(ApiVersion, SubscriptionId, ResourceGroupName, RegistryName, async(response) => {
// on200 - response for 200 / application/json/text/json
// (await response.Result) // should be Sample.API.Models.IRegistryUsageListResult
WriteObject((await response.Result).Value);
}, this, pipeline);
}
/// <param name="id"> </param>
/// <param name="messageData"> </param>
public async System.Threading.Tasks.Task Signal(string id, System.Func<Microsoft.Rest.ClientRuntime.EventData> messageData)
{
// todo - impl
}
/// <param name="container"> </param>
/// <param name="serializationMode"> </param>
public Carbon.Json.JsonNode ToJson(Carbon.Json.JsonObject container, Microsoft.Rest.ClientRuntime.JsonMode serializationMode)
{
// serialization method
var result = container ?? new Carbon.Json.JsonObject();
container.SafeAdd( "ApiVersion", Carbon.Json.JsonString.Create(ApiVersion));
container.SafeAdd( "SubscriptionId", Carbon.Json.JsonString.Create(SubscriptionId));
container.SafeAdd( "ResourceGroupName", Carbon.Json.JsonString.Create(ResourceGroupName));
container.SafeAdd( "RegistryName", Carbon.Json.JsonString.Create(RegistryName));
return result;
}
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Important
This is a really early example -- don't fret too much.
I am preparing a lot of notes about how this works, and why it's better -- you just gotta give me some time.
I'll update this thread with more example code as I can
Feel free to ask some questions 😄
Notes: