diff --git a/packages/@azure/arm-logic/LICENSE.txt b/packages/@azure/arm-logic/LICENSE.txt
index a70e8cf66038..8f3d856145c5 100644
--- a/packages/@azure/arm-logic/LICENSE.txt
+++ b/packages/@azure/arm-logic/LICENSE.txt
@@ -1,21 +1,21 @@
-The MIT License (MIT)
-
-Copyright (c) 2018 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
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+The MIT License (MIT)
+
+Copyright (c) 2019 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
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/packages/@azure/arm-logic/README.md b/packages/@azure/arm-logic/README.md
index 9e1dc391d491..c79e23353c04 100644
--- a/packages/@azure/arm-logic/README.md
+++ b/packages/@azure/arm-logic/README.md
@@ -1,100 +1,100 @@
-## Azure LogicManagementClient SDK for JavaScript
-
-This package contains an isomorphic SDK for LogicManagementClient.
-
-### Currently supported environments
-
-- Node.js version 6.x.x or higher
-- Browser JavaScript
-
-### How to Install
-
-```bash
-npm install @azure/arm-logic
-```
-
-### How to use
-
-#### nodejs - Authentication, client creation and listBySubscription workflows as an example written in TypeScript.
-
-##### Install @azure/ms-rest-nodeauth
-
-```bash
-npm install @azure/ms-rest-nodeauth
-```
-
-##### Sample code
-
-```typescript
-import * as msRest from "@azure/ms-rest-js";
-import * as msRestAzure from "@azure/ms-rest-azure-js";
-import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
-import { LogicManagementClient, LogicManagementModels, LogicManagementMappers } from "@azure/arm-logic";
-const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
-
-msRestNodeAuth.interactiveLogin().then((creds) => {
- const client = new LogicManagementClient(creds, subscriptionId);
- const top = 1;
- const filter = "testfilter";
- client.workflows.listBySubscription(top, filter).then((result) => {
- console.log("The result is:");
- console.log(result);
- });
-}).catch((err) => {
- console.error(err);
-});
-```
-
-#### browser - Authentication, client creation and listBySubscription workflows as an example written in JavaScript.
-
-##### Install @azure/ms-rest-browserauth
-
-```bash
-npm install @azure/ms-rest-browserauth
-```
-
-##### Sample code
-
-See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser.
-
-- index.html
-```html
-
-
-
- @azure/arm-logic sample
-
-
-
-
-
-
-
-
-```
-
-## Related projects
-
-- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)
+## Azure LogicManagementClient SDK for JavaScript
+
+This package contains an isomorphic SDK for LogicManagementClient.
+
+### Currently supported environments
+
+- Node.js version 6.x.x or higher
+- Browser JavaScript
+
+### How to Install
+
+```bash
+npm install @azure/arm-logic
+```
+
+### How to use
+
+#### nodejs - Authentication, client creation and listBySubscription workflows as an example written in TypeScript.
+
+##### Install @azure/ms-rest-nodeauth
+
+```bash
+npm install @azure/ms-rest-nodeauth
+```
+
+##### Sample code
+
+```typescript
+import * as msRest from "@azure/ms-rest-js";
+import * as msRestAzure from "@azure/ms-rest-azure-js";
+import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
+import { LogicManagementClient, LogicManagementModels, LogicManagementMappers } from "@azure/arm-logic";
+const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
+
+msRestNodeAuth.interactiveLogin().then((creds) => {
+ const client = new LogicManagementClient(creds, subscriptionId);
+ const top = 1;
+ const filter = "testfilter";
+ client.workflows.listBySubscription(top, filter).then((result) => {
+ console.log("The result is:");
+ console.log(result);
+ });
+}).catch((err) => {
+ console.error(err);
+});
+```
+
+#### browser - Authentication, client creation and listBySubscription workflows as an example written in JavaScript.
+
+##### Install @azure/ms-rest-browserauth
+
+```bash
+npm install @azure/ms-rest-browserauth
+```
+
+##### Sample code
+
+See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser.
+
+- index.html
+```html
+
+
+
+ @azure/arm-logic sample
+
+
+
+
+
+
+
+
+```
+
+## Related projects
+
+- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)
diff --git a/packages/@azure/arm-logic/lib/logicManagementClientContext.ts b/packages/@azure/arm-logic/lib/logicManagementClientContext.ts
index b62589ee1b8f..9305f70363b8 100644
--- a/packages/@azure/arm-logic/lib/logicManagementClientContext.ts
+++ b/packages/@azure/arm-logic/lib/logicManagementClientContext.ts
@@ -13,7 +13,7 @@ import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
const packageName = "@azure/arm-logic";
-const packageVersion = "0.1.0";
+const packageVersion = "5.0.0";
export class LogicManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
diff --git a/packages/@azure/arm-logic/lib/models/index.ts b/packages/@azure/arm-logic/lib/models/index.ts
index 943306c2631e..2d19d8a5a218 100644
--- a/packages/@azure/arm-logic/lib/models/index.ts
+++ b/packages/@azure/arm-logic/lib/models/index.ts
@@ -1,11 +1,9 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
@@ -13,4535 +11,3613 @@ import * as msRest from "@azure/ms-rest-js";
export { BaseResource, CloudError };
-
/**
- * @interface
- * An interface representing Resource.
* The base resource type.
- *
- * @extends BaseResource
*/
export interface Resource extends BaseResource {
/**
- * @member {string} [id] The resource id.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The resource id.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly id?: string;
/**
- * @member {string} [name] Gets the resource name.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the resource name.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly name?: string;
/**
- * @member {string} [type] Gets the resource type.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the resource type.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly type?: string;
/**
- * @member {string} [location] The resource location.
+ * The resource location.
*/
location?: string;
/**
- * @member {{ [propertyName: string]: string }} [tags] The resource tags.
+ * The resource tags.
*/
tags?: { [propertyName: string]: string };
}
/**
- * @interface
- * An interface representing SubResource.
* The sub resource type.
- *
- * @extends BaseResource
*/
export interface SubResource extends BaseResource {
/**
- * @member {string} [id] The resource id.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The resource id.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly id?: string;
}
/**
- * @interface
- * An interface representing ResourceReference.
* The resource reference.
- *
*/
export interface ResourceReference {
/**
- * @member {string} [id] The resource id.
+ * The resource id.
*/
id?: string;
/**
- * @member {string} [name] Gets the resource name.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the resource name.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly name?: string;
/**
- * @member {string} [type] Gets the resource type.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the resource type.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly type?: string;
}
/**
- * @interface
- * An interface representing Sku.
* The sku type.
- *
*/
export interface Sku {
/**
- * @member {SkuName} name The name. Possible values include: 'NotSpecified',
- * 'Free', 'Shared', 'Basic', 'Standard', 'Premium'
+ * The name. Possible values include: 'NotSpecified', 'Free', 'Shared', 'Basic', 'Standard',
+ * 'Premium'
*/
name: SkuName;
/**
- * @member {ResourceReference} [plan] The reference to plan.
+ * The reference to plan.
*/
plan?: ResourceReference;
}
/**
- * @interface
- * An interface representing WorkflowParameter.
* The workflow parameters.
- *
*/
export interface WorkflowParameter {
/**
- * @member {ParameterType} [type] The type. Possible values include:
- * 'NotSpecified', 'String', 'SecureString', 'Int', 'Float', 'Bool', 'Array',
- * 'Object', 'SecureObject'
+ * The type. Possible values include: 'NotSpecified', 'String', 'SecureString', 'Int', 'Float',
+ * 'Bool', 'Array', 'Object', 'SecureObject'
*/
type?: ParameterType;
/**
- * @member {any} [value] The value.
+ * The value.
*/
value?: any;
/**
- * @member {any} [metadata] The metadata.
+ * The metadata.
*/
metadata?: any;
/**
- * @member {string} [description] The description.
+ * The description.
*/
description?: string;
}
/**
- * @interface
- * An interface representing Workflow.
* The workflow type.
- *
- * @extends Resource
*/
export interface Workflow extends Resource {
/**
- * @member {WorkflowProvisioningState} [provisioningState] Gets the
- * provisioning state. Possible values include: 'NotSpecified', 'Accepted',
- * 'Running', 'Ready', 'Creating', 'Created', 'Deleting', 'Deleted',
- * 'Canceled', 'Failed', 'Succeeded', 'Moving', 'Updating', 'Registering',
- * 'Registered', 'Unregistering', 'Unregistered', 'Completed'
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the provisioning state. Possible values include: 'NotSpecified', 'Accepted', 'Running',
+ * 'Ready', 'Creating', 'Created', 'Deleting', 'Deleted', 'Canceled', 'Failed', 'Succeeded',
+ * 'Moving', 'Updating', 'Registering', 'Registered', 'Unregistering', 'Unregistered',
+ * 'Completed'
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly provisioningState?: WorkflowProvisioningState;
/**
- * @member {Date} [createdTime] Gets the created time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the created time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly createdTime?: Date;
/**
- * @member {Date} [changedTime] Gets the changed time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the changed time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly changedTime?: Date;
/**
- * @member {WorkflowState} [state] The state. Possible values include:
- * 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended'
+ * The state. Possible values include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled',
+ * 'Deleted', 'Suspended'
*/
state?: WorkflowState;
/**
- * @member {string} [version] Gets the version.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the version.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly version?: string;
/**
- * @member {string} [accessEndpoint] Gets the access endpoint.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the access endpoint.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly accessEndpoint?: string;
/**
- * @member {Sku} [sku] The sku.
+ * The sku.
*/
sku?: Sku;
/**
- * @member {ResourceReference} [integrationAccount] The integration account.
+ * The integration account.
*/
integrationAccount?: ResourceReference;
/**
- * @member {any} [definition] The definition.
+ * The definition.
*/
definition?: any;
/**
- * @member {{ [propertyName: string]: WorkflowParameter }} [parameters] The
- * parameters.
+ * The parameters.
*/
parameters?: { [propertyName: string]: WorkflowParameter };
}
/**
- * @interface
- * An interface representing WorkflowFilter.
* The workflow filter.
- *
*/
export interface WorkflowFilter {
/**
- * @member {WorkflowState} [state] The state of workflows. Possible values
- * include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted',
- * 'Suspended'
+ * The state of workflows. Possible values include: 'NotSpecified', 'Completed', 'Enabled',
+ * 'Disabled', 'Deleted', 'Suspended'
*/
state?: WorkflowState;
}
/**
- * @interface
- * An interface representing WorkflowVersion.
* The workflow version.
- *
- * @extends Resource
*/
export interface WorkflowVersion extends Resource {
/**
- * @member {Date} [createdTime] Gets the created time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the created time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly createdTime?: Date;
/**
- * @member {Date} [changedTime] Gets the changed time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the changed time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly changedTime?: Date;
/**
- * @member {WorkflowState} [state] The state. Possible values include:
- * 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended'
+ * The state. Possible values include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled',
+ * 'Deleted', 'Suspended'
*/
state?: WorkflowState;
/**
- * @member {string} [version] Gets the version.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the version.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly version?: string;
/**
- * @member {string} [accessEndpoint] Gets the access endpoint.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the access endpoint.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly accessEndpoint?: string;
/**
- * @member {Sku} [sku] The sku.
+ * The sku.
*/
sku?: Sku;
/**
- * @member {ResourceReference} [integrationAccount] The integration account.
+ * The integration account.
*/
integrationAccount?: ResourceReference;
/**
- * @member {any} [definition] The definition.
+ * The definition.
*/
definition?: any;
/**
- * @member {{ [propertyName: string]: WorkflowParameter }} [parameters] The
- * parameters.
+ * The parameters.
*/
parameters?: { [propertyName: string]: WorkflowParameter };
}
/**
- * @interface
- * An interface representing RecurrenceScheduleOccurrence.
* The recurrence schedule occurrence.
- *
*/
export interface RecurrenceScheduleOccurrence {
/**
- * @member {DayOfWeek} [day] The day of the week. Possible values include:
- * 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday',
- * 'Saturday'
+ * The day of the week. Possible values include: 'Sunday', 'Monday', 'Tuesday', 'Wednesday',
+ * 'Thursday', 'Friday', 'Saturday'
*/
day?: DayOfWeek;
/**
- * @member {number} [occurrence] The occurrence.
+ * The occurrence.
*/
occurrence?: number;
}
/**
- * @interface
- * An interface representing RecurrenceSchedule.
* The recurrence schedule.
- *
*/
export interface RecurrenceSchedule {
/**
- * @member {number[]} [minutes] The minutes.
+ * The minutes.
*/
minutes?: number[];
/**
- * @member {number[]} [hours] The hours.
+ * The hours.
*/
hours?: number[];
/**
- * @member {DaysOfWeek[]} [weekDays] The days of the week.
+ * The days of the week.
*/
weekDays?: DaysOfWeek[];
/**
- * @member {number[]} [monthDays] The month days.
+ * The month days.
*/
monthDays?: number[];
/**
- * @member {RecurrenceScheduleOccurrence[]} [monthlyOccurrences] The monthly
- * occurrences.
+ * The monthly occurrences.
*/
monthlyOccurrences?: RecurrenceScheduleOccurrence[];
}
/**
- * @interface
- * An interface representing WorkflowTriggerRecurrence.
* The workflow trigger recurrence.
- *
*/
export interface WorkflowTriggerRecurrence {
/**
- * @member {RecurrenceFrequency} [frequency] The frequency. Possible values
- * include: 'NotSpecified', 'Second', 'Minute', 'Hour', 'Day', 'Week',
- * 'Month', 'Year'
+ * The frequency. Possible values include: 'NotSpecified', 'Second', 'Minute', 'Hour', 'Day',
+ * 'Week', 'Month', 'Year'
*/
frequency?: RecurrenceFrequency;
/**
- * @member {number} [interval] The interval.
+ * The interval.
*/
interval?: number;
/**
- * @member {string} [startTime] The start time.
+ * The start time.
*/
startTime?: string;
/**
- * @member {string} [endTime] The end time.
+ * The end time.
*/
endTime?: string;
/**
- * @member {string} [timeZone] The time zone.
+ * The time zone.
*/
timeZone?: string;
/**
- * @member {RecurrenceSchedule} [schedule] The recurrence schedule.
+ * The recurrence schedule.
*/
schedule?: RecurrenceSchedule;
}
/**
- * @interface
- * An interface representing WorkflowTrigger.
* The workflow trigger.
- *
- * @extends SubResource
*/
export interface WorkflowTrigger extends SubResource {
/**
- * @member {WorkflowTriggerProvisioningState} [provisioningState] Gets the
- * provisioning state. Possible values include: 'NotSpecified', 'Accepted',
- * 'Running', 'Ready', 'Creating', 'Created', 'Deleting', 'Deleted',
- * 'Canceled', 'Failed', 'Succeeded', 'Moving', 'Updating', 'Registering',
- * 'Registered', 'Unregistering', 'Unregistered', 'Completed'
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the provisioning state. Possible values include: 'NotSpecified', 'Accepted', 'Running',
+ * 'Ready', 'Creating', 'Created', 'Deleting', 'Deleted', 'Canceled', 'Failed', 'Succeeded',
+ * 'Moving', 'Updating', 'Registering', 'Registered', 'Unregistering', 'Unregistered',
+ * 'Completed'
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly provisioningState?: WorkflowTriggerProvisioningState;
/**
- * @member {Date} [createdTime] Gets the created time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the created time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly createdTime?: Date;
/**
- * @member {Date} [changedTime] Gets the changed time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the changed time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly changedTime?: Date;
/**
- * @member {WorkflowState} [state] Gets the state. Possible values include:
- * 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended'
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the state. Possible values include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled',
+ * 'Deleted', 'Suspended'
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly state?: WorkflowState;
/**
- * @member {WorkflowStatus} [status] Gets the status. Possible values
- * include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded',
- * 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut',
- * 'Aborted', 'Ignored'
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the status. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting',
+ * 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted',
+ * 'Ignored'
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly status?: WorkflowStatus;
/**
- * @member {Date} [lastExecutionTime] Gets the last execution time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the last execution time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly lastExecutionTime?: Date;
/**
- * @member {Date} [nextExecutionTime] Gets the next execution time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the next execution time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly nextExecutionTime?: Date;
/**
- * @member {WorkflowTriggerRecurrence} [recurrence] Gets the workflow trigger
- * recurrence.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow trigger recurrence.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly recurrence?: WorkflowTriggerRecurrence;
/**
- * @member {ResourceReference} [workflow] Gets the reference to workflow.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the reference to workflow.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly workflow?: ResourceReference;
/**
- * @member {string} [name] Gets the workflow trigger name.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow trigger name.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly name?: string;
/**
- * @member {string} [type] Gets the workflow trigger type.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow trigger type.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly type?: string;
}
/**
- * @interface
- * An interface representing WorkflowTriggerFilter.
* The workflow trigger filter.
- *
*/
export interface WorkflowTriggerFilter {
/**
- * @member {WorkflowState} [state] The state of workflow trigger. Possible
- * values include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled',
- * 'Deleted', 'Suspended'
+ * The state of workflow trigger. Possible values include: 'NotSpecified', 'Completed',
+ * 'Enabled', 'Disabled', 'Deleted', 'Suspended'
*/
state?: WorkflowState;
}
/**
- * @interface
- * An interface representing WorkflowTriggerListCallbackUrlQueries.
* Gets the workflow trigger callback URL query parameters.
- *
*/
export interface WorkflowTriggerListCallbackUrlQueries {
/**
- * @member {string} [apiVersion] The api version.
+ * The api version.
*/
apiVersion?: string;
/**
- * @member {string} [sp] The SAS permissions.
+ * The SAS permissions.
*/
sp?: string;
/**
- * @member {string} [sv] The SAS version.
+ * The SAS version.
*/
sv?: string;
/**
- * @member {string} [sig] The SAS signature.
+ * The SAS signature.
*/
sig?: string;
/**
- * @member {string} [se] The SAS timestamp.
+ * The SAS timestamp.
*/
se?: string;
}
/**
- * @interface
- * An interface representing WorkflowTriggerCallbackUrl.
* The workflow trigger callback URL.
- *
*/
export interface WorkflowTriggerCallbackUrl {
/**
- * @member {string} [value] Gets the workflow trigger callback URL.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow trigger callback URL.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly value?: string;
/**
- * @member {string} [method] Gets the workflow trigger callback URL HTTP
- * method.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow trigger callback URL HTTP method.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly method?: string;
/**
- * @member {string} [basePath] Gets the workflow trigger callback URL base
- * path.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow trigger callback URL base path.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly basePath?: string;
/**
- * @member {string} [relativePath] Gets the workflow trigger callback URL
- * relative path.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow trigger callback URL relative path.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly relativePath?: string;
/**
- * @member {string[]} [relativePathParameters] Gets the workflow trigger
- * callback URL relative path parameters.
+ * Gets the workflow trigger callback URL relative path parameters.
*/
relativePathParameters?: string[];
/**
- * @member {WorkflowTriggerListCallbackUrlQueries} [queries] Gets the
- * workflow trigger callback URL query parameters.
+ * Gets the workflow trigger callback URL query parameters.
*/
queries?: WorkflowTriggerListCallbackUrlQueries;
}
/**
- * @interface
- * An interface representing Correlation.
* The correlation property.
- *
*/
export interface Correlation {
/**
- * @member {string} [clientTrackingId] The client tracking id.
+ * The client tracking id.
*/
clientTrackingId?: string;
}
/**
- * @interface
- * An interface representing ContentHash.
* The content hash.
- *
*/
export interface ContentHash {
/**
- * @member {string} [algorithm] The algorithm of the content hash.
+ * The algorithm of the content hash.
*/
algorithm?: string;
/**
- * @member {string} [value] The value of the content hash.
+ * The value of the content hash.
*/
value?: string;
}
/**
- * @interface
- * An interface representing ContentLink.
* The content link.
- *
*/
export interface ContentLink {
/**
- * @member {string} [uri] The content link URI.
+ * The content link URI.
*/
uri?: string;
/**
- * @member {string} [contentVersion] The content version.
+ * The content version.
*/
contentVersion?: string;
/**
- * @member {number} [contentSize] The content size.
+ * The content size.
*/
contentSize?: number;
/**
- * @member {ContentHash} [contentHash] The content hash.
+ * The content hash.
*/
contentHash?: ContentHash;
/**
- * @member {any} [metadata] The metadata.
+ * The metadata.
*/
metadata?: any;
}
/**
- * @interface
- * An interface representing WorkflowTriggerHistory.
* The workflow trigger history.
- *
- * @extends SubResource
*/
export interface WorkflowTriggerHistory extends SubResource {
/**
- * @member {Date} [startTime] Gets the start time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the start time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly startTime?: Date;
/**
- * @member {Date} [endTime] Gets the end time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the end time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly endTime?: Date;
/**
- * @member {WorkflowStatus} [status] Gets the status. Possible values
- * include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded',
- * 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut',
- * 'Aborted', 'Ignored'
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the status. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting',
+ * 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted',
+ * 'Ignored'
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly status?: WorkflowStatus;
/**
- * @member {string} [code] Gets the code.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the code.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly code?: string;
/**
- * @member {any} [error] Gets the error.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the error.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly error?: any;
/**
- * @member {string} [trackingId] Gets the tracking id.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the tracking id.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trackingId?: string;
/**
- * @member {Correlation} [correlation] The run correlation.
+ * The run correlation.
*/
correlation?: Correlation;
/**
- * @member {ContentLink} [inputsLink] Gets the link to input parameters.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to input parameters.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly inputsLink?: ContentLink;
/**
- * @member {ContentLink} [outputsLink] Gets the link to output parameters.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to output parameters.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly outputsLink?: ContentLink;
/**
- * @member {boolean} [fired] Gets a value indicating whether trigger was
- * fired.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets a value indicating whether trigger was fired.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly fired?: boolean;
/**
- * @member {ResourceReference} [run] Gets the reference to workflow run.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the reference to workflow run.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly run?: ResourceReference;
/**
- * @member {string} [name] Gets the workflow trigger history name.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow trigger history name.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly name?: string;
/**
- * @member {string} [type] Gets the workflow trigger history type.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow trigger history type.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly type?: string;
}
/**
- * @interface
- * An interface representing WorkflowTriggerHistoryFilter.
* The workflow trigger history filter.
- *
*/
export interface WorkflowTriggerHistoryFilter {
/**
- * @member {WorkflowStatus} [status] The status of workflow trigger history.
- * Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting',
- * 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted',
+ * The status of workflow trigger history. Possible values include: 'NotSpecified', 'Paused',
+ * 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted',
* 'TimedOut', 'Aborted', 'Ignored'
*/
status?: WorkflowStatus;
}
/**
- * @interface
- * An interface representing WorkflowRunTrigger.
* The workflow run trigger.
- *
*/
export interface WorkflowRunTrigger {
/**
- * @member {string} [name] Gets the name.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the name.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly name?: string;
/**
- * @member {any} [inputs] Gets the inputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the inputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly inputs?: any;
/**
- * @member {ContentLink} [inputsLink] Gets the link to inputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to inputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly inputsLink?: ContentLink;
/**
- * @member {any} [outputs] Gets the outputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the outputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly outputs?: any;
/**
- * @member {ContentLink} [outputsLink] Gets the link to outputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to outputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly outputsLink?: ContentLink;
/**
- * @member {Date} [scheduledTime] Gets the scheduled time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the scheduled time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly scheduledTime?: Date;
/**
- * @member {Date} [startTime] Gets the start time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the start time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly startTime?: Date;
/**
- * @member {Date} [endTime] Gets the end time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the end time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly endTime?: Date;
/**
- * @member {string} [trackingId] Gets the tracking id.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the tracking id.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trackingId?: string;
/**
- * @member {Correlation} [correlation] The run correlation.
+ * The run correlation.
*/
correlation?: Correlation;
/**
- * @member {string} [code] Gets the code.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the code.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly code?: string;
/**
- * @member {WorkflowStatus} [status] Gets the status. Possible values
- * include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded',
- * 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut',
- * 'Aborted', 'Ignored'
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the status. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting',
+ * 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted',
+ * 'Ignored'
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly status?: WorkflowStatus;
/**
- * @member {any} [error] Gets the error.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the error.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly error?: any;
/**
- * @member {any} [trackedProperties] Gets the tracked properties.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the tracked properties.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trackedProperties?: any;
}
/**
- * @interface
- * An interface representing WorkflowOutputParameter.
* The workflow output parameter.
- *
- * @extends WorkflowParameter
*/
export interface WorkflowOutputParameter extends WorkflowParameter {
/**
- * @member {any} [error] Gets the error.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the error.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly error?: any;
}
/**
- * @interface
- * An interface representing WorkflowRun.
* The workflow run.
- *
- * @extends SubResource
*/
export interface WorkflowRun extends SubResource {
/**
- * @member {Date} [waitEndTime] Gets the wait end time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the wait end time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly waitEndTime?: Date;
/**
- * @member {Date} [startTime] Gets the start time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the start time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly startTime?: Date;
/**
- * @member {Date} [endTime] Gets the end time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the end time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly endTime?: Date;
/**
- * @member {WorkflowStatus} [status] Gets the status. Possible values
- * include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded',
- * 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut',
- * 'Aborted', 'Ignored'
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the status. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting',
+ * 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted',
+ * 'Ignored'
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly status?: WorkflowStatus;
/**
- * @member {string} [code] Gets the code.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the code.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly code?: string;
/**
- * @member {any} [error] Gets the error.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the error.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly error?: any;
/**
- * @member {string} [correlationId] Gets the correlation id.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the correlation id.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly correlationId?: string;
/**
- * @member {Correlation} [correlation] The run correlation.
+ * The run correlation.
*/
correlation?: Correlation;
/**
- * @member {ResourceReference} [workflow] Gets the reference to workflow
- * version.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the reference to workflow version.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly workflow?: ResourceReference;
/**
- * @member {WorkflowRunTrigger} [trigger] Gets the fired trigger.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the fired trigger.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trigger?: WorkflowRunTrigger;
/**
- * @member {{ [propertyName: string]: WorkflowOutputParameter }} [outputs]
* Gets the outputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly outputs?: { [propertyName: string]: WorkflowOutputParameter };
/**
- * @member {WorkflowRunTrigger} [response] Gets the response of the flow run.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the response of the flow run.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly response?: WorkflowRunTrigger;
/**
- * @member {string} [name] Gets the workflow run name.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow run name.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly name?: string;
/**
- * @member {string} [type] Gets the workflow run type.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow run type.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly type?: string;
}
/**
- * @interface
- * An interface representing WorkflowRunFilter.
* The workflow run filter.
- *
*/
export interface WorkflowRunFilter {
/**
- * @member {WorkflowStatus} [status] The status of workflow run. Possible
- * values include: 'NotSpecified', 'Paused', 'Running', 'Waiting',
- * 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted',
- * 'TimedOut', 'Aborted', 'Ignored'
+ * The status of workflow run. Possible values include: 'NotSpecified', 'Paused', 'Running',
+ * 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut',
+ * 'Aborted', 'Ignored'
*/
status?: WorkflowStatus;
}
/**
- * @interface
- * An interface representing ErrorProperties.
- * Error properties indicate why the Logic service was not able to process the
- * incoming request. The reason is provided in the error message.
- *
+ * Error properties indicate why the Logic service was not able to process the incoming request.
+ * The reason is provided in the error message.
*/
export interface ErrorProperties {
/**
- * @member {string} [code] Error code.
+ * Error code.
*/
code?: string;
/**
- * @member {string} [message] Error message indicating why the operation
- * failed.
+ * Error message indicating why the operation failed.
*/
message?: string;
}
/**
- * @interface
- * An interface representing ErrorResponse.
- * Error response indicates Logic service is not able to process the incoming
- * request. The error property contains the error details.
- *
+ * Error response indicates Logic service is not able to process the incoming request. The error
+ * property contains the error details.
*/
export interface ErrorResponse {
/**
- * @member {ErrorProperties} [error] The error properties.
+ * The error properties.
*/
error?: ErrorProperties;
}
/**
- * @interface
- * An interface representing RetryHistory.
* The retry history.
- *
*/
export interface RetryHistory {
/**
- * @member {Date} [startTime] Gets the start time.
+ * Gets the start time.
*/
startTime?: Date;
/**
- * @member {Date} [endTime] Gets the end time.
+ * Gets the end time.
*/
endTime?: Date;
/**
- * @member {string} [code] Gets the status code.
+ * Gets the status code.
*/
code?: string;
/**
- * @member {string} [clientRequestId] Gets the client request Id.
+ * Gets the client request Id.
*/
clientRequestId?: string;
/**
- * @member {string} [serviceRequestId] Gets the service request Id.
+ * Gets the service request Id.
*/
serviceRequestId?: string;
/**
- * @member {ErrorResponse} [error] Gets the error response.
+ * Gets the error response.
*/
error?: ErrorResponse;
}
/**
- * @interface
- * An interface representing WorkflowRunAction.
* The workflow run action.
- *
- * @extends SubResource
*/
export interface WorkflowRunAction extends SubResource {
/**
- * @member {Date} [startTime] Gets the start time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the start time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly startTime?: Date;
/**
- * @member {Date} [endTime] Gets the end time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the end time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly endTime?: Date;
/**
- * @member {WorkflowStatus} [status] Gets the status. Possible values
- * include: 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded',
- * 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut',
- * 'Aborted', 'Ignored'
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the status. Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting',
+ * 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', 'TimedOut', 'Aborted',
+ * 'Ignored'
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly status?: WorkflowStatus;
/**
- * @member {string} [code] Gets the code.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the code.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly code?: string;
/**
- * @member {any} [error] Gets the error.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the error.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly error?: any;
/**
- * @member {string} [trackingId] Gets the tracking id.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the tracking id.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trackingId?: string;
/**
- * @member {Correlation} [correlation] The correlation properties.
+ * The correlation properties.
*/
correlation?: Correlation;
/**
- * @member {ContentLink} [inputsLink] Gets the link to inputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to inputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly inputsLink?: ContentLink;
/**
- * @member {ContentLink} [outputsLink] Gets the link to outputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to outputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly outputsLink?: ContentLink;
/**
- * @member {any} [trackedProperties] Gets the tracked properties.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the tracked properties.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trackedProperties?: any;
/**
- * @member {RetryHistory[]} [retryHistory] Gets the retry histories.
+ * Gets the retry histories.
*/
retryHistory?: RetryHistory[];
/**
- * @member {string} [name] Gets the workflow run action name.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow run action name.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly name?: string;
/**
- * @member {string} [type] Gets the workflow run action type.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the workflow run action type.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly type?: string;
}
/**
- * @interface
- * An interface representing WorkflowRunActionFilter.
* The workflow run action filter.
- *
*/
export interface WorkflowRunActionFilter {
/**
- * @member {WorkflowStatus} [status] The status of workflow run action.
- * Possible values include: 'NotSpecified', 'Paused', 'Running', 'Waiting',
- * 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted',
+ * The status of workflow run action. Possible values include: 'NotSpecified', 'Paused',
+ * 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted',
* 'TimedOut', 'Aborted', 'Ignored'
*/
status?: WorkflowStatus;
}
/**
- * @interface
- * An interface representing RegenerateActionParameter.
* The access key regenerate action content.
- *
*/
export interface RegenerateActionParameter {
/**
- * @member {KeyType} [keyType] The key type. Possible values include:
- * 'NotSpecified', 'Primary', 'Secondary'
+ * The key type. Possible values include: 'NotSpecified', 'Primary', 'Secondary'
*/
keyType?: KeyType;
}
/**
- * @interface
- * An interface representing GenerateUpgradedDefinitionParameters.
* The parameters to generate upgraded definition.
- *
*/
export interface GenerateUpgradedDefinitionParameters {
/**
- * @member {string} [targetSchemaVersion] The target schema version.
+ * The target schema version.
*/
targetSchemaVersion?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountSku.
* The integration account sku.
- *
*/
export interface IntegrationAccountSku {
/**
- * @member {IntegrationAccountSkuName} name The sku name. Possible values
- * include: 'NotSpecified', 'Free', 'Basic', 'Standard'
+ * The sku name. Possible values include: 'NotSpecified', 'Free', 'Basic', 'Standard'
*/
name: IntegrationAccountSkuName;
}
/**
- * @interface
- * An interface representing IntegrationAccount.
* The integration account.
- *
- * @extends Resource
*/
export interface IntegrationAccount extends Resource {
/**
- * @member {any} [properties] The integration account properties.
+ * The integration account properties.
*/
properties?: any;
/**
- * @member {IntegrationAccountSku} [sku] The sku.
+ * The sku.
*/
sku?: IntegrationAccountSku;
}
/**
- * @interface
- * An interface representing GetCallbackUrlParameters.
* The callback url parameters.
- *
*/
export interface GetCallbackUrlParameters {
/**
- * @member {Date} [notAfter] The expiry time.
+ * The expiry time.
*/
notAfter?: Date;
/**
- * @member {KeyType} [keyType] The key type. Possible values include:
- * 'NotSpecified', 'Primary', 'Secondary'
+ * The key type. Possible values include: 'NotSpecified', 'Primary', 'Secondary'
*/
keyType?: KeyType;
}
/**
- * @interface
- * An interface representing CallbackUrl.
* The callback url.
- *
*/
export interface CallbackUrl {
/**
- * @member {string} [value] The URL value.
+ * The URL value.
*/
value?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountSchema.
* The integration account schema.
- *
- * @extends Resource
*/
export interface IntegrationAccountSchema extends Resource {
/**
- * @member {SchemaType} schemaType The schema type. Possible values include:
- * 'NotSpecified', 'Xml'
+ * The schema type. Possible values include: 'NotSpecified', 'Xml'
*/
schemaType: SchemaType;
/**
- * @member {string} [targetNamespace] The target namespace of the schema.
+ * The target namespace of the schema.
*/
targetNamespace?: string;
/**
- * @member {string} [documentName] The document name.
+ * The document name.
*/
documentName?: string;
/**
- * @member {string} [fileName] The file name.
+ * The file name.
*/
fileName?: string;
/**
- * @member {Date} [createdTime] The created time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The created time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly createdTime?: Date;
/**
- * @member {Date} [changedTime] The changed time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The changed time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly changedTime?: Date;
/**
- * @member {any} [metadata] The metadata.
+ * The metadata.
*/
metadata?: any;
/**
- * @member {string} [content] The content.
+ * The content.
*/
content?: string;
/**
- * @member {string} [contentType] The content type.
+ * The content type.
*/
contentType?: string;
/**
- * @member {ContentLink} [contentLink] The content link.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The content link.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly contentLink?: ContentLink;
}
/**
- * @interface
- * An interface representing IntegrationAccountSchemaFilter.
* The integration account schema filter for odata query.
- *
*/
export interface IntegrationAccountSchemaFilter {
/**
- * @member {SchemaType} schemaType The schema type of integration account
- * schema. Possible values include: 'NotSpecified', 'Xml'
+ * The schema type of integration account schema. Possible values include: 'NotSpecified', 'Xml'
*/
schemaType: SchemaType;
}
/**
- * @interface
- * An interface representing IntegrationAccountMapPropertiesParametersSchema.
* The parameters schema of integration account map.
- *
*/
export interface IntegrationAccountMapPropertiesParametersSchema {
/**
- * @member {string} [ref] The reference name.
+ * The reference name.
*/
ref?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountMap.
* The integration account map.
- *
- * @extends Resource
*/
export interface IntegrationAccountMap extends Resource {
/**
- * @member {MapType} mapType The map type. Possible values include:
- * 'NotSpecified', 'Xslt', 'Xslt20', 'Xslt30', 'Liquid'
+ * The map type. Possible values include: 'NotSpecified', 'Xslt', 'Xslt20', 'Xslt30', 'Liquid'
*/
mapType: MapType;
/**
- * @member {IntegrationAccountMapPropertiesParametersSchema}
- * [parametersSchema] The parameters schema of integration account map.
+ * The parameters schema of integration account map.
*/
parametersSchema?: IntegrationAccountMapPropertiesParametersSchema;
/**
- * @member {Date} [createdTime] The created time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The created time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly createdTime?: Date;
/**
- * @member {Date} [changedTime] The changed time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The changed time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly changedTime?: Date;
/**
- * @member {string} [content] The content.
+ * The content.
*/
content?: string;
/**
- * @member {string} [contentType] The content type.
+ * The content type.
*/
contentType?: string;
/**
- * @member {ContentLink} [contentLink] The content link.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The content link.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly contentLink?: ContentLink;
/**
- * @member {any} [metadata] The metadata.
+ * The metadata.
*/
metadata?: any;
}
/**
- * @interface
- * An interface representing IntegrationAccountMapFilter.
* The integration account map filter for odata query.
- *
*/
export interface IntegrationAccountMapFilter {
/**
- * @member {MapType} mapType The map type of integration account map.
- * Possible values include: 'NotSpecified', 'Xslt', 'Xslt20', 'Xslt30',
- * 'Liquid'
+ * The map type of integration account map. Possible values include: 'NotSpecified', 'Xslt',
+ * 'Xslt20', 'Xslt30', 'Liquid'
*/
mapType: MapType;
}
/**
- * @interface
- * An interface representing BusinessIdentity.
* The integration account partner's business identity.
- *
*/
export interface BusinessIdentity {
/**
- * @member {string} qualifier The business identity qualifier e.g.
- * as2identity, ZZ, ZZZ, 31, 32
+ * The business identity qualifier e.g. as2identity, ZZ, ZZZ, 31, 32
*/
qualifier: string;
/**
- * @member {string} value The user defined business identity value.
+ * The user defined business identity value.
*/
value: string;
}
/**
- * @interface
- * An interface representing B2BPartnerContent.
* The B2B partner content.
- *
*/
export interface B2BPartnerContent {
/**
- * @member {BusinessIdentity[]} [businessIdentities] The list of partner
- * business identities.
+ * The list of partner business identities.
*/
businessIdentities?: BusinessIdentity[];
}
/**
- * @interface
- * An interface representing PartnerContent.
* The integration account partner content.
- *
*/
export interface PartnerContent {
/**
- * @member {B2BPartnerContent} [b2b] The B2B partner content.
+ * The B2B partner content.
*/
b2b?: B2BPartnerContent;
}
/**
- * @interface
- * An interface representing IntegrationAccountPartner.
* The integration account partner.
- *
- * @extends Resource
*/
export interface IntegrationAccountPartner extends Resource {
/**
- * @member {PartnerType} partnerType The partner type. Possible values
- * include: 'NotSpecified', 'B2B'
+ * The partner type. Possible values include: 'NotSpecified', 'B2B'
*/
partnerType: PartnerType;
/**
- * @member {Date} [createdTime] The created time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The created time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly createdTime?: Date;
/**
- * @member {Date} [changedTime] The changed time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The changed time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly changedTime?: Date;
/**
- * @member {any} [metadata] The metadata.
+ * The metadata.
*/
metadata?: any;
/**
- * @member {PartnerContent} content The partner content.
+ * The partner content.
*/
content: PartnerContent;
}
/**
- * @interface
- * An interface representing IntegrationAccountPartnerFilter.
* The integration account partner filter for odata query.
- *
*/
export interface IntegrationAccountPartnerFilter {
/**
- * @member {PartnerType} partnerType The partner type of integration account
- * partner. Possible values include: 'NotSpecified', 'B2B'
+ * The partner type of integration account partner. Possible values include: 'NotSpecified',
+ * 'B2B'
*/
partnerType: PartnerType;
}
/**
- * @interface
- * An interface representing AS2MessageConnectionSettings.
* The AS2 agreement message connection settings.
- *
*/
export interface AS2MessageConnectionSettings {
/**
- * @member {boolean} ignoreCertificateNameMismatch The value indicating
- * whether to ignore mismatch in certificate name.
+ * The value indicating whether to ignore mismatch in certificate name.
*/
ignoreCertificateNameMismatch: boolean;
/**
- * @member {boolean} supportHttpStatusCodeContinue The value indicating
- * whether to support HTTP status code 'CONTINUE'.
+ * The value indicating whether to support HTTP status code 'CONTINUE'.
*/
supportHttpStatusCodeContinue: boolean;
/**
- * @member {boolean} keepHttpConnectionAlive The value indicating whether to
- * keep the connection alive.
+ * The value indicating whether to keep the connection alive.
*/
keepHttpConnectionAlive: boolean;
/**
- * @member {boolean} unfoldHttpHeaders The value indicating whether to unfold
- * the HTTP headers.
+ * The value indicating whether to unfold the HTTP headers.
*/
unfoldHttpHeaders: boolean;
}
/**
- * @interface
- * An interface representing AS2AcknowledgementConnectionSettings.
* The AS2 agreement acknowledgement connection settings.
- *
*/
export interface AS2AcknowledgementConnectionSettings {
/**
- * @member {boolean} ignoreCertificateNameMismatch The value indicating
- * whether to ignore mismatch in certificate name.
+ * The value indicating whether to ignore mismatch in certificate name.
*/
ignoreCertificateNameMismatch: boolean;
/**
- * @member {boolean} supportHttpStatusCodeContinue The value indicating
- * whether to support HTTP status code 'CONTINUE'.
+ * The value indicating whether to support HTTP status code 'CONTINUE'.
*/
supportHttpStatusCodeContinue: boolean;
/**
- * @member {boolean} keepHttpConnectionAlive The value indicating whether to
- * keep the connection alive.
+ * The value indicating whether to keep the connection alive.
*/
keepHttpConnectionAlive: boolean;
/**
- * @member {boolean} unfoldHttpHeaders The value indicating whether to unfold
- * the HTTP headers.
+ * The value indicating whether to unfold the HTTP headers.
*/
unfoldHttpHeaders: boolean;
}
/**
- * @interface
- * An interface representing AS2MdnSettings.
* The AS2 agreement mdn settings.
- *
*/
export interface AS2MdnSettings {
/**
- * @member {boolean} needMdn The value indicating whether to send or request
- * a MDN.
+ * The value indicating whether to send or request a MDN.
*/
needMdn: boolean;
/**
- * @member {boolean} signMdn The value indicating whether the MDN needs to be
- * signed or not.
+ * The value indicating whether the MDN needs to be signed or not.
*/
signMdn: boolean;
/**
- * @member {boolean} sendMdnAsynchronously The value indicating whether to
- * send the asynchronous MDN.
+ * The value indicating whether to send the asynchronous MDN.
*/
sendMdnAsynchronously: boolean;
/**
- * @member {string} [receiptDeliveryUrl] The receipt delivery URL.
+ * The receipt delivery URL.
*/
receiptDeliveryUrl?: string;
/**
- * @member {string} [dispositionNotificationTo] The disposition notification
- * to header value.
+ * The disposition notification to header value.
*/
dispositionNotificationTo?: string;
/**
- * @member {boolean} signOutboundMdnIfOptional The value indicating whether
- * to sign the outbound MDN if optional.
+ * The value indicating whether to sign the outbound MDN if optional.
*/
signOutboundMdnIfOptional: boolean;
/**
- * @member {string} [mdnText] The MDN text.
+ * The MDN text.
*/
mdnText?: string;
/**
- * @member {boolean} sendInboundMdnToMessageBox The value indicating whether
- * to send inbound MDN to message box.
+ * The value indicating whether to send inbound MDN to message box.
*/
sendInboundMdnToMessageBox: boolean;
/**
- * @member {HashingAlgorithm} micHashingAlgorithm The signing or hashing
- * algorithm. Possible values include: 'NotSpecified', 'None', 'MD5', 'SHA1',
- * 'SHA2256', 'SHA2384', 'SHA2512'
+ * The signing or hashing algorithm. Possible values include: 'NotSpecified', 'None', 'MD5',
+ * 'SHA1', 'SHA2256', 'SHA2384', 'SHA2512'
*/
micHashingAlgorithm: HashingAlgorithm;
}
/**
- * @interface
- * An interface representing AS2SecuritySettings.
* The AS2 agreement security settings.
- *
*/
export interface AS2SecuritySettings {
/**
- * @member {boolean} overrideGroupSigningCertificate The value indicating
- * whether to send or request a MDN.
+ * The value indicating whether to send or request a MDN.
*/
overrideGroupSigningCertificate: boolean;
/**
- * @member {string} [signingCertificateName] The name of the signing
- * certificate.
+ * The name of the signing certificate.
*/
signingCertificateName?: string;
/**
- * @member {string} [encryptionCertificateName] The name of the encryption
- * certificate.
+ * The name of the encryption certificate.
*/
encryptionCertificateName?: string;
/**
- * @member {boolean} enableNrrForInboundEncodedMessages The value indicating
- * whether to enable NRR for inbound encoded messages.
+ * The value indicating whether to enable NRR for inbound encoded messages.
*/
enableNrrForInboundEncodedMessages: boolean;
/**
- * @member {boolean} enableNrrForInboundDecodedMessages The value indicating
- * whether to enable NRR for inbound decoded messages.
+ * The value indicating whether to enable NRR for inbound decoded messages.
*/
enableNrrForInboundDecodedMessages: boolean;
/**
- * @member {boolean} enableNrrForOutboundMdn The value indicating whether to
- * enable NRR for outbound MDN.
+ * The value indicating whether to enable NRR for outbound MDN.
*/
enableNrrForOutboundMdn: boolean;
/**
- * @member {boolean} enableNrrForOutboundEncodedMessages The value indicating
- * whether to enable NRR for outbound encoded messages.
+ * The value indicating whether to enable NRR for outbound encoded messages.
*/
enableNrrForOutboundEncodedMessages: boolean;
/**
- * @member {boolean} enableNrrForOutboundDecodedMessages The value indicating
- * whether to enable NRR for outbound decoded messages.
+ * The value indicating whether to enable NRR for outbound decoded messages.
*/
enableNrrForOutboundDecodedMessages: boolean;
/**
- * @member {boolean} enableNrrForInboundMdn The value indicating whether to
- * enable NRR for inbound MDN.
+ * The value indicating whether to enable NRR for inbound MDN.
*/
enableNrrForInboundMdn: boolean;
/**
- * @member {string} [sha2AlgorithmFormat] The Sha2 algorithm format. Valid
- * values are Sha2, ShaHashSize, ShaHyphenHashSize, Sha2UnderscoreHashSize.
+ * The Sha2 algorithm format. Valid values are Sha2, ShaHashSize, ShaHyphenHashSize,
+ * Sha2UnderscoreHashSize.
*/
sha2AlgorithmFormat?: string;
}
/**
- * @interface
- * An interface representing AS2ValidationSettings.
* The AS2 agreement validation settings.
- *
*/
export interface AS2ValidationSettings {
/**
- * @member {boolean} overrideMessageProperties The value indicating whether
- * to override incoming message properties with those in agreement.
+ * The value indicating whether to override incoming message properties with those in agreement.
*/
overrideMessageProperties: boolean;
/**
- * @member {boolean} encryptMessage The value indicating whether the message
- * has to be encrypted.
+ * The value indicating whether the message has to be encrypted.
*/
encryptMessage: boolean;
/**
- * @member {boolean} signMessage The value indicating whether the message has
- * to be signed.
+ * The value indicating whether the message has to be signed.
*/
signMessage: boolean;
/**
- * @member {boolean} compressMessage The value indicating whether the message
- * has to be compressed.
+ * The value indicating whether the message has to be compressed.
*/
compressMessage: boolean;
/**
- * @member {boolean} checkDuplicateMessage The value indicating whether to
- * check for duplicate message.
+ * The value indicating whether to check for duplicate message.
*/
checkDuplicateMessage: boolean;
/**
- * @member {number} interchangeDuplicatesValidityDays The number of days to
- * look back for duplicate interchange.
+ * The number of days to look back for duplicate interchange.
*/
interchangeDuplicatesValidityDays: number;
/**
- * @member {boolean} checkCertificateRevocationListOnSend The value
- * indicating whether to check for certificate revocation list on send.
+ * The value indicating whether to check for certificate revocation list on send.
*/
checkCertificateRevocationListOnSend: boolean;
/**
- * @member {boolean} checkCertificateRevocationListOnReceive The value
- * indicating whether to check for certificate revocation list on receive.
+ * The value indicating whether to check for certificate revocation list on receive.
*/
checkCertificateRevocationListOnReceive: boolean;
/**
- * @member {EncryptionAlgorithm} encryptionAlgorithm The encryption
- * algorithm. Possible values include: 'NotSpecified', 'None', 'DES3', 'RC2',
+ * The encryption algorithm. Possible values include: 'NotSpecified', 'None', 'DES3', 'RC2',
* 'AES128', 'AES192', 'AES256'
*/
encryptionAlgorithm: EncryptionAlgorithm;
/**
- * @member {SigningAlgorithm} [signingAlgorithm] The signing algorithm.
- * Possible values include: 'NotSpecified', 'Default', 'SHA1', 'SHA2256',
+ * The signing algorithm. Possible values include: 'NotSpecified', 'Default', 'SHA1', 'SHA2256',
* 'SHA2384', 'SHA2512'
*/
signingAlgorithm?: SigningAlgorithm;
}
/**
- * @interface
- * An interface representing AS2EnvelopeSettings.
* The AS2 agreement envelope settings.
- *
*/
export interface AS2EnvelopeSettings {
/**
- * @member {string} messageContentType The message content type.
+ * The message content type.
*/
messageContentType: string;
/**
- * @member {boolean} transmitFileNameInMimeHeader The value indicating
- * whether to transmit file name in mime header.
+ * The value indicating whether to transmit file name in mime header.
*/
transmitFileNameInMimeHeader: boolean;
/**
- * @member {string} fileNameTemplate The template for file name.
+ * The template for file name.
*/
fileNameTemplate: string;
/**
- * @member {boolean} suspendMessageOnFileNameGenerationError The value
- * indicating whether to suspend message on file name generation error.
+ * The value indicating whether to suspend message on file name generation error.
*/
suspendMessageOnFileNameGenerationError: boolean;
/**
- * @member {boolean} autogenerateFileName The value indicating whether to
- * auto generate file name.
+ * The value indicating whether to auto generate file name.
*/
autogenerateFileName: boolean;
}
/**
- * @interface
- * An interface representing AS2ErrorSettings.
* The AS2 agreement error settings.
- *
*/
export interface AS2ErrorSettings {
/**
- * @member {boolean} suspendDuplicateMessage The value indicating whether to
- * suspend duplicate message.
+ * The value indicating whether to suspend duplicate message.
*/
suspendDuplicateMessage: boolean;
/**
- * @member {boolean} resendIfMdnNotReceived The value indicating whether to
- * resend message If MDN is not received.
+ * The value indicating whether to resend message If MDN is not received.
*/
resendIfMdnNotReceived: boolean;
}
/**
- * @interface
- * An interface representing AS2ProtocolSettings.
* The AS2 agreement protocol settings.
- *
*/
export interface AS2ProtocolSettings {
/**
- * @member {AS2MessageConnectionSettings} messageConnectionSettings The
- * message connection settings.
+ * The message connection settings.
*/
messageConnectionSettings: AS2MessageConnectionSettings;
/**
- * @member {AS2AcknowledgementConnectionSettings}
- * acknowledgementConnectionSettings The acknowledgement connection settings.
+ * The acknowledgement connection settings.
*/
acknowledgementConnectionSettings: AS2AcknowledgementConnectionSettings;
/**
- * @member {AS2MdnSettings} mdnSettings The MDN settings.
+ * The MDN settings.
*/
mdnSettings: AS2MdnSettings;
/**
- * @member {AS2SecuritySettings} securitySettings The security settings.
+ * The security settings.
*/
securitySettings: AS2SecuritySettings;
/**
- * @member {AS2ValidationSettings} validationSettings The validation
- * settings.
+ * The validation settings.
*/
validationSettings: AS2ValidationSettings;
/**
- * @member {AS2EnvelopeSettings} envelopeSettings The envelope settings.
+ * The envelope settings.
*/
envelopeSettings: AS2EnvelopeSettings;
/**
- * @member {AS2ErrorSettings} errorSettings The error settings.
+ * The error settings.
*/
errorSettings: AS2ErrorSettings;
}
/**
- * @interface
- * An interface representing AS2OneWayAgreement.
* The integration account AS2 one-way agreement.
- *
*/
export interface AS2OneWayAgreement {
/**
- * @member {BusinessIdentity} senderBusinessIdentity The sender business
- * identity
+ * The sender business identity
*/
senderBusinessIdentity: BusinessIdentity;
/**
- * @member {BusinessIdentity} receiverBusinessIdentity The receiver business
- * identity
+ * The receiver business identity
*/
receiverBusinessIdentity: BusinessIdentity;
/**
- * @member {AS2ProtocolSettings} protocolSettings The AS2 protocol settings.
+ * The AS2 protocol settings.
*/
protocolSettings: AS2ProtocolSettings;
}
/**
- * @interface
- * An interface representing AS2AgreementContent.
* The integration account AS2 agreement content.
- *
*/
export interface AS2AgreementContent {
/**
- * @member {AS2OneWayAgreement} receiveAgreement The AS2 one-way receive
- * agreement.
+ * The AS2 one-way receive agreement.
*/
receiveAgreement: AS2OneWayAgreement;
/**
- * @member {AS2OneWayAgreement} sendAgreement The AS2 one-way send agreement.
+ * The AS2 one-way send agreement.
*/
sendAgreement: AS2OneWayAgreement;
}
/**
- * @interface
- * An interface representing X12ValidationSettings.
* The X12 agreement validation settings.
- *
*/
export interface X12ValidationSettings {
/**
- * @member {boolean} validateCharacterSet The value indicating whether to
- * validate character set in the message.
+ * The value indicating whether to validate character set in the message.
*/
validateCharacterSet: boolean;
/**
- * @member {boolean} checkDuplicateInterchangeControlNumber The value
- * indicating whether to check for duplicate interchange control number.
+ * The value indicating whether to check for duplicate interchange control number.
*/
checkDuplicateInterchangeControlNumber: boolean;
/**
- * @member {number} interchangeControlNumberValidityDays The validity period
- * of interchange control number.
+ * The validity period of interchange control number.
*/
interchangeControlNumberValidityDays: number;
/**
- * @member {boolean} checkDuplicateGroupControlNumber The value indicating
- * whether to check for duplicate group control number.
+ * The value indicating whether to check for duplicate group control number.
*/
checkDuplicateGroupControlNumber: boolean;
/**
- * @member {boolean} checkDuplicateTransactionSetControlNumber The value
- * indicating whether to check for duplicate transaction set control number.
+ * The value indicating whether to check for duplicate transaction set control number.
*/
checkDuplicateTransactionSetControlNumber: boolean;
/**
- * @member {boolean} validateEdiTypes The value indicating whether to Whether
- * to validate EDI types.
+ * The value indicating whether to Whether to validate EDI types.
*/
- validateEdiTypes: boolean;
+ validateEDITypes: boolean;
/**
- * @member {boolean} validateXsdTypes The value indicating whether to Whether
- * to validate XSD types.
+ * The value indicating whether to Whether to validate XSD types.
*/
- validateXsdTypes: boolean;
+ validateXSDTypes: boolean;
/**
- * @member {boolean} allowLeadingAndTrailingSpacesAndZeroes The value
- * indicating whether to allow leading and trailing spaces and zeroes.
+ * The value indicating whether to allow leading and trailing spaces and zeroes.
*/
allowLeadingAndTrailingSpacesAndZeroes: boolean;
/**
- * @member {boolean} trimLeadingAndTrailingSpacesAndZeroes The value
- * indicating whether to trim leading and trailing spaces and zeroes.
+ * The value indicating whether to trim leading and trailing spaces and zeroes.
*/
trimLeadingAndTrailingSpacesAndZeroes: boolean;
/**
- * @member {TrailingSeparatorPolicy} trailingSeparatorPolicy The trailing
- * separator policy. Possible values include: 'NotSpecified', 'NotAllowed',
+ * The trailing separator policy. Possible values include: 'NotSpecified', 'NotAllowed',
* 'Optional', 'Mandatory'
*/
trailingSeparatorPolicy: TrailingSeparatorPolicy;
}
/**
- * @interface
- * An interface representing X12FramingSettings.
* The X12 agreement framing settings.
- *
*/
export interface X12FramingSettings {
/**
- * @member {number} dataElementSeparator The data element separator.
+ * The data element separator.
*/
dataElementSeparator: number;
/**
- * @member {number} componentSeparator The component separator.
+ * The component separator.
*/
componentSeparator: number;
/**
- * @member {boolean} replaceSeparatorsInPayload The value indicating whether
- * to replace separators in payload.
+ * The value indicating whether to replace separators in payload.
*/
replaceSeparatorsInPayload: boolean;
/**
- * @member {number} replaceCharacter The replacement character.
+ * The replacement character.
*/
replaceCharacter: number;
/**
- * @member {number} segmentTerminator The segment terminator.
+ * The segment terminator.
*/
segmentTerminator: number;
/**
- * @member {X12CharacterSet} characterSet The X12 character set. Possible
- * values include: 'NotSpecified', 'Basic', 'Extended', 'UTF8'
+ * The X12 character set. Possible values include: 'NotSpecified', 'Basic', 'Extended', 'UTF8'
*/
characterSet: X12CharacterSet;
/**
- * @member {SegmentTerminatorSuffix} segmentTerminatorSuffix The segment
- * terminator suffix. Possible values include: 'NotSpecified', 'None', 'CR',
- * 'LF', 'CRLF'
+ * The segment terminator suffix. Possible values include: 'NotSpecified', 'None', 'CR', 'LF',
+ * 'CRLF'
*/
segmentTerminatorSuffix: SegmentTerminatorSuffix;
}
/**
- * @interface
- * An interface representing X12EnvelopeSettings.
* The X12 agreement envelope settings.
- *
*/
export interface X12EnvelopeSettings {
/**
- * @member {number} controlStandardsId The controls standards id.
+ * The controls standards id.
*/
controlStandardsId: number;
/**
- * @member {boolean} useControlStandardsIdAsRepetitionCharacter The value
- * indicating whether to use control standards id as repetition character.
+ * The value indicating whether to use control standards id as repetition character.
*/
useControlStandardsIdAsRepetitionCharacter: boolean;
/**
- * @member {string} senderApplicationId The sender application id.
+ * The sender application id.
*/
senderApplicationId: string;
/**
- * @member {string} receiverApplicationId The receiver application id.
+ * The receiver application id.
*/
receiverApplicationId: string;
/**
- * @member {string} controlVersionNumber The control version number.
+ * The control version number.
*/
controlVersionNumber: string;
/**
- * @member {number} interchangeControlNumberLowerBound The interchange
- * control number lower bound.
+ * The interchange control number lower bound.
*/
interchangeControlNumberLowerBound: number;
/**
- * @member {number} interchangeControlNumberUpperBound The interchange
- * control number upper bound.
+ * The interchange control number upper bound.
*/
interchangeControlNumberUpperBound: number;
/**
- * @member {boolean} rolloverInterchangeControlNumber The value indicating
- * whether to rollover interchange control number.
+ * The value indicating whether to rollover interchange control number.
*/
rolloverInterchangeControlNumber: boolean;
/**
- * @member {boolean} enableDefaultGroupHeaders The value indicating whether
- * to enable default group headers.
+ * The value indicating whether to enable default group headers.
*/
enableDefaultGroupHeaders: boolean;
/**
- * @member {string} [functionalGroupId] The functional group id.
+ * The functional group id.
*/
functionalGroupId?: string;
/**
- * @member {number} groupControlNumberLowerBound The group control number
- * lower bound.
+ * The group control number lower bound.
*/
groupControlNumberLowerBound: number;
/**
- * @member {number} groupControlNumberUpperBound The group control number
- * upper bound.
+ * The group control number upper bound.
*/
groupControlNumberUpperBound: number;
/**
- * @member {boolean} rolloverGroupControlNumber The value indicating whether
- * to rollover group control number.
+ * The value indicating whether to rollover group control number.
*/
rolloverGroupControlNumber: boolean;
/**
- * @member {string} groupHeaderAgencyCode The group header agency code.
+ * The group header agency code.
*/
groupHeaderAgencyCode: string;
/**
- * @member {string} groupHeaderVersion The group header version.
+ * The group header version.
*/
groupHeaderVersion: string;
/**
- * @member {number} transactionSetControlNumberLowerBound The transaction set
- * control number lower bound.
+ * The transaction set control number lower bound.
*/
transactionSetControlNumberLowerBound: number;
/**
- * @member {number} transactionSetControlNumberUpperBound The transaction set
- * control number upper bound.
+ * The transaction set control number upper bound.
*/
transactionSetControlNumberUpperBound: number;
/**
- * @member {boolean} rolloverTransactionSetControlNumber The value indicating
- * whether to rollover transaction set control number.
+ * The value indicating whether to rollover transaction set control number.
*/
rolloverTransactionSetControlNumber: boolean;
/**
- * @member {string} [transactionSetControlNumberPrefix] The transaction set
- * control number prefix.
+ * The transaction set control number prefix.
*/
transactionSetControlNumberPrefix?: string;
/**
- * @member {string} [transactionSetControlNumberSuffix] The transaction set
- * control number suffix.
+ * The transaction set control number suffix.
*/
transactionSetControlNumberSuffix?: string;
/**
- * @member {boolean} overwriteExistingTransactionSetControlNumber The value
- * indicating whether to overwrite existing transaction set control number.
+ * The value indicating whether to overwrite existing transaction set control number.
*/
overwriteExistingTransactionSetControlNumber: boolean;
/**
- * @member {X12DateFormat} groupHeaderDateFormat The group header date
- * format. Possible values include: 'NotSpecified', 'CCYYMMDD', 'YYMMDD'
+ * The group header date format. Possible values include: 'NotSpecified', 'CCYYMMDD', 'YYMMDD'
*/
groupHeaderDateFormat: X12DateFormat;
/**
- * @member {X12TimeFormat} groupHeaderTimeFormat The group header time
- * format. Possible values include: 'NotSpecified', 'HHMM', 'HHMMSS',
+ * The group header time format. Possible values include: 'NotSpecified', 'HHMM', 'HHMMSS',
* 'HHMMSSdd', 'HHMMSSd'
*/
groupHeaderTimeFormat: X12TimeFormat;
/**
- * @member {UsageIndicator} usageIndicator The usage indicator. Possible
- * values include: 'NotSpecified', 'Test', 'Information', 'Production'
+ * The usage indicator. Possible values include: 'NotSpecified', 'Test', 'Information',
+ * 'Production'
*/
usageIndicator: UsageIndicator;
}
/**
- * @interface
- * An interface representing X12AcknowledgementSettings.
* The X12 agreement acknowledgement settings.
- *
*/
export interface X12AcknowledgementSettings {
/**
- * @member {boolean} needTechnicalAcknowledgement The value indicating
- * whether technical acknowledgement is needed.
+ * The value indicating whether technical acknowledgement is needed.
*/
needTechnicalAcknowledgement: boolean;
/**
- * @member {boolean} batchTechnicalAcknowledgements The value indicating
- * whether to batch the technical acknowledgements.
+ * The value indicating whether to batch the technical acknowledgements.
*/
batchTechnicalAcknowledgements: boolean;
/**
- * @member {boolean} needFunctionalAcknowledgement The value indicating
- * whether functional acknowledgement is needed.
+ * The value indicating whether functional acknowledgement is needed.
*/
needFunctionalAcknowledgement: boolean;
/**
- * @member {string} [functionalAcknowledgementVersion] The functional
- * acknowledgement version.
+ * The functional acknowledgement version.
*/
functionalAcknowledgementVersion?: string;
/**
- * @member {boolean} batchFunctionalAcknowledgements The value indicating
- * whether to batch functional acknowledgements.
+ * The value indicating whether to batch functional acknowledgements.
*/
batchFunctionalAcknowledgements: boolean;
/**
- * @member {boolean} needImplementationAcknowledgement The value indicating
- * whether implementation acknowledgement is needed.
+ * The value indicating whether implementation acknowledgement is needed.
*/
needImplementationAcknowledgement: boolean;
/**
- * @member {string} [implementationAcknowledgementVersion] The implementation
- * acknowledgement version.
+ * The implementation acknowledgement version.
*/
implementationAcknowledgementVersion?: string;
/**
- * @member {boolean} batchImplementationAcknowledgements The value indicating
- * whether to batch implementation acknowledgements.
+ * The value indicating whether to batch implementation acknowledgements.
*/
batchImplementationAcknowledgements: boolean;
/**
- * @member {boolean} needLoopForValidMessages The value indicating whether a
- * loop is needed for valid messages.
+ * The value indicating whether a loop is needed for valid messages.
*/
needLoopForValidMessages: boolean;
/**
- * @member {boolean} sendSynchronousAcknowledgement The value indicating
- * whether to send synchronous acknowledgement.
+ * The value indicating whether to send synchronous acknowledgement.
*/
sendSynchronousAcknowledgement: boolean;
/**
- * @member {string} [acknowledgementControlNumberPrefix] The acknowledgement
- * control number prefix.
+ * The acknowledgement control number prefix.
*/
acknowledgementControlNumberPrefix?: string;
/**
- * @member {string} [acknowledgementControlNumberSuffix] The acknowledgement
- * control number suffix.
+ * The acknowledgement control number suffix.
*/
acknowledgementControlNumberSuffix?: string;
/**
- * @member {number} acknowledgementControlNumberLowerBound The
- * acknowledgement control number lower bound.
+ * The acknowledgement control number lower bound.
*/
acknowledgementControlNumberLowerBound: number;
/**
- * @member {number} acknowledgementControlNumberUpperBound The
- * acknowledgement control number upper bound.
+ * The acknowledgement control number upper bound.
*/
acknowledgementControlNumberUpperBound: number;
/**
- * @member {boolean} rolloverAcknowledgementControlNumber The value
- * indicating whether to rollover acknowledgement control number.
+ * The value indicating whether to rollover acknowledgement control number.
*/
rolloverAcknowledgementControlNumber: boolean;
}
/**
- * @interface
- * An interface representing X12MessageFilter.
* The X12 message filter for odata query.
- *
*/
export interface X12MessageFilter {
/**
- * @member {MessageFilterType} messageFilterType The message filter type.
- * Possible values include: 'NotSpecified', 'Include', 'Exclude'
+ * The message filter type. Possible values include: 'NotSpecified', 'Include', 'Exclude'
*/
messageFilterType: MessageFilterType;
}
/**
- * @interface
- * An interface representing X12SecuritySettings.
* The X12 agreement security settings.
- *
*/
export interface X12SecuritySettings {
/**
- * @member {string} authorizationQualifier The authorization qualifier.
+ * The authorization qualifier.
*/
authorizationQualifier: string;
/**
- * @member {string} [authorizationValue] The authorization value.
+ * The authorization value.
*/
authorizationValue?: string;
/**
- * @member {string} securityQualifier The security qualifier.
+ * The security qualifier.
*/
securityQualifier: string;
/**
- * @member {string} [passwordValue] The password value.
+ * The password value.
*/
passwordValue?: string;
}
/**
- * @interface
- * An interface representing X12ProcessingSettings.
* The X12 processing settings.
- *
*/
export interface X12ProcessingSettings {
/**
- * @member {boolean} maskSecurityInfo The value indicating whether to mask
- * security information.
+ * The value indicating whether to mask security information.
*/
maskSecurityInfo: boolean;
/**
- * @member {boolean} convertImpliedDecimal The value indicating whether to
- * convert numerical type to implied decimal.
+ * The value indicating whether to convert numerical type to implied decimal.
*/
convertImpliedDecimal: boolean;
/**
- * @member {boolean} preserveInterchange The value indicating whether to
- * preserve interchange.
+ * The value indicating whether to preserve interchange.
*/
preserveInterchange: boolean;
/**
- * @member {boolean} suspendInterchangeOnError The value indicating whether
- * to suspend interchange on error.
+ * The value indicating whether to suspend interchange on error.
*/
suspendInterchangeOnError: boolean;
/**
- * @member {boolean} createEmptyXmlTagsForTrailingSeparators The value
- * indicating whether to create empty xml tags for trailing separators.
+ * The value indicating whether to create empty xml tags for trailing separators.
*/
createEmptyXmlTagsForTrailingSeparators: boolean;
/**
- * @member {boolean} useDotAsDecimalSeparator The value indicating whether to
- * use dot as decimal separator.
+ * The value indicating whether to use dot as decimal separator.
*/
useDotAsDecimalSeparator: boolean;
}
/**
- * @interface
- * An interface representing X12EnvelopeOverride.
* The X12 envelope override settings.
- *
*/
export interface X12EnvelopeOverride {
/**
- * @member {string} targetNamespace The target namespace on which this
- * envelope settings has to be applied.
+ * The target namespace on which this envelope settings has to be applied.
*/
targetNamespace: string;
/**
- * @member {string} protocolVersion The protocol version on which this
- * envelope settings has to be applied.
+ * The protocol version on which this envelope settings has to be applied.
*/
protocolVersion: string;
/**
- * @member {string} messageId The message id on which this envelope settings
- * has to be applied.
+ * The message id on which this envelope settings has to be applied.
*/
messageId: string;
/**
- * @member {string} responsibleAgencyCode The responsible agency code.
+ * The responsible agency code.
*/
responsibleAgencyCode: string;
/**
- * @member {string} headerVersion The header version.
+ * The header version.
*/
headerVersion: string;
/**
- * @member {string} senderApplicationId The sender application id.
+ * The sender application id.
*/
senderApplicationId: string;
/**
- * @member {string} receiverApplicationId The receiver application id.
+ * The receiver application id.
*/
receiverApplicationId: string;
/**
- * @member {string} [functionalIdentifierCode] The functional identifier
- * code.
+ * The functional identifier code.
*/
functionalIdentifierCode?: string;
/**
- * @member {X12DateFormat} dateFormat The date format. Possible values
- * include: 'NotSpecified', 'CCYYMMDD', 'YYMMDD'
+ * The date format. Possible values include: 'NotSpecified', 'CCYYMMDD', 'YYMMDD'
*/
dateFormat: X12DateFormat;
/**
- * @member {X12TimeFormat} timeFormat The time format. Possible values
- * include: 'NotSpecified', 'HHMM', 'HHMMSS', 'HHMMSSdd', 'HHMMSSd'
+ * The time format. Possible values include: 'NotSpecified', 'HHMM', 'HHMMSS', 'HHMMSSdd',
+ * 'HHMMSSd'
*/
timeFormat: X12TimeFormat;
}
/**
- * @interface
- * An interface representing X12ValidationOverride.
* The X12 validation override settings.
- *
*/
export interface X12ValidationOverride {
/**
- * @member {string} messageId The message id on which the validation settings
- * has to be applied.
+ * The message id on which the validation settings has to be applied.
*/
messageId: string;
/**
- * @member {boolean} validateEdiTypes The value indicating whether to
- * validate EDI types.
+ * The value indicating whether to validate EDI types.
*/
- validateEdiTypes: boolean;
+ validateEDITypes: boolean;
/**
- * @member {boolean} validateXsdTypes The value indicating whether to
- * validate XSD types.
+ * The value indicating whether to validate XSD types.
*/
- validateXsdTypes: boolean;
+ validateXSDTypes: boolean;
/**
- * @member {boolean} allowLeadingAndTrailingSpacesAndZeroes The value
- * indicating whether to allow leading and trailing spaces and zeroes.
+ * The value indicating whether to allow leading and trailing spaces and zeroes.
*/
allowLeadingAndTrailingSpacesAndZeroes: boolean;
/**
- * @member {boolean} validateCharacterSet The value indicating whether to
- * validate character Set.
+ * The value indicating whether to validate character Set.
*/
validateCharacterSet: boolean;
/**
- * @member {boolean} trimLeadingAndTrailingSpacesAndZeroes The value
- * indicating whether to trim leading and trailing spaces and zeroes.
+ * The value indicating whether to trim leading and trailing spaces and zeroes.
*/
trimLeadingAndTrailingSpacesAndZeroes: boolean;
/**
- * @member {TrailingSeparatorPolicy} trailingSeparatorPolicy The trailing
- * separator policy. Possible values include: 'NotSpecified', 'NotAllowed',
+ * The trailing separator policy. Possible values include: 'NotSpecified', 'NotAllowed',
* 'Optional', 'Mandatory'
*/
trailingSeparatorPolicy: TrailingSeparatorPolicy;
}
/**
- * @interface
- * An interface representing X12MessageIdentifier.
* The X12 message identifier.
- *
*/
export interface X12MessageIdentifier {
/**
- * @member {string} messageId The message id.
+ * The message id.
*/
messageId: string;
}
/**
- * @interface
- * An interface representing X12SchemaReference.
* The X12 schema reference.
- *
*/
export interface X12SchemaReference {
/**
- * @member {string} messageId The message id.
+ * The message id.
*/
messageId: string;
/**
- * @member {string} [senderApplicationId] The sender application id.
+ * The sender application id.
*/
senderApplicationId?: string;
/**
- * @member {string} schemaVersion The schema version.
+ * The schema version.
*/
schemaVersion: string;
/**
- * @member {string} schemaName The schema name.
+ * The schema name.
*/
schemaName: string;
}
/**
- * @interface
- * An interface representing X12DelimiterOverrides.
* The X12 delimiter override settings.
- *
*/
export interface X12DelimiterOverrides {
/**
- * @member {string} [protocolVersion] The protocol version.
+ * The protocol version.
*/
protocolVersion?: string;
/**
- * @member {string} [messageId] The message id.
+ * The message id.
*/
messageId?: string;
/**
- * @member {number} dataElementSeparator The data element separator.
+ * The data element separator.
*/
dataElementSeparator: number;
/**
- * @member {number} componentSeparator The component separator.
+ * The component separator.
*/
componentSeparator: number;
/**
- * @member {number} segmentTerminator The segment terminator.
+ * The segment terminator.
*/
segmentTerminator: number;
/**
- * @member {SegmentTerminatorSuffix} segmentTerminatorSuffix The segment
- * terminator suffix. Possible values include: 'NotSpecified', 'None', 'CR',
- * 'LF', 'CRLF'
+ * The segment terminator suffix. Possible values include: 'NotSpecified', 'None', 'CR', 'LF',
+ * 'CRLF'
*/
segmentTerminatorSuffix: SegmentTerminatorSuffix;
/**
- * @member {number} replaceCharacter The replacement character.
+ * The replacement character.
*/
replaceCharacter: number;
/**
- * @member {boolean} replaceSeparatorsInPayload The value indicating whether
- * to replace separators in payload.
+ * The value indicating whether to replace separators in payload.
*/
replaceSeparatorsInPayload: boolean;
/**
- * @member {string} [targetNamespace] The target namespace on which this
- * delimiter settings has to be applied.
+ * The target namespace on which this delimiter settings has to be applied.
*/
targetNamespace?: string;
}
/**
- * @interface
- * An interface representing X12ProtocolSettings.
* The X12 agreement protocol settings.
- *
*/
export interface X12ProtocolSettings {
/**
- * @member {X12ValidationSettings} validationSettings The X12 validation
- * settings.
+ * The X12 validation settings.
*/
validationSettings: X12ValidationSettings;
/**
- * @member {X12FramingSettings} framingSettings The X12 framing settings.
+ * The X12 framing settings.
*/
framingSettings: X12FramingSettings;
/**
- * @member {X12EnvelopeSettings} envelopeSettings The X12 envelope settings.
+ * The X12 envelope settings.
*/
envelopeSettings: X12EnvelopeSettings;
/**
- * @member {X12AcknowledgementSettings} acknowledgementSettings The X12
- * acknowledgment settings.
+ * The X12 acknowledgment settings.
*/
acknowledgementSettings: X12AcknowledgementSettings;
/**
- * @member {X12MessageFilter} messageFilter The X12 message filter.
+ * The X12 message filter.
*/
messageFilter: X12MessageFilter;
/**
- * @member {X12SecuritySettings} securitySettings The X12 security settings.
+ * The X12 security settings.
*/
securitySettings: X12SecuritySettings;
/**
- * @member {X12ProcessingSettings} processingSettings The X12 processing
- * settings.
+ * The X12 processing settings.
*/
processingSettings: X12ProcessingSettings;
/**
- * @member {X12EnvelopeOverride[]} [envelopeOverrides] The X12 envelope
- * override settings.
+ * The X12 envelope override settings.
*/
envelopeOverrides?: X12EnvelopeOverride[];
/**
- * @member {X12ValidationOverride[]} [validationOverrides] The X12 validation
- * override settings.
+ * The X12 validation override settings.
*/
validationOverrides?: X12ValidationOverride[];
/**
- * @member {X12MessageIdentifier[]} [messageFilterList] The X12 message
- * filter list.
+ * The X12 message filter list.
*/
messageFilterList?: X12MessageIdentifier[];
/**
- * @member {X12SchemaReference[]} schemaReferences The X12 schema references.
+ * The X12 schema references.
*/
schemaReferences: X12SchemaReference[];
/**
- * @member {X12DelimiterOverrides[]} [x12DelimiterOverrides] The X12
- * delimiter override settings.
+ * The X12 delimiter override settings.
*/
x12DelimiterOverrides?: X12DelimiterOverrides[];
}
/**
- * @interface
- * An interface representing X12OneWayAgreement.
* The X12 one-way agreement.
- *
*/
export interface X12OneWayAgreement {
/**
- * @member {BusinessIdentity} senderBusinessIdentity The sender business
- * identity
+ * The sender business identity
*/
senderBusinessIdentity: BusinessIdentity;
/**
- * @member {BusinessIdentity} receiverBusinessIdentity The receiver business
- * identity
+ * The receiver business identity
*/
receiverBusinessIdentity: BusinessIdentity;
/**
- * @member {X12ProtocolSettings} protocolSettings The X12 protocol settings.
+ * The X12 protocol settings.
*/
protocolSettings: X12ProtocolSettings;
}
/**
- * @interface
- * An interface representing X12AgreementContent.
* The X12 agreement content.
- *
*/
export interface X12AgreementContent {
/**
- * @member {X12OneWayAgreement} receiveAgreement The X12 one-way receive
- * agreement.
+ * The X12 one-way receive agreement.
*/
receiveAgreement: X12OneWayAgreement;
/**
- * @member {X12OneWayAgreement} sendAgreement The X12 one-way send agreement.
+ * The X12 one-way send agreement.
*/
sendAgreement: X12OneWayAgreement;
}
/**
- * @interface
- * An interface representing EdifactValidationSettings.
* The Edifact agreement validation settings.
- *
*/
export interface EdifactValidationSettings {
/**
- * @member {boolean} validateCharacterSet The value indicating whether to
- * validate character set in the message.
+ * The value indicating whether to validate character set in the message.
*/
validateCharacterSet: boolean;
/**
- * @member {boolean} checkDuplicateInterchangeControlNumber The value
- * indicating whether to check for duplicate interchange control number.
+ * The value indicating whether to check for duplicate interchange control number.
*/
checkDuplicateInterchangeControlNumber: boolean;
/**
- * @member {number} interchangeControlNumberValidityDays The validity period
- * of interchange control number.
+ * The validity period of interchange control number.
*/
interchangeControlNumberValidityDays: number;
/**
- * @member {boolean} checkDuplicateGroupControlNumber The value indicating
- * whether to check for duplicate group control number.
+ * The value indicating whether to check for duplicate group control number.
*/
checkDuplicateGroupControlNumber: boolean;
/**
- * @member {boolean} checkDuplicateTransactionSetControlNumber The value
- * indicating whether to check for duplicate transaction set control number.
+ * The value indicating whether to check for duplicate transaction set control number.
*/
checkDuplicateTransactionSetControlNumber: boolean;
/**
- * @member {boolean} validateEdiTypes The value indicating whether to Whether
- * to validate EDI types.
+ * The value indicating whether to Whether to validate EDI types.
*/
- validateEdiTypes: boolean;
+ validateEDITypes: boolean;
/**
- * @member {boolean} validateXsdTypes The value indicating whether to Whether
- * to validate XSD types.
+ * The value indicating whether to Whether to validate XSD types.
*/
- validateXsdTypes: boolean;
+ validateXSDTypes: boolean;
/**
- * @member {boolean} allowLeadingAndTrailingSpacesAndZeroes The value
- * indicating whether to allow leading and trailing spaces and zeroes.
+ * The value indicating whether to allow leading and trailing spaces and zeroes.
*/
allowLeadingAndTrailingSpacesAndZeroes: boolean;
/**
- * @member {boolean} trimLeadingAndTrailingSpacesAndZeroes The value
- * indicating whether to trim leading and trailing spaces and zeroes.
+ * The value indicating whether to trim leading and trailing spaces and zeroes.
*/
trimLeadingAndTrailingSpacesAndZeroes: boolean;
/**
- * @member {TrailingSeparatorPolicy} trailingSeparatorPolicy The trailing
- * separator policy. Possible values include: 'NotSpecified', 'NotAllowed',
+ * The trailing separator policy. Possible values include: 'NotSpecified', 'NotAllowed',
* 'Optional', 'Mandatory'
*/
trailingSeparatorPolicy: TrailingSeparatorPolicy;
}
/**
- * @interface
- * An interface representing EdifactFramingSettings.
* The Edifact agreement framing settings.
- *
*/
export interface EdifactFramingSettings {
/**
- * @member {string} [serviceCodeListDirectoryVersion] The service code list
- * directory version.
+ * The service code list directory version.
*/
serviceCodeListDirectoryVersion?: string;
/**
- * @member {string} [characterEncoding] The character encoding.
+ * The character encoding.
*/
characterEncoding?: string;
/**
- * @member {number} protocolVersion The protocol version.
+ * The protocol version.
*/
protocolVersion: number;
/**
- * @member {number} dataElementSeparator The data element separator.
+ * The data element separator.
*/
dataElementSeparator: number;
/**
- * @member {number} componentSeparator The component separator.
+ * The component separator.
*/
componentSeparator: number;
/**
- * @member {number} segmentTerminator The segment terminator.
+ * The segment terminator.
*/
segmentTerminator: number;
/**
- * @member {number} releaseIndicator The release indicator.
+ * The release indicator.
*/
releaseIndicator: number;
/**
- * @member {number} repetitionSeparator The repetition separator.
+ * The repetition separator.
*/
repetitionSeparator: number;
/**
- * @member {EdifactCharacterSet} characterSet The EDIFACT frame setting
- * characterSet. Possible values include: 'NotSpecified', 'UNOB', 'UNOA',
- * 'UNOC', 'UNOD', 'UNOE', 'UNOF', 'UNOG', 'UNOH', 'UNOI', 'UNOJ', 'UNOK',
- * 'UNOX', 'UNOY', 'KECA'
+ * The EDIFACT frame setting characterSet. Possible values include: 'NotSpecified', 'UNOB',
+ * 'UNOA', 'UNOC', 'UNOD', 'UNOE', 'UNOF', 'UNOG', 'UNOH', 'UNOI', 'UNOJ', 'UNOK', 'UNOX',
+ * 'UNOY', 'KECA'
*/
characterSet: EdifactCharacterSet;
/**
- * @member {EdifactDecimalIndicator} decimalPointIndicator The EDIFACT frame
- * setting decimal indicator. Possible values include: 'NotSpecified',
- * 'Comma', 'Decimal'
+ * The EDIFACT frame setting decimal indicator. Possible values include: 'NotSpecified', 'Comma',
+ * 'Decimal'
*/
decimalPointIndicator: EdifactDecimalIndicator;
/**
- * @member {SegmentTerminatorSuffix} segmentTerminatorSuffix The EDIFACT
- * frame setting segment terminator suffix. Possible values include:
- * 'NotSpecified', 'None', 'CR', 'LF', 'CRLF'
+ * The EDIFACT frame setting segment terminator suffix. Possible values include: 'NotSpecified',
+ * 'None', 'CR', 'LF', 'CRLF'
*/
segmentTerminatorSuffix: SegmentTerminatorSuffix;
}
/**
- * @interface
- * An interface representing EdifactEnvelopeSettings.
* The Edifact agreement envelope settings.
- *
*/
export interface EdifactEnvelopeSettings {
/**
- * @member {string} [groupAssociationAssignedCode] The group association
- * assigned code.
+ * The group association assigned code.
*/
groupAssociationAssignedCode?: string;
/**
- * @member {string} [communicationAgreementId] The communication agreement
- * id.
+ * The communication agreement id.
*/
communicationAgreementId?: string;
/**
- * @member {boolean} applyDelimiterStringAdvice The value indicating whether
- * to apply delimiter string advice.
+ * The value indicating whether to apply delimiter string advice.
*/
applyDelimiterStringAdvice: boolean;
/**
- * @member {boolean} createGroupingSegments The value indicating whether to
- * create grouping segments.
+ * The value indicating whether to create grouping segments.
*/
createGroupingSegments: boolean;
/**
- * @member {boolean} enableDefaultGroupHeaders The value indicating whether
- * to enable default group headers.
+ * The value indicating whether to enable default group headers.
*/
enableDefaultGroupHeaders: boolean;
/**
- * @member {string} [recipientReferencePasswordValue] The recipient reference
- * password value.
+ * The recipient reference password value.
*/
recipientReferencePasswordValue?: string;
/**
- * @member {string} [recipientReferencePasswordQualifier] The recipient
- * reference password qualifier.
+ * The recipient reference password qualifier.
*/
recipientReferencePasswordQualifier?: string;
/**
- * @member {string} [applicationReferenceId] The application reference id.
+ * The application reference id.
*/
applicationReferenceId?: string;
/**
- * @member {string} [processingPriorityCode] The processing priority code.
+ * The processing priority code.
*/
processingPriorityCode?: string;
/**
- * @member {number} interchangeControlNumberLowerBound The interchange
- * control number lower bound.
+ * The interchange control number lower bound.
*/
interchangeControlNumberLowerBound: number;
/**
- * @member {number} interchangeControlNumberUpperBound The interchange
- * control number upper bound.
+ * The interchange control number upper bound.
*/
interchangeControlNumberUpperBound: number;
/**
- * @member {boolean} rolloverInterchangeControlNumber The value indicating
- * whether to rollover interchange control number.
+ * The value indicating whether to rollover interchange control number.
*/
rolloverInterchangeControlNumber: boolean;
/**
- * @member {string} [interchangeControlNumberPrefix] The interchange control
- * number prefix.
+ * The interchange control number prefix.
*/
interchangeControlNumberPrefix?: string;
/**
- * @member {string} [interchangeControlNumberSuffix] The interchange control
- * number suffix.
+ * The interchange control number suffix.
*/
interchangeControlNumberSuffix?: string;
/**
- * @member {string} [senderReverseRoutingAddress] The sender reverse routing
- * address.
+ * The sender reverse routing address.
*/
senderReverseRoutingAddress?: string;
/**
- * @member {string} [receiverReverseRoutingAddress] The receiver reverse
- * routing address.
+ * The receiver reverse routing address.
*/
receiverReverseRoutingAddress?: string;
/**
- * @member {string} [functionalGroupId] The functional group id.
+ * The functional group id.
*/
functionalGroupId?: string;
/**
- * @member {string} [groupControllingAgencyCode] The group controlling agency
- * code.
+ * The group controlling agency code.
*/
groupControllingAgencyCode?: string;
/**
- * @member {string} [groupMessageVersion] The group message version.
+ * The group message version.
*/
groupMessageVersion?: string;
/**
- * @member {string} [groupMessageRelease] The group message release.
+ * The group message release.
*/
groupMessageRelease?: string;
/**
- * @member {number} groupControlNumberLowerBound The group control number
- * lower bound.
+ * The group control number lower bound.
*/
groupControlNumberLowerBound: number;
/**
- * @member {number} groupControlNumberUpperBound The group control number
- * upper bound.
+ * The group control number upper bound.
*/
groupControlNumberUpperBound: number;
/**
- * @member {boolean} rolloverGroupControlNumber The value indicating whether
- * to rollover group control number.
+ * The value indicating whether to rollover group control number.
*/
rolloverGroupControlNumber: boolean;
/**
- * @member {string} [groupControlNumberPrefix] The group control number
- * prefix.
+ * The group control number prefix.
*/
groupControlNumberPrefix?: string;
/**
- * @member {string} [groupControlNumberSuffix] The group control number
- * suffix.
+ * The group control number suffix.
*/
groupControlNumberSuffix?: string;
/**
- * @member {string} [groupApplicationReceiverQualifier] The group application
- * receiver qualifier.
+ * The group application receiver qualifier.
*/
groupApplicationReceiverQualifier?: string;
/**
- * @member {string} [groupApplicationReceiverId] The group application
- * receiver id.
+ * The group application receiver id.
*/
groupApplicationReceiverId?: string;
/**
- * @member {string} [groupApplicationSenderQualifier] The group application
- * sender qualifier.
+ * The group application sender qualifier.
*/
groupApplicationSenderQualifier?: string;
/**
- * @member {string} [groupApplicationSenderId] The group application sender
- * id.
+ * The group application sender id.
*/
groupApplicationSenderId?: string;
/**
- * @member {string} [groupApplicationPassword] The group application
- * password.
+ * The group application password.
*/
groupApplicationPassword?: string;
/**
- * @member {boolean} overwriteExistingTransactionSetControlNumber The value
- * indicating whether to overwrite existing transaction set control number.
+ * The value indicating whether to overwrite existing transaction set control number.
*/
overwriteExistingTransactionSetControlNumber: boolean;
/**
- * @member {string} [transactionSetControlNumberPrefix] The transaction set
- * control number prefix.
+ * The transaction set control number prefix.
*/
transactionSetControlNumberPrefix?: string;
/**
- * @member {string} [transactionSetControlNumberSuffix] The transaction set
- * control number suffix.
+ * The transaction set control number suffix.
*/
transactionSetControlNumberSuffix?: string;
/**
- * @member {number} transactionSetControlNumberLowerBound The transaction set
- * control number lower bound.
+ * The transaction set control number lower bound.
*/
transactionSetControlNumberLowerBound: number;
/**
- * @member {number} transactionSetControlNumberUpperBound The transaction set
- * control number upper bound.
+ * The transaction set control number upper bound.
*/
transactionSetControlNumberUpperBound: number;
/**
- * @member {boolean} rolloverTransactionSetControlNumber The value indicating
- * whether to rollover transaction set control number.
+ * The value indicating whether to rollover transaction set control number.
*/
rolloverTransactionSetControlNumber: boolean;
/**
- * @member {boolean} isTestInterchange The value indicating whether the
- * message is a test interchange.
+ * The value indicating whether the message is a test interchange.
*/
isTestInterchange: boolean;
/**
- * @member {string} [senderInternalIdentification] The sender internal
- * identification.
+ * The sender internal identification.
*/
senderInternalIdentification?: string;
/**
- * @member {string} [senderInternalSubIdentification] The sender internal sub
- * identification.
+ * The sender internal sub identification.
*/
senderInternalSubIdentification?: string;
/**
- * @member {string} [receiverInternalIdentification] The receiver internal
- * identification.
+ * The receiver internal identification.
*/
receiverInternalIdentification?: string;
/**
- * @member {string} [receiverInternalSubIdentification] The receiver internal
- * sub identification.
+ * The receiver internal sub identification.
*/
receiverInternalSubIdentification?: string;
}
/**
- * @interface
- * An interface representing EdifactAcknowledgementSettings.
* The Edifact agreement acknowledgement settings.
- *
*/
export interface EdifactAcknowledgementSettings {
/**
- * @member {boolean} needTechnicalAcknowledgement The value indicating
- * whether technical acknowledgement is needed.
+ * The value indicating whether technical acknowledgement is needed.
*/
needTechnicalAcknowledgement: boolean;
/**
- * @member {boolean} batchTechnicalAcknowledgements The value indicating
- * whether to batch the technical acknowledgements.
+ * The value indicating whether to batch the technical acknowledgements.
*/
batchTechnicalAcknowledgements: boolean;
/**
- * @member {boolean} needFunctionalAcknowledgement The value indicating
- * whether functional acknowledgement is needed.
+ * The value indicating whether functional acknowledgement is needed.
*/
needFunctionalAcknowledgement: boolean;
/**
- * @member {boolean} batchFunctionalAcknowledgements The value indicating
- * whether to batch functional acknowledgements.
+ * The value indicating whether to batch functional acknowledgements.
*/
batchFunctionalAcknowledgements: boolean;
/**
- * @member {boolean} needLoopForValidMessages The value indicating whether a
- * loop is needed for valid messages.
+ * The value indicating whether a loop is needed for valid messages.
*/
needLoopForValidMessages: boolean;
/**
- * @member {boolean} sendSynchronousAcknowledgement The value indicating
- * whether to send synchronous acknowledgement.
+ * The value indicating whether to send synchronous acknowledgement.
*/
sendSynchronousAcknowledgement: boolean;
/**
- * @member {string} [acknowledgementControlNumberPrefix] The acknowledgement
- * control number prefix.
+ * The acknowledgement control number prefix.
*/
acknowledgementControlNumberPrefix?: string;
/**
- * @member {string} [acknowledgementControlNumberSuffix] The acknowledgement
- * control number suffix.
+ * The acknowledgement control number suffix.
*/
acknowledgementControlNumberSuffix?: string;
/**
- * @member {number} acknowledgementControlNumberLowerBound The
- * acknowledgement control number lower bound.
+ * The acknowledgement control number lower bound.
*/
acknowledgementControlNumberLowerBound: number;
/**
- * @member {number} acknowledgementControlNumberUpperBound The
- * acknowledgement control number upper bound.
+ * The acknowledgement control number upper bound.
*/
acknowledgementControlNumberUpperBound: number;
/**
- * @member {boolean} rolloverAcknowledgementControlNumber The value
- * indicating whether to rollover acknowledgement control number.
+ * The value indicating whether to rollover acknowledgement control number.
*/
rolloverAcknowledgementControlNumber: boolean;
}
/**
- * @interface
- * An interface representing EdifactMessageFilter.
* The Edifact message filter for odata query.
- *
*/
export interface EdifactMessageFilter {
/**
- * @member {MessageFilterType} messageFilterType The message filter type.
- * Possible values include: 'NotSpecified', 'Include', 'Exclude'
+ * The message filter type. Possible values include: 'NotSpecified', 'Include', 'Exclude'
*/
messageFilterType: MessageFilterType;
}
/**
- * @interface
- * An interface representing EdifactProcessingSettings.
* The Edifact agreement protocol settings.
- *
*/
export interface EdifactProcessingSettings {
/**
- * @member {boolean} maskSecurityInfo The value indicating whether to mask
- * security information.
+ * The value indicating whether to mask security information.
*/
maskSecurityInfo: boolean;
/**
- * @member {boolean} preserveInterchange The value indicating whether to
- * preserve interchange.
+ * The value indicating whether to preserve interchange.
*/
preserveInterchange: boolean;
/**
- * @member {boolean} suspendInterchangeOnError The value indicating whether
- * to suspend interchange on error.
+ * The value indicating whether to suspend interchange on error.
*/
suspendInterchangeOnError: boolean;
/**
- * @member {boolean} createEmptyXmlTagsForTrailingSeparators The value
- * indicating whether to create empty xml tags for trailing separators.
+ * The value indicating whether to create empty xml tags for trailing separators.
*/
createEmptyXmlTagsForTrailingSeparators: boolean;
/**
- * @member {boolean} useDotAsDecimalSeparator The value indicating whether to
- * use dot as decimal separator.
+ * The value indicating whether to use dot as decimal separator.
*/
useDotAsDecimalSeparator: boolean;
}
/**
- * @interface
- * An interface representing EdifactEnvelopeOverride.
* The Edifact envelope override settings.
- *
*/
export interface EdifactEnvelopeOverride {
/**
- * @member {string} [messageId] The message id on which this envelope
- * settings has to be applied.
+ * The message id on which this envelope settings has to be applied.
*/
messageId?: string;
/**
- * @member {string} [messageVersion] The message version on which this
- * envelope settings has to be applied.
+ * The message version on which this envelope settings has to be applied.
*/
messageVersion?: string;
/**
- * @member {string} [messageRelease] The message release version on which
- * this envelope settings has to be applied.
+ * The message release version on which this envelope settings has to be applied.
*/
messageRelease?: string;
/**
- * @member {string} [messageAssociationAssignedCode] The message association
- * assigned code.
+ * The message association assigned code.
*/
messageAssociationAssignedCode?: string;
/**
- * @member {string} [targetNamespace] The target namespace on which this
- * envelope settings has to be applied.
+ * The target namespace on which this envelope settings has to be applied.
*/
targetNamespace?: string;
/**
- * @member {string} [functionalGroupId] The functional group id.
+ * The functional group id.
*/
functionalGroupId?: string;
/**
- * @member {string} [senderApplicationQualifier] The sender application
- * qualifier.
+ * The sender application qualifier.
*/
senderApplicationQualifier?: string;
/**
- * @member {string} [senderApplicationId] The sender application id.
+ * The sender application id.
*/
senderApplicationId?: string;
/**
- * @member {string} [receiverApplicationQualifier] The receiver application
- * qualifier.
+ * The receiver application qualifier.
*/
receiverApplicationQualifier?: string;
/**
- * @member {string} [receiverApplicationId] The receiver application id.
+ * The receiver application id.
*/
receiverApplicationId?: string;
/**
- * @member {string} [controllingAgencyCode] The controlling agency code.
+ * The controlling agency code.
*/
controllingAgencyCode?: string;
/**
- * @member {string} [groupHeaderMessageVersion] The group header message
- * version.
+ * The group header message version.
*/
groupHeaderMessageVersion?: string;
/**
- * @member {string} [groupHeaderMessageRelease] The group header message
- * release.
+ * The group header message release.
*/
groupHeaderMessageRelease?: string;
/**
- * @member {string} [associationAssignedCode] The association assigned code.
+ * The association assigned code.
*/
associationAssignedCode?: string;
/**
- * @member {string} [applicationPassword] The application password.
+ * The application password.
*/
applicationPassword?: string;
}
/**
- * @interface
- * An interface representing EdifactMessageIdentifier.
* The Edifact message identifier.
- *
*/
export interface EdifactMessageIdentifier {
/**
- * @member {string} messageId The message id on which this envelope settings
- * has to be applied.
+ * The message id on which this envelope settings has to be applied.
*/
messageId: string;
}
/**
- * @interface
- * An interface representing EdifactSchemaReference.
* The Edifact schema reference.
- *
*/
export interface EdifactSchemaReference {
/**
- * @member {string} messageId The message id.
+ * The message id.
*/
messageId: string;
/**
- * @member {string} messageVersion The message version.
+ * The message version.
*/
messageVersion: string;
/**
- * @member {string} messageRelease The message release version.
+ * The message release version.
*/
messageRelease: string;
/**
- * @member {string} [senderApplicationId] The sender application id.
+ * The sender application id.
*/
senderApplicationId?: string;
/**
- * @member {string} [senderApplicationQualifier] The sender application
- * qualifier.
+ * The sender application qualifier.
*/
senderApplicationQualifier?: string;
/**
- * @member {string} [associationAssignedCode] The association assigned code.
+ * The association assigned code.
*/
associationAssignedCode?: string;
/**
- * @member {string} schemaName The schema name.
+ * The schema name.
*/
schemaName: string;
}
/**
- * @interface
- * An interface representing EdifactValidationOverride.
* The Edifact validation override settings.
- *
*/
export interface EdifactValidationOverride {
/**
- * @member {string} messageId The message id on which the validation settings
- * has to be applied.
+ * The message id on which the validation settings has to be applied.
*/
messageId: string;
/**
- * @member {boolean} enforceCharacterSet The value indicating whether to
- * validate character Set.
+ * The value indicating whether to validate character Set.
*/
enforceCharacterSet: boolean;
/**
- * @member {boolean} validateEdiTypes The value indicating whether to
- * validate EDI types.
+ * The value indicating whether to validate EDI types.
*/
- validateEdiTypes: boolean;
+ validateEDITypes: boolean;
/**
- * @member {boolean} validateXsdTypes The value indicating whether to
- * validate XSD types.
+ * The value indicating whether to validate XSD types.
*/
- validateXsdTypes: boolean;
+ validateXSDTypes: boolean;
/**
- * @member {boolean} allowLeadingAndTrailingSpacesAndZeroes The value
- * indicating whether to allow leading and trailing spaces and zeroes.
+ * The value indicating whether to allow leading and trailing spaces and zeroes.
*/
allowLeadingAndTrailingSpacesAndZeroes: boolean;
/**
- * @member {TrailingSeparatorPolicy} trailingSeparatorPolicy The trailing
- * separator policy. Possible values include: 'NotSpecified', 'NotAllowed',
+ * The trailing separator policy. Possible values include: 'NotSpecified', 'NotAllowed',
* 'Optional', 'Mandatory'
*/
trailingSeparatorPolicy: TrailingSeparatorPolicy;
/**
- * @member {boolean} trimLeadingAndTrailingSpacesAndZeroes The value
- * indicating whether to trim leading and trailing spaces and zeroes.
+ * The value indicating whether to trim leading and trailing spaces and zeroes.
*/
trimLeadingAndTrailingSpacesAndZeroes: boolean;
}
/**
- * @interface
- * An interface representing EdifactDelimiterOverride.
* The Edifact delimiter override settings.
- *
*/
export interface EdifactDelimiterOverride {
/**
- * @member {string} [messageId] The message id.
+ * The message id.
*/
messageId?: string;
/**
- * @member {string} [messageVersion] The message version.
+ * The message version.
*/
messageVersion?: string;
/**
- * @member {string} [messageRelease] The message release.
+ * The message release.
*/
messageRelease?: string;
/**
- * @member {number} dataElementSeparator The data element separator.
+ * The data element separator.
*/
dataElementSeparator: number;
/**
- * @member {number} componentSeparator The component separator.
+ * The component separator.
*/
componentSeparator: number;
/**
- * @member {number} segmentTerminator The segment terminator.
+ * The segment terminator.
*/
segmentTerminator: number;
/**
- * @member {number} repetitionSeparator The repetition separator.
+ * The repetition separator.
*/
repetitionSeparator: number;
/**
- * @member {SegmentTerminatorSuffix} segmentTerminatorSuffix The segment
- * terminator suffix. Possible values include: 'NotSpecified', 'None', 'CR',
- * 'LF', 'CRLF'
+ * The segment terminator suffix. Possible values include: 'NotSpecified', 'None', 'CR', 'LF',
+ * 'CRLF'
*/
segmentTerminatorSuffix: SegmentTerminatorSuffix;
/**
- * @member {EdifactDecimalIndicator} decimalPointIndicator The decimal point
- * indicator. Possible values include: 'NotSpecified', 'Comma', 'Decimal'
+ * The decimal point indicator. Possible values include: 'NotSpecified', 'Comma', 'Decimal'
*/
decimalPointIndicator: EdifactDecimalIndicator;
/**
- * @member {number} releaseIndicator The release indicator.
+ * The release indicator.
*/
releaseIndicator: number;
/**
- * @member {string} [messageAssociationAssignedCode] The message association
- * assigned code.
+ * The message association assigned code.
*/
messageAssociationAssignedCode?: string;
/**
- * @member {string} [targetNamespace] The target namespace on which this
- * delimiter settings has to be applied.
+ * The target namespace on which this delimiter settings has to be applied.
*/
targetNamespace?: string;
}
/**
- * @interface
- * An interface representing EdifactProtocolSettings.
* The Edifact agreement protocol settings.
- *
*/
export interface EdifactProtocolSettings {
/**
- * @member {EdifactValidationSettings} validationSettings The EDIFACT
- * validation settings.
+ * The EDIFACT validation settings.
*/
validationSettings: EdifactValidationSettings;
/**
- * @member {EdifactFramingSettings} framingSettings The EDIFACT framing
- * settings.
+ * The EDIFACT framing settings.
*/
framingSettings: EdifactFramingSettings;
/**
- * @member {EdifactEnvelopeSettings} envelopeSettings The EDIFACT envelope
- * settings.
+ * The EDIFACT envelope settings.
*/
envelopeSettings: EdifactEnvelopeSettings;
/**
- * @member {EdifactAcknowledgementSettings} acknowledgementSettings The
- * EDIFACT acknowledgement settings.
+ * The EDIFACT acknowledgement settings.
*/
acknowledgementSettings: EdifactAcknowledgementSettings;
/**
- * @member {EdifactMessageFilter} messageFilter The EDIFACT message filter.
+ * The EDIFACT message filter.
*/
messageFilter: EdifactMessageFilter;
/**
- * @member {EdifactProcessingSettings} processingSettings The EDIFACT
- * processing Settings.
+ * The EDIFACT processing Settings.
*/
processingSettings: EdifactProcessingSettings;
/**
- * @member {EdifactEnvelopeOverride[]} [envelopeOverrides] The EDIFACT
- * envelope override settings.
+ * The EDIFACT envelope override settings.
*/
envelopeOverrides?: EdifactEnvelopeOverride[];
/**
- * @member {EdifactMessageIdentifier[]} [messageFilterList] The EDIFACT
- * message filter list.
+ * The EDIFACT message filter list.
*/
messageFilterList?: EdifactMessageIdentifier[];
/**
- * @member {EdifactSchemaReference[]} schemaReferences The EDIFACT schema
- * references.
+ * The EDIFACT schema references.
*/
schemaReferences: EdifactSchemaReference[];
/**
- * @member {EdifactValidationOverride[]} [validationOverrides] The EDIFACT
- * validation override settings.
+ * The EDIFACT validation override settings.
*/
validationOverrides?: EdifactValidationOverride[];
/**
- * @member {EdifactDelimiterOverride[]} [edifactDelimiterOverrides] The
- * EDIFACT delimiter override settings.
+ * The EDIFACT delimiter override settings.
*/
edifactDelimiterOverrides?: EdifactDelimiterOverride[];
}
/**
- * @interface
- * An interface representing EdifactOneWayAgreement.
* The Edifact one way agreement.
- *
*/
export interface EdifactOneWayAgreement {
/**
- * @member {BusinessIdentity} senderBusinessIdentity The sender business
- * identity
+ * The sender business identity
*/
senderBusinessIdentity: BusinessIdentity;
/**
- * @member {BusinessIdentity} receiverBusinessIdentity The receiver business
- * identity
+ * The receiver business identity
*/
receiverBusinessIdentity: BusinessIdentity;
/**
- * @member {EdifactProtocolSettings} protocolSettings The EDIFACT protocol
- * settings.
+ * The EDIFACT protocol settings.
*/
protocolSettings: EdifactProtocolSettings;
}
/**
- * @interface
- * An interface representing EdifactAgreementContent.
* The Edifact agreement content.
- *
*/
export interface EdifactAgreementContent {
/**
- * @member {EdifactOneWayAgreement} receiveAgreement The EDIFACT one-way
- * receive agreement.
+ * The EDIFACT one-way receive agreement.
*/
receiveAgreement: EdifactOneWayAgreement;
/**
- * @member {EdifactOneWayAgreement} sendAgreement The EDIFACT one-way send
- * agreement.
+ * The EDIFACT one-way send agreement.
*/
sendAgreement: EdifactOneWayAgreement;
}
/**
- * @interface
- * An interface representing AgreementContent.
* The integration account agreement content.
- *
*/
export interface AgreementContent {
/**
- * @member {AS2AgreementContent} [aS2] The AS2 agreement content.
+ * The AS2 agreement content.
*/
aS2?: AS2AgreementContent;
/**
- * @member {X12AgreementContent} [x12] The X12 agreement content.
+ * The X12 agreement content.
*/
x12?: X12AgreementContent;
/**
- * @member {EdifactAgreementContent} [edifact] The EDIFACT agreement content.
+ * The EDIFACT agreement content.
*/
edifact?: EdifactAgreementContent;
}
/**
- * @interface
- * An interface representing IntegrationAccountAgreement.
* The integration account agreement.
- *
- * @extends Resource
*/
export interface IntegrationAccountAgreement extends Resource {
/**
- * @member {Date} [createdTime] The created time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The created time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly createdTime?: Date;
/**
- * @member {Date} [changedTime] The changed time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The changed time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly changedTime?: Date;
/**
- * @member {any} [metadata] The metadata.
+ * The metadata.
*/
metadata?: any;
/**
- * @member {AgreementType} agreementType The agreement type. Possible values
- * include: 'NotSpecified', 'AS2', 'X12', 'Edifact'
+ * The agreement type. Possible values include: 'NotSpecified', 'AS2', 'X12', 'Edifact'
*/
agreementType: AgreementType;
/**
- * @member {string} hostPartner The integration account partner that is set
- * as host partner for this agreement.
+ * The integration account partner that is set as host partner for this agreement.
*/
hostPartner: string;
/**
- * @member {string} guestPartner The integration account partner that is set
- * as guest partner for this agreement.
+ * The integration account partner that is set as guest partner for this agreement.
*/
guestPartner: string;
/**
- * @member {BusinessIdentity} hostIdentity The business identity of the host
- * partner.
+ * The business identity of the host partner.
*/
hostIdentity: BusinessIdentity;
/**
- * @member {BusinessIdentity} guestIdentity The business identity of the
- * guest partner.
+ * The business identity of the guest partner.
*/
guestIdentity: BusinessIdentity;
/**
- * @member {AgreementContent} content The agreement content.
+ * The agreement content.
*/
content: AgreementContent;
}
/**
- * @interface
- * An interface representing IntegrationAccountAgreementFilter.
* The integration account agreement filter for odata query.
- *
*/
export interface IntegrationAccountAgreementFilter {
/**
- * @member {AgreementType} agreementType The agreement type of integration
- * account agreement. Possible values include: 'NotSpecified', 'AS2', 'X12',
- * 'Edifact'
+ * The agreement type of integration account agreement. Possible values include: 'NotSpecified',
+ * 'AS2', 'X12', 'Edifact'
*/
agreementType: AgreementType;
}
/**
- * @interface
- * An interface representing KeyVaultKeyReferenceKeyVault.
* The key vault reference.
- *
*/
export interface KeyVaultKeyReferenceKeyVault {
/**
- * @member {string} [id] The resource id.
+ * The resource id.
*/
id?: string;
/**
- * @member {string} [name] The resource name.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The resource name.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly name?: string;
/**
- * @member {string} [type] The resource type.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The resource type.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly type?: string;
}
/**
- * @interface
- * An interface representing KeyVaultKeyReference.
* The reference to the key vault key.
- *
*/
export interface KeyVaultKeyReference {
/**
- * @member {KeyVaultKeyReferenceKeyVault} keyVault The key vault reference.
+ * The key vault reference.
*/
keyVault: KeyVaultKeyReferenceKeyVault;
/**
- * @member {string} keyName The private key name in key vault.
+ * The private key name in key vault.
*/
keyName: string;
/**
- * @member {string} [keyVersion] The private key version in key vault.
+ * The private key version in key vault.
*/
keyVersion?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountCertificate.
* The integration account certificate.
- *
- * @extends Resource
*/
export interface IntegrationAccountCertificate extends Resource {
/**
- * @member {Date} [createdTime] The created time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The created time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly createdTime?: Date;
/**
- * @member {Date} [changedTime] The changed time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The changed time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly changedTime?: Date;
/**
- * @member {any} [metadata] The metadata.
+ * The metadata.
*/
metadata?: any;
/**
- * @member {KeyVaultKeyReference} [key] The key details in the key vault.
+ * The key details in the key vault.
*/
key?: KeyVaultKeyReference;
/**
- * @member {string} [publicCertificate] The public certificate.
+ * The public certificate.
*/
publicCertificate?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountSessionFilter.
* The integration account session filter.
- *
*/
export interface IntegrationAccountSessionFilter {
/**
- * @member {Date} changedTime The changed time of integration account
- * sessions.
+ * The changed time of integration account sessions.
*/
changedTime: Date;
}
/**
- * @interface
- * An interface representing IntegrationAccountSession.
* The integration account session.
- *
- * @extends Resource
*/
export interface IntegrationAccountSession extends Resource {
/**
- * @member {Date} [createdTime] The created time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The created time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly createdTime?: Date;
/**
- * @member {Date} [changedTime] The changed time.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * The changed time.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly changedTime?: Date;
/**
- * @member {any} [content] The session content.
+ * The session content.
*/
content?: any;
}
/**
- * @interface
- * An interface representing OperationDisplay.
* The object that represents the operation.
- *
*/
export interface OperationDisplay {
/**
- * @member {string} [provider] Service provider: Microsoft.Logic
+ * Service provider: Microsoft.Logic
*/
provider?: string;
/**
- * @member {string} [resource] Resource on which the operation is performed:
- * Profile, endpoint, etc.
+ * Resource on which the operation is performed: Profile, endpoint, etc.
*/
resource?: string;
/**
- * @member {string} [operation] Operation type: Read, write, delete, etc.
+ * Operation type: Read, write, delete, etc.
*/
operation?: string;
}
/**
- * @interface
- * An interface representing Operation.
* Logic REST API operation
- *
*/
export interface Operation {
/**
- * @member {string} [name] Operation name: {provider}/{resource}/{operation}
+ * Operation name: {provider}/{resource}/{operation}
*/
name?: string;
/**
- * @member {OperationDisplay} [display] The object that represents the
- * operation.
+ * The object that represents the operation.
*/
display?: OperationDisplay;
}
/**
- * @interface
- * An interface representing KeyVaultReference.
* The key vault reference.
- *
- * @extends ResourceReference
*/
export interface KeyVaultReference extends ResourceReference {
}
/**
- * @interface
- * An interface representing ListKeyVaultKeysDefinition.
* The list key vault keys definition.
- *
*/
export interface ListKeyVaultKeysDefinition {
/**
- * @member {KeyVaultReference} keyVault The key vault reference.
+ * The key vault reference.
*/
keyVault: KeyVaultReference;
/**
- * @member {string} [skipToken] The skip token.
+ * The skip token.
*/
skipToken?: string;
}
/**
- * @interface
- * An interface representing KeyVaultKeyAttributes.
* The key attributes.
- *
*/
export interface KeyVaultKeyAttributes {
/**
- * @member {boolean} [enabled] Whether the key is enabled or not.
+ * Whether the key is enabled or not.
*/
enabled?: boolean;
/**
- * @member {number} [created] When the key was created.
+ * When the key was created.
*/
created?: number;
/**
- * @member {number} [updated] When the key was updated.
+ * When the key was updated.
*/
updated?: number;
}
/**
- * @interface
- * An interface representing KeyVaultKey.
* The key vault key.
- *
*/
export interface KeyVaultKey {
/**
- * @member {string} [kid] The key id.
+ * The key id.
*/
kid?: string;
/**
- * @member {KeyVaultKeyAttributes} [attributes] The key attributes.
+ * The key attributes.
*/
attributes?: KeyVaultKeyAttributes;
}
/**
- * @interface
* An interface representing TrackingEventErrorInfo.
*/
export interface TrackingEventErrorInfo {
- /**
- * @member {string} [message]
- */
message?: string;
- /**
- * @member {string} [code]
- */
code?: string;
}
/**
- * @interface
* An interface representing TrackingEvent.
*/
export interface TrackingEvent {
/**
- * @member {EventLevel} eventLevel Possible values include: 'LogAlways',
- * 'Critical', 'Error', 'Warning', 'Informational', 'Verbose'
+ * Possible values include: 'LogAlways', 'Critical', 'Error', 'Warning', 'Informational',
+ * 'Verbose'
*/
eventLevel: EventLevel;
- /**
- * @member {Date} eventTime
- */
eventTime: Date;
/**
- * @member {TrackingRecordType} recordType Possible values include:
- * 'NotSpecified', 'Custom', 'AS2Message', 'AS2MDN', 'X12Interchange',
+ * Possible values include: 'NotSpecified', 'Custom', 'AS2Message', 'AS2MDN', 'X12Interchange',
* 'X12FunctionalGroup', 'X12TransactionSet', 'X12InterchangeAcknowledgment',
- * 'X12FunctionalGroupAcknowledgment', 'X12TransactionSetAcknowledgment',
- * 'EdifactInterchange', 'EdifactFunctionalGroup', 'EdifactTransactionSet',
- * 'EdifactInterchangeAcknowledgment',
- * 'EdifactFunctionalGroupAcknowledgment',
- * 'EdifactTransactionSetAcknowledgment'
+ * 'X12FunctionalGroupAcknowledgment', 'X12TransactionSetAcknowledgment', 'EdifactInterchange',
+ * 'EdifactFunctionalGroup', 'EdifactTransactionSet', 'EdifactInterchangeAcknowledgment',
+ * 'EdifactFunctionalGroupAcknowledgment', 'EdifactTransactionSetAcknowledgment'
*/
recordType: TrackingRecordType;
- /**
- * @member {TrackingEventErrorInfo} [error]
- */
error?: TrackingEventErrorInfo;
}
/**
- * @interface
* An interface representing TrackingEventsDefinition.
*/
export interface TrackingEventsDefinition {
- /**
- * @member {string} sourceType
- */
sourceType: string;
/**
- * @member {TrackEventsOperationOptions} [trackEventsOptions] Possible values
- * include: 'None', 'DisableSourceInfoEnrich'
+ * Possible values include: 'None', 'DisableSourceInfoEnrich'
*/
trackEventsOptions?: TrackEventsOperationOptions;
- /**
- * @member {TrackingEvent[]} events
- */
events: TrackingEvent[];
}
/**
- * @interface
* An interface representing SetTriggerStateActionDefinition.
*/
export interface SetTriggerStateActionDefinition {
- /**
- * @member {WorkflowTrigger} source
- */
source: WorkflowTrigger;
}
/**
- * @interface
* An interface representing Expression.
*/
export interface Expression {
- /**
- * @member {string} [text]
- */
text?: string;
- /**
- * @member {any} [value]
- */
value?: any;
- /**
- * @member {Expression[]} [subexpressions]
- */
subexpressions?: Expression[];
- /**
- * @member {AzureResourceErrorInfo} [error]
- */
error?: AzureResourceErrorInfo;
}
/**
- * @interface
* An interface representing ExpressionRoot.
- * @extends Expression
*/
export interface ExpressionRoot extends Expression {
/**
- * @member {string} [path] The path.
+ * The path.
*/
path?: string;
}
/**
- * @interface
- * An interface representing ErrorInfo.
* The error info.
- *
*/
export interface ErrorInfo {
/**
- * @member {string} code The error code.
+ * The error code.
*/
code: string;
}
/**
- * @interface
- * An interface representing AzureResourceErrorInfo.
* The azure resource error info.
- *
- * @extends ErrorInfo
*/
export interface AzureResourceErrorInfo extends ErrorInfo {
/**
- * @member {string} message The error message.
+ * The error message.
*/
message: string;
/**
- * @member {AzureResourceErrorInfo[]} [details] The error details.
+ * The error details.
*/
details?: AzureResourceErrorInfo[];
}
/**
- * @interface
- * An interface representing RepetitionIndex.
* The workflow run action repetition index.
- *
*/
export interface RepetitionIndex {
/**
- * @member {string} [scopeName] The scope.
+ * The scope.
*/
scopeName?: string;
/**
- * @member {number} itemIndex The index.
+ * The index.
*/
itemIndex: number;
}
/**
- * @interface
- * An interface representing WorkflowRunActionRepetitionDefinition.
* The workflow run action repetition definition.
- *
- * @extends Resource
*/
export interface WorkflowRunActionRepetitionDefinition extends Resource {
/**
- * @member {Date} [startTime] The start time of the workflow scope
- * repetition.
+ * The start time of the workflow scope repetition.
*/
startTime?: Date;
/**
- * @member {Date} [endTime] The end time of the workflow scope repetition.
+ * The end time of the workflow scope repetition.
*/
endTime?: Date;
/**
- * @member {RunActionCorrelation} [correlation] The correlation properties.
+ * The correlation properties.
*/
correlation?: RunActionCorrelation;
/**
- * @member {WorkflowStatus} [status] The status of the workflow scope
- * repetition. Possible values include: 'NotSpecified', 'Paused', 'Running',
- * 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed',
+ * The status of the workflow scope repetition. Possible values include: 'NotSpecified',
+ * 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed',
* 'Faulted', 'TimedOut', 'Aborted', 'Ignored'
*/
status?: WorkflowStatus;
/**
- * @member {string} [code] The workflow scope repetition code.
+ * The workflow scope repetition code.
*/
code?: string;
- /**
- * @member {any} [error]
- */
error?: any;
/**
- * @member {string} [trackingId] Gets the tracking id.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the tracking id.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trackingId?: string;
/**
- * @member {any} [inputs] Gets the inputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the inputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly inputs?: any;
/**
- * @member {ContentLink} [inputsLink] Gets the link to inputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to inputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly inputsLink?: ContentLink;
/**
- * @member {any} [outputs] Gets the outputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the outputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly outputs?: any;
/**
- * @member {ContentLink} [outputsLink] Gets the link to outputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to outputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly outputsLink?: ContentLink;
/**
- * @member {any} [trackedProperties] Gets the tracked properties.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the tracked properties.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trackedProperties?: any;
/**
- * @member {RetryHistory[]} [retryHistory] Gets the retry histories.
+ * Gets the retry histories.
*/
retryHistory?: RetryHistory[];
- /**
- * @member {number} [iterationCount]
- */
iterationCount?: number;
/**
- * @member {RepetitionIndex[]} [repetitionIndexes] The repetition indexes.
+ * The repetition indexes.
*/
repetitionIndexes?: RepetitionIndex[];
}
/**
- * @interface
- * An interface representing OperationResultProperties.
* The run operation result properties.
- *
*/
export interface OperationResultProperties {
/**
- * @member {Date} [startTime] The start time of the workflow scope
- * repetition.
+ * The start time of the workflow scope repetition.
*/
startTime?: Date;
/**
- * @member {Date} [endTime] The end time of the workflow scope repetition.
+ * The end time of the workflow scope repetition.
*/
endTime?: Date;
/**
- * @member {RunActionCorrelation} [correlation] The correlation properties.
+ * The correlation properties.
*/
correlation?: RunActionCorrelation;
/**
- * @member {WorkflowStatus} [status] The status of the workflow scope
- * repetition. Possible values include: 'NotSpecified', 'Paused', 'Running',
- * 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed',
+ * The status of the workflow scope repetition. Possible values include: 'NotSpecified',
+ * 'Paused', 'Running', 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed',
* 'Faulted', 'TimedOut', 'Aborted', 'Ignored'
*/
status?: WorkflowStatus;
/**
- * @member {string} [code] The workflow scope repetition code.
+ * The workflow scope repetition code.
*/
code?: string;
- /**
- * @member {any} [error]
- */
error?: any;
}
/**
- * @interface
- * An interface representing OperationResult.
* The operation result definition.
- *
- * @extends OperationResultProperties
*/
export interface OperationResult extends OperationResultProperties {
/**
- * @member {string} [trackingId] Gets the tracking id.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the tracking id.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trackingId?: string;
/**
- * @member {any} [inputs] Gets the inputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the inputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly inputs?: any;
/**
- * @member {ContentLink} [inputsLink] Gets the link to inputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to inputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly inputsLink?: ContentLink;
/**
- * @member {any} [outputs] Gets the outputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the outputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly outputs?: any;
/**
- * @member {ContentLink} [outputsLink] Gets the link to outputs.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the link to outputs.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly outputsLink?: ContentLink;
/**
- * @member {any} [trackedProperties] Gets the tracked properties.
- * **NOTE: This property will not be serialized. It can only be populated by
- * the server.**
+ * Gets the tracked properties.
+ * **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly trackedProperties?: any;
/**
- * @member {RetryHistory[]} [retryHistory] Gets the retry histories.
+ * Gets the retry histories.
*/
retryHistory?: RetryHistory[];
- /**
- * @member {number} [iterationCount]
- */
iterationCount?: number;
}
/**
- * @interface
- * An interface representing RunCorrelation.
* The correlation properties.
- *
*/
export interface RunCorrelation {
/**
- * @member {string} [clientTrackingId] The client tracking identifier.
+ * The client tracking identifier.
*/
clientTrackingId?: string;
/**
- * @member {string[]} [clientKeywords] The client keywords.
+ * The client keywords.
*/
clientKeywords?: string[];
}
/**
- * @interface
- * An interface representing RunActionCorrelation.
* The workflow run action correlation properties.
- *
- * @extends RunCorrelation
*/
export interface RunActionCorrelation extends RunCorrelation {
/**
- * @member {string} [actionTrackingId] The action tracking identifier.
+ * The action tracking identifier.
*/
actionTrackingId?: string;
}
/**
- * @interface
- * An interface representing JsonSchema.
* The JSON schema.
- *
*/
export interface JsonSchema {
/**
- * @member {string} [title] The JSON title.
+ * The JSON title.
*/
title?: string;
/**
- * @member {string} [content] The JSON content.
+ * The JSON content.
*/
content?: string;
}
/**
- * @interface
- * An interface representing ArtifactProperties.
* The artifact properties definition.
- *
*/
export interface ArtifactProperties {
/**
- * @member {Date} [createdTime] The artifact creation time.
+ * The artifact creation time.
*/
createdTime?: Date;
/**
- * @member {Date} [changedTime] The artifact changed time.
+ * The artifact changed time.
*/
changedTime?: Date;
- /**
- * @member {any} [metadata]
- */
metadata?: any;
}
/**
- * @interface
- * An interface representing ArtifactContentPropertiesDefinition.
* The artifact content properties definition.
- *
- * @extends ArtifactProperties
*/
export interface ArtifactContentPropertiesDefinition extends ArtifactProperties {
- /**
- * @member {any} [content]
- */
content?: any;
/**
- * @member {string} [contentType] The content type.
+ * The content type.
*/
contentType?: string;
/**
- * @member {ContentLink} [contentLink] The content link.
+ * The content link.
*/
contentLink?: ContentLink;
}
/**
- * @interface
- * An interface representing AssemblyProperties.
* The assembly properties definition.
- *
- * @extends ArtifactContentPropertiesDefinition
*/
export interface AssemblyProperties extends ArtifactContentPropertiesDefinition {
/**
- * @member {string} assemblyName The assembly name.
+ * The assembly name.
*/
assemblyName: string;
/**
- * @member {string} [assemblyVersion] The assembly version.
+ * The assembly version.
*/
assemblyVersion?: string;
/**
- * @member {string} [assemblyCulture] The assembly culture.
+ * The assembly culture.
*/
assemblyCulture?: string;
/**
- * @member {string} [assemblyPublicKeyToken] The assembly public key token.
+ * The assembly public key token.
*/
assemblyPublicKeyToken?: string;
}
/**
- * @interface
- * An interface representing AssemblyDefinition.
* The assembly definition.
- *
- * @extends Resource
*/
export interface AssemblyDefinition extends Resource {
/**
- * @member {AssemblyProperties} properties The assembly properties.
+ * The assembly properties.
*/
properties: AssemblyProperties;
}
/**
- * @interface
- * An interface representing BatchReleaseCriteria.
* The batch release criteria.
- *
*/
export interface BatchReleaseCriteria {
/**
- * @member {number} [messageCount] The message count.
+ * The message count.
*/
messageCount?: number;
/**
- * @member {number} [batchSize] The batch size in bytes.
+ * The batch size in bytes.
*/
batchSize?: number;
/**
- * @member {WorkflowTriggerRecurrence} [recurrence] The recurrence.
+ * The recurrence.
*/
recurrence?: WorkflowTriggerRecurrence;
}
/**
- * @interface
- * An interface representing BatchConfigurationProperties.
* The batch configuration properties definition.
- *
- * @extends ArtifactProperties
*/
export interface BatchConfigurationProperties extends ArtifactProperties {
/**
- * @member {string} batchGroupName The name of the batch group.
+ * The name of the batch group.
*/
batchGroupName: string;
/**
- * @member {BatchReleaseCriteria} releaseCriteria The batch release criteria.
+ * The batch release criteria.
*/
releaseCriteria: BatchReleaseCriteria;
}
/**
- * @interface
- * An interface representing BatchConfiguration.
* The batch configuration resource definition.
- *
- * @extends Resource
*/
export interface BatchConfiguration extends Resource {
/**
- * @member {BatchConfigurationProperties} properties The batch configuration
- * properties.
+ * The batch configuration properties.
*/
properties: BatchConfigurationProperties;
}
/**
- * @interface
- * An interface representing Request.
* A request.
- *
*/
export interface Request {
/**
- * @member {any} [headers] A list of all the headers attached to the request.
+ * A list of all the headers attached to the request.
*/
headers?: any;
/**
- * @member {string} [uri] The destination for the request.
+ * The destination for the request.
*/
uri?: string;
/**
- * @member {string} [method] The HTTP method used for the request.
+ * The HTTP method used for the request.
*/
method?: string;
}
/**
- * @interface
- * An interface representing Response.
* A response.
- *
*/
export interface Response {
/**
- * @member {any} [headers] A list of all the headers attached to the
- * response.
+ * A list of all the headers attached to the response.
*/
headers?: any;
/**
- * @member {number} [statusCode] The status code of the response.
+ * The status code of the response.
*/
statusCode?: number;
/**
- * @member {ContentLink} [bodyLink] Details on the location of the body
- * content.
+ * Details on the location of the body content.
*/
bodyLink?: ContentLink;
}
/**
- * @interface
- * An interface representing RequestHistoryProperties.
* The request history.
- *
*/
export interface RequestHistoryProperties {
/**
- * @member {Date} [startTime] The time the request started.
+ * The time the request started.
*/
startTime?: Date;
/**
- * @member {Date} [endTime] The time the request ended.
+ * The time the request ended.
*/
endTime?: Date;
/**
- * @member {Request} [request] The request.
+ * The request.
*/
request?: Request;
/**
- * @member {Response} [response] The response.
+ * The response.
*/
response?: Response;
}
/**
- * @interface
- * An interface representing RequestHistory.
* The request history.
- *
- * @extends Resource
*/
export interface RequestHistory extends Resource {
/**
- * @member {RequestHistoryProperties} [properties] The request history
- * properties.
+ * The request history properties.
*/
properties?: RequestHistoryProperties;
}
/**
- * @interface
- * An interface representing WorkflowsListBySubscriptionOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface WorkflowsListBySubscriptionOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: State, Trigger, and ReferencedResourceId.
+ * The filter to apply on the operation. Options for filters include: State, Trigger, and
+ * ReferencedResourceId.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing WorkflowsListByResourceGroupOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface WorkflowsListByResourceGroupOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: State, Trigger, and ReferencedResourceId.
+ * The filter to apply on the operation. Options for filters include: State, Trigger, and
+ * ReferencedResourceId.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing WorkflowVersionsListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface WorkflowVersionsListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
}
/**
- * @interface
- * An interface representing WorkflowTriggersListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface WorkflowTriggersListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation.
+ * The filter to apply on the operation.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing WorkflowVersionTriggersListCallbackUrlOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface WorkflowVersionTriggersListCallbackUrlOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {GetCallbackUrlParameters} [parameters] The callback URL
- * parameters.
+ * The callback URL parameters.
*/
parameters?: GetCallbackUrlParameters;
}
/**
- * @interface
- * An interface representing WorkflowTriggerHistoriesListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface WorkflowTriggerHistoriesListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: Status, StartTime, and ClientTrackingId.
+ * The filter to apply on the operation. Options for filters include: Status, StartTime, and
+ * ClientTrackingId.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing WorkflowRunsListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface WorkflowRunsListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: Status, StartTime, and ClientTrackingId.
+ * The filter to apply on the operation. Options for filters include: Status, StartTime, and
+ * ClientTrackingId.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing WorkflowRunActionsListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface WorkflowRunActionsListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: Status.
+ * The filter to apply on the operation. Options for filters include: Status.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountsListBySubscriptionOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface IntegrationAccountsListBySubscriptionOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
}
/**
- * @interface
- * An interface representing IntegrationAccountsListByResourceGroupOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface IntegrationAccountsListByResourceGroupOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
}
/**
- * @interface
- * An interface representing IntegrationAccountSchemasListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface IntegrationAccountSchemasListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: SchemaType.
+ * The filter to apply on the operation. Options for filters include: SchemaType.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountMapsListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface IntegrationAccountMapsListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: MapType.
+ * The filter to apply on the operation. Options for filters include: MapType.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountPartnersListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface IntegrationAccountPartnersListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: PartnerType.
+ * The filter to apply on the operation. Options for filters include: PartnerType.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountAgreementsListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface IntegrationAccountAgreementsListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: AgreementType.
+ * The filter to apply on the operation. Options for filters include: AgreementType.
*/
filter?: string;
}
/**
- * @interface
- * An interface representing IntegrationAccountCertificatesListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface IntegrationAccountCertificatesListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
}
/**
- * @interface
- * An interface representing IntegrationAccountSessionsListOptionalParams.
* Optional Parameters.
- *
- * @extends RequestOptionsBase
*/
export interface IntegrationAccountSessionsListOptionalParams extends msRest.RequestOptionsBase {
/**
- * @member {number} [top] The number of items to be included in the result.
+ * The number of items to be included in the result.
*/
top?: number;
/**
- * @member {string} [filter] The filter to apply on the operation. Options
- * for filters include: ChangedTime.
+ * The filter to apply on the operation. Options for filters include: ChangedTime.
*/
filter?: string;
}
/**
- * @interface
* An interface representing LogicManagementClientOptions.
- * @extends AzureServiceClientOptions
*/
export interface LogicManagementClientOptions extends AzureServiceClientOptions {
- /**
- * @member {string} [baseUri]
- */
baseUri?: string;
}
-
/**
* @interface
- * An interface representing the WorkflowListResult.
* The list of workflows.
- *
* @extends Array
*/
export interface WorkflowListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the WorkflowVersionListResult.
* The list of workflow versions.
- *
* @extends Array
*/
export interface WorkflowVersionListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the WorkflowTriggerListResult.
* The list of workflow triggers.
- *
* @extends Array
*/
export interface WorkflowTriggerListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the WorkflowTriggerHistoryListResult.
* The list of workflow trigger histories.
- *
* @extends Array
*/
export interface WorkflowTriggerHistoryListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the WorkflowRunListResult.
* The list of workflow runs.
- *
* @extends Array
*/
export interface WorkflowRunListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the WorkflowRunActionListResult.
* The list of workflow run actions.
- *
* @extends Array
*/
export interface WorkflowRunActionListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
@@ -4552,17 +3628,12 @@ export interface WorkflowRunActionListResult extends Array {
* @extends Array
*/
export interface ExpressionTraces extends Array {
- /**
- * @member {ExpressionRoot[]} [inputs]
- */
inputs?: ExpressionRoot[];
}
/**
* @interface
- * An interface representing the WorkflowRunActionRepetitionDefinitionCollection.
* A collection of workflow run action repetitions.
- *
* @extends Array
*/
export interface WorkflowRunActionRepetitionDefinitionCollection extends Array {
@@ -4570,51 +3641,43 @@ export interface WorkflowRunActionRepetitionDefinitionCollection extends Array
*/
export interface RequestHistoryListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the IntegrationAccountListResult.
* The list of integration accounts.
- *
* @extends Array
*/
export interface IntegrationAccountListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the KeyVaultKeyCollection.
* Collection of key vault keys.
- *
* @extends Array
*/
export interface KeyVaultKeyCollection extends Array {
/**
- * @member {string} [skipToken] The skip token.
+ * The skip token.
*/
skipToken?: string;
}
/**
* @interface
- * An interface representing the AssemblyCollection.
* A collection of assembly definitions.
- *
* @extends Array
*/
export interface AssemblyCollection extends Array {
@@ -4622,9 +3685,7 @@ export interface AssemblyCollection extends Array {
/**
* @interface
- * An interface representing the BatchConfigurationCollection.
* A collection of batch configurations.
- *
* @extends Array
*/
export interface BatchConfigurationCollection extends Array {
@@ -4632,100 +3693,85 @@ export interface BatchConfigurationCollection extends Array
/**
* @interface
- * An interface representing the IntegrationAccountSchemaListResult.
* The list of integration account schemas.
- *
* @extends Array
*/
export interface IntegrationAccountSchemaListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the IntegrationAccountMapListResult.
* The list of integration account maps.
- *
* @extends Array
*/
export interface IntegrationAccountMapListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the IntegrationAccountPartnerListResult.
* The list of integration account partners.
- *
* @extends Array
*/
export interface IntegrationAccountPartnerListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the IntegrationAccountAgreementListResult.
* The list of integration account agreements.
- *
* @extends Array
*/
export interface IntegrationAccountAgreementListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the IntegrationAccountCertificateListResult.
* The list of integration account certificates.
- *
* @extends Array
*/
export interface IntegrationAccountCertificateListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the IntegrationAccountSessionListResult.
* The list of integration account sessions.
- *
* @extends Array
*/
export interface IntegrationAccountSessionListResult extends Array {
/**
- * @member {string} [nextLink] The URL to get the next set of results.
+ * The URL to get the next set of results.
*/
nextLink?: string;
}
/**
* @interface
- * An interface representing the OperationListResult.
- * Result of the request to list Logic operations. It contains a list of
- * operations and a URL link to get the next set of results.
- *
+ * Result of the request to list Logic operations. It contains a list of operations and a URL link
+ * to get the next set of results.
* @extends Array
*/
export interface OperationListResult extends Array {
/**
- * @member {string} [nextLink] URL to get the next set of operation list
- * results if there are any.
+ * URL to get the next set of operation list results if there are any.
*/
nextLink?: string;
}
@@ -4997,6 +4043,7 @@ export type WorkflowsListBySubscriptionResponse = WorkflowListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5016,6 +4063,7 @@ export type WorkflowsListByResourceGroupResponse = WorkflowListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5035,6 +4083,7 @@ export type WorkflowsGetResponse = Workflow & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5054,6 +4103,7 @@ export type WorkflowsCreateOrUpdateResponse = Workflow & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5073,6 +4123,7 @@ export type WorkflowsUpdateResponse = Workflow & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5088,6 +4139,7 @@ export type WorkflowsGenerateUpgradedDefinitionResponse = {
* The parsed response body.
*/
body: any;
+
/**
* The underlying HTTP response.
*/
@@ -5096,6 +4148,7 @@ export type WorkflowsGenerateUpgradedDefinitionResponse = {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5115,6 +4168,7 @@ export type WorkflowsListCallbackUrlResponse = WorkflowTriggerCallbackUrl & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5130,6 +4184,7 @@ export type WorkflowsListSwaggerResponse = {
* The parsed response body.
*/
body: any;
+
/**
* The underlying HTTP response.
*/
@@ -5138,6 +4193,7 @@ export type WorkflowsListSwaggerResponse = {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5157,6 +4213,7 @@ export type WorkflowsListBySubscriptionNextResponse = WorkflowListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5176,6 +4233,7 @@ export type WorkflowsListByResourceGroupNextResponse = WorkflowListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5195,6 +4253,7 @@ export type WorkflowVersionsListResponse = WorkflowVersionListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5214,6 +4273,7 @@ export type WorkflowVersionsGetResponse = WorkflowVersion & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5233,6 +4293,7 @@ export type WorkflowVersionsListNextResponse = WorkflowVersionListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5252,6 +4313,7 @@ export type WorkflowTriggersListResponse = WorkflowTriggerListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5271,6 +4333,7 @@ export type WorkflowTriggersGetResponse = WorkflowTrigger & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5286,6 +4349,7 @@ export type WorkflowTriggersRunResponse = {
* The parsed response body.
*/
body: any;
+
/**
* The underlying HTTP response.
*/
@@ -5294,6 +4358,7 @@ export type WorkflowTriggersRunResponse = {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5313,6 +4378,7 @@ export type WorkflowTriggersGetSchemaJsonResponse = JsonSchema & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5332,6 +4398,7 @@ export type WorkflowTriggersListCallbackUrlResponse = WorkflowTriggerCallbackUrl
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5351,6 +4418,7 @@ export type WorkflowTriggersListNextResponse = WorkflowTriggerListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5370,6 +4438,7 @@ export type WorkflowVersionTriggersListCallbackUrlResponse = WorkflowTriggerCall
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5389,6 +4458,7 @@ export type WorkflowTriggerHistoriesListResponse = WorkflowTriggerHistoryListRes
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5408,6 +4478,7 @@ export type WorkflowTriggerHistoriesGetResponse = WorkflowTriggerHistory & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5427,6 +4498,7 @@ export type WorkflowTriggerHistoriesListNextResponse = WorkflowTriggerHistoryLis
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5446,6 +4518,7 @@ export type WorkflowRunsListResponse = WorkflowRunListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5465,6 +4538,7 @@ export type WorkflowRunsGetResponse = WorkflowRun & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5484,6 +4558,7 @@ export type WorkflowRunsListNextResponse = WorkflowRunListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5503,6 +4578,7 @@ export type WorkflowRunActionsListResponse = WorkflowRunActionListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5522,6 +4598,7 @@ export type WorkflowRunActionsGetResponse = WorkflowRunAction & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5541,6 +4618,7 @@ export type WorkflowRunActionsListExpressionTracesResponse = ExpressionTraces &
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5560,6 +4638,7 @@ export type WorkflowRunActionsListNextResponse = WorkflowRunActionListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5579,6 +4658,7 @@ export type WorkflowRunActionRepetitionsListResponse = WorkflowRunActionRepetiti
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5598,6 +4678,7 @@ export type WorkflowRunActionRepetitionsGetResponse = WorkflowRunActionRepetitio
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5617,6 +4698,7 @@ export type WorkflowRunActionRepetitionsListExpressionTracesResponse = Expressio
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5636,6 +4718,7 @@ export type WorkflowRunActionRepetitionsRequestHistoriesListResponse = RequestHi
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5655,6 +4738,7 @@ export type WorkflowRunActionRepetitionsRequestHistoriesGetResponse = RequestHis
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5674,6 +4758,7 @@ export type WorkflowRunActionRepetitionsRequestHistoriesListNextResponse = Reque
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5693,6 +4778,7 @@ export type WorkflowRunActionRequestHistoriesListResponse = RequestHistoryListRe
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5712,6 +4798,7 @@ export type WorkflowRunActionRequestHistoriesGetResponse = RequestHistory & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5731,6 +4818,7 @@ export type WorkflowRunActionRequestHistoriesListNextResponse = RequestHistoryLi
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5750,6 +4838,7 @@ export type WorkflowRunActionScopeRepetitionsListResponse = WorkflowRunActionRep
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5769,6 +4858,7 @@ export type WorkflowRunActionScopeRepetitionsGetResponse = WorkflowRunActionRepe
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5788,6 +4878,7 @@ export type WorkflowRunOperationsGetResponse = WorkflowRun & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5807,6 +4898,7 @@ export type IntegrationAccountsListBySubscriptionResponse = IntegrationAccountLi
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5826,6 +4918,7 @@ export type IntegrationAccountsListByResourceGroupResponse = IntegrationAccountL
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5845,6 +4938,7 @@ export type IntegrationAccountsGetResponse = IntegrationAccount & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5864,6 +4958,7 @@ export type IntegrationAccountsCreateOrUpdateResponse = IntegrationAccount & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5883,6 +4978,7 @@ export type IntegrationAccountsUpdateResponse = IntegrationAccount & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5902,6 +4998,7 @@ export type IntegrationAccountsListCallbackUrlResponse = CallbackUrl & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5921,6 +5018,7 @@ export type IntegrationAccountsListKeyVaultKeysResponse = KeyVaultKeyCollection
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5940,6 +5038,7 @@ export type IntegrationAccountsRegenerateAccessKeyResponse = IntegrationAccount
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5959,6 +5058,7 @@ export type IntegrationAccountsListBySubscriptionNextResponse = IntegrationAccou
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5978,6 +5078,7 @@ export type IntegrationAccountsListByResourceGroupNextResponse = IntegrationAcco
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -5997,6 +5098,7 @@ export type IntegrationAccountAssembliesListResponse = AssemblyCollection & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6016,6 +5118,7 @@ export type IntegrationAccountAssembliesGetResponse = AssemblyDefinition & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6035,6 +5138,7 @@ export type IntegrationAccountAssembliesCreateOrUpdateResponse = AssemblyDefinit
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6054,6 +5158,7 @@ export type IntegrationAccountAssembliesListContentCallbackUrlResponse = Workflo
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6073,6 +5178,7 @@ export type IntegrationAccountBatchConfigurationsListResponse = BatchConfigurati
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6092,6 +5198,7 @@ export type IntegrationAccountBatchConfigurationsGetResponse = BatchConfiguratio
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6111,6 +5218,7 @@ export type IntegrationAccountBatchConfigurationsCreateOrUpdateResponse = BatchC
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6130,6 +5238,7 @@ export type IntegrationAccountSchemasListResponse = IntegrationAccountSchemaList
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6149,6 +5258,7 @@ export type IntegrationAccountSchemasGetResponse = IntegrationAccountSchema & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6168,6 +5278,7 @@ export type IntegrationAccountSchemasCreateOrUpdateResponse = IntegrationAccount
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6187,6 +5298,7 @@ export type IntegrationAccountSchemasListContentCallbackUrlResponse = WorkflowTr
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6206,6 +5318,7 @@ export type IntegrationAccountSchemasListNextResponse = IntegrationAccountSchema
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6225,6 +5338,7 @@ export type IntegrationAccountMapsListResponse = IntegrationAccountMapListResult
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6244,6 +5358,7 @@ export type IntegrationAccountMapsGetResponse = IntegrationAccountMap & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6263,6 +5378,7 @@ export type IntegrationAccountMapsCreateOrUpdateResponse = IntegrationAccountMap
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6282,6 +5398,7 @@ export type IntegrationAccountMapsListContentCallbackUrlResponse = WorkflowTrigg
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6301,6 +5418,7 @@ export type IntegrationAccountMapsListNextResponse = IntegrationAccountMapListRe
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6320,6 +5438,7 @@ export type IntegrationAccountPartnersListResponse = IntegrationAccountPartnerLi
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6339,6 +5458,7 @@ export type IntegrationAccountPartnersGetResponse = IntegrationAccountPartner &
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6358,6 +5478,7 @@ export type IntegrationAccountPartnersCreateOrUpdateResponse = IntegrationAccoun
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6377,6 +5498,7 @@ export type IntegrationAccountPartnersListContentCallbackUrlResponse = WorkflowT
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6396,6 +5518,7 @@ export type IntegrationAccountPartnersListNextResponse = IntegrationAccountPartn
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6415,6 +5538,7 @@ export type IntegrationAccountAgreementsListResponse = IntegrationAccountAgreeme
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6434,6 +5558,7 @@ export type IntegrationAccountAgreementsGetResponse = IntegrationAccountAgreemen
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6453,6 +5578,7 @@ export type IntegrationAccountAgreementsCreateOrUpdateResponse = IntegrationAcco
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6472,6 +5598,7 @@ export type IntegrationAccountAgreementsListContentCallbackUrlResponse = Workflo
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6491,6 +5618,7 @@ export type IntegrationAccountAgreementsListNextResponse = IntegrationAccountAgr
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6510,6 +5638,7 @@ export type IntegrationAccountCertificatesListResponse = IntegrationAccountCerti
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6529,6 +5658,7 @@ export type IntegrationAccountCertificatesGetResponse = IntegrationAccountCertif
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6548,6 +5678,7 @@ export type IntegrationAccountCertificatesCreateOrUpdateResponse = IntegrationAc
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6567,6 +5698,7 @@ export type IntegrationAccountCertificatesListNextResponse = IntegrationAccountC
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6586,6 +5718,7 @@ export type IntegrationAccountSessionsListResponse = IntegrationAccountSessionLi
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6605,6 +5738,7 @@ export type IntegrationAccountSessionsGetResponse = IntegrationAccountSession &
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6624,6 +5758,7 @@ export type IntegrationAccountSessionsCreateOrUpdateResponse = IntegrationAccoun
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6643,6 +5778,7 @@ export type IntegrationAccountSessionsListNextResponse = IntegrationAccountSessi
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6662,6 +5798,7 @@ export type OperationsListResponse = OperationListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
@@ -6681,6 +5818,7 @@ export type OperationsListNextResponse = OperationListResult & {
* The response body as text (string format)
*/
bodyAsText: string;
+
/**
* The response body as parsed JSON or XML
*/
diff --git a/packages/@azure/arm-logic/lib/models/integrationAccountAgreementsMappers.ts b/packages/@azure/arm-logic/lib/models/integrationAccountAgreementsMappers.ts
index ef357537f003..e224506754d3 100644
--- a/packages/@azure/arm-logic/lib/models/integrationAccountAgreementsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/integrationAccountAgreementsMappers.ts
@@ -1,111 +1,108 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- IntegrationAccountAgreementListResult,
- IntegrationAccountAgreement,
- Resource,
- BaseResource,
- BusinessIdentity,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
- CloudError,
- GetCallbackUrlParameters,
- WorkflowTriggerCallbackUrl,
- WorkflowTriggerListCallbackUrlQueries,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
+ EdifactValidationSettings,
ErrorProperties,
+ ErrorResponse,
+ GetCallbackUrlParameters,
IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
+ IntegrationAccountAgreement,
+ IntegrationAccountAgreementListResult,
+ IntegrationAccountCertificate,
IntegrationAccountMap,
IntegrationAccountMapPropertiesParametersSchema,
IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- IntegrationAccountCertificate,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerCallbackUrl,
+ WorkflowTriggerHistory,
+ WorkflowTriggerListCallbackUrlQueries,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/integrationAccountAssembliesMappers.ts b/packages/@azure/arm-logic/lib/models/integrationAccountAssembliesMappers.ts
index 508d49c7bd42..55b6e54af6fb 100644
--- a/packages/@azure/arm-logic/lib/models/integrationAccountAssembliesMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/integrationAccountAssembliesMappers.ts
@@ -1,110 +1,107 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- AssemblyCollection,
- AssemblyDefinition,
- Resource,
- BaseResource,
- AssemblyProperties,
+ AgreementContent,
ArtifactContentPropertiesDefinition,
ArtifactProperties,
- ContentLink,
- ContentHash,
- CloudError,
- WorkflowTriggerCallbackUrl,
- WorkflowTriggerListCallbackUrlQueries,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
- AgreementContent,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyCollection,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerCallbackUrl,
+ WorkflowTriggerHistory,
+ WorkflowTriggerListCallbackUrlQueries,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/integrationAccountBatchConfigurationsMappers.ts b/packages/@azure/arm-logic/lib/models/integrationAccountBatchConfigurationsMappers.ts
index 3e5393ef86ca..0b972593b75f 100644
--- a/packages/@azure/arm-logic/lib/models/integrationAccountBatchConfigurationsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/integrationAccountBatchConfigurationsMappers.ts
@@ -1,108 +1,105 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- BatchConfigurationCollection,
- BatchConfiguration,
- Resource,
- BaseResource,
- BatchConfigurationProperties,
- ArtifactProperties,
- BatchReleaseCriteria,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- CloudError,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerHistory,
- Correlation,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationCollection,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/integrationAccountCertificatesMappers.ts b/packages/@azure/arm-logic/lib/models/integrationAccountCertificatesMappers.ts
index 693a5b0337bd..9ab534f31634 100644
--- a/packages/@azure/arm-logic/lib/models/integrationAccountCertificatesMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/integrationAccountCertificatesMappers.ts
@@ -1,108 +1,105 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- IntegrationAccountCertificateListResult,
- IntegrationAccountCertificate,
- Resource,
- BaseResource,
- KeyVaultKeyReference,
- KeyVaultKeyReferenceKeyVault,
- CloudError,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
+ IntegrationAccountCertificate,
+ IntegrationAccountCertificateListResult,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
IntegrationAccountSession,
+ IntegrationAccountSku,
+ KeyVaultKeyReference,
+ KeyVaultKeyReferenceKeyVault,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/integrationAccountMapsMappers.ts b/packages/@azure/arm-logic/lib/models/integrationAccountMapsMappers.ts
index 612a82590c57..31c43deaffc6 100644
--- a/packages/@azure/arm-logic/lib/models/integrationAccountMapsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/integrationAccountMapsMappers.ts
@@ -1,111 +1,108 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- IntegrationAccountMapListResult,
- IntegrationAccountMap,
- Resource,
- BaseResource,
- IntegrationAccountMapPropertiesParametersSchema,
- ContentLink,
- ContentHash,
- CloudError,
- GetCallbackUrlParameters,
- WorkflowTriggerCallbackUrl,
- WorkflowTriggerListCallbackUrlQueries,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ GetCallbackUrlParameters,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapListResult,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerCallbackUrl,
+ WorkflowTriggerHistory,
+ WorkflowTriggerListCallbackUrlQueries,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/integrationAccountPartnersMappers.ts b/packages/@azure/arm-logic/lib/models/integrationAccountPartnersMappers.ts
index 8772c214afbc..94b3b79ec3a0 100644
--- a/packages/@azure/arm-logic/lib/models/integrationAccountPartnersMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/integrationAccountPartnersMappers.ts
@@ -1,111 +1,108 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- IntegrationAccountPartnerListResult,
- IntegrationAccountPartner,
- Resource,
- BaseResource,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- CloudError,
- GetCallbackUrlParameters,
- WorkflowTriggerCallbackUrl,
- WorkflowTriggerListCallbackUrlQueries,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ GetCallbackUrlParameters,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountPartnerListResult,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerCallbackUrl,
+ WorkflowTriggerHistory,
+ WorkflowTriggerListCallbackUrlQueries,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/integrationAccountSchemasMappers.ts b/packages/@azure/arm-logic/lib/models/integrationAccountSchemasMappers.ts
index 3b1ec26a020d..570e210050b7 100644
--- a/packages/@azure/arm-logic/lib/models/integrationAccountSchemasMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/integrationAccountSchemasMappers.ts
@@ -1,111 +1,108 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- IntegrationAccountSchemaListResult,
- IntegrationAccountSchema,
- Resource,
- BaseResource,
- ContentLink,
- ContentHash,
- CloudError,
- GetCallbackUrlParameters,
- WorkflowTriggerCallbackUrl,
- WorkflowTriggerListCallbackUrlQueries,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ GetCallbackUrlParameters,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSchemaListResult,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerCallbackUrl,
+ WorkflowTriggerHistory,
+ WorkflowTriggerListCallbackUrlQueries,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/integrationAccountSessionsMappers.ts b/packages/@azure/arm-logic/lib/models/integrationAccountSessionsMappers.ts
index b889b766d01e..e518d0965454 100644
--- a/packages/@azure/arm-logic/lib/models/integrationAccountSessionsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/integrationAccountSessionsMappers.ts
@@ -1,108 +1,105 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- IntegrationAccountSessionListResult,
- IntegrationAccountSession,
- Resource,
- BaseResource,
- CloudError,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSessionListResult,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/integrationAccountsMappers.ts b/packages/@azure/arm-logic/lib/models/integrationAccountsMappers.ts
index b7022af2762e..0ae1cd74a98f 100644
--- a/packages/@azure/arm-logic/lib/models/integrationAccountsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/integrationAccountsMappers.ts
@@ -1,118 +1,115 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- IntegrationAccountListResult,
- IntegrationAccount,
- Resource,
- BaseResource,
- IntegrationAccountSku,
- CloudError,
- GetCallbackUrlParameters,
- CallbackUrl,
- ListKeyVaultKeysDefinition,
- KeyVaultReference,
- ResourceReference,
- KeyVaultKeyCollection,
- KeyVaultKey,
- KeyVaultKeyAttributes,
- TrackingEventsDefinition,
- TrackingEvent,
- TrackingEventErrorInfo,
- RegenerateActionParameter,
- SubResource,
- Workflow,
- Sku,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CallbackUrl,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ GetCallbackUrlParameters,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountListResult,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
+ KeyVaultKey,
+ KeyVaultKeyAttributes,
+ KeyVaultKeyCollection,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ KeyVaultReference,
+ ListKeyVaultKeysDefinition,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
+ RegenerateActionParameter,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ TrackingEvent,
+ TrackingEventErrorInfo,
+ TrackingEventsDefinition,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/mappers.ts b/packages/@azure/arm-logic/lib/models/mappers.ts
index 7a8b37235c51..f0439abb224d 100644
--- a/packages/@azure/arm-logic/lib/models/mappers.ts
+++ b/packages/@azure/arm-logic/lib/models/mappers.ts
@@ -1,11 +1,9 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
import { CloudErrorMapper, BaseResourceMapper } from "@azure/ms-rest-azure-js";
@@ -2338,16 +2336,16 @@ export const X12ValidationSettings: msRest.CompositeMapper = {
name: "Boolean"
}
},
- validateEdiTypes: {
+ validateEDITypes: {
required: true,
- serializedName: "validateEdiTypes",
+ serializedName: "validateEDITypes",
type: {
name: "Boolean"
}
},
- validateXsdTypes: {
+ validateXSDTypes: {
required: true,
- serializedName: "validateXsdTypes",
+ serializedName: "validateXSDTypes",
type: {
name: "Boolean"
}
@@ -2926,16 +2924,16 @@ export const X12ValidationOverride: msRest.CompositeMapper = {
name: "String"
}
},
- validateEdiTypes: {
+ validateEDITypes: {
required: true,
- serializedName: "validateEdiTypes",
+ serializedName: "validateEDITypes",
type: {
name: "Boolean"
}
},
- validateXsdTypes: {
+ validateXSDTypes: {
required: true,
- serializedName: "validateXsdTypes",
+ serializedName: "validateXSDTypes",
type: {
name: "Boolean"
}
@@ -3331,16 +3329,16 @@ export const EdifactValidationSettings: msRest.CompositeMapper = {
name: "Boolean"
}
},
- validateEdiTypes: {
+ validateEDITypes: {
required: true,
- serializedName: "validateEdiTypes",
+ serializedName: "validateEDITypes",
type: {
name: "Boolean"
}
},
- validateXsdTypes: {
+ validateXSDTypes: {
required: true,
- serializedName: "validateXsdTypes",
+ serializedName: "validateXSDTypes",
type: {
name: "Boolean"
}
@@ -4077,16 +4075,16 @@ export const EdifactValidationOverride: msRest.CompositeMapper = {
name: "Boolean"
}
},
- validateEdiTypes: {
+ validateEDITypes: {
required: true,
- serializedName: "validateEdiTypes",
+ serializedName: "validateEDITypes",
type: {
name: "Boolean"
}
},
- validateXsdTypes: {
+ validateXSDTypes: {
required: true,
- serializedName: "validateXsdTypes",
+ serializedName: "validateXSDTypes",
type: {
name: "Boolean"
}
diff --git a/packages/@azure/arm-logic/lib/models/operationsMappers.ts b/packages/@azure/arm-logic/lib/models/operationsMappers.ts
index 6220c17fa72b..6d4da9c5b010 100644
--- a/packages/@azure/arm-logic/lib/models/operationsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/operationsMappers.ts
@@ -1,18 +1,15 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- OperationListResult,
+ ErrorProperties,
+ ErrorResponse,
Operation,
OperationDisplay,
- ErrorResponse,
- ErrorProperties
+ OperationListResult
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowRunActionRepetitionsMappers.ts b/packages/@azure/arm-logic/lib/models/workflowRunActionRepetitionsMappers.ts
index cd95bba6a166..c6bdc7459027 100644
--- a/packages/@azure/arm-logic/lib/models/workflowRunActionRepetitionsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowRunActionRepetitionsMappers.ts
@@ -1,113 +1,110 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- WorkflowRunActionRepetitionDefinitionCollection,
- WorkflowRunActionRepetitionDefinition,
- Resource,
- BaseResource,
- RunActionCorrelation,
- RunCorrelation,
- ContentLink,
- ContentHash,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- RepetitionIndex,
- CloudError,
- ExpressionTraces,
- ExpressionRoot,
- Expression,
- AzureResourceErrorInfo,
- ErrorInfo,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ AzureResourceErrorInfo,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorInfo,
+ ErrorProperties,
+ ErrorResponse,
+ Expression,
+ ExpressionRoot,
+ ExpressionTraces,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
+ RepetitionIndex,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunActionRepetitionDefinitionCollection,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts b/packages/@azure/arm-logic/lib/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts
index 487eab35f120..86340413f42d 100644
--- a/packages/@azure/arm-logic/lib/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowRunActionRepetitionsRequestHistoriesMappers.ts
@@ -1,107 +1,104 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- RequestHistoryListResult,
- RequestHistory,
- Resource,
- BaseResource,
- RequestHistoryProperties,
- Request,
- Response,
- ContentLink,
- ContentHash,
- ErrorResponse,
- ErrorProperties,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
+ RepetitionIndex,
+ Request,
+ RequestHistory,
+ RequestHistoryListResult,
+ RequestHistoryProperties,
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
RunActionCorrelation,
RunCorrelation,
- RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowRunActionRequestHistoriesMappers.ts b/packages/@azure/arm-logic/lib/models/workflowRunActionRequestHistoriesMappers.ts
index 487eab35f120..86340413f42d 100644
--- a/packages/@azure/arm-logic/lib/models/workflowRunActionRequestHistoriesMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowRunActionRequestHistoriesMappers.ts
@@ -1,107 +1,104 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- RequestHistoryListResult,
- RequestHistory,
- Resource,
- BaseResource,
- RequestHistoryProperties,
- Request,
- Response,
- ContentLink,
- ContentHash,
- ErrorResponse,
- ErrorProperties,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
+ RepetitionIndex,
+ Request,
+ RequestHistory,
+ RequestHistoryListResult,
+ RequestHistoryProperties,
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
RunActionCorrelation,
RunCorrelation,
- RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowRunActionScopeRepetitionsMappers.ts b/packages/@azure/arm-logic/lib/models/workflowRunActionScopeRepetitionsMappers.ts
index 146d90c562c6..951cec6f49ff 100644
--- a/packages/@azure/arm-logic/lib/models/workflowRunActionScopeRepetitionsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowRunActionScopeRepetitionsMappers.ts
@@ -1,108 +1,105 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- WorkflowRunActionRepetitionDefinitionCollection,
- WorkflowRunActionRepetitionDefinition,
- Resource,
- BaseResource,
- RunActionCorrelation,
- RunCorrelation,
- ContentLink,
- ContentHash,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- RepetitionIndex,
- CloudError,
- SubResource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
+ RepetitionIndex,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunActionRepetitionDefinitionCollection,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowRunActionsMappers.ts b/packages/@azure/arm-logic/lib/models/workflowRunActionsMappers.ts
index 29d78ebb6f65..ed2bd32cdc04 100644
--- a/packages/@azure/arm-logic/lib/models/workflowRunActionsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowRunActionsMappers.ts
@@ -1,113 +1,110 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- WorkflowRunActionListResult,
- WorkflowRunAction,
- SubResource,
- BaseResource,
- Correlation,
- ContentLink,
- ContentHash,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- CloudError,
- ExpressionTraces,
- ExpressionRoot,
- Expression,
- AzureResourceErrorInfo,
- ErrorInfo,
- Resource,
- Workflow,
- Sku,
- ResourceReference,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ AzureResourceErrorInfo,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorInfo,
+ ErrorProperties,
+ ErrorResponse,
+ Expression,
+ ExpressionRoot,
+ ExpressionTraces,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionListResult,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowRunOperationsMappers.ts b/packages/@azure/arm-logic/lib/models/workflowRunOperationsMappers.ts
index 7d5b07dafb23..7f87411500b3 100644
--- a/packages/@azure/arm-logic/lib/models/workflowRunOperationsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowRunOperationsMappers.ts
@@ -1,107 +1,104 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- WorkflowRun,
- SubResource,
- BaseResource,
- Correlation,
- ResourceReference,
- WorkflowRunTrigger,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowParameter,
- CloudError,
- Resource,
- Workflow,
- Sku,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowRunsMappers.ts b/packages/@azure/arm-logic/lib/models/workflowRunsMappers.ts
index 8dc4a2971a55..4f9641f8f130 100644
--- a/packages/@azure/arm-logic/lib/models/workflowRunsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowRunsMappers.ts
@@ -1,108 +1,105 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- WorkflowRunListResult,
- WorkflowRun,
- SubResource,
- BaseResource,
- Correlation,
- ResourceReference,
- WorkflowRunTrigger,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowParameter,
- CloudError,
- Resource,
- Workflow,
- Sku,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunListResult,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowTriggerHistoriesMappers.ts b/packages/@azure/arm-logic/lib/models/workflowTriggerHistoriesMappers.ts
index 0e8f0c9aea95..73b74831a861 100644
--- a/packages/@azure/arm-logic/lib/models/workflowTriggerHistoriesMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowTriggerHistoriesMappers.ts
@@ -1,108 +1,105 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- WorkflowTriggerHistoryListResult,
- WorkflowTriggerHistory,
- SubResource,
- BaseResource,
- Correlation,
- ContentLink,
- ContentHash,
- ResourceReference,
- CloudError,
- Resource,
- Workflow,
- Sku,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerHistoryListResult,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowTriggersMappers.ts b/packages/@azure/arm-logic/lib/models/workflowTriggersMappers.ts
index 9de06db817cb..4a209718f289 100644
--- a/packages/@azure/arm-logic/lib/models/workflowTriggersMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowTriggersMappers.ts
@@ -1,112 +1,109 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- WorkflowTriggerListResult,
- WorkflowTrigger,
- SubResource,
- BaseResource,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- ResourceReference,
- CloudError,
- JsonSchema,
- SetTriggerStateActionDefinition,
- WorkflowTriggerCallbackUrl,
- WorkflowTriggerListCallbackUrlQueries,
- Resource,
- Workflow,
- Sku,
- WorkflowParameter,
- WorkflowVersion,
- WorkflowTriggerHistory,
- Correlation,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
+ JsonSchema,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ SetTriggerStateActionDefinition,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerCallbackUrl,
+ WorkflowTriggerHistory,
+ WorkflowTriggerListCallbackUrlQueries,
+ WorkflowTriggerListResult,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowVersionTriggersMappers.ts b/packages/@azure/arm-logic/lib/models/workflowVersionTriggersMappers.ts
index c70ebc0fa46f..f5a408dc7564 100644
--- a/packages/@azure/arm-logic/lib/models/workflowVersionTriggersMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowVersionTriggersMappers.ts
@@ -1,17 +1,14 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
+ CloudError,
GetCallbackUrlParameters,
WorkflowTriggerCallbackUrl,
- WorkflowTriggerListCallbackUrlQueries,
- CloudError
+ WorkflowTriggerListCallbackUrlQueries
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowVersionsMappers.ts b/packages/@azure/arm-logic/lib/models/workflowVersionsMappers.ts
index 6b0c14e69d6a..b53b2f7aba27 100644
--- a/packages/@azure/arm-logic/lib/models/workflowVersionsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowVersionsMappers.ts
@@ -1,108 +1,105 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- WorkflowVersionListResult,
- WorkflowVersion,
- Resource,
- BaseResource,
- Sku,
- ResourceReference,
- WorkflowParameter,
- CloudError,
- SubResource,
- Workflow,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerHistory,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ WorkflowVersionListResult,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/lib/models/workflowsMappers.ts b/packages/@azure/arm-logic/lib/models/workflowsMappers.ts
index 3521ccd195c8..4b3d999189dc 100644
--- a/packages/@azure/arm-logic/lib/models/workflowsMappers.ts
+++ b/packages/@azure/arm-logic/lib/models/workflowsMappers.ts
@@ -1,113 +1,110 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/
export {
- WorkflowListResult,
- Workflow,
- Resource,
- BaseResource,
- Sku,
- ResourceReference,
- WorkflowParameter,
- CloudError,
- GenerateUpgradedDefinitionParameters,
- GetCallbackUrlParameters,
- WorkflowTriggerCallbackUrl,
- WorkflowTriggerListCallbackUrlQueries,
- RegenerateActionParameter,
- SubResource,
- WorkflowVersion,
- WorkflowTrigger,
- WorkflowTriggerRecurrence,
- RecurrenceSchedule,
- RecurrenceScheduleOccurrence,
- WorkflowTriggerHistory,
- Correlation,
- ContentLink,
- ContentHash,
- WorkflowOutputParameter,
- WorkflowRun,
- WorkflowRunTrigger,
- WorkflowRunAction,
- RetryHistory,
- ErrorResponse,
- ErrorProperties,
- IntegrationAccount,
- IntegrationAccountSku,
- IntegrationAccountSchema,
- IntegrationAccountMap,
- IntegrationAccountMapPropertiesParametersSchema,
- IntegrationAccountPartner,
- PartnerContent,
- B2BPartnerContent,
- BusinessIdentity,
- IntegrationAccountAgreement,
AgreementContent,
+ ArtifactContentPropertiesDefinition,
+ ArtifactProperties,
+ AS2AcknowledgementConnectionSettings,
AS2AgreementContent,
+ AS2EnvelopeSettings,
+ AS2ErrorSettings,
+ AS2MdnSettings,
+ AS2MessageConnectionSettings,
AS2OneWayAgreement,
AS2ProtocolSettings,
- AS2MessageConnectionSettings,
- AS2AcknowledgementConnectionSettings,
- AS2MdnSettings,
AS2SecuritySettings,
AS2ValidationSettings,
- AS2EnvelopeSettings,
- AS2ErrorSettings,
- X12AgreementContent,
- X12OneWayAgreement,
- X12ProtocolSettings,
- X12ValidationSettings,
- X12FramingSettings,
- X12EnvelopeSettings,
- X12AcknowledgementSettings,
- X12MessageFilter,
- X12SecuritySettings,
- X12ProcessingSettings,
- X12EnvelopeOverride,
- X12ValidationOverride,
- X12MessageIdentifier,
- X12SchemaReference,
- X12DelimiterOverrides,
+ AssemblyDefinition,
+ AssemblyProperties,
+ B2BPartnerContent,
+ BaseResource,
+ BatchConfiguration,
+ BatchConfigurationProperties,
+ BatchReleaseCriteria,
+ BusinessIdentity,
+ CloudError,
+ ContentHash,
+ ContentLink,
+ Correlation,
+ EdifactAcknowledgementSettings,
EdifactAgreementContent,
- EdifactOneWayAgreement,
- EdifactProtocolSettings,
- EdifactValidationSettings,
- EdifactFramingSettings,
+ EdifactDelimiterOverride,
+ EdifactEnvelopeOverride,
EdifactEnvelopeSettings,
- EdifactAcknowledgementSettings,
+ EdifactFramingSettings,
EdifactMessageFilter,
- EdifactProcessingSettings,
- EdifactEnvelopeOverride,
EdifactMessageIdentifier,
+ EdifactOneWayAgreement,
+ EdifactProcessingSettings,
+ EdifactProtocolSettings,
EdifactSchemaReference,
EdifactValidationOverride,
- EdifactDelimiterOverride,
+ EdifactValidationSettings,
+ ErrorProperties,
+ ErrorResponse,
+ GenerateUpgradedDefinitionParameters,
+ GetCallbackUrlParameters,
+ IntegrationAccount,
+ IntegrationAccountAgreement,
IntegrationAccountCertificate,
+ IntegrationAccountMap,
+ IntegrationAccountMapPropertiesParametersSchema,
+ IntegrationAccountPartner,
+ IntegrationAccountSchema,
+ IntegrationAccountSession,
+ IntegrationAccountSku,
KeyVaultKeyReference,
KeyVaultKeyReferenceKeyVault,
- IntegrationAccountSession,
KeyVaultReference,
- WorkflowRunActionRepetitionDefinition,
- RunActionCorrelation,
- RunCorrelation,
+ PartnerContent,
+ RecurrenceSchedule,
+ RecurrenceScheduleOccurrence,
+ RegenerateActionParameter,
RepetitionIndex,
- AssemblyDefinition,
- AssemblyProperties,
- ArtifactContentPropertiesDefinition,
- ArtifactProperties,
- BatchConfigurationProperties,
- BatchReleaseCriteria,
- BatchConfiguration,
+ Request,
RequestHistory,
RequestHistoryProperties,
- Request,
- Response
+ Resource,
+ ResourceReference,
+ Response,
+ RetryHistory,
+ RunActionCorrelation,
+ RunCorrelation,
+ Sku,
+ SubResource,
+ Workflow,
+ WorkflowListResult,
+ WorkflowOutputParameter,
+ WorkflowParameter,
+ WorkflowRun,
+ WorkflowRunAction,
+ WorkflowRunActionRepetitionDefinition,
+ WorkflowRunTrigger,
+ WorkflowTrigger,
+ WorkflowTriggerCallbackUrl,
+ WorkflowTriggerHistory,
+ WorkflowTriggerListCallbackUrlQueries,
+ WorkflowTriggerRecurrence,
+ WorkflowVersion,
+ X12AcknowledgementSettings,
+ X12AgreementContent,
+ X12DelimiterOverrides,
+ X12EnvelopeOverride,
+ X12EnvelopeSettings,
+ X12FramingSettings,
+ X12MessageFilter,
+ X12MessageIdentifier,
+ X12OneWayAgreement,
+ X12ProcessingSettings,
+ X12ProtocolSettings,
+ X12SchemaReference,
+ X12SecuritySettings,
+ X12ValidationOverride,
+ X12ValidationSettings
} from "../models/mappers";
-
diff --git a/packages/@azure/arm-logic/package.json b/packages/@azure/arm-logic/package.json
index 2bfa119e602e..7fba39fb2b99 100644
--- a/packages/@azure/arm-logic/package.json
+++ b/packages/@azure/arm-logic/package.json
@@ -2,10 +2,10 @@
"name": "@azure/arm-logic",
"author": "Microsoft Corporation",
"description": "LogicManagementClient Library with typescript type definitions for node.js and browser.",
- "version": "4.2.1",
+ "version": "5.0.0",
"dependencies": {
- "@azure/ms-rest-azure-js": "^1.2.0",
- "@azure/ms-rest-js": "^1.2.0",
+ "@azure/ms-rest-azure-js": "^1.2.4",
+ "@azure/ms-rest-js": "^1.2.6",
"tslib": "^1.9.3"
},
"keywords": [