From b6b29bc043ab1bbc26690c14529713987c065f59 Mon Sep 17 00:00:00 2001 From: SDK Automation Date: Wed, 11 Nov 2020 04:30:41 +0000 Subject: [PATCH] Generated from aae90dee136566c9f8b4de8e38cf9177033a552a --- sdk/logic/arm-logic/README.md | 9 +- sdk/logic/arm-logic/rollup.config.js | 4 +- .../arm-logic/src/logicManagementClient.ts | 5 +- .../src/logicManagementClientContext.ts | 5 +- sdk/logic/arm-logic/src/models/index.ts | 244 +++++++++++++++++- .../integrationAccountAgreementsMappers.ts | 5 +- .../integrationAccountAssembliesMappers.ts | 5 +- ...rationAccountBatchConfigurationsMappers.ts | 5 +- .../integrationAccountCertificatesMappers.ts | 5 +- .../models/integrationAccountMapsMappers.ts | 5 +- .../integrationAccountPartnersMappers.ts | 5 +- .../integrationAccountSchemasMappers.ts | 5 +- .../integrationAccountSessionsMappers.ts | 5 +- .../src/models/integrationAccountsMappers.ts | 5 +- ...eEnvironmentManagedApiOperationsMappers.ts | 5 +- ...ionServiceEnvironmentManagedApisMappers.ts | 5 +- ...nServiceEnvironmentNetworkHealthMappers.ts | 4 +- ...ntegrationServiceEnvironmentSkusMappers.ts | 4 +- .../integrationServiceEnvironmentsMappers.ts | 5 +- sdk/logic/arm-logic/src/models/mappers.ts | 40 ++- .../arm-logic/src/models/operationsMappers.ts | 4 +- sdk/logic/arm-logic/src/models/parameters.ts | 5 +- .../workflowRunActionRepetitionsMappers.ts | 5 +- ...ctionRepetitionsRequestHistoriesMappers.ts | 5 +- ...orkflowRunActionRequestHistoriesMappers.ts | 5 +- ...orkflowRunActionScopeRepetitionsMappers.ts | 5 +- .../src/models/workflowRunActionsMappers.ts | 5 +- .../models/workflowRunOperationsMappers.ts | 5 +- .../src/models/workflowRunsMappers.ts | 5 +- .../models/workflowTriggerHistoriesMappers.ts | 5 +- .../src/models/workflowTriggersMappers.ts | 5 +- .../models/workflowVersionTriggersMappers.ts | 4 +- .../src/models/workflowVersionsMappers.ts | 5 +- .../arm-logic/src/models/workflowsMappers.ts | 5 +- sdk/logic/arm-logic/src/operations/index.ts | 5 +- .../integrationAccountAgreements.ts | 16 +- .../integrationAccountAssemblies.ts | 5 +- .../integrationAccountBatchConfigurations.ts | 5 +- .../integrationAccountCertificates.ts | 15 +- .../src/operations/integrationAccountMaps.ts | 16 +- .../operations/integrationAccountPartners.ts | 16 +- .../operations/integrationAccountSchemas.ts | 16 +- .../operations/integrationAccountSessions.ts | 16 +- .../src/operations/integrationAccounts.ts | 25 +- ...nServiceEnvironmentManagedApiOperations.ts | 8 +- ...ntegrationServiceEnvironmentManagedApis.ts | 8 +- ...egrationServiceEnvironmentNetworkHealth.ts | 5 +- .../integrationServiceEnvironmentSkus.ts | 8 +- .../integrationServiceEnvironments.ts | 25 +- .../arm-logic/src/operations/operations.ts | 8 +- .../workflowRunActionRepetitions.ts | 5 +- ...lowRunActionRepetitionsRequestHistories.ts | 8 +- .../workflowRunActionRequestHistories.ts | 8 +- .../workflowRunActionScopeRepetitions.ts | 5 +- .../src/operations/workflowRunActions.ts | 16 +- .../src/operations/workflowRunOperations.ts | 5 +- .../arm-logic/src/operations/workflowRuns.ts | 16 +- .../operations/workflowTriggerHistories.ts | 16 +- .../src/operations/workflowTriggers.ts | 16 +- .../src/operations/workflowVersionTriggers.ts | 5 +- .../src/operations/workflowVersions.ts | 15 +- .../arm-logic/src/operations/workflows.ts | 27 +- 62 files changed, 573 insertions(+), 209 deletions(-) diff --git a/sdk/logic/arm-logic/README.md b/sdk/logic/arm-logic/README.md index c12bcff569c3..74c2abb581b9 100644 --- a/sdk/logic/arm-logic/README.md +++ b/sdk/logic/arm-logic/README.md @@ -15,7 +15,7 @@ npm install @azure/arm-logic ### How to use -#### nodejs - Authentication, client creation and listBySubscription workflows as an example written in TypeScript. +#### nodejs - client creation and listBySubscription workflows as an example written in TypeScript. ##### Install @azure/ms-rest-nodeauth @@ -26,11 +26,10 @@ npm install @azure/ms-rest-nodeauth@"^3.0.0" ##### Sample code +While the below sample uses the interactive login, other authentication options can be found in the [README.md file of @azure/ms-rest-nodeauth](https://www.npmjs.com/package/@azure/ms-rest-nodeauth) package ```typescript -import * as msRest from "@azure/ms-rest-js"; -import * as msRestAzure from "@azure/ms-rest-azure-js"; -import * as msRestNodeAuth from "@azure/ms-rest-nodeauth"; -import { LogicManagementClient, LogicManagementModels, LogicManagementMappers } from "@azure/arm-logic"; +const msRestNodeAuth = require("@azure/ms-rest-nodeauth"); +const { LogicManagementClient } = require("@azure/arm-logic"); const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"]; msRestNodeAuth.interactiveLogin().then((creds) => { diff --git a/sdk/logic/arm-logic/rollup.config.js b/sdk/logic/arm-logic/rollup.config.js index a23959849e8f..92a95122af36 100644 --- a/sdk/logic/arm-logic/rollup.config.js +++ b/sdk/logic/arm-logic/rollup.config.js @@ -21,8 +21,8 @@ const config = { "@azure/ms-rest-azure-js": "msRestAzure" }, banner: `/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. diff --git a/sdk/logic/arm-logic/src/logicManagementClient.ts b/sdk/logic/arm-logic/src/logicManagementClient.ts index 55dca04b4fe1..31651b85d516 100644 --- a/sdk/logic/arm-logic/src/logicManagementClient.ts +++ b/sdk/logic/arm-logic/src/logicManagementClient.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/logicManagementClientContext.ts b/sdk/logic/arm-logic/src/logicManagementClientContext.ts index 0fc08b13b4d0..4ed36025840c 100644 --- a/sdk/logic/arm-logic/src/logicManagementClientContext.ts +++ b/sdk/logic/arm-logic/src/logicManagementClientContext.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/models/index.ts b/sdk/logic/arm-logic/src/models/index.ts index 2ee2e2df0345..18767676fede 100644 --- a/sdk/logic/arm-logic/src/models/index.ts +++ b/sdk/logic/arm-logic/src/models/index.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -1878,6 +1878,24 @@ export interface NetworkConfiguration { subnets?: ResourceReference[]; } +/** + * The encryption configuration for the integration service environment. + */ +export interface IntegrationServiceEnvironmenEncryptionConfiguration { + /** + * The key vault reference. + */ + keyVault?: ResourceReference; + /** + * Gets the key name in the Key Vault. + */ + keyName?: string; + /** + * Gets the version of the key specified in the keyName property. + */ + keyVersion?: string; +} + /** * The integration service environment properties. */ @@ -1906,6 +1924,10 @@ export interface IntegrationServiceEnvironmentProperties { * The network configuration. */ networkConfiguration?: NetworkConfiguration; + /** + * The encryption configuration. + */ + encryptionConfiguration?: IntegrationServiceEnvironmenEncryptionConfiguration; } /** @@ -4477,6 +4499,36 @@ export interface WorkflowsListByResourceGroupOptionalParams extends msRest.Reque filter?: string; } +/** + * Optional Parameters. + */ +export interface WorkflowsListBySubscriptionNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: State, Trigger, and + * ReferencedResourceId. + */ + filter?: string; +} + +/** + * Optional Parameters. + */ +export interface WorkflowsListByResourceGroupNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: State, Trigger, and + * ReferencedResourceId. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4487,6 +4539,16 @@ export interface WorkflowVersionsListOptionalParams extends msRest.RequestOption top?: number; } +/** + * Optional Parameters. + */ +export interface WorkflowVersionsListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; +} + /** * Optional Parameters. */ @@ -4501,6 +4563,20 @@ export interface WorkflowTriggersListOptionalParams extends msRest.RequestOption filter?: string; } +/** + * Optional Parameters. + */ +export interface WorkflowTriggersListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4526,6 +4602,21 @@ export interface WorkflowTriggerHistoriesListOptionalParams extends msRest.Reque filter?: string; } +/** + * Optional Parameters. + */ +export interface WorkflowTriggerHistoriesListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: Status, StartTime, and + * ClientTrackingId. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4541,6 +4632,21 @@ export interface WorkflowRunsListOptionalParams extends msRest.RequestOptionsBas filter?: string; } +/** + * Optional Parameters. + */ +export interface WorkflowRunsListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: Status, StartTime, and + * ClientTrackingId. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4555,6 +4661,20 @@ export interface WorkflowRunActionsListOptionalParams extends msRest.RequestOpti filter?: string; } +/** + * Optional Parameters. + */ +export interface WorkflowRunActionsListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: Status. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4575,6 +4695,26 @@ export interface IntegrationAccountsListByResourceGroupOptionalParams extends ms top?: number; } +/** + * Optional Parameters. + */ +export interface IntegrationAccountsListBySubscriptionNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; +} + +/** + * Optional Parameters. + */ +export interface IntegrationAccountsListByResourceGroupNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; +} + /** * Optional Parameters. */ @@ -4589,6 +4729,20 @@ export interface IntegrationAccountSchemasListOptionalParams extends msRest.Requ filter?: string; } +/** + * Optional Parameters. + */ +export interface IntegrationAccountSchemasListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: SchemaType. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4603,6 +4757,20 @@ export interface IntegrationAccountMapsListOptionalParams extends msRest.Request filter?: string; } +/** + * Optional Parameters. + */ +export interface IntegrationAccountMapsListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: MapType. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4617,6 +4785,20 @@ export interface IntegrationAccountPartnersListOptionalParams extends msRest.Req filter?: string; } +/** + * Optional Parameters. + */ +export interface IntegrationAccountPartnersListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: PartnerType. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4631,6 +4813,20 @@ export interface IntegrationAccountAgreementsListOptionalParams extends msRest.R filter?: string; } +/** + * Optional Parameters. + */ +export interface IntegrationAccountAgreementsListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: AgreementType. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4641,6 +4837,16 @@ export interface IntegrationAccountCertificatesListOptionalParams extends msRest top?: number; } +/** + * Optional Parameters. + */ +export interface IntegrationAccountCertificatesListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; +} + /** * Optional Parameters. */ @@ -4655,6 +4861,20 @@ export interface IntegrationAccountSessionsListOptionalParams extends msRest.Req filter?: string; } +/** + * Optional Parameters. + */ +export interface IntegrationAccountSessionsListNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; + /** + * The filter to apply on the operation. Options for filters include: ChangedTime. + */ + filter?: string; +} + /** * Optional Parameters. */ @@ -4675,6 +4895,26 @@ export interface IntegrationServiceEnvironmentsListByResourceGroupOptionalParams top?: number; } +/** + * Optional Parameters. + */ +export interface IntegrationServiceEnvironmentsListBySubscriptionNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; +} + +/** + * Optional Parameters. + */ +export interface IntegrationServiceEnvironmentsListByResourceGroupNextOptionalParams extends msRest.RequestOptionsBase { + /** + * The number of items to be included in the result. + */ + top?: number; +} + /** * An interface representing LogicManagementClientOptions. */ diff --git a/sdk/logic/arm-logic/src/models/integrationAccountAgreementsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountAgreementsMappers.ts index 5ec275dcb903..2fa2f3aa909b 100644 --- a/sdk/logic/arm-logic/src/models/integrationAccountAgreementsMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationAccountAgreementsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -74,6 +74,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountAssembliesMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountAssembliesMappers.ts index 726c847c1188..4b4921b7b619 100644 --- a/sdk/logic/arm-logic/src/models/integrationAccountAssembliesMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationAccountAssembliesMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -73,6 +73,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountBatchConfigurationsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountBatchConfigurationsMappers.ts index d90f8a5f685c..a568905fea9c 100644 --- a/sdk/logic/arm-logic/src/models/integrationAccountBatchConfigurationsMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationAccountBatchConfigurationsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -73,6 +73,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountCertificatesMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountCertificatesMappers.ts index 3a593ffa6b75..349d6392a7df 100644 --- a/sdk/logic/arm-logic/src/models/integrationAccountCertificatesMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationAccountCertificatesMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -73,6 +73,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountMapsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountMapsMappers.ts index 74fe03bdfaea..3ceacaf21884 100644 --- a/sdk/logic/arm-logic/src/models/integrationAccountMapsMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationAccountMapsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -74,6 +74,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountPartnersMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountPartnersMappers.ts index c5a5a2ca7db3..6850ff72e97a 100644 --- a/sdk/logic/arm-logic/src/models/integrationAccountPartnersMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationAccountPartnersMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -74,6 +74,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountSchemasMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountSchemasMappers.ts index 466d7359b2b3..8784a242741c 100644 --- a/sdk/logic/arm-logic/src/models/integrationAccountSchemasMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationAccountSchemasMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -74,6 +74,7 @@ export { IntegrationAccountSchemaListResult, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountSessionsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountSessionsMappers.ts index e07ca216267e..bf469e9ddbe4 100644 --- a/sdk/logic/arm-logic/src/models/integrationAccountSessionsMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationAccountSessionsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -73,6 +73,7 @@ export { IntegrationAccountSession, IntegrationAccountSessionListResult, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountsMappers.ts index a751f9381e91..6ef6d5defada 100644 --- a/sdk/logic/arm-logic/src/models/integrationAccountsMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationAccountsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -75,6 +75,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApiOperationsMappers.ts b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApiOperationsMappers.ts index f75dc861098b..6d49d268a7cb 100644 --- a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApiOperationsMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApiOperationsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -73,6 +73,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApisMappers.ts b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApisMappers.ts index d7ab7ae190f5..ea6f6554a466 100644 --- a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApisMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApisMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentNetworkHealthMappers.ts b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentNetworkHealthMappers.ts index 339447ed7bf4..b59687397a67 100644 --- a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentNetworkHealthMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentNetworkHealthMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. diff --git a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentSkusMappers.ts b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentSkusMappers.ts index 9b7ef893672d..a618118a5b41 100644 --- a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentSkusMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentSkusMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. diff --git a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentsMappers.ts b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentsMappers.ts index 0626b444a749..0bf5235b065a 100644 --- a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentsMappers.ts +++ b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentListResult, diff --git a/sdk/logic/arm-logic/src/models/mappers.ts b/sdk/logic/arm-logic/src/models/mappers.ts index cb7ff6c1164f..4677386bbeb9 100644 --- a/sdk/logic/arm-logic/src/models/mappers.ts +++ b/sdk/logic/arm-logic/src/models/mappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -3080,6 +3080,35 @@ export const NetworkConfiguration: msRest.CompositeMapper = { } }; +export const IntegrationServiceEnvironmenEncryptionConfiguration: msRest.CompositeMapper = { + serializedName: "IntegrationServiceEnvironmenEncryptionConfiguration", + type: { + name: "Composite", + className: "IntegrationServiceEnvironmenEncryptionConfiguration", + modelProperties: { + keyVault: { + serializedName: "keyVault", + type: { + name: "Composite", + className: "ResourceReference" + } + }, + keyName: { + serializedName: "keyName", + type: { + name: "String" + } + }, + keyVersion: { + serializedName: "keyVersion", + type: { + name: "String" + } + } + } + } +}; + export const IntegrationServiceEnvironmentProperties: msRest.CompositeMapper = { serializedName: "IntegrationServiceEnvironmentProperties", type: { @@ -3117,6 +3146,13 @@ export const IntegrationServiceEnvironmentProperties: msRest.CompositeMapper = { name: "Composite", className: "NetworkConfiguration" } + }, + encryptionConfiguration: { + serializedName: "encryptionConfiguration", + type: { + name: "Composite", + className: "IntegrationServiceEnvironmenEncryptionConfiguration" + } } } } diff --git a/sdk/logic/arm-logic/src/models/operationsMappers.ts b/sdk/logic/arm-logic/src/models/operationsMappers.ts index 6d4da9c5b010..18369174626e 100644 --- a/sdk/logic/arm-logic/src/models/operationsMappers.ts +++ b/sdk/logic/arm-logic/src/models/operationsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. diff --git a/sdk/logic/arm-logic/src/models/parameters.ts b/sdk/logic/arm-logic/src/models/parameters.ts index ad3655dcb428..5655d2f2eeba 100644 --- a/sdk/logic/arm-logic/src/models/parameters.ts +++ b/sdk/logic/arm-logic/src/models/parameters.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsMappers.ts index fd6065c1859b..1035610ae3fb 100644 --- a/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -77,6 +77,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts index 1126ae8398ad..aa2918aa1ebd 100644 --- a/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowRunActionRequestHistoriesMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunActionRequestHistoriesMappers.ts index 1126ae8398ad..aa2918aa1ebd 100644 --- a/sdk/logic/arm-logic/src/models/workflowRunActionRequestHistoriesMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowRunActionRequestHistoriesMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowRunActionScopeRepetitionsMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunActionScopeRepetitionsMappers.ts index bbe71bf49018..aa89cab37a1e 100644 --- a/sdk/logic/arm-logic/src/models/workflowRunActionScopeRepetitionsMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowRunActionScopeRepetitionsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowRunActionsMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunActionsMappers.ts index 1578da92db49..7df4aeefd4b0 100644 --- a/sdk/logic/arm-logic/src/models/workflowRunActionsMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowRunActionsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -77,6 +77,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowRunOperationsMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunOperationsMappers.ts index 7dfa1156d8cc..ff544dfbf414 100644 --- a/sdk/logic/arm-logic/src/models/workflowRunOperationsMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowRunOperationsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowRunsMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunsMappers.ts index 5016ba364536..4454c953cf95 100644 --- a/sdk/logic/arm-logic/src/models/workflowRunsMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowRunsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowTriggerHistoriesMappers.ts b/sdk/logic/arm-logic/src/models/workflowTriggerHistoriesMappers.ts index b30d16a768d3..71276a8e7497 100644 --- a/sdk/logic/arm-logic/src/models/workflowTriggerHistoriesMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowTriggerHistoriesMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowTriggersMappers.ts b/sdk/logic/arm-logic/src/models/workflowTriggersMappers.ts index 71f71a31a2f2..06f6a3445602 100644 --- a/sdk/logic/arm-logic/src/models/workflowTriggersMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowTriggersMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowVersionTriggersMappers.ts b/sdk/logic/arm-logic/src/models/workflowVersionTriggersMappers.ts index 41bf0fc6430c..af51d515ba22 100644 --- a/sdk/logic/arm-logic/src/models/workflowVersionTriggersMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowVersionTriggersMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. diff --git a/sdk/logic/arm-logic/src/models/workflowVersionsMappers.ts b/sdk/logic/arm-logic/src/models/workflowVersionsMappers.ts index 8903f7cd44c4..8d3daece973f 100644 --- a/sdk/logic/arm-logic/src/models/workflowVersionsMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowVersionsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -72,6 +72,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/models/workflowsMappers.ts b/sdk/logic/arm-logic/src/models/workflowsMappers.ts index 91f0a2be4cd0..fc6402b4834c 100644 --- a/sdk/logic/arm-logic/src/models/workflowsMappers.ts +++ b/sdk/logic/arm-logic/src/models/workflowsMappers.ts @@ -1,6 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is regenerated. @@ -74,6 +74,7 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentProperties, diff --git a/sdk/logic/arm-logic/src/operations/index.ts b/sdk/logic/arm-logic/src/operations/index.ts index 48c1076bde02..a8fd9991c958 100644 --- a/sdk/logic/arm-logic/src/operations/index.ts +++ b/sdk/logic/arm-logic/src/operations/index.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/operations/integrationAccountAgreements.ts b/sdk/logic/arm-logic/src/operations/integrationAccountAgreements.ts index a1bfb91ea014..d997da83195e 100644 --- a/sdk/logic/arm-logic/src/operations/integrationAccountAgreements.ts +++ b/sdk/logic/arm-logic/src/operations/integrationAccountAgreements.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -216,7 +215,7 @@ export class IntegrationAccountAgreements { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.IntegrationAccountAgreementsListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -227,8 +226,8 @@ export class IntegrationAccountAgreements { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.IntegrationAccountAgreementsListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.IntegrationAccountAgreementsListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -395,6 +394,11 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationAccountAssemblies.ts b/sdk/logic/arm-logic/src/operations/integrationAccountAssemblies.ts index c4486e8115b7..cff77adf5309 100644 --- a/sdk/logic/arm-logic/src/operations/integrationAccountAssemblies.ts +++ b/sdk/logic/arm-logic/src/operations/integrationAccountAssemblies.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/operations/integrationAccountBatchConfigurations.ts b/sdk/logic/arm-logic/src/operations/integrationAccountBatchConfigurations.ts index d2dcdbf7b22d..8d512ebe7057 100644 --- a/sdk/logic/arm-logic/src/operations/integrationAccountBatchConfigurations.ts +++ b/sdk/logic/arm-logic/src/operations/integrationAccountBatchConfigurations.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/operations/integrationAccountCertificates.ts b/sdk/logic/arm-logic/src/operations/integrationAccountCertificates.ts index de6d186509c8..b04d99fef0d9 100644 --- a/sdk/logic/arm-logic/src/operations/integrationAccountCertificates.ts +++ b/sdk/logic/arm-logic/src/operations/integrationAccountCertificates.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -176,7 +175,7 @@ export class IntegrationAccountCertificates { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.IntegrationAccountCertificatesListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -187,8 +186,8 @@ export class IntegrationAccountCertificates { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.IntegrationAccountCertificatesListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.IntegrationAccountCertificatesListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -321,6 +320,10 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationAccountMaps.ts b/sdk/logic/arm-logic/src/operations/integrationAccountMaps.ts index db5301ae5eed..c24c67c13136 100644 --- a/sdk/logic/arm-logic/src/operations/integrationAccountMaps.ts +++ b/sdk/logic/arm-logic/src/operations/integrationAccountMaps.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -216,7 +215,7 @@ export class IntegrationAccountMaps { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.IntegrationAccountMapsListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -227,8 +226,8 @@ export class IntegrationAccountMaps { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.IntegrationAccountMapsListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.IntegrationAccountMapsListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -395,6 +394,11 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationAccountPartners.ts b/sdk/logic/arm-logic/src/operations/integrationAccountPartners.ts index 612b298aca4e..0b2415299f12 100644 --- a/sdk/logic/arm-logic/src/operations/integrationAccountPartners.ts +++ b/sdk/logic/arm-logic/src/operations/integrationAccountPartners.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -216,7 +215,7 @@ export class IntegrationAccountPartners { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.IntegrationAccountPartnersListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -227,8 +226,8 @@ export class IntegrationAccountPartners { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.IntegrationAccountPartnersListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.IntegrationAccountPartnersListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -395,6 +394,11 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationAccountSchemas.ts b/sdk/logic/arm-logic/src/operations/integrationAccountSchemas.ts index e28af82eeb09..b39f27790eeb 100644 --- a/sdk/logic/arm-logic/src/operations/integrationAccountSchemas.ts +++ b/sdk/logic/arm-logic/src/operations/integrationAccountSchemas.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -216,7 +215,7 @@ export class IntegrationAccountSchemas { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.IntegrationAccountSchemasListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -227,8 +226,8 @@ export class IntegrationAccountSchemas { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.IntegrationAccountSchemasListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.IntegrationAccountSchemasListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -395,6 +394,11 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationAccountSessions.ts b/sdk/logic/arm-logic/src/operations/integrationAccountSessions.ts index 4fee30d9da60..0a4b1485156c 100644 --- a/sdk/logic/arm-logic/src/operations/integrationAccountSessions.ts +++ b/sdk/logic/arm-logic/src/operations/integrationAccountSessions.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -176,7 +175,7 @@ export class IntegrationAccountSessions { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.IntegrationAccountSessionsListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -187,8 +186,8 @@ export class IntegrationAccountSessions { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.IntegrationAccountSessionsListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.IntegrationAccountSessionsListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -322,6 +321,11 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationAccounts.ts b/sdk/logic/arm-logic/src/operations/integrationAccounts.ts index 31c47cd38072..61bcbe3ee90a 100644 --- a/sdk/logic/arm-logic/src/operations/integrationAccounts.ts +++ b/sdk/logic/arm-logic/src/operations/integrationAccounts.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -364,7 +363,7 @@ export class IntegrationAccounts { * @param [options] The optional parameters * @returns Promise */ - listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listBySubscriptionNext(nextPageLink: string, options?: Models.IntegrationAccountsListBySubscriptionNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -375,8 +374,8 @@ export class IntegrationAccounts { * @param options The optional parameters * @param callback The callback */ - listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listBySubscriptionNext(nextPageLink: string, options: Models.IntegrationAccountsListBySubscriptionNextOptionalParams, callback: msRest.ServiceCallback): void; + listBySubscriptionNext(nextPageLink: string, options?: Models.IntegrationAccountsListBySubscriptionNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -392,7 +391,7 @@ export class IntegrationAccounts { * @param [options] The optional parameters * @returns Promise */ - listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listByResourceGroupNext(nextPageLink: string, options?: Models.IntegrationAccountsListByResourceGroupNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -403,8 +402,8 @@ export class IntegrationAccounts { * @param options The optional parameters * @param callback The callback */ - listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listByResourceGroupNext(nextPageLink: string, options: Models.IntegrationAccountsListByResourceGroupNextOptionalParams, callback: msRest.ServiceCallback): void; + listByResourceGroupNext(nextPageLink: string, options?: Models.IntegrationAccountsListByResourceGroupNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -715,6 +714,10 @@ const listBySubscriptionNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top + ], headerParameters: [ Parameters.acceptLanguage ], @@ -736,6 +739,10 @@ const listByResourceGroupNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentManagedApiOperations.ts b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentManagedApiOperations.ts index 1a502e3a3817..0af3f7c7c43b 100644 --- a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentManagedApiOperations.ts +++ b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentManagedApiOperations.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -126,6 +125,9 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentManagedApis.ts b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentManagedApis.ts index cb432519726f..cd10a7cc3045 100644 --- a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentManagedApis.ts +++ b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentManagedApis.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -304,6 +303,9 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentNetworkHealth.ts b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentNetworkHealth.ts index cbbb900d3a52..d6b3713026ed 100644 --- a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentNetworkHealth.ts +++ b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentNetworkHealth.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentSkus.ts b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentSkus.ts index 7e623dd24be7..b62cef47c0ae 100644 --- a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentSkus.ts +++ b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironmentSkus.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -121,6 +120,9 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironments.ts b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironments.ts index 7ec0be01dcb9..e74bafb16c91 100644 --- a/sdk/logic/arm-logic/src/operations/integrationServiceEnvironments.ts +++ b/sdk/logic/arm-logic/src/operations/integrationServiceEnvironments.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -247,7 +246,7 @@ export class IntegrationServiceEnvironments { * @param [options] The optional parameters * @returns Promise */ - listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listBySubscriptionNext(nextPageLink: string, options?: Models.IntegrationServiceEnvironmentsListBySubscriptionNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -258,8 +257,8 @@ export class IntegrationServiceEnvironments { * @param options The optional parameters * @param callback The callback */ - listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listBySubscriptionNext(nextPageLink: string, options: Models.IntegrationServiceEnvironmentsListBySubscriptionNextOptionalParams, callback: msRest.ServiceCallback): void; + listBySubscriptionNext(nextPageLink: string, options?: Models.IntegrationServiceEnvironmentsListBySubscriptionNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -275,7 +274,7 @@ export class IntegrationServiceEnvironments { * @param [options] The optional parameters * @returns Promise */ - listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listByResourceGroupNext(nextPageLink: string, options?: Models.IntegrationServiceEnvironmentsListByResourceGroupNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -286,8 +285,8 @@ export class IntegrationServiceEnvironments { * @param options The optional parameters * @param callback The callback */ - listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listByResourceGroupNext(nextPageLink: string, options: Models.IntegrationServiceEnvironmentsListByResourceGroupNextOptionalParams, callback: msRest.ServiceCallback): void; + listByResourceGroupNext(nextPageLink: string, options?: Models.IntegrationServiceEnvironmentsListByResourceGroupNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -495,6 +494,10 @@ const listBySubscriptionNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top + ], headerParameters: [ Parameters.acceptLanguage ], @@ -516,6 +519,10 @@ const listByResourceGroupNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/operations.ts b/sdk/logic/arm-logic/src/operations/operations.ts index f9fe6f12ceb2..65bd0a67a2c9 100644 --- a/sdk/logic/arm-logic/src/operations/operations.ts +++ b/sdk/logic/arm-logic/src/operations/operations.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -108,6 +107,9 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/workflowRunActionRepetitions.ts b/sdk/logic/arm-logic/src/operations/workflowRunActionRepetitions.ts index 1cc82c7566ff..83913f276088 100644 --- a/sdk/logic/arm-logic/src/operations/workflowRunActionRepetitions.ts +++ b/sdk/logic/arm-logic/src/operations/workflowRunActionRepetitions.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/operations/workflowRunActionRepetitionsRequestHistories.ts b/sdk/logic/arm-logic/src/operations/workflowRunActionRepetitionsRequestHistories.ts index c4515afbc845..8cff5bf1e565 100644 --- a/sdk/logic/arm-logic/src/operations/workflowRunActionRepetitionsRequestHistories.ts +++ b/sdk/logic/arm-logic/src/operations/workflowRunActionRepetitionsRequestHistories.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -213,6 +212,9 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/workflowRunActionRequestHistories.ts b/sdk/logic/arm-logic/src/operations/workflowRunActionRequestHistories.ts index 1bb67cb64254..a537e7aaf0f4 100644 --- a/sdk/logic/arm-logic/src/operations/workflowRunActionRequestHistories.ts +++ b/sdk/logic/arm-logic/src/operations/workflowRunActionRequestHistories.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -203,6 +202,9 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/workflowRunActionScopeRepetitions.ts b/sdk/logic/arm-logic/src/operations/workflowRunActionScopeRepetitions.ts index 7c5da9dc3f09..954f288932ac 100644 --- a/sdk/logic/arm-logic/src/operations/workflowRunActionScopeRepetitions.ts +++ b/sdk/logic/arm-logic/src/operations/workflowRunActionScopeRepetitions.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/operations/workflowRunActions.ts b/sdk/logic/arm-logic/src/operations/workflowRunActions.ts index acd51a5b5db1..9ebb97204953 100644 --- a/sdk/logic/arm-logic/src/operations/workflowRunActions.ts +++ b/sdk/logic/arm-logic/src/operations/workflowRunActions.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -148,7 +147,7 @@ export class WorkflowRunActions { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.WorkflowRunActionsListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -159,8 +158,8 @@ export class WorkflowRunActions { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.WorkflowRunActionsListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.WorkflowRunActionsListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -262,6 +261,11 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/workflowRunOperations.ts b/sdk/logic/arm-logic/src/operations/workflowRunOperations.ts index 7016adf82570..b43632459e1b 100644 --- a/sdk/logic/arm-logic/src/operations/workflowRunOperations.ts +++ b/sdk/logic/arm-logic/src/operations/workflowRunOperations.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/operations/workflowRuns.ts b/sdk/logic/arm-logic/src/operations/workflowRuns.ts index 688489a83c7d..5ecbf8148f89 100644 --- a/sdk/logic/arm-logic/src/operations/workflowRuns.ts +++ b/sdk/logic/arm-logic/src/operations/workflowRuns.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -136,7 +135,7 @@ export class WorkflowRuns { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.WorkflowRunsListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -147,8 +146,8 @@ export class WorkflowRuns { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.WorkflowRunsListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.WorkflowRunsListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -245,6 +244,11 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/workflowTriggerHistories.ts b/sdk/logic/arm-logic/src/operations/workflowTriggerHistories.ts index a01ada288691..85a06efa3c1f 100644 --- a/sdk/logic/arm-logic/src/operations/workflowTriggerHistories.ts +++ b/sdk/logic/arm-logic/src/operations/workflowTriggerHistories.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -154,7 +153,7 @@ export class WorkflowTriggerHistories { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.WorkflowTriggerHistoriesListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -165,8 +164,8 @@ export class WorkflowTriggerHistories { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.WorkflowTriggerHistoriesListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.WorkflowTriggerHistoriesListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -266,6 +265,11 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/workflowTriggers.ts b/sdk/logic/arm-logic/src/operations/workflowTriggers.ts index ef49588889e3..db215d230a3d 100644 --- a/sdk/logic/arm-logic/src/operations/workflowTriggers.ts +++ b/sdk/logic/arm-logic/src/operations/workflowTriggers.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -284,7 +283,7 @@ export class WorkflowTriggers { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.WorkflowTriggersListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -295,8 +294,8 @@ export class WorkflowTriggers { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.WorkflowTriggersListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.WorkflowTriggersListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -501,6 +500,11 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/workflowVersionTriggers.ts b/sdk/logic/arm-logic/src/operations/workflowVersionTriggers.ts index 0887ec61e7c4..0201eccc6c8f 100644 --- a/sdk/logic/arm-logic/src/operations/workflowVersionTriggers.ts +++ b/sdk/logic/arm-logic/src/operations/workflowVersionTriggers.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is diff --git a/sdk/logic/arm-logic/src/operations/workflowVersions.ts b/sdk/logic/arm-logic/src/operations/workflowVersions.ts index 4130c12b8554..abef1e2f14b4 100644 --- a/sdk/logic/arm-logic/src/operations/workflowVersions.ts +++ b/sdk/logic/arm-logic/src/operations/workflowVersions.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -100,7 +99,7 @@ export class WorkflowVersions { * @param [options] The optional parameters * @returns Promise */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listNext(nextPageLink: string, options?: Models.WorkflowVersionsListNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -111,8 +110,8 @@ export class WorkflowVersions { * @param options The optional parameters * @param callback The callback */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listNext(nextPageLink: string, options: Models.WorkflowVersionsListNextOptionalParams, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: Models.WorkflowVersionsListNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -184,6 +183,10 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top + ], headerParameters: [ Parameters.acceptLanguage ], diff --git a/sdk/logic/arm-logic/src/operations/workflows.ts b/sdk/logic/arm-logic/src/operations/workflows.ts index 19641ba4f5cd..2544d7f8536a 100644 --- a/sdk/logic/arm-logic/src/operations/workflows.ts +++ b/sdk/logic/arm-logic/src/operations/workflows.ts @@ -1,7 +1,6 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. * * Code generated by Microsoft (R) AutoRest Code Generator. * Changes may cause incorrect behavior and will be lost if the code is @@ -530,7 +529,7 @@ export class Workflows { * @param [options] The optional parameters * @returns Promise */ - listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listBySubscriptionNext(nextPageLink: string, options?: Models.WorkflowsListBySubscriptionNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -541,8 +540,8 @@ export class Workflows { * @param options The optional parameters * @param callback The callback */ - listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listBySubscriptionNext(nextPageLink: string, options: Models.WorkflowsListBySubscriptionNextOptionalParams, callback: msRest.ServiceCallback): void; + listBySubscriptionNext(nextPageLink: string, options?: Models.WorkflowsListBySubscriptionNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -558,7 +557,7 @@ export class Workflows { * @param [options] The optional parameters * @returns Promise */ - listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; + listByResourceGroupNext(nextPageLink: string, options?: Models.WorkflowsListByResourceGroupNextOptionalParams): Promise; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback @@ -569,8 +568,8 @@ export class Workflows { * @param options The optional parameters * @param callback The callback */ - listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + listByResourceGroupNext(nextPageLink: string, options: Models.WorkflowsListByResourceGroupNextOptionalParams, callback: msRest.ServiceCallback): void; + listByResourceGroupNext(nextPageLink: string, options?: Models.WorkflowsListByResourceGroupNextOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -1017,6 +1016,11 @@ const listBySubscriptionNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ], @@ -1038,6 +1042,11 @@ const listByResourceGroupNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion, + Parameters.top, + Parameters.filter + ], headerParameters: [ Parameters.acceptLanguage ],