diff --git a/sdk/logic/arm-logic/LICENSE.txt b/sdk/logic/arm-logic/LICENSE.txt index ea8fb1516028..2d3163745319 100644 --- a/sdk/logic/arm-logic/LICENSE.txt +++ b/sdk/logic/arm-logic/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2020 Microsoft +Copyright (c) 2021 Microsoft Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/sdk/logic/arm-logic/README.md b/sdk/logic/arm-logic/README.md index c12bcff569c3..17d1ca614703 100644 --- a/sdk/logic/arm-logic/README.md +++ b/sdk/logic/arm-logic/README.md @@ -1,94 +1,101 @@ ## Azure LogicManagementClient SDK for JavaScript -This package contains an isomorphic SDK for LogicManagementClient. +This package contains an isomorphic SDK (runs both in node.js and in browsers) for LogicManagementClient. ### Currently supported environments -- Node.js version 6.x.x or higher -- Browser JavaScript +- [LTS versions of Node.js](https://nodejs.org/about/releases/) +- Latest versions of Safari, Chrome, Edge and Firefox. -### How to Install +### Prerequisites +You must have an [Azure subscription](https://azure.microsoft.com/free/). + +### How to install + +To use this SDK in your project, you will need to install two packages. +- `@azure/arm-logic` that contains the client. +- `@azure/identity` that provides different mechanisms for the client to authenticate your requests using Azure Active Directory. + +Install both packages using the below command: ```bash -npm install @azure/arm-logic +npm install --save @azure/arm-logic @azure/identity ``` +> **Note**: You may have used either `@azure/ms-rest-nodeauth` or `@azure/ms-rest-browserauth` in the past. These packages are in maintenance mode receiving critical bug fixes, but no new features. +If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/), or are writing a client side browser application, we strongly encourage you to upgrade to `@azure/identity` which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options. ### How to use -#### nodejs - Authentication, client creation and listBySubscription workflows as an example written in TypeScript. +- If you are writing a client side browser application, + - Follow the instructions in the section on Authenticating client side browser applications in [Azure Identity examples](https://aka.ms/azsdk/js/identity/examples) to register your application in the Microsoft identity platform and set the right permissions. + - Copy the client ID and tenant ID from the Overview section of your app registration in Azure portal and use it in the browser sample below. +- If you are writing a server side application, + - [Select a credential from `@azure/identity` based on the authentication method of your choice](https://aka.ms/azsdk/js/identity/examples) + - Complete the set up steps required by the credential if any. + - Use the credential you picked in the place of `DefaultAzureCredential` in the Node.js sample below. -##### Install @azure/ms-rest-nodeauth - -- Please install minimum version of `"@azure/ms-rest-nodeauth": "^3.0.0"`. -```bash -npm install @azure/ms-rest-nodeauth@"^3.0.0" -``` +In the below samples, we pass the credential and the Azure subscription id to instantiate the client. +Once the client is created, explore the operations on it either in your favorite editor or in our [API reference documentation](https://docs.microsoft.com/javascript/api) to get started. +#### nodejs - Authentication, client creation, and listBySubscription workflows as an example written in JavaScript. ##### Sample code -```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"; +```javascript +const { DefaultAzureCredential } = require("@azure/identity"); +const { LogicManagementClient } = require("@azure/arm-logic"); const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"]; -msRestNodeAuth.interactiveLogin().then((creds) => { - const client = new LogicManagementClient(creds, subscriptionId); - const top = 1; - const filter = "testfilter"; - client.workflows.listBySubscription(top, filter).then((result) => { - console.log("The result is:"); - console.log(result); - }); +// Use `DefaultAzureCredential` or any other credential of your choice based on https://aka.ms/azsdk/js/identity/examples +// Please note that you can also use credentials from the `@azure/ms-rest-nodeauth` package instead. +const creds = new DefaultAzureCredential(); +const client = new LogicManagementClient(creds, subscriptionId); +const top = 1; +const filter = "testfilter"; +client.workflows.listBySubscription(top, filter).then((result) => { + console.log("The result is:"); + console.log(result); }).catch((err) => { + console.log("An error occurred:"); console.error(err); }); ``` -#### browser - Authentication, client creation and listBySubscription workflows as an example written in JavaScript. +#### browser - Authentication, client creation, and listBySubscription workflows as an example written in JavaScript. -##### Install @azure/ms-rest-browserauth - -```bash -npm install @azure/ms-rest-browserauth -``` +In browser applications, we recommend using the `InteractiveBrowserCredential` that interactively authenticates using the default system browser. + - See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser. + - Note down the client Id from the previous step and use it in the browser sample below. ##### Sample code -See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser. - - index.html + ```html @azure/arm-logic sample - - + diff --git a/sdk/logic/arm-logic/package.json b/sdk/logic/arm-logic/package.json index d562943fe641..c3b1eedf0ad8 100644 --- a/sdk/logic/arm-logic/package.json +++ b/sdk/logic/arm-logic/package.json @@ -4,8 +4,9 @@ "description": "LogicManagementClient Library with typescript type definitions for node.js and browser.", "version": "7.0.0", "dependencies": { - "@azure/ms-rest-azure-js": "^2.0.1", - "@azure/ms-rest-js": "^2.0.4", + "@azure/ms-rest-azure-js": "^2.1.0", + "@azure/ms-rest-js": "^2.2.0", + "@azure/core-auth": "^1.1.4", "tslib": "^1.10.0" }, "keywords": [ @@ -20,13 +21,13 @@ "module": "./esm/logicManagementClient.js", "types": "./esm/logicManagementClient.d.ts", "devDependencies": { - "typescript": "^3.5.3", + "typescript": "^3.6.0", "rollup": "^1.18.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-sourcemaps": "^0.4.2", "uglify-js": "^3.6.0" }, - "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/logic/arm-logic", + "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/logic/arm-logic", "repository": { "type": "git", "url": "https://github.com/Azure/azure-sdk-for-js.git" 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..c3a6af2b43aa 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 @@ -9,6 +8,7 @@ */ import * as msRest from "@azure/ms-rest-js"; +import { TokenCredential } from "@azure/core-auth"; import * as Models from "./models"; import * as Mappers from "./models/mappers"; import * as operations from "./operations"; @@ -47,11 +47,16 @@ class LogicManagementClient extends LogicManagementClientContext { /** * Initializes a new instance of the LogicManagementClient class. - * @param credentials Credentials needed for the client to connect to Azure. + * @param credentials Credentials needed for the client to connect to Azure. Credentials + * implementing the TokenCredential interface from the @azure/identity package are recommended. For + * more information about these credentials, see + * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the + * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and + * @azure/ms-rest-browserauth are also supported. * @param subscriptionId The subscription id. * @param [options] The parameter options */ - constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.LogicManagementClientOptions) { + constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.LogicManagementClientOptions) { super(credentials, subscriptionId, options); this.workflows = new operations.Workflows(this); this.workflowVersions = new operations.WorkflowVersions(this); diff --git a/sdk/logic/arm-logic/src/logicManagementClientContext.ts b/sdk/logic/arm-logic/src/logicManagementClientContext.ts index 0fc08b13b4d0..fdd98a691f2c 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 @@ -11,22 +10,28 @@ import * as Models from "./models"; import * as msRest from "@azure/ms-rest-js"; import * as msRestAzure from "@azure/ms-rest-azure-js"; +import { TokenCredential } from "@azure/core-auth"; const packageName = "@azure/arm-logic"; const packageVersion = "7.0.0"; export class LogicManagementClientContext extends msRestAzure.AzureServiceClient { - credentials: msRest.ServiceClientCredentials; + credentials: msRest.ServiceClientCredentials | TokenCredential; subscriptionId: string; apiVersion?: string; /** * Initializes a new instance of the LogicManagementClient class. - * @param credentials Credentials needed for the client to connect to Azure. + * @param credentials Credentials needed for the client to connect to Azure. Credentials + * implementing the TokenCredential interface from the @azure/identity package are recommended. For + * more information about these credentials, see + * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the + * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and + * @azure/ms-rest-browserauth are also supported. * @param subscriptionId The subscription id. * @param [options] The parameter options */ - constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.LogicManagementClientOptions) { + constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.LogicManagementClientOptions) { if (credentials == undefined) { throw new Error('\'credentials\' cannot be null.'); } @@ -37,7 +42,7 @@ export class LogicManagementClientContext extends msRestAzure.AzureServiceClient if (!options) { options = {}; } - if(!options.userAgent) { + if (!options.userAgent) { const defaultUserAgent = msRestAzure.getDefaultUserAgentValue(); options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`; } @@ -52,10 +57,10 @@ export class LogicManagementClientContext extends msRestAzure.AzureServiceClient this.credentials = credentials; this.subscriptionId = subscriptionId; - if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) { + if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) { this.acceptLanguage = options.acceptLanguage; } - if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) { + if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) { this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout; } } diff --git a/sdk/logic/arm-logic/src/models/index.ts b/sdk/logic/arm-logic/src/models/index.ts index 2ee2e2df0345..8200398c85ad 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,34 @@ export interface NetworkConfiguration { subnets?: ResourceReference[]; } +/** + * The encryption key details for the integration service environment. + */ +export interface IntegrationServiceEnvironmenEncryptionKeyReference { + /** + * 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 encryption configuration for the integration service environment. + */ +export interface IntegrationServiceEnvironmenEncryptionConfiguration { + /** + * The encryption key reference. + */ + encryptionKeyReference?: IntegrationServiceEnvironmenEncryptionKeyReference; +} + /** * The integration service environment properties. */ @@ -1906,6 +1934,10 @@ export interface IntegrationServiceEnvironmentProperties { * The network configuration. */ networkConfiguration?: NetworkConfiguration; + /** + * The encryption configuration. + */ + encryptionConfiguration?: IntegrationServiceEnvironmenEncryptionConfiguration; } /** @@ -4477,6 +4509,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 +4549,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 +4573,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 +4612,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 +4642,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 +4671,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 +4705,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 +4739,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 +4767,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 +4795,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 +4823,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 +4847,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 +4871,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 +4905,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..2d8d28a717bc 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..de5b0495cff7 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..392749fba24a 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..afc474482af5 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..066a7273d44b 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..41caee669315 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..e86bcfc2ce7b 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,8 @@ export { IntegrationAccountSchemaListResult, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..aa5262f73c9c 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,8 @@ export { IntegrationAccountSession, IntegrationAccountSessionListResult, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..ba9316c127d3 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..15c64fe8e39a 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..647e7cac35ec 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..47095a9394dc 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..ce18fb8439b0 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,52 @@ export const NetworkConfiguration: msRest.CompositeMapper = { } }; +export const IntegrationServiceEnvironmenEncryptionKeyReference: msRest.CompositeMapper = { + serializedName: "IntegrationServiceEnvironmenEncryptionKeyReference", + type: { + name: "Composite", + className: "IntegrationServiceEnvironmenEncryptionKeyReference", + modelProperties: { + keyVault: { + serializedName: "keyVault", + type: { + name: "Composite", + className: "ResourceReference" + } + }, + keyName: { + serializedName: "keyName", + type: { + name: "String" + } + }, + keyVersion: { + serializedName: "keyVersion", + type: { + name: "String" + } + } + } + } +}; + +export const IntegrationServiceEnvironmenEncryptionConfiguration: msRest.CompositeMapper = { + serializedName: "IntegrationServiceEnvironmenEncryptionConfiguration", + type: { + name: "Composite", + className: "IntegrationServiceEnvironmenEncryptionConfiguration", + modelProperties: { + encryptionKeyReference: { + serializedName: "encryptionKeyReference", + type: { + name: "Composite", + className: "IntegrationServiceEnvironmenEncryptionKeyReference" + } + } + } + } +}; + export const IntegrationServiceEnvironmentProperties: msRest.CompositeMapper = { serializedName: "IntegrationServiceEnvironmentProperties", type: { @@ -3117,6 +3163,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..849758460865 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..78a7f1900c6b 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..78a7f1900c6b 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..e0448d8b4d77 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..617fe190d416 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..bcc2a2cc1768 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..dd2ea26af725 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..63370a580a42 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..d3715ca31349 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..65f0e4b4982c 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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..b521b789be85 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,8 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, 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 ],