diff --git a/packages/typespec-powershell/src/convertor/convertor.ts b/packages/typespec-powershell/src/convertor/convertor.ts
index c7b694f9241..c5d8669be55 100644
--- a/packages/typespec-powershell/src/convertor/convertor.ts
+++ b/packages/typespec-powershell/src/convertor/convertor.ts
@@ -1,9 +1,10 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
-import { SdkClient, SdkContext, listOperationsInOperationGroup, listOperationGroups } from "@azure-tools/typespec-client-generator-core";
+import { SdkClient, SdkContext, listOperationsInOperationGroup, listOperationGroups, getClientNameOverride, getClientLocation } from "@azure-tools/typespec-client-generator-core";
import { HttpOperation, HttpOperationParameter, HttpOperationBody, getHttpOperation } from "@typespec/http";
-import { getDoc, getService, ignoreDiagnostics, Program, Model, Type } from "@typespec/compiler";
+import { getDoc, getService, ignoreDiagnostics, Program, Model, Type, Operation as TypeSpecOperation, isGlobalNamespace, isService } from "@typespec/compiler";
+import { capitalize } from "@typespec/compiler/casing";
import { getServers } from "@typespec/http";
import { join } from "path";
import { PwshModel } from "@autorest/powershell";
@@ -133,27 +134,79 @@ function getOperationGroups(program: Program, client: SdkClient, psContext: SdkC
if (op.overloads && op.overloads?.length > 0) {
continue;
}
- let group = operationGroupsMap.get(operation.interface?.name || "");
+ const operationId = resolveOperationId(psContext, op);
+ let group = operationGroupsMap.get(operationId.split("_")[0] || "");
if (!group) {
group = new OperationGroup("");
- group.language.default.name = group.$key = operation.interface?.name || "";
- operationGroupsMap.set(operation.interface?.name || "", group);
+ group.language.default.name = group.$key = operationId.split("_")[0] || "";
+ operationGroupsMap.set(operationId.split("_")[0] || "", group);
}
addOperation(psContext, op, group, model, emitterOptions);
}
return Array.from(operationGroupsMap.values());
}
-function resolveOperationId(psContext: SdkContext, op: HttpOperation, operationGroup: OperationGroup): string {
- const explicitOperationId = getOperationId(psContext.program, op.operation);
+function resolveOperationId(psContext: SdkContext, op: HttpOperation): string {
+ const { program } = psContext;
+ const operation = op.operation;
+
+ const explicitOperationId = getOperationId(program, operation);
if (explicitOperationId) {
return explicitOperationId;
}
- return operationGroup.$key + "_" + pascalCase(op.operation.name);
+
+ const operationName = getClientName(psContext, operation);
+
+ // Check for `@clientLocation` decorator
+ const clientLocation = getClientLocation(psContext, operation);
+ if (clientLocation) {
+ if (typeof clientLocation === "string") {
+ return standardizeOperationId(`${clientLocation}_${operationName}`);
+ }
+
+ if (clientLocation.kind === "Interface") {
+ return standardizeOperationId(`${getClientName(psContext, clientLocation)}_${operationName}`);
+ }
+
+ if (clientLocation.kind === "Namespace") {
+ if (isGlobalNamespace(program, clientLocation) || isService(program, clientLocation)) {
+ return standardizeOperationId(operationName);
+ }
+ return standardizeOperationId(`${getClientName(psContext, clientLocation)}_${operationName}`);
+ }
+ }
+
+ if (operation.interface) {
+ return standardizeOperationId(
+ `${getClientName(psContext, operation.interface)}_${operationName}`,
+ );
+ }
+ const namespace = operation.namespace;
+ if (
+ namespace === undefined ||
+ isGlobalNamespace(program, namespace) ||
+ isService(program, namespace)
+ ) {
+ return standardizeOperationId(operationName);
+ }
+
+ return standardizeOperationId(`${getClientName(psContext, namespace)}_${operationName}`);
+}
+
+function getClientName(context: SdkContext, type: Type & { name: string }) {
+ const clientName = getClientNameOverride(context, type);
+ return clientName ?? type.name;
+}
+
+function standardizeOperationId(name: string) {
+ return name
+ .split("_")
+ .map((s) => capitalize(s))
+ .join("_");
}
function addOperation(psContext: SdkContext, op: HttpOperation, operationGroup: OperationGroup, model: PwshModel, emitterOptions: PSOptions) {
- const operationId = resolveOperationId(psContext, op, operationGroup);
+ const operationId = resolveOperationId(psContext, op);
const newOperation = new Operation( operationId.split('_')[1] ?? pascalCase(op.operation.name), getDoc(psContext.program, op.operation) ?? "");
newOperation.operationId = operationId;
// Add Api versions
diff --git a/tests-upgrade/tests-emitter/AzureLargeInstance.Management/target/.gitignore b/tests-upgrade/tests-emitter/AzureLargeInstance.Management/target/.gitignore
deleted file mode 100644
index 6ec158bd976..00000000000
--- a/tests-upgrade/tests-emitter/AzureLargeInstance.Management/target/.gitignore
+++ /dev/null
@@ -1,16 +0,0 @@
-bin
-obj
-.vs
-generated
-internal
-exports
-tools
-test/*-TestResults.xml
-license.txt
-/*.ps1
-/*.psd1
-/*.ps1xml
-/*.psm1
-/*.snk
-/*.csproj
-/*.nuspec
\ No newline at end of file
diff --git a/tests-upgrade/tests-emitter/AzureLargeInstance.Management/target/generated/api/AzureLargeInstance.cs b/tests-upgrade/tests-emitter/AzureLargeInstance.Management/target/generated/api/AzureLargeInstance.cs
index c019af2c4e6..c08b8bad14e 100644
--- a/tests-upgrade/tests-emitter/AzureLargeInstance.Management/target/generated/api/AzureLargeInstance.cs
+++ b/tests-upgrade/tests-emitter/AzureLargeInstance.Management/target/generated/api/AzureLargeInstance.cs
@@ -30,7 +30,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesCreate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceCreate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -61,7 +61,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
}
}
@@ -81,7 +81,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -124,7 +124,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
}
}
@@ -141,7 +141,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesCreateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceCreateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -184,7 +184,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesCreateWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceCreateWithResult_Call (request, eventListener,sender);
}
}
@@ -195,7 +195,7 @@ public partial class AzureLargeInstance
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
/// Name of the AzureLargeInstance.
- /// Json string supplied to the AzureLargeInstancesCreate operation
+ /// Json string supplied to the AzureLargeInstanceCreate operation
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns 201 (Created).
/// a delegate that is called when the remote service returns default (any response code not handled
@@ -205,7 +205,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesCreateViaJsonString(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceCreateViaJsonString(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -236,7 +236,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
}
}
@@ -247,14 +247,14 @@ public partial class AzureLargeInstance
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
/// Name of the AzureLargeInstance.
- /// Json string supplied to the AzureLargeInstancesCreate operation
+ /// Json string supplied to the AzureLargeInstanceCreate operation
/// an instance that will receive events.
/// an instance of an Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync pipeline to use to make the request.
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesCreateViaJsonStringWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceCreateViaJsonStringWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -285,7 +285,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesCreateWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceCreateWithResult_Call (request, eventListener,sender);
}
}
@@ -304,7 +304,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesCreateWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceCreateWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -335,13 +335,11 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesCreateWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceCreateWithResult_Call (request, eventListener,sender);
}
}
- ///
- /// Actual wire call for method.
- ///
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
/// an instance of an Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync pipeline to use to make the request.
@@ -349,7 +347,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesCreateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceCreateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -407,7 +405,7 @@ public partial class AzureLargeInstance
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns 201 (Created).
@@ -418,7 +416,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -465,7 +463,7 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but you will get
+ /// Validation method for method. Call this like the actual call, but you will get
/// validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
@@ -476,7 +474,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesCreate_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceCreate_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -509,7 +507,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesDelete(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceDelete(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -536,7 +534,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesDelete_Call (request, onOk,onNoContent,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceDelete_Call (request, onOk,onNoContent,onDefault,eventListener,sender);
}
}
@@ -554,7 +552,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -593,11 +591,11 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesDelete_Call (request, onOk,onNoContent,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceDelete_Call (request, onOk,onNoContent,onDefault,eventListener,sender);
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns 204 (NoContent).
@@ -608,7 +606,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -655,7 +653,7 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but you will get
+ /// Validation method for method. Call this like the actual call, but you will get
/// validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
@@ -665,7 +663,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesDelete_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceDelete_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -695,7 +693,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesGet(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceGet(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -722,7 +720,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesGet_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceGet_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -739,7 +737,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -778,7 +776,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesGet_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceGet_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -793,7 +791,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesGetViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceGetViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -832,7 +830,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesGetWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceGetWithResult_Call (request, eventListener,sender);
}
}
@@ -849,7 +847,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesGetWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceGetWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -876,11 +874,11 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesGetWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceGetWithResult_Call (request, eventListener,sender);
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
/// an instance of an Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync pipeline to use to make the request.
@@ -888,7 +886,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesGetWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceGetWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -940,7 +938,7 @@ public partial class AzureLargeInstance
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns default (any response code not handled
@@ -950,7 +948,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -991,7 +989,7 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but you will get validation
+ /// Validation method for method. Call this like the actual call, but you will get validation
/// events back.
///
/// The ID of the target subscription. The value must be an UUID.
@@ -1001,7 +999,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesGet_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceGet_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -1030,7 +1028,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesListByResourceGroup(string subscriptionId, string resourceGroupName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceListByResourceGroup(string subscriptionId, string resourceGroupName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1056,7 +1054,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesListByResourceGroup_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceListByResourceGroup_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -1073,7 +1071,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesListByResourceGroupViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceListByResourceGroupViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1110,7 +1108,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesListByResourceGroup_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceListByResourceGroup_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -1125,7 +1123,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesListByResourceGroupViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceListByResourceGroupViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1162,7 +1160,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesListByResourceGroupWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceListByResourceGroupWithResult_Call (request, eventListener,sender);
}
}
@@ -1178,7 +1176,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesListByResourceGroupWithResult(string subscriptionId, string resourceGroupName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceListByResourceGroupWithResult(string subscriptionId, string resourceGroupName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1204,12 +1202,12 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesListByResourceGroupWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceListByResourceGroupWithResult_Call (request, eventListener,sender);
}
}
///
- /// Actual wire call for method.
+ /// Actual wire call for method.
///
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
@@ -1218,7 +1216,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesListByResourceGroupWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceListByResourceGroupWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -1271,7 +1269,7 @@ public partial class AzureLargeInstance
}
///
- /// Actual wire call for method.
+ /// Actual wire call for method.
///
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
@@ -1282,7 +1280,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesListByResourceGroup_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceListByResourceGroup_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -1323,7 +1321,7 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but
+ /// Validation method for method. Call this like the actual call, but
/// you will get validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
@@ -1332,7 +1330,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesListByResourceGroup_Validate(string subscriptionId, string resourceGroupName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceListByResourceGroup_Validate(string subscriptionId, string resourceGroupName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -1358,7 +1356,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesListBySubscription(string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceListBySubscription(string subscriptionId, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1382,7 +1380,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesListBySubscription_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceListBySubscription_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -1399,7 +1397,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesListBySubscriptionViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceListBySubscriptionViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1433,7 +1431,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesListBySubscription_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceListBySubscription_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -1448,7 +1446,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesListBySubscriptionViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceListBySubscriptionViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1482,7 +1480,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesListBySubscriptionWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceListBySubscriptionWithResult_Call (request, eventListener,sender);
}
}
@@ -1497,7 +1495,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesListBySubscriptionWithResult(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceListBySubscriptionWithResult(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1521,12 +1519,12 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesListBySubscriptionWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceListBySubscriptionWithResult_Call (request, eventListener,sender);
}
}
///
- /// Actual wire call for method.
+ /// Actual wire call for method.
///
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
@@ -1535,7 +1533,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesListBySubscriptionWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceListBySubscriptionWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -1588,7 +1586,7 @@ public partial class AzureLargeInstance
}
///
- /// Actual wire call for method.
+ /// Actual wire call for method.
///
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
@@ -1599,7 +1597,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesListBySubscription_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceListBySubscription_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -1640,7 +1638,7 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but
+ /// Validation method for method. Call this like the actual call, but
/// you will get validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
@@ -1648,7 +1646,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesListBySubscription_Validate(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceListBySubscription_Validate(string subscriptionId, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -1672,7 +1670,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesRestart(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceRestart(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1704,7 +1702,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesRestart_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceRestart_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -1721,7 +1719,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesRestartViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceRestartViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1765,7 +1763,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesRestart_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceRestart_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -1780,7 +1778,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesRestartViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceRestartViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1824,7 +1822,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesRestartWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceRestartWithResult_Call (request, eventListener,sender);
}
}
@@ -1832,7 +1830,7 @@ public partial class AzureLargeInstance
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
/// Name of the AzureLargeInstance.
- /// Json string supplied to the AzureLargeInstancesRestart operation
+ /// Json string supplied to the AzureLargeInstanceRestart operation
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns default (any response code not handled
/// elsewhere).
@@ -1841,7 +1839,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesRestartViaJsonString(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceRestartViaJsonString(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1873,7 +1871,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesRestart_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceRestart_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -1881,14 +1879,14 @@ public partial class AzureLargeInstance
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
/// Name of the AzureLargeInstance.
- /// Json string supplied to the AzureLargeInstancesRestart operation
+ /// Json string supplied to the AzureLargeInstanceRestart operation
/// an instance that will receive events.
/// an instance of an Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync pipeline to use to make the request.
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesRestartViaJsonStringWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceRestartViaJsonStringWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1920,7 +1918,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesRestartWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceRestartWithResult_Call (request, eventListener,sender);
}
}
@@ -1937,7 +1935,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesRestartWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceRestartWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -1969,12 +1967,12 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesRestartWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceRestartWithResult_Call (request, eventListener,sender);
}
}
///
- /// Actual wire call for method.
+ /// Actual wire call for method.
///
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
@@ -1983,7 +1981,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesRestartWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceRestartWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -2128,7 +2126,7 @@ public partial class AzureLargeInstance
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns default (any response code not handled
@@ -2138,7 +2136,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesRestart_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceRestart_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -2272,7 +2270,7 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but you will get
+ /// Validation method for method. Call this like the actual call, but you will get
/// validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
@@ -2284,7 +2282,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesRestart_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceRestart_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IForceState body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -2313,7 +2311,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesShutdown(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceShutdown(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -2341,7 +2339,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesShutdown_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceShutdown_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -2355,7 +2353,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesShutdownViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceShutdownViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -2395,7 +2393,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesShutdown_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceShutdown_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -2407,7 +2405,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesShutdownViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceShutdownViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -2447,7 +2445,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesShutdownWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceShutdownWithResult_Call (request, eventListener,sender);
}
}
@@ -2461,7 +2459,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesShutdownWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceShutdownWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -2489,12 +2487,12 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesShutdownWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceShutdownWithResult_Call (request, eventListener,sender);
}
}
///
- /// Actual wire call for method.
+ /// Actual wire call for method.
///
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
@@ -2503,7 +2501,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesShutdownWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceShutdownWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -2648,7 +2646,7 @@ public partial class AzureLargeInstance
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns default (any response code not handled
@@ -2658,7 +2656,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesShutdown_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceShutdown_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -2792,8 +2790,8 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but you will
- /// get validation events back.
+ /// Validation method for method. Call this like the actual call, but you will get
+ /// validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
@@ -2802,7 +2800,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesShutdown_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceShutdown_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -2829,7 +2827,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesStart(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceStart(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -2857,7 +2855,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesStart_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceStart_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -2871,7 +2869,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesStartViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceStartViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -2911,7 +2909,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesStart_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceStart_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -2923,7 +2921,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesStartViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceStartViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -2963,7 +2961,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesStartWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceStartWithResult_Call (request, eventListener,sender);
}
}
@@ -2977,7 +2975,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesStartWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceStartWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3005,11 +3003,11 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesStartWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceStartWithResult_Call (request, eventListener,sender);
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
/// an instance of an Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync pipeline to use to make the request.
@@ -3017,7 +3015,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesStartWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceStartWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -3162,7 +3160,7 @@ public partial class AzureLargeInstance
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns default (any response code not handled
@@ -3172,7 +3170,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesStart_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceStart_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -3306,7 +3304,7 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but you will get
+ /// Validation method for method. Call this like the actual call, but you will get
/// validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
@@ -3316,7 +3314,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesStart_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceStart_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -3348,7 +3346,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesUpdate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceUpdate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3379,7 +3377,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesUpdate_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceUpdate_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -3398,7 +3396,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceUpdateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3441,7 +3439,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesUpdate_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceUpdate_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -3458,7 +3456,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesUpdateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceUpdateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3501,7 +3499,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesUpdateWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceUpdateWithResult_Call (request, eventListener,sender);
}
}
@@ -3512,7 +3510,7 @@ public partial class AzureLargeInstance
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
/// Name of the AzureLargeInstance.
- /// Json string supplied to the AzureLargeInstancesUpdate operation
+ /// Json string supplied to the AzureLargeInstanceUpdate operation
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns default (any response code not handled
/// elsewhere).
@@ -3521,7 +3519,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesUpdateViaJsonString(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceUpdateViaJsonString(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3552,7 +3550,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeInstancesUpdate_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeInstanceUpdate_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -3563,14 +3561,14 @@ public partial class AzureLargeInstance
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
/// Name of the AzureLargeInstance.
- /// Json string supplied to the AzureLargeInstancesUpdate operation
+ /// Json string supplied to the AzureLargeInstanceUpdate operation
/// an instance that will receive events.
/// an instance of an Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync pipeline to use to make the request.
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesUpdateViaJsonStringWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceUpdateViaJsonStringWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3601,7 +3599,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesUpdateWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceUpdateWithResult_Call (request, eventListener,sender);
}
}
@@ -3620,7 +3618,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeInstancesUpdateWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeInstanceUpdateWithResult(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3651,13 +3649,11 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeInstancesUpdateWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeInstanceUpdateWithResult_Call (request, eventListener,sender);
}
}
- ///
- /// Actual wire call for method.
- ///
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
/// an instance of an Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync pipeline to use to make the request.
@@ -3665,7 +3661,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesUpdateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceUpdateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -3717,7 +3713,7 @@ public partial class AzureLargeInstance
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns default (any response code not handled
@@ -3727,7 +3723,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceUpdate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -3768,7 +3764,7 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but you will get
+ /// Validation method for method. Call this like the actual call, but you will get
/// validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
@@ -3779,7 +3775,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeInstancesUpdate_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeInstanceUpdate_Validate(string subscriptionId, string resourceGroupName, string azureLargeInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeInstanceTagsUpdate body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -3814,7 +3810,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesCreate(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceCreate(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3845,7 +3841,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeStorageInstancesCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
+ await this.AzureLargeStorageInstanceCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
}
}
@@ -3865,7 +3861,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceCreateViaIdentity(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3908,7 +3904,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeStorageInstancesCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
+ await this.AzureLargeStorageInstanceCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
}
}
@@ -3925,7 +3921,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesCreateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceCreateViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -3968,7 +3964,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeStorageInstancesCreateWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeStorageInstanceCreateWithResult_Call (request, eventListener,sender);
}
}
@@ -3979,7 +3975,7 @@ public partial class AzureLargeInstance
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
/// Name of the AzureLargeStorageInstance.
- /// Json string supplied to the AzureLargeStorageInstancesCreate operation
+ /// Json string supplied to the AzureLargeStorageInstanceCreate operation
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns 201 (Created).
/// a delegate that is called when the remote service returns default (any response code not handled
@@ -3989,7 +3985,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesCreateViaJsonString(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceCreateViaJsonString(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, global::System.String jsonString, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -4020,7 +4016,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeStorageInstancesCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
+ await this.AzureLargeStorageInstanceCreate_Call (request, onOk,onCreated,onDefault,eventListener,sender);
}
}
@@ -4031,14 +4027,14 @@ public partial class AzureLargeInstance
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
/// Name of the AzureLargeStorageInstance.
- /// Json string supplied to the AzureLargeStorageInstancesCreate operation
+ /// Json string supplied to the AzureLargeStorageInstanceCreate operation
/// an instance that will receive events.
/// an instance of an Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync pipeline to use to make the request.
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesCreateViaJsonStringWithResult(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceCreateViaJsonStringWithResult(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, global::System.String jsonString, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -4069,7 +4065,7 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeStorageInstancesCreateWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeStorageInstanceCreateWithResult_Call (request, eventListener,sender);
}
}
@@ -4088,7 +4084,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesCreateWithResult(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceCreateWithResult(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode serializationMode = Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeCreate|Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.SerializationMode.IncludeUpdate)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -4119,12 +4115,12 @@ public partial class AzureLargeInstance
request.Content.Headers.ContentType = global::System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json");
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.BodyContentSet); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeStorageInstancesCreateWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeStorageInstanceCreateWithResult_Call (request, eventListener,sender);
}
}
///
- /// Actual wire call for method.
+ /// Actual wire call for method.
///
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
@@ -4133,7 +4129,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeStorageInstancesCreateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeStorageInstanceCreateWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -4191,7 +4187,7 @@ public partial class AzureLargeInstance
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns 201 (Created).
@@ -4202,7 +4198,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeStorageInstancesCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeStorageInstanceCreate_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onCreated, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -4249,8 +4245,8 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but you
- /// will get validation events back.
+ /// Validation method for method. Call this like the actual call, but you will
+ /// get validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
@@ -4260,7 +4256,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeStorageInstancesCreate_Validate(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeStorageInstanceCreate_Validate(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Models.IAzureLargeStorageInstance body, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -4293,7 +4289,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesDelete(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceDelete(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -4320,7 +4316,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeStorageInstancesDelete_Call (request, onOk,onNoContent,onDefault,eventListener,sender);
+ await this.AzureLargeStorageInstanceDelete_Call (request, onOk,onNoContent,onDefault,eventListener,sender);
}
}
@@ -4338,7 +4334,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceDeleteViaIdentity(global::System.String viaIdentity, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -4377,11 +4373,11 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeStorageInstancesDelete_Call (request, onOk,onNoContent,onDefault,eventListener,sender);
+ await this.AzureLargeStorageInstanceDelete_Call (request, onOk,onNoContent,onDefault,eventListener,sender);
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns 204 (NoContent).
@@ -4392,7 +4388,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeStorageInstancesDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeStorageInstanceDelete_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func onOk, global::System.Func onNoContent, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -4439,8 +4435,8 @@ public partial class AzureLargeInstance
}
///
- /// Validation method for method. Call this like the actual call, but you
- /// will get validation events back.
+ /// Validation method for method. Call this like the actual call, but you will
+ /// get validation events back.
///
/// The ID of the target subscription. The value must be an UUID.
/// The name of the resource group. The name is case insensitive.
@@ -4449,7 +4445,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeStorageInstancesDelete_Validate(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
+ internal async global::System.Threading.Tasks.Task AzureLargeStorageInstanceDelete_Validate(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener)
{
using( NoSynchronizationContext )
{
@@ -4479,7 +4475,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesGet(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceGet(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -4506,7 +4502,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeStorageInstancesGet_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeStorageInstanceGet_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -4523,7 +4519,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceGetViaIdentity(global::System.String viaIdentity, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -4562,7 +4558,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return; }
// make the call
- await this.AzureLargeStorageInstancesGet_Call (request, onOk,onDefault,eventListener,sender);
+ await this.AzureLargeStorageInstanceGet_Call (request, onOk,onDefault,eventListener,sender);
}
}
@@ -4577,7 +4573,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesGetViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceGetViaIdentityWithResult(global::System.String viaIdentity, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -4616,7 +4612,7 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeStorageInstancesGetWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeStorageInstanceGetWithResult_Call (request, eventListener,sender);
}
}
@@ -4633,7 +4629,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- public async global::System.Threading.Tasks.Task AzureLargeStorageInstancesGetWithResult(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ public async global::System.Threading.Tasks.Task AzureLargeStorageInstanceGetWithResult(string subscriptionId, string resourceGroupName, string azureLargeStorageInstanceName, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
var apiVersion = @"2024-08-01-preview";
// Constant Parameters
@@ -4660,12 +4656,12 @@ public partial class AzureLargeInstance
await eventListener.Signal(Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.Events.HeaderParametersAdded); if( eventListener.Token.IsCancellationRequested ) { return null; }
// make the call
- return await this.AzureLargeStorageInstancesGetWithResult_Call (request, eventListener,sender);
+ return await this.AzureLargeStorageInstanceGetWithResult_Call (request, eventListener,sender);
}
}
///
- /// Actual wire call for method.
+ /// Actual wire call for method.
///
/// the prepared HttpRequestMessage to send.
/// an instance that will receive events.
@@ -4674,7 +4670,7 @@ public partial class AzureLargeInstance
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeStorageInstancesGetWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeStorageInstanceGetWithResult_Call(global::System.Net.Http.HttpRequestMessage request, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
{
using( NoSynchronizationContext )
{
@@ -4726,7 +4722,7 @@ public partial class AzureLargeInstance
}
}
- /// Actual wire call for method.
+ /// Actual wire call for method.
/// the prepared HttpRequestMessage to send.
/// a delegate that is called when the remote service returns 200 (OK).
/// a delegate that is called when the remote service returns default (any response code not handled
@@ -4736,7 +4732,7 @@ public partial class AzureLargeInstance
///
/// A that will be complete when handling of the response is completed.
///
- internal async global::System.Threading.Tasks.Task AzureLargeStorageInstancesGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func, global::System.Threading.Tasks.Task> onOk, global::System.Func, global::System.Threading.Tasks.Task> onDefault, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.IEventListener eventListener, Microsoft.Azure.PowerShell.Cmdlets.AzureLargeInstance.Runtime.ISendAsync sender)
+ internal async global::System.Threading.Tasks.Task AzureLargeStorageInstanceGet_Call(global::System.Net.Http.HttpRequestMessage request, global::System.Func