From 2e3c6fdbc8da199248ab4b09f49827b78422f6e9 Mon Sep 17 00:00:00 2001 From: SDKAuto Date: Tue, 5 Oct 2021 20:05:12 +0000 Subject: [PATCH] CodeGen from PR 16181 in Azure/azure-rest-api-specs Merge e22738da02c088fdd09316b15f8218f7c905b408 into d2774322bc5be6fa35945e9c6004b8d34c451732 --- sdk/logic/arm-logic/LICENSE.txt | 2 +- sdk/logic/arm-logic/README.md | 8 +- sdk/logic/arm-logic/package.json | 2 +- sdk/logic/arm-logic/rollup.config.js | 4 +- .../arm-logic/src/logicManagementClient.ts | 5 +- .../src/logicManagementClientContext.ts | 7 +- sdk/logic/arm-logic/src/models/index.ts | 488 ++++++++++++++++-- .../integrationAccountAgreementsMappers.ts | 10 +- .../integrationAccountAssembliesMappers.ts | 10 +- ...rationAccountBatchConfigurationsMappers.ts | 10 +- .../integrationAccountCertificatesMappers.ts | 10 +- .../models/integrationAccountMapsMappers.ts | 10 +- .../integrationAccountPartnersMappers.ts | 10 +- .../integrationAccountSchemasMappers.ts | 10 +- .../integrationAccountSessionsMappers.ts | 10 +- .../src/models/integrationAccountsMappers.ts | 10 +- ...eEnvironmentManagedApiOperationsMappers.ts | 10 +- ...ionServiceEnvironmentManagedApisMappers.ts | 12 +- ...nServiceEnvironmentNetworkHealthMappers.ts | 4 +- ...ntegrationServiceEnvironmentSkusMappers.ts | 4 +- .../integrationServiceEnvironmentsMappers.ts | 10 +- sdk/logic/arm-logic/src/models/mappers.ts | 339 +++++++++++- .../arm-logic/src/models/operationsMappers.ts | 4 +- sdk/logic/arm-logic/src/models/parameters.ts | 5 +- .../workflowRunActionRepetitionsMappers.ts | 10 +- ...ctionRepetitionsRequestHistoriesMappers.ts | 10 +- ...orkflowRunActionRequestHistoriesMappers.ts | 10 +- ...orkflowRunActionScopeRepetitionsMappers.ts | 10 +- .../src/models/workflowRunActionsMappers.ts | 10 +- .../models/workflowRunOperationsMappers.ts | 10 +- .../src/models/workflowRunsMappers.ts | 10 +- .../models/workflowTriggerHistoriesMappers.ts | 10 +- .../src/models/workflowTriggersMappers.ts | 10 +- .../models/workflowVersionTriggersMappers.ts | 4 +- .../src/models/workflowVersionsMappers.ts | 10 +- .../arm-logic/src/models/workflowsMappers.ts | 10 +- sdk/logic/arm-logic/src/operations/index.ts | 5 +- .../integrationAccountAgreements.ts | 16 +- .../integrationAccountAssemblies.ts | 5 +- .../integrationAccountBatchConfigurations.ts | 5 +- .../integrationAccountCertificates.ts | 15 +- .../src/operations/integrationAccountMaps.ts | 16 +- .../operations/integrationAccountPartners.ts | 16 +- .../operations/integrationAccountSchemas.ts | 16 +- .../operations/integrationAccountSessions.ts | 16 +- .../src/operations/integrationAccounts.ts | 25 +- ...nServiceEnvironmentManagedApiOperations.ts | 8 +- ...ntegrationServiceEnvironmentManagedApis.ts | 52 +- ...egrationServiceEnvironmentNetworkHealth.ts | 5 +- .../integrationServiceEnvironmentSkus.ts | 8 +- .../integrationServiceEnvironments.ts | 25 +- .../arm-logic/src/operations/operations.ts | 8 +- .../workflowRunActionRepetitions.ts | 5 +- ...lowRunActionRepetitionsRequestHistories.ts | 8 +- .../workflowRunActionRequestHistories.ts | 8 +- .../workflowRunActionScopeRepetitions.ts | 5 +- .../src/operations/workflowRunActions.ts | 16 +- .../src/operations/workflowRunOperations.ts | 5 +- .../arm-logic/src/operations/workflowRuns.ts | 16 +- .../operations/workflowTriggerHistories.ts | 16 +- .../src/operations/workflowTriggers.ts | 16 +- .../src/operations/workflowVersionTriggers.ts | 5 +- .../src/operations/workflowVersions.ts | 15 +- .../arm-logic/src/operations/workflows.ts | 27 +- 64 files changed, 1223 insertions(+), 268 deletions(-) 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 2bfd3599e014..17d1ca614703 100644 --- a/sdk/logic/arm-logic/README.md +++ b/sdk/logic/arm-logic/README.md @@ -1,11 +1,11 @@ ## Azure LogicManagementClient SDK for JavaScript -This package contains an isomorphic SDK (runs both in Node.js and in browsers) for LogicManagementClient. +This package contains an isomorphic SDK (runs both in node.js and in browsers) for LogicManagementClient. ### Currently supported environments - [LTS versions of Node.js](https://nodejs.org/about/releases/) -- Latest versions of Safari, Chrome, Edge, and Firefox. +- Latest versions of Safari, Chrome, Edge and Firefox. ### Prerequisites @@ -21,7 +21,6 @@ Install both packages using the below command: ```bash 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. @@ -37,7 +36,6 @@ If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/ 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 @@ -87,7 +85,7 @@ In browser applications, we recommend using the `InteractiveBrowserCredential` t const credential = new InteractiveBrowserCredential( { clientId: "", - tenantId: "" + tenant: "" }); const client = new Azure.ArmLogic.LogicManagementClient(creds, subscriptionId); const top = 1; diff --git a/sdk/logic/arm-logic/package.json b/sdk/logic/arm-logic/package.json index d5a8cc503993..50f18bfef4e2 100644 --- a/sdk/logic/arm-logic/package.json +++ b/sdk/logic/arm-logic/package.json @@ -27,7 +27,7 @@ "rollup-plugin-sourcemaps": "^0.4.2", "uglify-js": "^3.6.0" }, - "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/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 ce242b941d5e..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 diff --git a/sdk/logic/arm-logic/src/logicManagementClientContext.ts b/sdk/logic/arm-logic/src/logicManagementClientContext.ts index 7a0164691326..48032251f9dc 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 @@ -10,8 +9,8 @@ import * as Models from "./models"; import * as msRest from "@azure/ms-rest-js"; -import { TokenCredential } from "@azure/core-auth"; import * as msRestAzure from "@azure/ms-rest-azure-js"; +import { TokenCredential } from "@azure/core-auth"; const packageName = "@azure/arm-logic"; const packageVersion = "7.1.1"; diff --git a/sdk/logic/arm-logic/src/models/index.ts b/sdk/logic/arm-logic/src/models/index.ts index 2ee2e2df0345..e683def79650 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. @@ -139,9 +139,8 @@ export interface OpenAuthenticationPolicyClaim { export interface OpenAuthenticationAccessPolicy { /** * Type of provider for OAuth. Possible values include: 'AAD' - * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - readonly type?: OpenAuthenticationProviderType; + type?: OpenAuthenticationProviderType; /** * The access policy claims. */ @@ -232,6 +231,50 @@ export interface WorkflowParameter { description?: string; } +/** + * User Assigned identity properties. + */ +export interface UserAssignedIdentity { + /** + * Principal Id of user assigned identity + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly principalId?: string; + /** + * Client Id of user assigned identity + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly clientId?: string; +} + +/** + * Managed service identity properties. + */ +export interface ManagedServiceIdentity { + /** + * Type of managed service identity. The type 'SystemAssigned' includes an implicitly created + * identity. The type 'None' will remove any identities from the resource. Possible values + * include: 'SystemAssigned', 'UserAssigned', 'None' + */ + type: ManagedServiceIdentityType; + /** + * Tenant of managed service identity. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly tenantId?: string; + /** + * Principal Id of managed service identity. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly principalId?: string; + /** + * The list of user assigned identities associated with the resource. The user identity + * dictionary key references will be ARM resource ids in the form: + * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName} + */ + userAssignedIdentities?: { [propertyName: string]: UserAssignedIdentity }; +} + /** * The workflow type. */ @@ -298,6 +341,7 @@ export interface Workflow extends Resource { * The parameters. */ parameters?: { [propertyName: string]: WorkflowParameter }; + identity?: ManagedServiceIdentity; } /** @@ -619,20 +663,24 @@ export interface ContentLink { uri?: string; /** * The content version. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - contentVersion?: string; + readonly contentVersion?: string; /** * The content size. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - contentSize?: number; + readonly contentSize?: number; /** * The content hash. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - contentHash?: ContentHash; + readonly contentHash?: ContentHash; /** * The metadata. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - metadata?: any; + readonly metadata?: any; } /** @@ -1688,44 +1736,54 @@ export interface ApiResourceDefinitions { export interface ApiResourceProperties { /** * The name + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - name?: string; + readonly name?: string; /** * The connection parameters. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - connectionParameters?: { [propertyName: string]: any }; + readonly connectionParameters?: { [propertyName: string]: any }; /** * The metadata. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - metadata?: ApiResourceMetadata; + readonly metadata?: ApiResourceMetadata; /** * The runtime urls. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - runtimeUrls?: string[]; + readonly runtimeUrls?: string[]; /** * The api general information. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - generalInformation?: ApiResourceGeneralInformation; + readonly generalInformation?: ApiResourceGeneralInformation; /** * The capabilities. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - capabilities?: string[]; + readonly capabilities?: string[]; /** * The backend service. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - backendService?: ApiResourceBackendService; + readonly backendService?: ApiResourceBackendService; /** * The policies for the API. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - policies?: ApiResourcePolicies; + readonly policies?: ApiResourcePolicies; /** * The API definition. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - apiDefinitionUrl?: string; + readonly apiDefinitionUrl?: string; /** * The api definitions. + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - apiDefinitions?: ApiResourceDefinitions; + readonly apiDefinitions?: ApiResourceDefinitions; /** * The integration service environment reference. */ @@ -1735,12 +1793,14 @@ export interface ApiResourceProperties { * 'Ready', 'Creating', 'Created', 'Deleting', 'Deleted', 'Canceled', 'Failed', 'Succeeded', * 'Moving', 'Updating', 'Registering', 'Registered', 'Unregistering', 'Unregistered', * 'Completed', 'Renewing', 'Pending', 'Waiting', 'InProgress' + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - provisioningState?: WorkflowProvisioningState; + readonly provisioningState?: WorkflowProvisioningState; /** * The category. Possible values include: 'NotSpecified', 'Enterprise', 'Standard', 'Premium' + * **NOTE: This property will not be serialized. It can only be populated by the server.** */ - category?: ApiTier; + readonly category?: ApiTier; } /** @@ -1753,6 +1813,20 @@ export interface ManagedApi extends Resource { properties?: ApiResourceProperties; } +/** + * The list of managed APIs. + */ +export interface ManagedApiListResult { + /** + * The managed APIs. + */ + value?: ManagedApi[]; + /** + * The URL to get the next set of results. + */ + nextLink?: string; +} + /** * The network endpoint. */ @@ -1878,6 +1952,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 +2008,10 @@ export interface IntegrationServiceEnvironmentProperties { * The network configuration. */ networkConfiguration?: NetworkConfiguration; + /** + * The encryption configuration. + */ + encryptionConfiguration?: IntegrationServiceEnvironmenEncryptionConfiguration; } /** @@ -1934,6 +2040,7 @@ export interface IntegrationServiceEnvironment extends Resource { * The sku. */ sku?: IntegrationServiceEnvironmentSku; + identity?: ManagedServiceIdentity; } /** @@ -1990,6 +2097,93 @@ export interface IntegrationServiceEnvironmentSkuDefinition { capacity?: IntegrationServiceEnvironmentSkuCapacity; } +/** + * The integration service environment managed api deployment parameters. + */ +export interface IntegrationServiceEnvironmentManagedApiDeploymentParameters { + /** + * The integration service environment managed api content link for deployment. + */ + contentLinkDefinition?: ContentLink; +} + +/** + * The integration service environment managed api. + */ +export interface IntegrationServiceEnvironmentManagedApi extends Resource { + /** + * The name + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly integrationServiceEnvironmentManagedApiName?: string; + /** + * The connection parameters. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly connectionParameters?: { [propertyName: string]: any }; + /** + * The metadata. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly metadata?: ApiResourceMetadata; + /** + * The runtime urls. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly runtimeUrls?: string[]; + /** + * The api general information. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly generalInformation?: ApiResourceGeneralInformation; + /** + * The capabilities. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly capabilities?: string[]; + /** + * The backend service. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly backendService?: ApiResourceBackendService; + /** + * The policies for the API. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly policies?: ApiResourcePolicies; + /** + * The API definition. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly apiDefinitionUrl?: string; + /** + * The api definitions. + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly apiDefinitions?: ApiResourceDefinitions; + /** + * The integration service environment reference. + */ + integrationServiceEnvironment?: ResourceReference; + /** + * The provisioning state. Possible values include: 'NotSpecified', 'Accepted', 'Running', + * 'Ready', 'Creating', 'Created', 'Deleting', 'Deleted', 'Canceled', 'Failed', 'Succeeded', + * 'Moving', 'Updating', 'Registering', 'Registered', 'Unregistering', 'Unregistered', + * 'Completed', 'Renewing', 'Pending', 'Waiting', 'InProgress' + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly provisioningState?: WorkflowProvisioningState; + /** + * The category. Possible values include: 'NotSpecified', 'Enterprise', 'Standard', 'Premium' + * **NOTE: This property will not be serialized. It can only be populated by the server.** + */ + readonly category?: ApiTier; + /** + * The integration service environment managed api deployment parameters. + */ + deploymentParameters?: IntegrationServiceEnvironmentManagedApiDeploymentParameters; +} + /** * The integration account sku. */ @@ -2007,7 +2201,7 @@ export interface IntegrationAccount extends Resource { /** * The integration service environment. */ - integrationServiceEnvironment?: IntegrationServiceEnvironment; + integrationServiceEnvironment?: ResourceReference; /** * The workflow state. Possible values include: 'NotSpecified', 'Completed', 'Enabled', * 'Disabled', 'Deleted', 'Suspended' @@ -4477,6 +4671,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 +4711,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 +4735,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 +4774,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 +4804,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 +4833,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 +4867,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 +4901,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 +4929,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 +4957,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 +4985,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 +5009,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 +5033,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 +5067,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. */ @@ -4925,10 +5337,10 @@ export interface IntegrationServiceEnvironmentSkuList extends Array + * The list of integration service environment managed APIs. + * @extends Array */ -export interface ManagedApiListResult extends Array { +export interface IntegrationServiceEnvironmentManagedApiListResult extends Array { /** * The URL to get the next set of results. */ @@ -5005,6 +5417,14 @@ export type SkuName = 'NotSpecified' | 'Free' | 'Shared' | 'Basic' | 'Standard' */ export type ParameterType = 'NotSpecified' | 'String' | 'SecureString' | 'Int' | 'Float' | 'Bool' | 'Array' | 'Object' | 'SecureObject'; +/** + * Defines values for ManagedServiceIdentityType. + * Possible values include: 'SystemAssigned', 'UserAssigned', 'None' + * @readonly + * @enum {string} + */ +export type ManagedServiceIdentityType = 'SystemAssigned' | 'UserAssigned' | 'None'; + /** * Defines values for WorkflowTriggerProvisioningState. * Possible values include: 'NotSpecified', 'Accepted', 'Running', 'Ready', 'Creating', 'Created', @@ -7319,7 +7739,7 @@ export type IntegrationServiceEnvironmentNetworkHealthGetResponse = { /** * Contains response data for the list operation. */ -export type IntegrationServiceEnvironmentManagedApisListResponse = ManagedApiListResult & { +export type IntegrationServiceEnvironmentManagedApisListResponse = IntegrationServiceEnvironmentManagedApiListResult & { /** * The underlying HTTP response. */ @@ -7332,14 +7752,14 @@ export type IntegrationServiceEnvironmentManagedApisListResponse = ManagedApiLis /** * The response body as parsed JSON or XML */ - parsedBody: ManagedApiListResult; + parsedBody: IntegrationServiceEnvironmentManagedApiListResult; }; }; /** * Contains response data for the get operation. */ -export type IntegrationServiceEnvironmentManagedApisGetResponse = ManagedApi & { +export type IntegrationServiceEnvironmentManagedApisGetResponse = IntegrationServiceEnvironmentManagedApi & { /** * The underlying HTTP response. */ @@ -7352,14 +7772,14 @@ export type IntegrationServiceEnvironmentManagedApisGetResponse = ManagedApi & { /** * The response body as parsed JSON or XML */ - parsedBody: ManagedApi; + parsedBody: IntegrationServiceEnvironmentManagedApi; }; }; /** * Contains response data for the put operation. */ -export type IntegrationServiceEnvironmentManagedApisPutResponse = ManagedApi & { +export type IntegrationServiceEnvironmentManagedApisPutResponse = IntegrationServiceEnvironmentManagedApi & { /** * The underlying HTTP response. */ @@ -7372,14 +7792,14 @@ export type IntegrationServiceEnvironmentManagedApisPutResponse = ManagedApi & { /** * The response body as parsed JSON or XML */ - parsedBody: ManagedApi; + parsedBody: IntegrationServiceEnvironmentManagedApi; }; }; /** * Contains response data for the beginPut operation. */ -export type IntegrationServiceEnvironmentManagedApisBeginPutResponse = ManagedApi & { +export type IntegrationServiceEnvironmentManagedApisBeginPutResponse = IntegrationServiceEnvironmentManagedApi & { /** * The underlying HTTP response. */ @@ -7392,14 +7812,14 @@ export type IntegrationServiceEnvironmentManagedApisBeginPutResponse = ManagedAp /** * The response body as parsed JSON or XML */ - parsedBody: ManagedApi; + parsedBody: IntegrationServiceEnvironmentManagedApi; }; }; /** * Contains response data for the listNext operation. */ -export type IntegrationServiceEnvironmentManagedApisListNextResponse = ManagedApiListResult & { +export type IntegrationServiceEnvironmentManagedApisListNextResponse = IntegrationServiceEnvironmentManagedApiListResult & { /** * The underlying HTTP response. */ @@ -7412,7 +7832,7 @@ export type IntegrationServiceEnvironmentManagedApisListNextResponse = ManagedAp /** * The response body as parsed JSON or XML */ - parsedBody: ManagedApiListResult; + parsedBody: IntegrationServiceEnvironmentManagedApiListResult; }; }; diff --git a/sdk/logic/arm-logic/src/models/integrationAccountAgreementsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountAgreementsMappers.ts index 5ec275dcb903..0dccbcbd1f4d 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,8 +74,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -84,6 +88,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -113,6 +118,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountAssembliesMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountAssembliesMappers.ts index 726c847c1188..77bf24199849 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,8 +73,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -83,6 +87,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -112,6 +117,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountBatchConfigurationsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountBatchConfigurationsMappers.ts index d90f8a5f685c..a3569da33059 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,8 +73,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -83,6 +87,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -112,6 +117,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountCertificatesMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountCertificatesMappers.ts index 3a593ffa6b75..5afae8428e28 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,8 +73,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -83,6 +87,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -112,6 +117,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountMapsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountMapsMappers.ts index 74fe03bdfaea..12cce4e438d0 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,8 +74,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -84,6 +88,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -113,6 +118,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountPartnersMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountPartnersMappers.ts index c5a5a2ca7db3..d67fbdb4f263 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,8 +74,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -84,6 +88,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -113,6 +118,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountSchemasMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountSchemasMappers.ts index 466d7359b2b3..4ac72c98d125 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,8 +74,12 @@ export { IntegrationAccountSchemaListResult, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -84,6 +88,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -113,6 +118,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountSessionsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountSessionsMappers.ts index e07ca216267e..8dce9db7d787 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,8 +73,12 @@ export { IntegrationAccountSession, IntegrationAccountSessionListResult, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -83,6 +87,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -112,6 +117,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationAccountsMappers.ts b/sdk/logic/arm-logic/src/models/integrationAccountsMappers.ts index a751f9381e91..3b7098106fe5 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,8 +75,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -89,6 +93,7 @@ export { KeyVaultReference, ListKeyVaultKeysDefinition, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -122,6 +127,7 @@ export { TrackingEvent, TrackingEventErrorInfo, TrackingEventsDefinition, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApiOperationsMappers.ts b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApiOperationsMappers.ts index f75dc861098b..f96ae54fd910 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,8 +73,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -83,6 +87,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -112,6 +117,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApisMappers.ts b/sdk/logic/arm-logic/src/models/integrationServiceEnvironmentManagedApisMappers.ts index d7ab7ae190f5..0298d14f3ac8 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,8 +72,13 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, + IntegrationServiceEnvironmentManagedApiListResult, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -82,7 +87,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, - ManagedApiListResult, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -112,6 +117,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, 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..6c0e18618e44 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,9 +72,13 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, IntegrationServiceEnvironmentListResult, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -83,6 +87,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -112,6 +117,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/mappers.ts b/sdk/logic/arm-logic/src/models/mappers.ts index cb7ff6c1164f..af7fb397d9da 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. @@ -226,7 +226,6 @@ export const OpenAuthenticationAccessPolicy: msRest.CompositeMapper = { className: "OpenAuthenticationAccessPolicy", modelProperties: { type: { - readOnly: true, serializedName: "type", type: { name: "String" @@ -395,6 +394,73 @@ export const WorkflowParameter: msRest.CompositeMapper = { } }; +export const UserAssignedIdentity: msRest.CompositeMapper = { + serializedName: "userAssignedIdentity", + type: { + name: "Composite", + className: "UserAssignedIdentity", + modelProperties: { + principalId: { + readOnly: true, + serializedName: "principalId", + type: { + name: "String" + } + }, + clientId: { + readOnly: true, + serializedName: "clientId", + type: { + name: "String" + } + } + } + } +}; + +export const ManagedServiceIdentity: msRest.CompositeMapper = { + serializedName: "ManagedServiceIdentity", + type: { + name: "Composite", + className: "ManagedServiceIdentity", + modelProperties: { + type: { + required: true, + serializedName: "type", + type: { + name: "String" + } + }, + tenantId: { + readOnly: true, + serializedName: "tenantId", + type: { + name: "Uuid" + } + }, + principalId: { + readOnly: true, + serializedName: "principalId", + type: { + name: "Uuid" + } + }, + userAssignedIdentities: { + serializedName: "userAssignedIdentities", + type: { + name: "Dictionary", + value: { + type: { + name: "Composite", + className: "UserAssignedIdentity" + } + } + } + } + } + } +}; + export const Workflow: msRest.CompositeMapper = { serializedName: "Workflow", type: { @@ -496,6 +562,13 @@ export const Workflow: msRest.CompositeMapper = { } } } + }, + identity: { + serializedName: "identity", + type: { + name: "Composite", + className: "ManagedServiceIdentity" + } } } } @@ -1022,18 +1095,21 @@ export const ContentLink: msRest.CompositeMapper = { } }, contentVersion: { + readOnly: true, serializedName: "contentVersion", type: { name: "String" } }, contentSize: { + readOnly: true, serializedName: "contentSize", type: { name: "Number" } }, contentHash: { + readOnly: true, serializedName: "contentHash", type: { name: "Composite", @@ -1041,6 +1117,7 @@ export const ContentLink: msRest.CompositeMapper = { } }, metadata: { + readOnly: true, serializedName: "metadata", type: { name: "Object" @@ -2741,12 +2818,14 @@ export const ApiResourceProperties: msRest.CompositeMapper = { className: "ApiResourceProperties", modelProperties: { name: { + readOnly: true, serializedName: "name", type: { name: "String" } }, connectionParameters: { + readOnly: true, serializedName: "connectionParameters", type: { name: "Dictionary", @@ -2758,6 +2837,7 @@ export const ApiResourceProperties: msRest.CompositeMapper = { } }, metadata: { + readOnly: true, serializedName: "metadata", type: { name: "Composite", @@ -2765,6 +2845,7 @@ export const ApiResourceProperties: msRest.CompositeMapper = { } }, runtimeUrls: { + readOnly: true, serializedName: "runtimeUrls", type: { name: "Sequence", @@ -2776,6 +2857,7 @@ export const ApiResourceProperties: msRest.CompositeMapper = { } }, generalInformation: { + readOnly: true, serializedName: "generalInformation", type: { name: "Composite", @@ -2783,6 +2865,7 @@ export const ApiResourceProperties: msRest.CompositeMapper = { } }, capabilities: { + readOnly: true, serializedName: "capabilities", type: { name: "Sequence", @@ -2794,6 +2877,7 @@ export const ApiResourceProperties: msRest.CompositeMapper = { } }, backendService: { + readOnly: true, serializedName: "backendService", type: { name: "Composite", @@ -2801,6 +2885,7 @@ export const ApiResourceProperties: msRest.CompositeMapper = { } }, policies: { + readOnly: true, serializedName: "policies", type: { name: "Composite", @@ -2808,12 +2893,14 @@ export const ApiResourceProperties: msRest.CompositeMapper = { } }, apiDefinitionUrl: { + readOnly: true, serializedName: "apiDefinitionUrl", type: { name: "String" } }, apiDefinitions: { + readOnly: true, serializedName: "apiDefinitions", type: { name: "Composite", @@ -2828,12 +2915,14 @@ export const ApiResourceProperties: msRest.CompositeMapper = { } }, provisioningState: { + readOnly: true, serializedName: "provisioningState", type: { name: "String" } }, category: { + readOnly: true, serializedName: "category", type: { name: "String" @@ -2861,6 +2950,34 @@ export const ManagedApi: msRest.CompositeMapper = { } }; +export const ManagedApiListResult: msRest.CompositeMapper = { + serializedName: "ManagedApiListResult", + type: { + name: "Composite", + className: "ManagedApiListResult", + modelProperties: { + value: { + serializedName: "value", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ManagedApi" + } + } + } + }, + nextLink: { + serializedName: "nextLink", + type: { + name: "String" + } + } + } + } +}; + export const IntegrationServiceEnvironmentNetworkEndpoint: msRest.CompositeMapper = { serializedName: "IntegrationServiceEnvironmentNetworkEndpoint", type: { @@ -3080,6 +3197,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 +3280,13 @@ export const IntegrationServiceEnvironmentProperties: msRest.CompositeMapper = { name: "Composite", className: "NetworkConfiguration" } + }, + encryptionConfiguration: { + serializedName: "encryptionConfiguration", + type: { + name: "Composite", + className: "IntegrationServiceEnvironmenEncryptionConfiguration" + } } } } @@ -3164,6 +3334,13 @@ export const IntegrationServiceEnvironment: msRest.CompositeMapper = { name: "Composite", className: "IntegrationServiceEnvironmentSku" } + }, + identity: { + serializedName: "identity", + type: { + name: "Composite", + className: "ManagedServiceIdentity" + } } } } @@ -3255,6 +3432,152 @@ export const IntegrationServiceEnvironmentSkuDefinition: msRest.CompositeMapper } }; +export const IntegrationServiceEnvironmentManagedApiDeploymentParameters: msRest.CompositeMapper = { + serializedName: "IntegrationServiceEnvironmentManagedApiDeploymentParameters", + type: { + name: "Composite", + className: "IntegrationServiceEnvironmentManagedApiDeploymentParameters", + modelProperties: { + contentLinkDefinition: { + serializedName: "contentLinkDefinition", + type: { + name: "Composite", + className: "ContentLink" + } + } + } + } +}; + +export const IntegrationServiceEnvironmentManagedApi: msRest.CompositeMapper = { + serializedName: "IntegrationServiceEnvironmentManagedApi", + type: { + name: "Composite", + className: "IntegrationServiceEnvironmentManagedApi", + modelProperties: { + ...Resource.type.modelProperties, + integrationServiceEnvironmentManagedApiName: { + readOnly: true, + serializedName: "properties.name", + type: { + name: "String" + } + }, + connectionParameters: { + readOnly: true, + serializedName: "properties.connectionParameters", + type: { + name: "Dictionary", + value: { + type: { + name: "Object" + } + } + } + }, + metadata: { + readOnly: true, + serializedName: "properties.metadata", + type: { + name: "Composite", + className: "ApiResourceMetadata" + } + }, + runtimeUrls: { + readOnly: true, + serializedName: "properties.runtimeUrls", + type: { + name: "Sequence", + element: { + type: { + name: "String" + } + } + } + }, + generalInformation: { + readOnly: true, + serializedName: "properties.generalInformation", + type: { + name: "Composite", + className: "ApiResourceGeneralInformation" + } + }, + capabilities: { + readOnly: true, + serializedName: "properties.capabilities", + type: { + name: "Sequence", + element: { + type: { + name: "String" + } + } + } + }, + backendService: { + readOnly: true, + serializedName: "properties.backendService", + type: { + name: "Composite", + className: "ApiResourceBackendService" + } + }, + policies: { + readOnly: true, + serializedName: "properties.policies", + type: { + name: "Composite", + className: "ApiResourcePolicies" + } + }, + apiDefinitionUrl: { + readOnly: true, + serializedName: "properties.apiDefinitionUrl", + type: { + name: "String" + } + }, + apiDefinitions: { + readOnly: true, + serializedName: "properties.apiDefinitions", + type: { + name: "Composite", + className: "ApiResourceDefinitions" + } + }, + integrationServiceEnvironment: { + serializedName: "properties.integrationServiceEnvironment", + type: { + name: "Composite", + className: "ResourceReference" + } + }, + provisioningState: { + readOnly: true, + serializedName: "properties.provisioningState", + type: { + name: "String" + } + }, + category: { + readOnly: true, + serializedName: "properties.category", + type: { + name: "String" + } + }, + deploymentParameters: { + serializedName: "properties.deploymentParameters", + type: { + name: "Composite", + className: "IntegrationServiceEnvironmentManagedApiDeploymentParameters" + } + } + } + } +}; + export const IntegrationAccountSku: msRest.CompositeMapper = { serializedName: "IntegrationAccountSku", type: { @@ -3283,7 +3606,7 @@ export const IntegrationAccount: msRest.CompositeMapper = { serializedName: "properties.integrationServiceEnvironment", type: { name: "Composite", - className: "IntegrationServiceEnvironment" + className: "ResourceReference" } }, state: { @@ -8080,11 +8403,11 @@ export const IntegrationServiceEnvironmentSkuList: msRest.CompositeMapper = { } }; -export const ManagedApiListResult: msRest.CompositeMapper = { - serializedName: "ManagedApiListResult", +export const IntegrationServiceEnvironmentManagedApiListResult: msRest.CompositeMapper = { + serializedName: "IntegrationServiceEnvironmentManagedApiListResult", type: { name: "Composite", - className: "ManagedApiListResult", + className: "IntegrationServiceEnvironmentManagedApiListResult", modelProperties: { value: { serializedName: "", @@ -8093,7 +8416,7 @@ export const ManagedApiListResult: msRest.CompositeMapper = { element: { type: { name: "Composite", - className: "ManagedApi" + className: "IntegrationServiceEnvironmentManagedApi" } } } 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..011142cb37ca 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,8 +77,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -87,6 +91,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -116,6 +121,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts index 1126ae8398ad..26c82c7e3fa4 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,8 +72,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -82,6 +86,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -112,6 +117,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/workflowRunActionRequestHistoriesMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunActionRequestHistoriesMappers.ts index 1126ae8398ad..26c82c7e3fa4 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,8 +72,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -82,6 +86,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -112,6 +117,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/workflowRunActionScopeRepetitionsMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunActionScopeRepetitionsMappers.ts index bbe71bf49018..4f25a881becf 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,8 +72,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -82,6 +86,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -111,6 +116,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/workflowRunActionsMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunActionsMappers.ts index 1578da92db49..da9eaeaa4106 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,8 +77,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -87,6 +91,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -116,6 +121,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/workflowRunOperationsMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunOperationsMappers.ts index 7dfa1156d8cc..40816363beac 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,8 +72,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -82,6 +86,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -111,6 +116,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/workflowRunsMappers.ts b/sdk/logic/arm-logic/src/models/workflowRunsMappers.ts index 5016ba364536..be0cd8bfa685 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,8 +72,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -82,6 +86,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -111,6 +116,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/workflowTriggerHistoriesMappers.ts b/sdk/logic/arm-logic/src/models/workflowTriggerHistoriesMappers.ts index b30d16a768d3..26201b02af2c 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,8 +72,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -82,6 +86,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -111,6 +116,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/workflowTriggersMappers.ts b/sdk/logic/arm-logic/src/models/workflowTriggersMappers.ts index 71f71a31a2f2..9ae8769f8b8d 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,8 +72,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -83,6 +87,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -113,6 +118,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, 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..dbfd68237854 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,8 +72,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -82,6 +86,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -111,6 +116,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowOutputParameter, WorkflowParameter, diff --git a/sdk/logic/arm-logic/src/models/workflowsMappers.ts b/sdk/logic/arm-logic/src/models/workflowsMappers.ts index 91f0a2be4cd0..9c08b376cc99 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,8 +74,12 @@ export { IntegrationAccountSchema, IntegrationAccountSession, IntegrationAccountSku, + IntegrationServiceEnvironmenEncryptionConfiguration, + IntegrationServiceEnvironmenEncryptionKeyReference, IntegrationServiceEnvironment, IntegrationServiceEnvironmentAccessEndpoint, + IntegrationServiceEnvironmentManagedApi, + IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentProperties, IntegrationServiceEnvironmentSku, IpAddress, @@ -84,6 +88,7 @@ export { KeyVaultKeyReferenceKeyVault, KeyVaultReference, ManagedApi, + ManagedServiceIdentity, NetworkConfiguration, OpenAuthenticationAccessPolicies, OpenAuthenticationAccessPolicy, @@ -114,6 +119,7 @@ export { SwaggerExternalDocumentation, SwaggerSchema, SwaggerXml, + UserAssignedIdentity, Workflow, WorkflowListResult, WorkflowOutputParameter, 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..93c6889c46bb 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 @@ -40,15 +39,15 @@ export class IntegrationServiceEnvironmentManagedApis { * @param integrationServiceEnvironmentName The integration service environment name. * @param callback The callback */ - list(resourceGroup: string, integrationServiceEnvironmentName: string, callback: msRest.ServiceCallback): void; + list(resourceGroup: string, integrationServiceEnvironmentName: string, callback: msRest.ServiceCallback): void; /** * @param resourceGroup The resource group. * @param integrationServiceEnvironmentName The integration service environment name. * @param options The optional parameters * @param callback The callback */ - list(resourceGroup: string, integrationServiceEnvironmentName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - list(resourceGroup: string, integrationServiceEnvironmentName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + list(resourceGroup: string, integrationServiceEnvironmentName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; + list(resourceGroup: string, integrationServiceEnvironmentName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { resourceGroup, @@ -74,7 +73,7 @@ export class IntegrationServiceEnvironmentManagedApis { * @param apiName The api name. * @param callback The callback */ - get(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, callback: msRest.ServiceCallback): void; + get(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, callback: msRest.ServiceCallback): void; /** * @param resourceGroup The resource group name. * @param integrationServiceEnvironmentName The integration service environment name. @@ -82,8 +81,8 @@ export class IntegrationServiceEnvironmentManagedApis { * @param options The optional parameters * @param callback The callback */ - get(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - get(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + get(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; + get(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { resourceGroup, @@ -100,11 +99,12 @@ export class IntegrationServiceEnvironmentManagedApis { * @param resourceGroup The resource group name. * @param integrationServiceEnvironmentName The integration service environment name. * @param apiName The api name. + * @param integrationServiceEnvironmentManagedApi The integration service environment managed api. * @param [options] The optional parameters * @returns Promise */ - put(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, options?: msRest.RequestOptionsBase): Promise { - return this.beginPut(resourceGroup,integrationServiceEnvironmentName,apiName,options) + put(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, integrationServiceEnvironmentManagedApi: Models.IntegrationServiceEnvironmentManagedApi, options?: msRest.RequestOptionsBase): Promise { + return this.beginPut(resourceGroup,integrationServiceEnvironmentName,apiName,integrationServiceEnvironmentManagedApi,options) .then(lroPoller => lroPoller.pollUntilFinished()) as Promise; } @@ -126,15 +126,17 @@ export class IntegrationServiceEnvironmentManagedApis { * @param resourceGroup The resource group name. * @param integrationServiceEnvironmentName The integration service environment name. * @param apiName The api name. + * @param integrationServiceEnvironmentManagedApi The integration service environment managed api. * @param [options] The optional parameters * @returns Promise */ - beginPut(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, options?: msRest.RequestOptionsBase): Promise { + beginPut(resourceGroup: string, integrationServiceEnvironmentName: string, apiName: string, integrationServiceEnvironmentManagedApi: Models.IntegrationServiceEnvironmentManagedApi, options?: msRest.RequestOptionsBase): Promise { return this.client.sendLRORequest( { resourceGroup, integrationServiceEnvironmentName, apiName, + integrationServiceEnvironmentManagedApi, options }, beginPutOperationSpec, @@ -172,14 +174,14 @@ export class IntegrationServiceEnvironmentManagedApis { * @param nextPageLink The NextLink from the previous successful call to List operation. * @param callback The callback */ - listNext(nextPageLink: string, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, callback: msRest.ServiceCallback): void; /** * @param nextPageLink The NextLink from the previous successful call to List operation. * @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: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; + listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { return this.client.sendOperationRequest( { nextPageLink, @@ -208,7 +210,7 @@ const listOperationSpec: msRest.OperationSpec = { ], responses: { 200: { - bodyMapper: Mappers.ManagedApiListResult + bodyMapper: Mappers.IntegrationServiceEnvironmentManagedApiListResult }, default: { bodyMapper: Mappers.ErrorResponse @@ -234,7 +236,7 @@ const getOperationSpec: msRest.OperationSpec = { ], responses: { 200: { - bodyMapper: Mappers.ManagedApi + bodyMapper: Mappers.IntegrationServiceEnvironmentManagedApi }, default: { bodyMapper: Mappers.ErrorResponse @@ -258,12 +260,19 @@ const beginPutOperationSpec: msRest.OperationSpec = { headerParameters: [ Parameters.acceptLanguage ], + requestBody: { + parameterPath: "integrationServiceEnvironmentManagedApi", + mapper: { + ...Mappers.IntegrationServiceEnvironmentManagedApi, + required: true + } + }, responses: { 200: { - bodyMapper: Mappers.ManagedApi + bodyMapper: Mappers.IntegrationServiceEnvironmentManagedApi }, 201: { - bodyMapper: Mappers.ManagedApi + bodyMapper: Mappers.IntegrationServiceEnvironmentManagedApi }, default: { bodyMapper: Mappers.ErrorResponse @@ -304,12 +313,15 @@ const listNextOperationSpec: msRest.OperationSpec = { urlParameters: [ Parameters.nextPageLink ], + queryParameters: [ + Parameters.apiVersion + ], headerParameters: [ Parameters.acceptLanguage ], responses: { 200: { - bodyMapper: Mappers.ManagedApiListResult + bodyMapper: Mappers.IntegrationServiceEnvironmentManagedApiListResult }, default: { bodyMapper: Mappers.ErrorResponse 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 ],