2017-08-05 18:30:20 +00:00
|
|
|
package logic
|
|
|
|
|
|
|
|
// Copyright (c) Microsoft and contributors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
//
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
2017-10-01 08:13:39 +00:00
|
|
|
// Code generated by Microsoft (R) AutoRest Code Generator.
|
|
|
|
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
2017-08-05 18:30:20 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Azure/go-autorest/autorest"
|
|
|
|
"github.com/Azure/go-autorest/autorest/date"
|
|
|
|
"github.com/Azure/go-autorest/autorest/to"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
|
|
|
// AgreementType enumerates the values for agreement type.
|
|
|
|
type AgreementType string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// AS2 specifies the as2 state for agreement type.
|
|
|
|
AS2 AgreementType = "AS2"
|
|
|
|
// Edifact specifies the edifact state for agreement type.
|
|
|
|
Edifact AgreementType = "Edifact"
|
|
|
|
// NotSpecified specifies the not specified state for agreement type.
|
|
|
|
NotSpecified AgreementType = "NotSpecified"
|
|
|
|
// X12 specifies the x12 state for agreement type.
|
|
|
|
X12 AgreementType = "X12"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DayOfWeek enumerates the values for day of week.
|
|
|
|
type DayOfWeek string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Friday specifies the friday state for day of week.
|
|
|
|
Friday DayOfWeek = "Friday"
|
|
|
|
// Monday specifies the monday state for day of week.
|
|
|
|
Monday DayOfWeek = "Monday"
|
|
|
|
// Saturday specifies the saturday state for day of week.
|
|
|
|
Saturday DayOfWeek = "Saturday"
|
|
|
|
// Sunday specifies the sunday state for day of week.
|
|
|
|
Sunday DayOfWeek = "Sunday"
|
|
|
|
// Thursday specifies the thursday state for day of week.
|
|
|
|
Thursday DayOfWeek = "Thursday"
|
|
|
|
// Tuesday specifies the tuesday state for day of week.
|
|
|
|
Tuesday DayOfWeek = "Tuesday"
|
|
|
|
// Wednesday specifies the wednesday state for day of week.
|
|
|
|
Wednesday DayOfWeek = "Wednesday"
|
|
|
|
)
|
|
|
|
|
|
|
|
// DaysOfWeek enumerates the values for days of week.
|
|
|
|
type DaysOfWeek string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// DaysOfWeekFriday specifies the days of week friday state for days of week.
|
2017-08-05 18:30:20 +00:00
|
|
|
DaysOfWeekFriday DaysOfWeek = "Friday"
|
2017-10-01 08:13:39 +00:00
|
|
|
// DaysOfWeekMonday specifies the days of week monday state for days of week.
|
2017-08-05 18:30:20 +00:00
|
|
|
DaysOfWeekMonday DaysOfWeek = "Monday"
|
2017-10-01 08:13:39 +00:00
|
|
|
// DaysOfWeekSaturday specifies the days of week saturday state for days of week.
|
2017-08-05 18:30:20 +00:00
|
|
|
DaysOfWeekSaturday DaysOfWeek = "Saturday"
|
2017-10-01 08:13:39 +00:00
|
|
|
// DaysOfWeekSunday specifies the days of week sunday state for days of week.
|
2017-08-05 18:30:20 +00:00
|
|
|
DaysOfWeekSunday DaysOfWeek = "Sunday"
|
2017-10-01 08:13:39 +00:00
|
|
|
// DaysOfWeekThursday specifies the days of week thursday state for days of week.
|
2017-08-05 18:30:20 +00:00
|
|
|
DaysOfWeekThursday DaysOfWeek = "Thursday"
|
2017-10-01 08:13:39 +00:00
|
|
|
// DaysOfWeekTuesday specifies the days of week tuesday state for days of week.
|
2017-08-05 18:30:20 +00:00
|
|
|
DaysOfWeekTuesday DaysOfWeek = "Tuesday"
|
2017-10-01 08:13:39 +00:00
|
|
|
// DaysOfWeekWednesday specifies the days of week wednesday state for days of week.
|
2017-08-05 18:30:20 +00:00
|
|
|
DaysOfWeekWednesday DaysOfWeek = "Wednesday"
|
|
|
|
)
|
|
|
|
|
|
|
|
// EdifactCharacterSet enumerates the values for edifact character set.
|
|
|
|
type EdifactCharacterSet string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetKECA specifies the edifact character set keca state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetKECA EdifactCharacterSet = "KECA"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetNotSpecified specifies the edifact character set not specified state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetNotSpecified EdifactCharacterSet = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOA specifies the edifact character set unoa state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOA EdifactCharacterSet = "UNOA"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOB specifies the edifact character set unob state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOB EdifactCharacterSet = "UNOB"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOC specifies the edifact character set unoc state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOC EdifactCharacterSet = "UNOC"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOD specifies the edifact character set unod state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOD EdifactCharacterSet = "UNOD"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOE specifies the edifact character set unoe state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOE EdifactCharacterSet = "UNOE"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOF specifies the edifact character set unof state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOF EdifactCharacterSet = "UNOF"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOG specifies the edifact character set unog state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOG EdifactCharacterSet = "UNOG"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOH specifies the edifact character set unoh state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOH EdifactCharacterSet = "UNOH"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOI specifies the edifact character set unoi state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOI EdifactCharacterSet = "UNOI"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOJ specifies the edifact character set unoj state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOJ EdifactCharacterSet = "UNOJ"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOK specifies the edifact character set unok state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOK EdifactCharacterSet = "UNOK"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOX specifies the edifact character set unox state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOX EdifactCharacterSet = "UNOX"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactCharacterSetUNOY specifies the edifact character set unoy state for edifact character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactCharacterSetUNOY EdifactCharacterSet = "UNOY"
|
|
|
|
)
|
|
|
|
|
|
|
|
// EdifactDecimalIndicator enumerates the values for edifact decimal indicator.
|
|
|
|
type EdifactDecimalIndicator string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactDecimalIndicatorComma specifies the edifact decimal indicator comma state for edifact decimal indicator.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactDecimalIndicatorComma EdifactDecimalIndicator = "Comma"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactDecimalIndicatorDecimal specifies the edifact decimal indicator decimal state for edifact decimal indicator.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactDecimalIndicatorDecimal EdifactDecimalIndicator = "Decimal"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactDecimalIndicatorNotSpecified specifies the edifact decimal indicator not specified state for edifact decimal
|
|
|
|
// indicator.
|
2017-08-05 18:30:20 +00:00
|
|
|
EdifactDecimalIndicatorNotSpecified EdifactDecimalIndicator = "NotSpecified"
|
|
|
|
)
|
|
|
|
|
|
|
|
// EncryptionAlgorithm enumerates the values for encryption algorithm.
|
|
|
|
type EncryptionAlgorithm string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// EncryptionAlgorithmAES128 specifies the encryption algorithm aes128 state for encryption algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
EncryptionAlgorithmAES128 EncryptionAlgorithm = "AES128"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EncryptionAlgorithmAES192 specifies the encryption algorithm aes192 state for encryption algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
EncryptionAlgorithmAES192 EncryptionAlgorithm = "AES192"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EncryptionAlgorithmAES256 specifies the encryption algorithm aes256 state for encryption algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
EncryptionAlgorithmAES256 EncryptionAlgorithm = "AES256"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EncryptionAlgorithmDES3 specifies the encryption algorithm des3 state for encryption algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
EncryptionAlgorithmDES3 EncryptionAlgorithm = "DES3"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EncryptionAlgorithmNone specifies the encryption algorithm none state for encryption algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
EncryptionAlgorithmNone EncryptionAlgorithm = "None"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EncryptionAlgorithmNotSpecified specifies the encryption algorithm not specified state for encryption algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
EncryptionAlgorithmNotSpecified EncryptionAlgorithm = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// EncryptionAlgorithmRC2 specifies the encryption algorithm rc2 state for encryption algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
EncryptionAlgorithmRC2 EncryptionAlgorithm = "RC2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// HashingAlgorithm enumerates the values for hashing algorithm.
|
|
|
|
type HashingAlgorithm string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// HashingAlgorithmMD5 specifies the hashing algorithm md5 state for hashing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
HashingAlgorithmMD5 HashingAlgorithm = "MD5"
|
2017-10-01 08:13:39 +00:00
|
|
|
// HashingAlgorithmNone specifies the hashing algorithm none state for hashing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
HashingAlgorithmNone HashingAlgorithm = "None"
|
2017-10-01 08:13:39 +00:00
|
|
|
// HashingAlgorithmNotSpecified specifies the hashing algorithm not specified state for hashing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
HashingAlgorithmNotSpecified HashingAlgorithm = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// HashingAlgorithmSHA1 specifies the hashing algorithm sha1 state for hashing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
HashingAlgorithmSHA1 HashingAlgorithm = "SHA1"
|
2017-10-01 08:13:39 +00:00
|
|
|
// HashingAlgorithmSHA2256 specifies the hashing algorithm sha2256 state for hashing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
HashingAlgorithmSHA2256 HashingAlgorithm = "SHA2256"
|
2017-10-01 08:13:39 +00:00
|
|
|
// HashingAlgorithmSHA2384 specifies the hashing algorithm sha2384 state for hashing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
HashingAlgorithmSHA2384 HashingAlgorithm = "SHA2384"
|
2017-10-01 08:13:39 +00:00
|
|
|
// HashingAlgorithmSHA2512 specifies the hashing algorithm sha2512 state for hashing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
HashingAlgorithmSHA2512 HashingAlgorithm = "SHA2512"
|
|
|
|
)
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountSkuName enumerates the values for integration account sku name.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountSkuName string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountSkuNameFree specifies the integration account sku name free state for integration account sku
|
|
|
|
// name.
|
2017-08-05 18:30:20 +00:00
|
|
|
IntegrationAccountSkuNameFree IntegrationAccountSkuName = "Free"
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountSkuNameNotSpecified specifies the integration account sku name not specified state for integration
|
|
|
|
// account sku name.
|
2017-08-05 18:30:20 +00:00
|
|
|
IntegrationAccountSkuNameNotSpecified IntegrationAccountSkuName = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountSkuNameStandard specifies the integration account sku name standard state for integration account
|
|
|
|
// sku name.
|
2017-08-05 18:30:20 +00:00
|
|
|
IntegrationAccountSkuNameStandard IntegrationAccountSkuName = "Standard"
|
|
|
|
)
|
|
|
|
|
|
|
|
// KeyType enumerates the values for key type.
|
|
|
|
type KeyType string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// KeyTypeNotSpecified specifies the key type not specified state for key type.
|
2017-08-05 18:30:20 +00:00
|
|
|
KeyTypeNotSpecified KeyType = "NotSpecified"
|
|
|
|
// KeyTypePrimary specifies the key type primary state for key type.
|
|
|
|
KeyTypePrimary KeyType = "Primary"
|
|
|
|
// KeyTypeSecondary specifies the key type secondary state for key type.
|
|
|
|
KeyTypeSecondary KeyType = "Secondary"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MapType enumerates the values for map type.
|
|
|
|
type MapType string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// MapTypeNotSpecified specifies the map type not specified state for map type.
|
2017-08-05 18:30:20 +00:00
|
|
|
MapTypeNotSpecified MapType = "NotSpecified"
|
|
|
|
// MapTypeXslt specifies the map type xslt state for map type.
|
|
|
|
MapTypeXslt MapType = "Xslt"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MessageFilterType enumerates the values for message filter type.
|
|
|
|
type MessageFilterType string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// MessageFilterTypeExclude specifies the message filter type exclude state for message filter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
MessageFilterTypeExclude MessageFilterType = "Exclude"
|
2017-10-01 08:13:39 +00:00
|
|
|
// MessageFilterTypeInclude specifies the message filter type include state for message filter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
MessageFilterTypeInclude MessageFilterType = "Include"
|
2017-10-01 08:13:39 +00:00
|
|
|
// MessageFilterTypeNotSpecified specifies the message filter type not specified state for message filter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
MessageFilterTypeNotSpecified MessageFilterType = "NotSpecified"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ParameterType enumerates the values for parameter type.
|
|
|
|
type ParameterType string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// ParameterTypeArray specifies the parameter type array state for parameter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
ParameterTypeArray ParameterType = "Array"
|
2017-10-01 08:13:39 +00:00
|
|
|
// ParameterTypeBool specifies the parameter type bool state for parameter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
ParameterTypeBool ParameterType = "Bool"
|
2017-10-01 08:13:39 +00:00
|
|
|
// ParameterTypeFloat specifies the parameter type float state for parameter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
ParameterTypeFloat ParameterType = "Float"
|
2017-10-01 08:13:39 +00:00
|
|
|
// ParameterTypeInt specifies the parameter type int state for parameter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
ParameterTypeInt ParameterType = "Int"
|
2017-10-01 08:13:39 +00:00
|
|
|
// ParameterTypeNotSpecified specifies the parameter type not specified state for parameter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
ParameterTypeNotSpecified ParameterType = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// ParameterTypeObject specifies the parameter type object state for parameter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
ParameterTypeObject ParameterType = "Object"
|
2017-10-01 08:13:39 +00:00
|
|
|
// ParameterTypeSecureObject specifies the parameter type secure object state for parameter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
ParameterTypeSecureObject ParameterType = "SecureObject"
|
2017-10-01 08:13:39 +00:00
|
|
|
// ParameterTypeSecureString specifies the parameter type secure string state for parameter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
ParameterTypeSecureString ParameterType = "SecureString"
|
2017-10-01 08:13:39 +00:00
|
|
|
// ParameterTypeString specifies the parameter type string state for parameter type.
|
2017-08-05 18:30:20 +00:00
|
|
|
ParameterTypeString ParameterType = "String"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PartnerType enumerates the values for partner type.
|
|
|
|
type PartnerType string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// PartnerTypeB2B specifies the partner type b2b state for partner type.
|
|
|
|
PartnerTypeB2B PartnerType = "B2B"
|
2017-10-01 08:13:39 +00:00
|
|
|
// PartnerTypeNotSpecified specifies the partner type not specified state for partner type.
|
2017-08-05 18:30:20 +00:00
|
|
|
PartnerTypeNotSpecified PartnerType = "NotSpecified"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RecurrenceFrequency enumerates the values for recurrence frequency.
|
|
|
|
type RecurrenceFrequency string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// RecurrenceFrequencyDay specifies the recurrence frequency day state for recurrence frequency.
|
2017-08-05 18:30:20 +00:00
|
|
|
RecurrenceFrequencyDay RecurrenceFrequency = "Day"
|
2017-10-01 08:13:39 +00:00
|
|
|
// RecurrenceFrequencyHour specifies the recurrence frequency hour state for recurrence frequency.
|
2017-08-05 18:30:20 +00:00
|
|
|
RecurrenceFrequencyHour RecurrenceFrequency = "Hour"
|
2017-10-01 08:13:39 +00:00
|
|
|
// RecurrenceFrequencyMinute specifies the recurrence frequency minute state for recurrence frequency.
|
2017-08-05 18:30:20 +00:00
|
|
|
RecurrenceFrequencyMinute RecurrenceFrequency = "Minute"
|
2017-10-01 08:13:39 +00:00
|
|
|
// RecurrenceFrequencyMonth specifies the recurrence frequency month state for recurrence frequency.
|
2017-08-05 18:30:20 +00:00
|
|
|
RecurrenceFrequencyMonth RecurrenceFrequency = "Month"
|
2017-10-01 08:13:39 +00:00
|
|
|
// RecurrenceFrequencyNotSpecified specifies the recurrence frequency not specified state for recurrence frequency.
|
2017-08-05 18:30:20 +00:00
|
|
|
RecurrenceFrequencyNotSpecified RecurrenceFrequency = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// RecurrenceFrequencySecond specifies the recurrence frequency second state for recurrence frequency.
|
2017-08-05 18:30:20 +00:00
|
|
|
RecurrenceFrequencySecond RecurrenceFrequency = "Second"
|
2017-10-01 08:13:39 +00:00
|
|
|
// RecurrenceFrequencyWeek specifies the recurrence frequency week state for recurrence frequency.
|
2017-08-05 18:30:20 +00:00
|
|
|
RecurrenceFrequencyWeek RecurrenceFrequency = "Week"
|
2017-10-01 08:13:39 +00:00
|
|
|
// RecurrenceFrequencyYear specifies the recurrence frequency year state for recurrence frequency.
|
2017-08-05 18:30:20 +00:00
|
|
|
RecurrenceFrequencyYear RecurrenceFrequency = "Year"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SchemaType enumerates the values for schema type.
|
|
|
|
type SchemaType string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// SchemaTypeNotSpecified specifies the schema type not specified state for schema type.
|
2017-08-05 18:30:20 +00:00
|
|
|
SchemaTypeNotSpecified SchemaType = "NotSpecified"
|
|
|
|
// SchemaTypeXML specifies the schema type xml state for schema type.
|
|
|
|
SchemaTypeXML SchemaType = "Xml"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SegmentTerminatorSuffix enumerates the values for segment terminator suffix.
|
|
|
|
type SegmentTerminatorSuffix string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// SegmentTerminatorSuffixCR specifies the segment terminator suffix cr state for segment terminator suffix.
|
2017-08-05 18:30:20 +00:00
|
|
|
SegmentTerminatorSuffixCR SegmentTerminatorSuffix = "CR"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SegmentTerminatorSuffixCRLF specifies the segment terminator suffix crlf state for segment terminator suffix.
|
2017-08-05 18:30:20 +00:00
|
|
|
SegmentTerminatorSuffixCRLF SegmentTerminatorSuffix = "CRLF"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SegmentTerminatorSuffixLF specifies the segment terminator suffix lf state for segment terminator suffix.
|
2017-08-05 18:30:20 +00:00
|
|
|
SegmentTerminatorSuffixLF SegmentTerminatorSuffix = "LF"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SegmentTerminatorSuffixNone specifies the segment terminator suffix none state for segment terminator suffix.
|
2017-08-05 18:30:20 +00:00
|
|
|
SegmentTerminatorSuffixNone SegmentTerminatorSuffix = "None"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SegmentTerminatorSuffixNotSpecified specifies the segment terminator suffix not specified state for segment
|
|
|
|
// terminator suffix.
|
2017-08-05 18:30:20 +00:00
|
|
|
SegmentTerminatorSuffixNotSpecified SegmentTerminatorSuffix = "NotSpecified"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SigningAlgorithm enumerates the values for signing algorithm.
|
|
|
|
type SigningAlgorithm string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// SigningAlgorithmDefault specifies the signing algorithm default state for signing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
SigningAlgorithmDefault SigningAlgorithm = "Default"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SigningAlgorithmNotSpecified specifies the signing algorithm not specified state for signing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
SigningAlgorithmNotSpecified SigningAlgorithm = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SigningAlgorithmSHA1 specifies the signing algorithm sha1 state for signing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
SigningAlgorithmSHA1 SigningAlgorithm = "SHA1"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SigningAlgorithmSHA2256 specifies the signing algorithm sha2256 state for signing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
SigningAlgorithmSHA2256 SigningAlgorithm = "SHA2256"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SigningAlgorithmSHA2384 specifies the signing algorithm sha2384 state for signing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
SigningAlgorithmSHA2384 SigningAlgorithm = "SHA2384"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SigningAlgorithmSHA2512 specifies the signing algorithm sha2512 state for signing algorithm.
|
2017-08-05 18:30:20 +00:00
|
|
|
SigningAlgorithmSHA2512 SigningAlgorithm = "SHA2512"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SkuName enumerates the values for sku name.
|
|
|
|
type SkuName string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// SkuNameBasic specifies the sku name basic state for sku name.
|
|
|
|
SkuNameBasic SkuName = "Basic"
|
|
|
|
// SkuNameFree specifies the sku name free state for sku name.
|
|
|
|
SkuNameFree SkuName = "Free"
|
2017-10-01 08:13:39 +00:00
|
|
|
// SkuNameNotSpecified specifies the sku name not specified state for sku name.
|
2017-08-05 18:30:20 +00:00
|
|
|
SkuNameNotSpecified SkuName = "NotSpecified"
|
|
|
|
// SkuNamePremium specifies the sku name premium state for sku name.
|
|
|
|
SkuNamePremium SkuName = "Premium"
|
|
|
|
// SkuNameShared specifies the sku name shared state for sku name.
|
|
|
|
SkuNameShared SkuName = "Shared"
|
|
|
|
// SkuNameStandard specifies the sku name standard state for sku name.
|
|
|
|
SkuNameStandard SkuName = "Standard"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TrailingSeparatorPolicy enumerates the values for trailing separator policy.
|
|
|
|
type TrailingSeparatorPolicy string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// TrailingSeparatorPolicyMandatory specifies the trailing separator policy mandatory state for trailing separator
|
|
|
|
// policy.
|
2017-08-05 18:30:20 +00:00
|
|
|
TrailingSeparatorPolicyMandatory TrailingSeparatorPolicy = "Mandatory"
|
2017-10-01 08:13:39 +00:00
|
|
|
// TrailingSeparatorPolicyNotAllowed specifies the trailing separator policy not allowed state for trailing separator
|
|
|
|
// policy.
|
2017-08-05 18:30:20 +00:00
|
|
|
TrailingSeparatorPolicyNotAllowed TrailingSeparatorPolicy = "NotAllowed"
|
2017-10-01 08:13:39 +00:00
|
|
|
// TrailingSeparatorPolicyNotSpecified specifies the trailing separator policy not specified state for trailing
|
|
|
|
// separator policy.
|
2017-08-05 18:30:20 +00:00
|
|
|
TrailingSeparatorPolicyNotSpecified TrailingSeparatorPolicy = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// TrailingSeparatorPolicyOptional specifies the trailing separator policy optional state for trailing separator
|
|
|
|
// policy.
|
2017-08-05 18:30:20 +00:00
|
|
|
TrailingSeparatorPolicyOptional TrailingSeparatorPolicy = "Optional"
|
|
|
|
)
|
|
|
|
|
|
|
|
// UsageIndicator enumerates the values for usage indicator.
|
|
|
|
type UsageIndicator string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// UsageIndicatorInformation specifies the usage indicator information state for usage indicator.
|
2017-08-05 18:30:20 +00:00
|
|
|
UsageIndicatorInformation UsageIndicator = "Information"
|
2017-10-01 08:13:39 +00:00
|
|
|
// UsageIndicatorNotSpecified specifies the usage indicator not specified state for usage indicator.
|
2017-08-05 18:30:20 +00:00
|
|
|
UsageIndicatorNotSpecified UsageIndicator = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// UsageIndicatorProduction specifies the usage indicator production state for usage indicator.
|
2017-08-05 18:30:20 +00:00
|
|
|
UsageIndicatorProduction UsageIndicator = "Production"
|
2017-10-01 08:13:39 +00:00
|
|
|
// UsageIndicatorTest specifies the usage indicator test state for usage indicator.
|
2017-08-05 18:30:20 +00:00
|
|
|
UsageIndicatorTest UsageIndicator = "Test"
|
|
|
|
)
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningState enumerates the values for workflow provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
type WorkflowProvisioningState string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateAccepted specifies the workflow provisioning state accepted state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateAccepted WorkflowProvisioningState = "Accepted"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateCanceled specifies the workflow provisioning state canceled state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateCanceled WorkflowProvisioningState = "Canceled"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateCompleted specifies the workflow provisioning state completed state for workflow
|
|
|
|
// provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateCompleted WorkflowProvisioningState = "Completed"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateCreated specifies the workflow provisioning state created state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateCreated WorkflowProvisioningState = "Created"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateCreating specifies the workflow provisioning state creating state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateCreating WorkflowProvisioningState = "Creating"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateDeleted specifies the workflow provisioning state deleted state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateDeleted WorkflowProvisioningState = "Deleted"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateDeleting specifies the workflow provisioning state deleting state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateDeleting WorkflowProvisioningState = "Deleting"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateFailed specifies the workflow provisioning state failed state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateFailed WorkflowProvisioningState = "Failed"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateMoving specifies the workflow provisioning state moving state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateMoving WorkflowProvisioningState = "Moving"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateNotSpecified specifies the workflow provisioning state not specified state for workflow
|
|
|
|
// provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateNotSpecified WorkflowProvisioningState = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateReady specifies the workflow provisioning state ready state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateReady WorkflowProvisioningState = "Ready"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateRegistered specifies the workflow provisioning state registered state for workflow
|
|
|
|
// provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateRegistered WorkflowProvisioningState = "Registered"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateRegistering specifies the workflow provisioning state registering state for workflow
|
|
|
|
// provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateRegistering WorkflowProvisioningState = "Registering"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateRunning specifies the workflow provisioning state running state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateRunning WorkflowProvisioningState = "Running"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateSucceeded specifies the workflow provisioning state succeeded state for workflow
|
|
|
|
// provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateSucceeded WorkflowProvisioningState = "Succeeded"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateUnregistered specifies the workflow provisioning state unregistered state for workflow
|
|
|
|
// provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateUnregistered WorkflowProvisioningState = "Unregistered"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateUnregistering specifies the workflow provisioning state unregistering state for workflow
|
|
|
|
// provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateUnregistering WorkflowProvisioningState = "Unregistering"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowProvisioningStateUpdating specifies the workflow provisioning state updating state for workflow provisioning
|
|
|
|
// state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowProvisioningStateUpdating WorkflowProvisioningState = "Updating"
|
|
|
|
)
|
|
|
|
|
|
|
|
// WorkflowState enumerates the values for workflow state.
|
|
|
|
type WorkflowState string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStateCompleted specifies the workflow state completed state for workflow state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStateCompleted WorkflowState = "Completed"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStateDeleted specifies the workflow state deleted state for workflow state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStateDeleted WorkflowState = "Deleted"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStateDisabled specifies the workflow state disabled state for workflow state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStateDisabled WorkflowState = "Disabled"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStateEnabled specifies the workflow state enabled state for workflow state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStateEnabled WorkflowState = "Enabled"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStateNotSpecified specifies the workflow state not specified state for workflow state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStateNotSpecified WorkflowState = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStateSuspended specifies the workflow state suspended state for workflow state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStateSuspended WorkflowState = "Suspended"
|
|
|
|
)
|
|
|
|
|
|
|
|
// WorkflowStatus enumerates the values for workflow status.
|
|
|
|
type WorkflowStatus string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusAborted specifies the workflow status aborted state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusAborted WorkflowStatus = "Aborted"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusCancelled specifies the workflow status cancelled state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusCancelled WorkflowStatus = "Cancelled"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusFailed specifies the workflow status failed state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusFailed WorkflowStatus = "Failed"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusFaulted specifies the workflow status faulted state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusFaulted WorkflowStatus = "Faulted"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusIgnored specifies the workflow status ignored state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusIgnored WorkflowStatus = "Ignored"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusNotSpecified specifies the workflow status not specified state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusNotSpecified WorkflowStatus = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusPaused specifies the workflow status paused state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusPaused WorkflowStatus = "Paused"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusRunning specifies the workflow status running state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusRunning WorkflowStatus = "Running"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusSkipped specifies the workflow status skipped state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusSkipped WorkflowStatus = "Skipped"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusSucceeded specifies the workflow status succeeded state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusSucceeded WorkflowStatus = "Succeeded"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusSuspended specifies the workflow status suspended state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusSuspended WorkflowStatus = "Suspended"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusTimedOut specifies the workflow status timed out state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusTimedOut WorkflowStatus = "TimedOut"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowStatusWaiting specifies the workflow status waiting state for workflow status.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowStatusWaiting WorkflowStatus = "Waiting"
|
|
|
|
)
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningState enumerates the values for workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
type WorkflowTriggerProvisioningState string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateAccepted specifies the workflow trigger provisioning state accepted state for
|
|
|
|
// workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateAccepted WorkflowTriggerProvisioningState = "Accepted"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateCanceled specifies the workflow trigger provisioning state canceled state for
|
|
|
|
// workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateCanceled WorkflowTriggerProvisioningState = "Canceled"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateCompleted specifies the workflow trigger provisioning state completed state for
|
|
|
|
// workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateCompleted WorkflowTriggerProvisioningState = "Completed"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateCreated specifies the workflow trigger provisioning state created state for workflow
|
|
|
|
// trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateCreated WorkflowTriggerProvisioningState = "Created"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateCreating specifies the workflow trigger provisioning state creating state for
|
|
|
|
// workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateCreating WorkflowTriggerProvisioningState = "Creating"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateDeleted specifies the workflow trigger provisioning state deleted state for workflow
|
|
|
|
// trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateDeleted WorkflowTriggerProvisioningState = "Deleted"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateDeleting specifies the workflow trigger provisioning state deleting state for
|
|
|
|
// workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateDeleting WorkflowTriggerProvisioningState = "Deleting"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateFailed specifies the workflow trigger provisioning state failed state for workflow
|
|
|
|
// trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateFailed WorkflowTriggerProvisioningState = "Failed"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateMoving specifies the workflow trigger provisioning state moving state for workflow
|
|
|
|
// trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateMoving WorkflowTriggerProvisioningState = "Moving"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateNotSpecified specifies the workflow trigger provisioning state not specified state
|
|
|
|
// for workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateNotSpecified WorkflowTriggerProvisioningState = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateReady specifies the workflow trigger provisioning state ready state for workflow
|
|
|
|
// trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateReady WorkflowTriggerProvisioningState = "Ready"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateRegistered specifies the workflow trigger provisioning state registered state for
|
|
|
|
// workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateRegistered WorkflowTriggerProvisioningState = "Registered"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateRegistering specifies the workflow trigger provisioning state registering state for
|
|
|
|
// workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateRegistering WorkflowTriggerProvisioningState = "Registering"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateRunning specifies the workflow trigger provisioning state running state for workflow
|
|
|
|
// trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateRunning WorkflowTriggerProvisioningState = "Running"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateSucceeded specifies the workflow trigger provisioning state succeeded state for
|
|
|
|
// workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateSucceeded WorkflowTriggerProvisioningState = "Succeeded"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateUnregistered specifies the workflow trigger provisioning state unregistered state
|
|
|
|
// for workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateUnregistered WorkflowTriggerProvisioningState = "Unregistered"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateUnregistering specifies the workflow trigger provisioning state unregistering state
|
|
|
|
// for workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateUnregistering WorkflowTriggerProvisioningState = "Unregistering"
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerProvisioningStateUpdating specifies the workflow trigger provisioning state updating state for
|
|
|
|
// workflow trigger provisioning state.
|
2017-08-05 18:30:20 +00:00
|
|
|
WorkflowTriggerProvisioningStateUpdating WorkflowTriggerProvisioningState = "Updating"
|
|
|
|
)
|
|
|
|
|
|
|
|
// X12CharacterSet enumerates the values for x12 character set.
|
|
|
|
type X12CharacterSet string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12CharacterSetBasic specifies the x12 character set basic state for x12 character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12CharacterSetBasic X12CharacterSet = "Basic"
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12CharacterSetExtended specifies the x12 character set extended state for x12 character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12CharacterSetExtended X12CharacterSet = "Extended"
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12CharacterSetNotSpecified specifies the x12 character set not specified state for x12 character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12CharacterSetNotSpecified X12CharacterSet = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12CharacterSetUTF8 specifies the x12 character set utf8 state for x12 character set.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12CharacterSetUTF8 X12CharacterSet = "UTF8"
|
|
|
|
)
|
|
|
|
|
|
|
|
// X12DateFormat enumerates the values for x12 date format.
|
|
|
|
type X12DateFormat string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12DateFormatCCYYMMDD specifies the x12 date format ccyymmdd state for x12 date format.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12DateFormatCCYYMMDD X12DateFormat = "CCYYMMDD"
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12DateFormatNotSpecified specifies the x12 date format not specified state for x12 date format.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12DateFormatNotSpecified X12DateFormat = "NotSpecified"
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12DateFormatYYMMDD specifies the x12 date format yymmdd state for x12 date format.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12DateFormatYYMMDD X12DateFormat = "YYMMDD"
|
|
|
|
)
|
|
|
|
|
|
|
|
// X12TimeFormat enumerates the values for x12 time format.
|
|
|
|
type X12TimeFormat string
|
|
|
|
|
|
|
|
const (
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12TimeFormatHHMM specifies the x12 time format hhmm state for x12 time format.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12TimeFormatHHMM X12TimeFormat = "HHMM"
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12TimeFormatHHMMSS specifies the x12 time format hhmmss state for x12 time format.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12TimeFormatHHMMSS X12TimeFormat = "HHMMSS"
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12TimeFormatHHMMSSd specifies the x12 time format hhmms sd state for x12 time format.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12TimeFormatHHMMSSd X12TimeFormat = "HHMMSSd"
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12TimeFormatHHMMSSdd specifies the x12 time format hhmms sdd state for x12 time format.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12TimeFormatHHMMSSdd X12TimeFormat = "HHMMSSdd"
|
2017-10-01 08:13:39 +00:00
|
|
|
// X12TimeFormatNotSpecified specifies the x12 time format not specified state for x12 time format.
|
2017-08-05 18:30:20 +00:00
|
|
|
X12TimeFormatNotSpecified X12TimeFormat = "NotSpecified"
|
|
|
|
)
|
|
|
|
|
|
|
|
// AgreementContent is the integration account agreement content.
|
|
|
|
type AgreementContent struct {
|
|
|
|
AS2 *AS2AgreementContent `json:"aS2,omitempty"`
|
|
|
|
X12 *X12AgreementContent `json:"x12,omitempty"`
|
|
|
|
Edifact *EdifactAgreementContent `json:"edifact,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// AS2AcknowledgementConnectionSettings is the AS2 agreement acknowledegment connection settings.
|
2017-08-05 18:30:20 +00:00
|
|
|
type AS2AcknowledgementConnectionSettings struct {
|
|
|
|
IgnoreCertificateNameMismatch *bool `json:"ignoreCertificateNameMismatch,omitempty"`
|
|
|
|
SupportHTTPStatusCodeContinue *bool `json:"supportHttpStatusCodeContinue,omitempty"`
|
|
|
|
KeepHTTPConnectionAlive *bool `json:"keepHttpConnectionAlive,omitempty"`
|
|
|
|
UnfoldHTTPHeaders *bool `json:"unfoldHttpHeaders,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AS2AgreementContent is the integration account AS2 agreement content.
|
|
|
|
type AS2AgreementContent struct {
|
|
|
|
ReceiveAgreement *AS2OneWayAgreement `json:"receiveAgreement,omitempty"`
|
|
|
|
SendAgreement *AS2OneWayAgreement `json:"sendAgreement,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AS2EnvelopeSettings is the AS2 agreement envelope settings.
|
|
|
|
type AS2EnvelopeSettings struct {
|
|
|
|
MessageContentType *string `json:"messageContentType,omitempty"`
|
|
|
|
TransmitFileNameInMimeHeader *bool `json:"transmitFileNameInMimeHeader,omitempty"`
|
|
|
|
FileNameTemplate *string `json:"fileNameTemplate,omitempty"`
|
|
|
|
SuspendMessageOnFileNameGenerationError *bool `json:"suspendMessageOnFileNameGenerationError,omitempty"`
|
|
|
|
AutogenerateFileName *bool `json:"autogenerateFileName,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AS2ErrorSettings is the AS2 agreement error settings.
|
|
|
|
type AS2ErrorSettings struct {
|
|
|
|
SuspendDuplicateMessage *bool `json:"suspendDuplicateMessage,omitempty"`
|
|
|
|
ResendIfMdnNotReceived *bool `json:"resendIfMdnNotReceived,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AS2MdnSettings is the AS2 agreement mdn settings.
|
|
|
|
type AS2MdnSettings struct {
|
|
|
|
NeedMdn *bool `json:"needMdn,omitempty"`
|
|
|
|
SignMdn *bool `json:"signMdn,omitempty"`
|
|
|
|
SendMdnAsynchronously *bool `json:"sendMdnAsynchronously,omitempty"`
|
|
|
|
ReceiptDeliveryURL *string `json:"receiptDeliveryUrl,omitempty"`
|
|
|
|
DispositionNotificationTo *string `json:"dispositionNotificationTo,omitempty"`
|
|
|
|
SignOutboundMdnIfOptional *bool `json:"signOutboundMdnIfOptional,omitempty"`
|
|
|
|
MdnText *string `json:"mdnText,omitempty"`
|
|
|
|
SendInboundMdnToMessageBox *bool `json:"sendInboundMdnToMessageBox,omitempty"`
|
|
|
|
MicHashingAlgorithm HashingAlgorithm `json:"micHashingAlgorithm,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// AS2MessageConnectionSettings is the AS2 agreement message connection settings.
|
2017-08-05 18:30:20 +00:00
|
|
|
type AS2MessageConnectionSettings struct {
|
|
|
|
IgnoreCertificateNameMismatch *bool `json:"ignoreCertificateNameMismatch,omitempty"`
|
|
|
|
SupportHTTPStatusCodeContinue *bool `json:"supportHttpStatusCodeContinue,omitempty"`
|
|
|
|
KeepHTTPConnectionAlive *bool `json:"keepHttpConnectionAlive,omitempty"`
|
|
|
|
UnfoldHTTPHeaders *bool `json:"unfoldHttpHeaders,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AS2OneWayAgreement is the integration account AS2 oneway agreement.
|
|
|
|
type AS2OneWayAgreement struct {
|
|
|
|
SenderBusinessIdentity *BusinessIdentity `json:"senderBusinessIdentity,omitempty"`
|
|
|
|
ReceiverBusinessIdentity *BusinessIdentity `json:"receiverBusinessIdentity,omitempty"`
|
|
|
|
ProtocolSettings *AS2ProtocolSettings `json:"protocolSettings,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AS2ProtocolSettings is the AS2 agreement protocol settings.
|
|
|
|
type AS2ProtocolSettings struct {
|
|
|
|
MessageConnectionSettings *AS2MessageConnectionSettings `json:"messageConnectionSettings,omitempty"`
|
|
|
|
AcknowledgementConnectionSettings *AS2AcknowledgementConnectionSettings `json:"acknowledgementConnectionSettings,omitempty"`
|
|
|
|
MdnSettings *AS2MdnSettings `json:"mdnSettings,omitempty"`
|
|
|
|
SecuritySettings *AS2SecuritySettings `json:"securitySettings,omitempty"`
|
|
|
|
ValidationSettings *AS2ValidationSettings `json:"validationSettings,omitempty"`
|
|
|
|
EnvelopeSettings *AS2EnvelopeSettings `json:"envelopeSettings,omitempty"`
|
|
|
|
ErrorSettings *AS2ErrorSettings `json:"errorSettings,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AS2SecuritySettings is the AS2 agreement security settings.
|
|
|
|
type AS2SecuritySettings struct {
|
|
|
|
OverrideGroupSigningCertificate *bool `json:"overrideGroupSigningCertificate,omitempty"`
|
|
|
|
SigningCertificateName *string `json:"signingCertificateName,omitempty"`
|
|
|
|
EncryptionCertificateName *string `json:"encryptionCertificateName,omitempty"`
|
|
|
|
EnableNrrForInboundEncodedMessages *bool `json:"enableNrrForInboundEncodedMessages,omitempty"`
|
|
|
|
EnableNrrForInboundDecodedMessages *bool `json:"enableNrrForInboundDecodedMessages,omitempty"`
|
|
|
|
EnableNrrForOutboundMdn *bool `json:"enableNrrForOutboundMdn,omitempty"`
|
|
|
|
EnableNrrForOutboundEncodedMessages *bool `json:"enableNrrForOutboundEncodedMessages,omitempty"`
|
|
|
|
EnableNrrForOutboundDecodedMessages *bool `json:"enableNrrForOutboundDecodedMessages,omitempty"`
|
|
|
|
EnableNrrForInboundMdn *bool `json:"enableNrrForInboundMdn,omitempty"`
|
|
|
|
Sha2AlgorithmFormat *string `json:"sha2AlgorithmFormat,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// AS2ValidationSettings is the AS2 agreement validation settings.
|
|
|
|
type AS2ValidationSettings struct {
|
|
|
|
OverrideMessageProperties *bool `json:"overrideMessageProperties,omitempty"`
|
|
|
|
EncryptMessage *bool `json:"encryptMessage,omitempty"`
|
|
|
|
SignMessage *bool `json:"signMessage,omitempty"`
|
|
|
|
CompressMessage *bool `json:"compressMessage,omitempty"`
|
|
|
|
CheckDuplicateMessage *bool `json:"checkDuplicateMessage,omitempty"`
|
|
|
|
InterchangeDuplicatesValidityDays *int32 `json:"interchangeDuplicatesValidityDays,omitempty"`
|
|
|
|
CheckCertificateRevocationListOnSend *bool `json:"checkCertificateRevocationListOnSend,omitempty"`
|
|
|
|
CheckCertificateRevocationListOnReceive *bool `json:"checkCertificateRevocationListOnReceive,omitempty"`
|
|
|
|
EncryptionAlgorithm EncryptionAlgorithm `json:"encryptionAlgorithm,omitempty"`
|
|
|
|
SigningAlgorithm SigningAlgorithm `json:"signingAlgorithm,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// B2BPartnerContent is the B2B partner content.
|
|
|
|
type B2BPartnerContent struct {
|
|
|
|
BusinessIdentities *[]BusinessIdentity `json:"businessIdentities,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// BusinessIdentity is the integration account partner's business identity.
|
|
|
|
type BusinessIdentity struct {
|
|
|
|
Qualifier *string `json:"qualifier,omitempty"`
|
|
|
|
Value *string `json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// CallbackURL is the callback url.
|
|
|
|
type CallbackURL struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *string `json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContentHash is the content hash.
|
|
|
|
type ContentHash struct {
|
|
|
|
Algorithm *string `json:"algorithm,omitempty"`
|
|
|
|
Value *string `json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ContentLink is the content link.
|
|
|
|
type ContentLink struct {
|
|
|
|
URI *string `json:"uri,omitempty"`
|
|
|
|
ContentVersion *string `json:"contentVersion,omitempty"`
|
|
|
|
ContentSize *int64 `json:"contentSize,omitempty"`
|
|
|
|
ContentHash *ContentHash `json:"contentHash,omitempty"`
|
|
|
|
Metadata *map[string]interface{} `json:"metadata,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Correlation is the correlation property.
|
|
|
|
type Correlation struct {
|
|
|
|
ClientTrackingID *string `json:"clientTrackingId,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// EdifactAcknowledgementSettings is the Edifact agreement acknowledgement settings.
|
2017-08-05 18:30:20 +00:00
|
|
|
type EdifactAcknowledgementSettings struct {
|
|
|
|
NeedTechnicalAcknowledgement *bool `json:"needTechnicalAcknowledgement,omitempty"`
|
|
|
|
BatchTechnicalAcknowledgements *bool `json:"batchTechnicalAcknowledgements,omitempty"`
|
|
|
|
NeedFunctionalAcknowledgement *bool `json:"needFunctionalAcknowledgement,omitempty"`
|
|
|
|
BatchFunctionalAcknowledgements *bool `json:"batchFunctionalAcknowledgements,omitempty"`
|
|
|
|
NeedLoopForValidMessages *bool `json:"needLoopForValidMessages,omitempty"`
|
|
|
|
SendSynchronousAcknowledgement *bool `json:"sendSynchronousAcknowledgement,omitempty"`
|
|
|
|
AcknowledgementControlNumberPrefix *string `json:"acknowledgementControlNumberPrefix,omitempty"`
|
|
|
|
AcknowledgementControlNumberSuffix *string `json:"acknowledgementControlNumberSuffix,omitempty"`
|
|
|
|
AcknowledgementControlNumberLowerBound *int32 `json:"acknowledgementControlNumberLowerBound,omitempty"`
|
|
|
|
AcknowledgementControlNumberUpperBound *int32 `json:"acknowledgementControlNumberUpperBound,omitempty"`
|
|
|
|
RolloverAcknowledgementControlNumber *bool `json:"rolloverAcknowledgementControlNumber,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactAgreementContent is the Edifact agreement content.
|
|
|
|
type EdifactAgreementContent struct {
|
|
|
|
ReceiveAgreement *EdifactOneWayAgreement `json:"receiveAgreement,omitempty"`
|
|
|
|
SendAgreement *EdifactOneWayAgreement `json:"sendAgreement,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactDelimiterOverride is the Edifact delimiter override settings.
|
|
|
|
type EdifactDelimiterOverride struct {
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
MessageVersion *string `json:"messageVersion,omitempty"`
|
|
|
|
MessageRelease *string `json:"messageRelease,omitempty"`
|
|
|
|
DataElementSeparator *int32 `json:"dataElementSeparator,omitempty"`
|
|
|
|
ComponentSeparator *int32 `json:"componentSeparator,omitempty"`
|
|
|
|
SegmentTerminator *int32 `json:"segmentTerminator,omitempty"`
|
|
|
|
RepetitionSeparator *int32 `json:"repetitionSeparator,omitempty"`
|
|
|
|
SegmentTerminatorSuffix SegmentTerminatorSuffix `json:"segmentTerminatorSuffix,omitempty"`
|
|
|
|
DecimalPointIndicator EdifactDecimalIndicator `json:"decimalPointIndicator,omitempty"`
|
|
|
|
ReleaseIndicator *int32 `json:"releaseIndicator,omitempty"`
|
|
|
|
MessageAssociationAssignedCode *string `json:"messageAssociationAssignedCode,omitempty"`
|
|
|
|
TargetNamespace *string `json:"targetNamespace,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactEnvelopeOverride is the Edifact enevlope override settings.
|
|
|
|
type EdifactEnvelopeOverride struct {
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
MessageVersion *string `json:"messageVersion,omitempty"`
|
|
|
|
MessageRelease *string `json:"messageRelease,omitempty"`
|
|
|
|
MessageAssociationAssignedCode *string `json:"messageAssociationAssignedCode,omitempty"`
|
|
|
|
TargetNamespace *string `json:"targetNamespace,omitempty"`
|
|
|
|
FunctionalGroupID *string `json:"functionalGroupId,omitempty"`
|
|
|
|
SenderApplicationQualifier *string `json:"senderApplicationQualifier,omitempty"`
|
|
|
|
SenderApplicationID *string `json:"senderApplicationId,omitempty"`
|
|
|
|
ReceiverApplicationQualifier *string `json:"receiverApplicationQualifier,omitempty"`
|
|
|
|
ReceiverApplicationID *string `json:"receiverApplicationId,omitempty"`
|
|
|
|
ControllingAgencyCode *string `json:"controllingAgencyCode,omitempty"`
|
|
|
|
GroupHeaderMessageVersion *string `json:"groupHeaderMessageVersion,omitempty"`
|
|
|
|
GroupHeaderMessageRelease *string `json:"groupHeaderMessageRelease,omitempty"`
|
|
|
|
AssociationAssignedCode *string `json:"associationAssignedCode,omitempty"`
|
|
|
|
ApplicationPassword *string `json:"applicationPassword,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactEnvelopeSettings is the Edifact agreement envelope settings.
|
|
|
|
type EdifactEnvelopeSettings struct {
|
|
|
|
GroupAssociationAssignedCode *string `json:"groupAssociationAssignedCode,omitempty"`
|
|
|
|
CommunicationAgreementID *string `json:"communicationAgreementId,omitempty"`
|
|
|
|
ApplyDelimiterStringAdvice *bool `json:"applyDelimiterStringAdvice,omitempty"`
|
|
|
|
CreateGroupingSegments *bool `json:"createGroupingSegments,omitempty"`
|
|
|
|
EnableDefaultGroupHeaders *bool `json:"enableDefaultGroupHeaders,omitempty"`
|
|
|
|
RecipientReferencePasswordValue *string `json:"recipientReferencePasswordValue,omitempty"`
|
|
|
|
RecipientReferencePasswordQualifier *string `json:"recipientReferencePasswordQualifier,omitempty"`
|
|
|
|
ApplicationReferenceID *string `json:"applicationReferenceId,omitempty"`
|
|
|
|
ProcessingPriorityCode *string `json:"processingPriorityCode,omitempty"`
|
|
|
|
InterchangeControlNumberLowerBound *int64 `json:"interchangeControlNumberLowerBound,omitempty"`
|
|
|
|
InterchangeControlNumberUpperBound *int64 `json:"interchangeControlNumberUpperBound,omitempty"`
|
|
|
|
RolloverInterchangeControlNumber *bool `json:"rolloverInterchangeControlNumber,omitempty"`
|
|
|
|
InterchangeControlNumberPrefix *string `json:"interchangeControlNumberPrefix,omitempty"`
|
|
|
|
InterchangeControlNumberSuffix *string `json:"interchangeControlNumberSuffix,omitempty"`
|
|
|
|
SenderReverseRoutingAddress *string `json:"senderReverseRoutingAddress,omitempty"`
|
|
|
|
ReceiverReverseRoutingAddress *string `json:"receiverReverseRoutingAddress,omitempty"`
|
|
|
|
FunctionalGroupID *string `json:"functionalGroupId,omitempty"`
|
|
|
|
GroupControllingAgencyCode *string `json:"groupControllingAgencyCode,omitempty"`
|
|
|
|
GroupMessageVersion *string `json:"groupMessageVersion,omitempty"`
|
|
|
|
GroupMessageRelease *string `json:"groupMessageRelease,omitempty"`
|
|
|
|
GroupControlNumberLowerBound *int64 `json:"groupControlNumberLowerBound,omitempty"`
|
|
|
|
GroupControlNumberUpperBound *int64 `json:"groupControlNumberUpperBound,omitempty"`
|
|
|
|
RolloverGroupControlNumber *bool `json:"rolloverGroupControlNumber,omitempty"`
|
|
|
|
GroupControlNumberPrefix *string `json:"groupControlNumberPrefix,omitempty"`
|
|
|
|
GroupControlNumberSuffix *string `json:"groupControlNumberSuffix,omitempty"`
|
|
|
|
GroupApplicationReceiverQualifier *string `json:"groupApplicationReceiverQualifier,omitempty"`
|
|
|
|
GroupApplicationReceiverID *string `json:"groupApplicationReceiverId,omitempty"`
|
|
|
|
GroupApplicationSenderQualifier *string `json:"groupApplicationSenderQualifier,omitempty"`
|
|
|
|
GroupApplicationSenderID *string `json:"groupApplicationSenderId,omitempty"`
|
|
|
|
GroupApplicationPassword *string `json:"groupApplicationPassword,omitempty"`
|
|
|
|
OverwriteExistingTransactionSetControlNumber *bool `json:"overwriteExistingTransactionSetControlNumber,omitempty"`
|
|
|
|
TransactionSetControlNumberPrefix *string `json:"transactionSetControlNumberPrefix,omitempty"`
|
|
|
|
TransactionSetControlNumberSuffix *string `json:"transactionSetControlNumberSuffix,omitempty"`
|
|
|
|
TransactionSetControlNumberLowerBound *int64 `json:"transactionSetControlNumberLowerBound,omitempty"`
|
|
|
|
TransactionSetControlNumberUpperBound *int64 `json:"transactionSetControlNumberUpperBound,omitempty"`
|
|
|
|
RolloverTransactionSetControlNumber *bool `json:"rolloverTransactionSetControlNumber,omitempty"`
|
|
|
|
IsTestInterchange *bool `json:"isTestInterchange,omitempty"`
|
|
|
|
SenderInternalIdentification *string `json:"senderInternalIdentification,omitempty"`
|
|
|
|
SenderInternalSubIdentification *string `json:"senderInternalSubIdentification,omitempty"`
|
|
|
|
ReceiverInternalIdentification *string `json:"receiverInternalIdentification,omitempty"`
|
|
|
|
ReceiverInternalSubIdentification *string `json:"receiverInternalSubIdentification,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactFramingSettings is the Edifact agreement framing settings.
|
|
|
|
type EdifactFramingSettings struct {
|
|
|
|
ServiceCodeListDirectoryVersion *string `json:"serviceCodeListDirectoryVersion,omitempty"`
|
|
|
|
CharacterEncoding *string `json:"characterEncoding,omitempty"`
|
|
|
|
ProtocolVersion *int32 `json:"protocolVersion,omitempty"`
|
|
|
|
DataElementSeparator *int32 `json:"dataElementSeparator,omitempty"`
|
|
|
|
ComponentSeparator *int32 `json:"componentSeparator,omitempty"`
|
|
|
|
SegmentTerminator *int32 `json:"segmentTerminator,omitempty"`
|
|
|
|
ReleaseIndicator *int32 `json:"releaseIndicator,omitempty"`
|
|
|
|
RepetitionSeparator *int32 `json:"repetitionSeparator,omitempty"`
|
|
|
|
CharacterSet EdifactCharacterSet `json:"characterSet,omitempty"`
|
|
|
|
DecimalPointIndicator EdifactDecimalIndicator `json:"decimalPointIndicator,omitempty"`
|
|
|
|
SegmentTerminatorSuffix SegmentTerminatorSuffix `json:"segmentTerminatorSuffix,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactMessageFilter is the Edifact message filter for odata query.
|
|
|
|
type EdifactMessageFilter struct {
|
|
|
|
MessageFilterType MessageFilterType `json:"messageFilterType,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactMessageIdentifier is the Edifact message identifier.
|
|
|
|
type EdifactMessageIdentifier struct {
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactOneWayAgreement is the Edifact one way agreement.
|
|
|
|
type EdifactOneWayAgreement struct {
|
|
|
|
SenderBusinessIdentity *BusinessIdentity `json:"senderBusinessIdentity,omitempty"`
|
|
|
|
ReceiverBusinessIdentity *BusinessIdentity `json:"receiverBusinessIdentity,omitempty"`
|
|
|
|
ProtocolSettings *EdifactProtocolSettings `json:"protocolSettings,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactProcessingSettings is the Edifact agreement protocol settings.
|
|
|
|
type EdifactProcessingSettings struct {
|
|
|
|
MaskSecurityInfo *bool `json:"maskSecurityInfo,omitempty"`
|
|
|
|
PreserveInterchange *bool `json:"preserveInterchange,omitempty"`
|
|
|
|
SuspendInterchangeOnError *bool `json:"suspendInterchangeOnError,omitempty"`
|
|
|
|
CreateEmptyXMLTagsForTrailingSeparators *bool `json:"createEmptyXmlTagsForTrailingSeparators,omitempty"`
|
|
|
|
UseDotAsDecimalSeparator *bool `json:"useDotAsDecimalSeparator,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactProtocolSettings is the Edifact agreement protocol settings.
|
|
|
|
type EdifactProtocolSettings struct {
|
|
|
|
ValidationSettings *EdifactValidationSettings `json:"validationSettings,omitempty"`
|
|
|
|
FramingSettings *EdifactFramingSettings `json:"framingSettings,omitempty"`
|
|
|
|
EnvelopeSettings *EdifactEnvelopeSettings `json:"envelopeSettings,omitempty"`
|
|
|
|
AcknowledgementSettings *EdifactAcknowledgementSettings `json:"acknowledgementSettings,omitempty"`
|
|
|
|
MessageFilter *EdifactMessageFilter `json:"messageFilter,omitempty"`
|
|
|
|
ProcessingSettings *EdifactProcessingSettings `json:"processingSettings,omitempty"`
|
|
|
|
EnvelopeOverrides *[]EdifactEnvelopeOverride `json:"envelopeOverrides,omitempty"`
|
|
|
|
MessageFilterList *[]EdifactMessageIdentifier `json:"messageFilterList,omitempty"`
|
|
|
|
SchemaReferences *[]EdifactSchemaReference `json:"schemaReferences,omitempty"`
|
|
|
|
ValidationOverrides *[]EdifactValidationOverride `json:"validationOverrides,omitempty"`
|
|
|
|
EdifactDelimiterOverrides *[]EdifactDelimiterOverride `json:"edifactDelimiterOverrides,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactSchemaReference is the Edifact schema reference.
|
|
|
|
type EdifactSchemaReference struct {
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
MessageVersion *string `json:"messageVersion,omitempty"`
|
|
|
|
MessageRelease *string `json:"messageRelease,omitempty"`
|
|
|
|
SenderApplicationID *string `json:"senderApplicationId,omitempty"`
|
|
|
|
SenderApplicationQualifier *string `json:"senderApplicationQualifier,omitempty"`
|
|
|
|
AssociationAssignedCode *string `json:"associationAssignedCode,omitempty"`
|
|
|
|
SchemaName *string `json:"schemaName,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactValidationOverride is the Edifact validation override settings.
|
|
|
|
type EdifactValidationOverride struct {
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
EnforceCharacterSet *bool `json:"enforceCharacterSet,omitempty"`
|
|
|
|
ValidateEdiTypes *bool `json:"validateEdiTypes,omitempty"`
|
|
|
|
ValidateXsdTypes *bool `json:"validateXsdTypes,omitempty"`
|
|
|
|
AllowLeadingAndTrailingSpacesAndZeroes *bool `json:"allowLeadingAndTrailingSpacesAndZeroes,omitempty"`
|
|
|
|
TrailingSeparatorPolicy TrailingSeparatorPolicy `json:"trailingSeparatorPolicy,omitempty"`
|
|
|
|
TrimLeadingAndTrailingSpacesAndZeroes *bool `json:"trimLeadingAndTrailingSpacesAndZeroes,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// EdifactValidationSettings is the Edifact agreement validation settings.
|
|
|
|
type EdifactValidationSettings struct {
|
|
|
|
ValidateCharacterSet *bool `json:"validateCharacterSet,omitempty"`
|
|
|
|
CheckDuplicateInterchangeControlNumber *bool `json:"checkDuplicateInterchangeControlNumber,omitempty"`
|
|
|
|
InterchangeControlNumberValidityDays *int32 `json:"interchangeControlNumberValidityDays,omitempty"`
|
|
|
|
CheckDuplicateGroupControlNumber *bool `json:"checkDuplicateGroupControlNumber,omitempty"`
|
|
|
|
CheckDuplicateTransactionSetControlNumber *bool `json:"checkDuplicateTransactionSetControlNumber,omitempty"`
|
|
|
|
ValidateEdiTypes *bool `json:"validateEdiTypes,omitempty"`
|
|
|
|
ValidateXsdTypes *bool `json:"validateXsdTypes,omitempty"`
|
|
|
|
AllowLeadingAndTrailingSpacesAndZeroes *bool `json:"allowLeadingAndTrailingSpacesAndZeroes,omitempty"`
|
|
|
|
TrimLeadingAndTrailingSpacesAndZeroes *bool `json:"trimLeadingAndTrailingSpacesAndZeroes,omitempty"`
|
|
|
|
TrailingSeparatorPolicy TrailingSeparatorPolicy `json:"trailingSeparatorPolicy,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// ErrorProperties is error properties indicate why the Logic service was not able to process the incoming request. The
|
|
|
|
// reason is provided in the error message.
|
2017-08-05 18:30:20 +00:00
|
|
|
type ErrorProperties struct {
|
|
|
|
Code *string `json:"code,omitempty"`
|
|
|
|
Message *string `json:"message,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// ErrorResponse is error reponse indicates Logic service is not able to process the incoming request. The error
|
|
|
|
// property contains the error details.
|
2017-08-05 18:30:20 +00:00
|
|
|
type ErrorResponse struct {
|
|
|
|
Error *ErrorProperties `json:"error,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// GenerateUpgradedDefinitionParameters is the parameters to generate upgraded definition.
|
2017-08-05 18:30:20 +00:00
|
|
|
type GenerateUpgradedDefinitionParameters struct {
|
|
|
|
TargetSchemaVersion *string `json:"targetSchemaVersion,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetCallbackURLParameters is the callback url parameters.
|
|
|
|
type GetCallbackURLParameters struct {
|
|
|
|
NotAfter *date.Time `json:"notAfter,omitempty"`
|
|
|
|
KeyType KeyType `json:"keyType,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccount is the integration account.
|
|
|
|
type IntegrationAccount struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
Properties *map[string]interface{} `json:"properties,omitempty"`
|
|
|
|
Sku *IntegrationAccountSku `json:"sku,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountAgreement is the integration account agreement.
|
|
|
|
type IntegrationAccountAgreement struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
*IntegrationAccountAgreementProperties `json:"properties,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountAgreementFilter is the integration account agreement filter for odata query.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountAgreementFilter struct {
|
|
|
|
AgreementType AgreementType `json:"agreementType,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountAgreementListResult is the list of integration account agreements.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountAgreementListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]IntegrationAccountAgreement `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountAgreementListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client IntegrationAccountAgreementListResult) IntegrationAccountAgreementListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountAgreementProperties is the integration account agreement properties.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountAgreementProperties struct {
|
|
|
|
CreatedTime *date.Time `json:"createdTime,omitempty"`
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
Metadata *map[string]interface{} `json:"metadata,omitempty"`
|
|
|
|
AgreementType AgreementType `json:"agreementType,omitempty"`
|
|
|
|
HostPartner *string `json:"hostPartner,omitempty"`
|
|
|
|
GuestPartner *string `json:"guestPartner,omitempty"`
|
|
|
|
HostIdentity *BusinessIdentity `json:"hostIdentity,omitempty"`
|
|
|
|
GuestIdentity *BusinessIdentity `json:"guestIdentity,omitempty"`
|
|
|
|
Content *AgreementContent `json:"content,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountCertificate is the integration account certificate.
|
|
|
|
type IntegrationAccountCertificate struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
*IntegrationAccountCertificateProperties `json:"properties,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountCertificateListResult is the list of integration account certificates.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountCertificateListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]IntegrationAccountCertificate `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountCertificateListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client IntegrationAccountCertificateListResult) IntegrationAccountCertificateListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountCertificateProperties is the integration account certificate properties.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountCertificateProperties struct {
|
|
|
|
CreatedTime *date.Time `json:"createdTime,omitempty"`
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
Metadata *map[string]interface{} `json:"metadata,omitempty"`
|
|
|
|
Key *KeyVaultKeyReference `json:"key,omitempty"`
|
|
|
|
PublicCertificate *string `json:"publicCertificate,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountListResult is the list of integration accounts.
|
|
|
|
type IntegrationAccountListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]IntegrationAccount `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client IntegrationAccountListResult) IntegrationAccountListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountMap is the integration account map.
|
|
|
|
type IntegrationAccountMap struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
*IntegrationAccountMapProperties `json:"properties,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountMapFilter is the integration account map filter for odata query.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountMapFilter struct {
|
|
|
|
MapType MapType `json:"mapType,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountMapListResult is the list of integration account maps.
|
|
|
|
type IntegrationAccountMapListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]IntegrationAccountMap `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountMapListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client IntegrationAccountMapListResult) IntegrationAccountMapListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountMapProperties is the integration account map.
|
|
|
|
type IntegrationAccountMapProperties struct {
|
|
|
|
MapType MapType `json:"mapType,omitempty"`
|
|
|
|
ParametersSchema *IntegrationAccountMapPropertiesParametersSchema `json:"parametersSchema,omitempty"`
|
|
|
|
CreatedTime *date.Time `json:"createdTime,omitempty"`
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
Content *string `json:"content,omitempty"`
|
|
|
|
ContentType *string `json:"contentType,omitempty"`
|
|
|
|
ContentLink *ContentLink `json:"contentLink,omitempty"`
|
|
|
|
Metadata *map[string]interface{} `json:"metadata,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountMapPropertiesParametersSchema is the parameters schema of integration account map.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountMapPropertiesParametersSchema struct {
|
|
|
|
Ref *string `json:"ref,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountPartner is the integration account partner.
|
|
|
|
type IntegrationAccountPartner struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
*IntegrationAccountPartnerProperties `json:"properties,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountPartnerFilter is the integration account partner filter for odata query.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountPartnerFilter struct {
|
|
|
|
PartnerType PartnerType `json:"partnerType,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountPartnerListResult is the list of integration account partners.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountPartnerListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]IntegrationAccountPartner `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountPartnerListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client IntegrationAccountPartnerListResult) IntegrationAccountPartnerListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountPartnerProperties is the integration account partner properties.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountPartnerProperties struct {
|
|
|
|
PartnerType PartnerType `json:"partnerType,omitempty"`
|
|
|
|
CreatedTime *date.Time `json:"createdTime,omitempty"`
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
Metadata *map[string]interface{} `json:"metadata,omitempty"`
|
|
|
|
Content *PartnerContent `json:"content,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountSchema is the integration account schema.
|
|
|
|
type IntegrationAccountSchema struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
*IntegrationAccountSchemaProperties `json:"properties,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountSchemaFilter is the integration account schema filter for odata query.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountSchemaFilter struct {
|
|
|
|
SchemaType SchemaType `json:"schemaType,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountSchemaListResult is the list of integration account schemas.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountSchemaListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]IntegrationAccountSchema `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountSchemaListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client IntegrationAccountSchemaListResult) IntegrationAccountSchemaListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountSchemaProperties is the integration account schema properties.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountSchemaProperties struct {
|
|
|
|
SchemaType SchemaType `json:"schemaType,omitempty"`
|
|
|
|
TargetNamespace *string `json:"targetNamespace,omitempty"`
|
|
|
|
DocumentName *string `json:"documentName,omitempty"`
|
|
|
|
FileName *string `json:"fileName,omitempty"`
|
|
|
|
CreatedTime *date.Time `json:"createdTime,omitempty"`
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
Metadata *map[string]interface{} `json:"metadata,omitempty"`
|
|
|
|
Content *string `json:"content,omitempty"`
|
|
|
|
ContentType *string `json:"contentType,omitempty"`
|
|
|
|
ContentLink *ContentLink `json:"contentLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountSession is the integration account session.
|
|
|
|
type IntegrationAccountSession struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
*IntegrationAccountSessionProperties `json:"properties,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountSessionFilter is the integration account session filter.
|
|
|
|
type IntegrationAccountSessionFilter struct {
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountSessionListResult is the list of integration account sessions.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountSessionListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]IntegrationAccountSession `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountSessionListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client IntegrationAccountSessionListResult) IntegrationAccountSessionListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// IntegrationAccountSessionProperties is the integration account session properties.
|
2017-08-05 18:30:20 +00:00
|
|
|
type IntegrationAccountSessionProperties struct {
|
|
|
|
CreatedTime *date.Time `json:"createdTime,omitempty"`
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
Content *map[string]interface{} `json:"content,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// IntegrationAccountSku is the integration account sku.
|
|
|
|
type IntegrationAccountSku struct {
|
|
|
|
Name IntegrationAccountSkuName `json:"name,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// KeyVaultKeyReference is the reference to the key vault key.
|
|
|
|
type KeyVaultKeyReference struct {
|
|
|
|
KeyVault *KeyVaultKeyReferenceKeyVault `json:"keyVault,omitempty"`
|
|
|
|
KeyName *string `json:"keyName,omitempty"`
|
|
|
|
KeyVersion *string `json:"keyVersion,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// KeyVaultKeyReferenceKeyVault is the key vault reference.
|
|
|
|
type KeyVaultKeyReferenceKeyVault struct {
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Operation is logic REST API operation
|
|
|
|
type Operation struct {
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Display *OperationDisplay `json:"display,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// OperationDisplay is the object that represents the operation.
|
|
|
|
type OperationDisplay struct {
|
|
|
|
Provider *string `json:"provider,omitempty"`
|
|
|
|
Resource *string `json:"resource,omitempty"`
|
|
|
|
Operation *string `json:"operation,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// OperationListResult is 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.
|
2017-08-05 18:30:20 +00:00
|
|
|
type OperationListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]Operation `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// OperationListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client OperationListResult) OperationListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// PartnerContent is the integration account partner content.
|
|
|
|
type PartnerContent struct {
|
|
|
|
B2b *B2BPartnerContent `json:"b2b,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// RecurrenceSchedule is the recurrence schedule.
|
|
|
|
type RecurrenceSchedule struct {
|
|
|
|
Minutes *[]int32 `json:"minutes,omitempty"`
|
|
|
|
Hours *[]int32 `json:"hours,omitempty"`
|
|
|
|
WeekDays *[]DaysOfWeek `json:"weekDays,omitempty"`
|
|
|
|
MonthDays *[]int32 `json:"monthDays,omitempty"`
|
|
|
|
MonthlyOccurrences *[]RecurrenceScheduleOccurrence `json:"monthlyOccurrences,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// RecurrenceScheduleOccurrence is the recurrence schedule occurence.
|
|
|
|
type RecurrenceScheduleOccurrence struct {
|
|
|
|
Day DayOfWeek `json:"day,omitempty"`
|
|
|
|
Occurrence *int32 `json:"occurrence,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegenerateActionParameter is the access key regenerate action content.
|
|
|
|
type RegenerateActionParameter struct {
|
|
|
|
KeyType KeyType `json:"keyType,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resource is the base resource type.
|
|
|
|
type Resource struct {
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResourceReference is the resource reference.
|
|
|
|
type ResourceReference struct {
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// RetryHistory is the retry history.
|
|
|
|
type RetryHistory struct {
|
|
|
|
StartTime *date.Time `json:"startTime,omitempty"`
|
|
|
|
EndTime *date.Time `json:"endTime,omitempty"`
|
|
|
|
Code *string `json:"code,omitempty"`
|
|
|
|
ClientRequestID *string `json:"clientRequestId,omitempty"`
|
|
|
|
ServiceRequestID *string `json:"serviceRequestId,omitempty"`
|
|
|
|
Error *ErrorResponse `json:"error,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetObject is
|
|
|
|
type SetObject struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *map[string]interface{} `json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sku is the sku type.
|
|
|
|
type Sku struct {
|
|
|
|
Name SkuName `json:"name,omitempty"`
|
|
|
|
Plan *ResourceReference `json:"plan,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// SubResource is the sub resource type.
|
|
|
|
type SubResource struct {
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Workflow is the workflow type.
|
|
|
|
type Workflow struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
*WorkflowProperties `json:"properties,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowFilter is the workflow filter.
|
|
|
|
type WorkflowFilter struct {
|
|
|
|
State WorkflowState `json:"state,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowListResult is the list of workflows.
|
|
|
|
type WorkflowListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]Workflow `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client WorkflowListResult) WorkflowListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowOutputParameter is the workflow output parameter.
|
|
|
|
type WorkflowOutputParameter struct {
|
|
|
|
Type ParameterType `json:"type,omitempty"`
|
|
|
|
Value *map[string]interface{} `json:"value,omitempty"`
|
|
|
|
Metadata *map[string]interface{} `json:"metadata,omitempty"`
|
|
|
|
Description *string `json:"description,omitempty"`
|
|
|
|
Error *map[string]interface{} `json:"error,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowParameter is the workflow parameters.
|
|
|
|
type WorkflowParameter struct {
|
|
|
|
Type ParameterType `json:"type,omitempty"`
|
|
|
|
Value *map[string]interface{} `json:"value,omitempty"`
|
|
|
|
Metadata *map[string]interface{} `json:"metadata,omitempty"`
|
|
|
|
Description *string `json:"description,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowProperties is the workflow properties.
|
|
|
|
type WorkflowProperties struct {
|
|
|
|
ProvisioningState WorkflowProvisioningState `json:"provisioningState,omitempty"`
|
|
|
|
CreatedTime *date.Time `json:"createdTime,omitempty"`
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
State WorkflowState `json:"state,omitempty"`
|
|
|
|
Version *string `json:"version,omitempty"`
|
|
|
|
AccessEndpoint *string `json:"accessEndpoint,omitempty"`
|
|
|
|
Sku *Sku `json:"sku,omitempty"`
|
|
|
|
IntegrationAccount *ResourceReference `json:"integrationAccount,omitempty"`
|
|
|
|
Definition *map[string]interface{} `json:"definition,omitempty"`
|
|
|
|
Parameters *map[string]*WorkflowParameter `json:"parameters,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRun is the workflow run.
|
|
|
|
type WorkflowRun struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
*WorkflowRunProperties `json:"properties,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunAction is the workflow run action.
|
|
|
|
type WorkflowRunAction struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
*WorkflowRunActionProperties `json:"properties,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunActionFilter is the workflow run action filter.
|
|
|
|
type WorkflowRunActionFilter struct {
|
|
|
|
Status WorkflowStatus `json:"status,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunActionListResult is the list of workflow run actions.
|
|
|
|
type WorkflowRunActionListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]WorkflowRunAction `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunActionListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client WorkflowRunActionListResult) WorkflowRunActionListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunActionProperties is the workflow run action properties.
|
|
|
|
type WorkflowRunActionProperties struct {
|
|
|
|
StartTime *date.Time `json:"startTime,omitempty"`
|
|
|
|
EndTime *date.Time `json:"endTime,omitempty"`
|
|
|
|
Status WorkflowStatus `json:"status,omitempty"`
|
|
|
|
Code *string `json:"code,omitempty"`
|
|
|
|
Error *map[string]interface{} `json:"error,omitempty"`
|
|
|
|
TrackingID *string `json:"trackingId,omitempty"`
|
|
|
|
Correlation *Correlation `json:"correlation,omitempty"`
|
|
|
|
InputsLink *ContentLink `json:"inputsLink,omitempty"`
|
|
|
|
OutputsLink *ContentLink `json:"outputsLink,omitempty"`
|
|
|
|
TrackedProperties *map[string]interface{} `json:"trackedProperties,omitempty"`
|
|
|
|
RetryHistory *[]RetryHistory `json:"retryHistory,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunFilter is the workflow run filter.
|
|
|
|
type WorkflowRunFilter struct {
|
|
|
|
Status WorkflowStatus `json:"status,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunListResult is the list of workflow runs.
|
|
|
|
type WorkflowRunListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]WorkflowRun `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client WorkflowRunListResult) WorkflowRunListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunProperties is the workflow run properties.
|
|
|
|
type WorkflowRunProperties struct {
|
|
|
|
StartTime *date.Time `json:"startTime,omitempty"`
|
|
|
|
EndTime *date.Time `json:"endTime,omitempty"`
|
|
|
|
Status WorkflowStatus `json:"status,omitempty"`
|
|
|
|
Code *string `json:"code,omitempty"`
|
|
|
|
Error *map[string]interface{} `json:"error,omitempty"`
|
|
|
|
CorrelationID *string `json:"correlationId,omitempty"`
|
|
|
|
Correlation *Correlation `json:"correlation,omitempty"`
|
|
|
|
Workflow *ResourceReference `json:"workflow,omitempty"`
|
|
|
|
Trigger *WorkflowRunTrigger `json:"trigger,omitempty"`
|
|
|
|
Outputs *map[string]*WorkflowOutputParameter `json:"outputs,omitempty"`
|
|
|
|
Response *WorkflowRunTrigger `json:"response,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowRunTrigger is the workflow run trigger.
|
|
|
|
type WorkflowRunTrigger struct {
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Inputs *map[string]interface{} `json:"inputs,omitempty"`
|
|
|
|
InputsLink *ContentLink `json:"inputsLink,omitempty"`
|
|
|
|
Outputs *map[string]interface{} `json:"outputs,omitempty"`
|
|
|
|
OutputsLink *ContentLink `json:"outputsLink,omitempty"`
|
|
|
|
StartTime *date.Time `json:"startTime,omitempty"`
|
|
|
|
EndTime *date.Time `json:"endTime,omitempty"`
|
|
|
|
TrackingID *string `json:"trackingId,omitempty"`
|
|
|
|
Correlation *Correlation `json:"correlation,omitempty"`
|
|
|
|
Code *string `json:"code,omitempty"`
|
|
|
|
Status WorkflowStatus `json:"status,omitempty"`
|
|
|
|
Error *map[string]interface{} `json:"error,omitempty"`
|
|
|
|
TrackedProperties *map[string]interface{} `json:"trackedProperties,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTrigger is the workflow trigger.
|
|
|
|
type WorkflowTrigger struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
*WorkflowTriggerProperties `json:"properties,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerCallbackURL is the workflow trigger callback URL.
|
|
|
|
type WorkflowTriggerCallbackURL struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *string `json:"value,omitempty"`
|
|
|
|
Method *string `json:"method,omitempty"`
|
|
|
|
BasePath *string `json:"basePath,omitempty"`
|
|
|
|
RelativePath *string `json:"relativePath,omitempty"`
|
|
|
|
RelativePathParameters *[]string `json:"relativePathParameters,omitempty"`
|
|
|
|
Queries *WorkflowTriggerListCallbackURLQueries `json:"queries,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerFilter is the workflow trigger filter.
|
|
|
|
type WorkflowTriggerFilter struct {
|
|
|
|
State WorkflowState `json:"state,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerHistory is the workflow trigger history.
|
|
|
|
type WorkflowTriggerHistory struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
*WorkflowTriggerHistoryProperties `json:"properties,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerHistoryFilter is the workflow trigger history filter.
|
|
|
|
type WorkflowTriggerHistoryFilter struct {
|
|
|
|
Status WorkflowStatus `json:"status,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerHistoryListResult is the list of workflow trigger histories.
|
|
|
|
type WorkflowTriggerHistoryListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]WorkflowTriggerHistory `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerHistoryListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client WorkflowTriggerHistoryListResult) WorkflowTriggerHistoryListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerHistoryProperties is the workflow trigger history properties.
|
|
|
|
type WorkflowTriggerHistoryProperties struct {
|
|
|
|
StartTime *date.Time `json:"startTime,omitempty"`
|
|
|
|
EndTime *date.Time `json:"endTime,omitempty"`
|
|
|
|
Status WorkflowStatus `json:"status,omitempty"`
|
|
|
|
Code *string `json:"code,omitempty"`
|
|
|
|
Error *map[string]interface{} `json:"error,omitempty"`
|
|
|
|
TrackingID *string `json:"trackingId,omitempty"`
|
|
|
|
Correlation *Correlation `json:"correlation,omitempty"`
|
|
|
|
InputsLink *ContentLink `json:"inputsLink,omitempty"`
|
|
|
|
OutputsLink *ContentLink `json:"outputsLink,omitempty"`
|
|
|
|
Fired *bool `json:"fired,omitempty"`
|
|
|
|
Run *ResourceReference `json:"run,omitempty"`
|
|
|
|
}
|
|
|
|
|
2017-10-01 08:13:39 +00:00
|
|
|
// WorkflowTriggerListCallbackURLQueries is gets the workflow trigger callback URL query parameters.
|
2017-08-05 18:30:20 +00:00
|
|
|
type WorkflowTriggerListCallbackURLQueries struct {
|
|
|
|
APIVersion *string `json:"api-version,omitempty"`
|
|
|
|
Sp *string `json:"sp,omitempty"`
|
|
|
|
Sv *string `json:"sv,omitempty"`
|
|
|
|
Sig *string `json:"sig,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerListResult is the list of workflow triggers.
|
|
|
|
type WorkflowTriggerListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]WorkflowTrigger `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client WorkflowTriggerListResult) WorkflowTriggerListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerProperties is the workflow trigger properties.
|
|
|
|
type WorkflowTriggerProperties struct {
|
|
|
|
ProvisioningState WorkflowTriggerProvisioningState `json:"provisioningState,omitempty"`
|
|
|
|
CreatedTime *date.Time `json:"createdTime,omitempty"`
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
State WorkflowState `json:"state,omitempty"`
|
|
|
|
Status WorkflowStatus `json:"status,omitempty"`
|
|
|
|
LastExecutionTime *date.Time `json:"lastExecutionTime,omitempty"`
|
|
|
|
NextExecutionTime *date.Time `json:"nextExecutionTime,omitempty"`
|
|
|
|
Recurrence *WorkflowTriggerRecurrence `json:"recurrence,omitempty"`
|
|
|
|
Workflow *ResourceReference `json:"workflow,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowTriggerRecurrence is the workflow trigger recurrence.
|
|
|
|
type WorkflowTriggerRecurrence struct {
|
|
|
|
Frequency RecurrenceFrequency `json:"frequency,omitempty"`
|
|
|
|
Interval *int32 `json:"interval,omitempty"`
|
|
|
|
StartTime *date.Time `json:"startTime,omitempty"`
|
|
|
|
EndTime *date.Time `json:"endTime,omitempty"`
|
|
|
|
TimeZone *string `json:"timeZone,omitempty"`
|
|
|
|
Schedule *RecurrenceSchedule `json:"schedule,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowVersion is the workflow version.
|
|
|
|
type WorkflowVersion struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
ID *string `json:"id,omitempty"`
|
|
|
|
Name *string `json:"name,omitempty"`
|
|
|
|
Type *string `json:"type,omitempty"`
|
|
|
|
Location *string `json:"location,omitempty"`
|
|
|
|
Tags *map[string]*string `json:"tags,omitempty"`
|
|
|
|
*WorkflowVersionProperties `json:"properties,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowVersionListResult is the list of workflow versions.
|
|
|
|
type WorkflowVersionListResult struct {
|
|
|
|
autorest.Response `json:"-"`
|
|
|
|
Value *[]WorkflowVersion `json:"value,omitempty"`
|
|
|
|
NextLink *string `json:"nextLink,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowVersionListResultPreparer prepares a request to retrieve the next set of results. It returns
|
|
|
|
// nil if no more results exist.
|
|
|
|
func (client WorkflowVersionListResult) WorkflowVersionListResultPreparer() (*http.Request, error) {
|
|
|
|
if client.NextLink == nil || len(to.String(client.NextLink)) <= 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return autorest.Prepare(&http.Request{},
|
|
|
|
autorest.AsJSON(),
|
|
|
|
autorest.AsGet(),
|
|
|
|
autorest.WithBaseURL(to.String(client.NextLink)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkflowVersionProperties is the workflow version properties.
|
|
|
|
type WorkflowVersionProperties struct {
|
|
|
|
CreatedTime *date.Time `json:"createdTime,omitempty"`
|
|
|
|
ChangedTime *date.Time `json:"changedTime,omitempty"`
|
|
|
|
State WorkflowState `json:"state,omitempty"`
|
|
|
|
Version *string `json:"version,omitempty"`
|
|
|
|
AccessEndpoint *string `json:"accessEndpoint,omitempty"`
|
|
|
|
Sku *Sku `json:"sku,omitempty"`
|
|
|
|
IntegrationAccount *ResourceReference `json:"integrationAccount,omitempty"`
|
|
|
|
Definition *map[string]interface{} `json:"definition,omitempty"`
|
|
|
|
Parameters *map[string]*WorkflowParameter `json:"parameters,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12AcknowledgementSettings is the X12 agreement acknowledgement settings.
|
|
|
|
type X12AcknowledgementSettings struct {
|
|
|
|
NeedTechnicalAcknowledgement *bool `json:"needTechnicalAcknowledgement,omitempty"`
|
|
|
|
BatchTechnicalAcknowledgements *bool `json:"batchTechnicalAcknowledgements,omitempty"`
|
|
|
|
NeedFunctionalAcknowledgement *bool `json:"needFunctionalAcknowledgement,omitempty"`
|
|
|
|
FunctionalAcknowledgementVersion *string `json:"functionalAcknowledgementVersion,omitempty"`
|
|
|
|
BatchFunctionalAcknowledgements *bool `json:"batchFunctionalAcknowledgements,omitempty"`
|
|
|
|
NeedImplementationAcknowledgement *bool `json:"needImplementationAcknowledgement,omitempty"`
|
|
|
|
ImplementationAcknowledgementVersion *string `json:"implementationAcknowledgementVersion,omitempty"`
|
|
|
|
BatchImplementationAcknowledgements *bool `json:"batchImplementationAcknowledgements,omitempty"`
|
|
|
|
NeedLoopForValidMessages *bool `json:"needLoopForValidMessages,omitempty"`
|
|
|
|
SendSynchronousAcknowledgement *bool `json:"sendSynchronousAcknowledgement,omitempty"`
|
|
|
|
AcknowledgementControlNumberPrefix *string `json:"acknowledgementControlNumberPrefix,omitempty"`
|
|
|
|
AcknowledgementControlNumberSuffix *string `json:"acknowledgementControlNumberSuffix,omitempty"`
|
|
|
|
AcknowledgementControlNumberLowerBound *int32 `json:"acknowledgementControlNumberLowerBound,omitempty"`
|
|
|
|
AcknowledgementControlNumberUpperBound *int32 `json:"acknowledgementControlNumberUpperBound,omitempty"`
|
|
|
|
RolloverAcknowledgementControlNumber *bool `json:"rolloverAcknowledgementControlNumber,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12AgreementContent is the X12 agreement content.
|
|
|
|
type X12AgreementContent struct {
|
|
|
|
ReceiveAgreement *X12OneWayAgreement `json:"receiveAgreement,omitempty"`
|
|
|
|
SendAgreement *X12OneWayAgreement `json:"sendAgreement,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12DelimiterOverrides is the X12 delimiter override settings.
|
|
|
|
type X12DelimiterOverrides struct {
|
|
|
|
ProtocolVersion *string `json:"protocolVersion,omitempty"`
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
DataElementSeparator *int32 `json:"dataElementSeparator,omitempty"`
|
|
|
|
ComponentSeparator *int32 `json:"componentSeparator,omitempty"`
|
|
|
|
SegmentTerminator *int32 `json:"segmentTerminator,omitempty"`
|
|
|
|
SegmentTerminatorSuffix SegmentTerminatorSuffix `json:"segmentTerminatorSuffix,omitempty"`
|
|
|
|
ReplaceCharacter *int32 `json:"replaceCharacter,omitempty"`
|
|
|
|
ReplaceSeparatorsInPayload *bool `json:"replaceSeparatorsInPayload,omitempty"`
|
|
|
|
TargetNamespace *string `json:"targetNamespace,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12EnvelopeOverride is the X12 envelope override settings.
|
|
|
|
type X12EnvelopeOverride struct {
|
|
|
|
TargetNamespace *string `json:"targetNamespace,omitempty"`
|
|
|
|
ProtocolVersion *string `json:"protocolVersion,omitempty"`
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
ResponsibleAgencyCode *string `json:"responsibleAgencyCode,omitempty"`
|
|
|
|
HeaderVersion *string `json:"headerVersion,omitempty"`
|
|
|
|
SenderApplicationID *string `json:"senderApplicationId,omitempty"`
|
|
|
|
ReceiverApplicationID *string `json:"receiverApplicationId,omitempty"`
|
|
|
|
FunctionalIdentifierCode *string `json:"functionalIdentifierCode,omitempty"`
|
|
|
|
DateFormat X12DateFormat `json:"dateFormat,omitempty"`
|
|
|
|
TimeFormat X12TimeFormat `json:"timeFormat,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12EnvelopeSettings is the X12 agreement envelope settings.
|
|
|
|
type X12EnvelopeSettings struct {
|
|
|
|
ControlStandardsID *int32 `json:"controlStandardsId,omitempty"`
|
|
|
|
UseControlStandardsIDAsRepetitionCharacter *bool `json:"useControlStandardsIdAsRepetitionCharacter,omitempty"`
|
|
|
|
SenderApplicationID *string `json:"senderApplicationId,omitempty"`
|
|
|
|
ReceiverApplicationID *string `json:"receiverApplicationId,omitempty"`
|
|
|
|
ControlVersionNumber *string `json:"controlVersionNumber,omitempty"`
|
|
|
|
InterchangeControlNumberLowerBound *int32 `json:"interchangeControlNumberLowerBound,omitempty"`
|
|
|
|
InterchangeControlNumberUpperBound *int32 `json:"interchangeControlNumberUpperBound,omitempty"`
|
|
|
|
RolloverInterchangeControlNumber *bool `json:"rolloverInterchangeControlNumber,omitempty"`
|
|
|
|
EnableDefaultGroupHeaders *bool `json:"enableDefaultGroupHeaders,omitempty"`
|
|
|
|
FunctionalGroupID *string `json:"functionalGroupId,omitempty"`
|
|
|
|
GroupControlNumberLowerBound *int32 `json:"groupControlNumberLowerBound,omitempty"`
|
|
|
|
GroupControlNumberUpperBound *int32 `json:"groupControlNumberUpperBound,omitempty"`
|
|
|
|
RolloverGroupControlNumber *bool `json:"rolloverGroupControlNumber,omitempty"`
|
|
|
|
GroupHeaderAgencyCode *string `json:"groupHeaderAgencyCode,omitempty"`
|
|
|
|
GroupHeaderVersion *string `json:"groupHeaderVersion,omitempty"`
|
|
|
|
TransactionSetControlNumberLowerBound *int32 `json:"transactionSetControlNumberLowerBound,omitempty"`
|
|
|
|
TransactionSetControlNumberUpperBound *int32 `json:"transactionSetControlNumberUpperBound,omitempty"`
|
|
|
|
RolloverTransactionSetControlNumber *bool `json:"rolloverTransactionSetControlNumber,omitempty"`
|
|
|
|
TransactionSetControlNumberPrefix *string `json:"transactionSetControlNumberPrefix,omitempty"`
|
|
|
|
TransactionSetControlNumberSuffix *string `json:"transactionSetControlNumberSuffix,omitempty"`
|
|
|
|
OverwriteExistingTransactionSetControlNumber *bool `json:"overwriteExistingTransactionSetControlNumber,omitempty"`
|
|
|
|
GroupHeaderDateFormat X12DateFormat `json:"groupHeaderDateFormat,omitempty"`
|
|
|
|
GroupHeaderTimeFormat X12TimeFormat `json:"groupHeaderTimeFormat,omitempty"`
|
|
|
|
UsageIndicator UsageIndicator `json:"usageIndicator,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12FramingSettings is the X12 agreement framing settings.
|
|
|
|
type X12FramingSettings struct {
|
|
|
|
DataElementSeparator *int32 `json:"dataElementSeparator,omitempty"`
|
|
|
|
ComponentSeparator *int32 `json:"componentSeparator,omitempty"`
|
|
|
|
ReplaceSeparatorsInPayload *bool `json:"replaceSeparatorsInPayload,omitempty"`
|
|
|
|
ReplaceCharacter *int32 `json:"replaceCharacter,omitempty"`
|
|
|
|
SegmentTerminator *int32 `json:"segmentTerminator,omitempty"`
|
|
|
|
CharacterSet X12CharacterSet `json:"characterSet,omitempty"`
|
|
|
|
SegmentTerminatorSuffix SegmentTerminatorSuffix `json:"segmentTerminatorSuffix,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12MessageFilter is the X12 message filter for odata query.
|
|
|
|
type X12MessageFilter struct {
|
|
|
|
MessageFilterType MessageFilterType `json:"messageFilterType,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12MessageIdentifier is the X12 message identifier.
|
|
|
|
type X12MessageIdentifier struct {
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12OneWayAgreement is the X12 oneway agreement.
|
|
|
|
type X12OneWayAgreement struct {
|
|
|
|
SenderBusinessIdentity *BusinessIdentity `json:"senderBusinessIdentity,omitempty"`
|
|
|
|
ReceiverBusinessIdentity *BusinessIdentity `json:"receiverBusinessIdentity,omitempty"`
|
|
|
|
ProtocolSettings *X12ProtocolSettings `json:"protocolSettings,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12ProcessingSettings is the X12 processing settings.
|
|
|
|
type X12ProcessingSettings struct {
|
|
|
|
MaskSecurityInfo *bool `json:"maskSecurityInfo,omitempty"`
|
|
|
|
ConvertImpliedDecimal *bool `json:"convertImpliedDecimal,omitempty"`
|
|
|
|
PreserveInterchange *bool `json:"preserveInterchange,omitempty"`
|
|
|
|
SuspendInterchangeOnError *bool `json:"suspendInterchangeOnError,omitempty"`
|
|
|
|
CreateEmptyXMLTagsForTrailingSeparators *bool `json:"createEmptyXmlTagsForTrailingSeparators,omitempty"`
|
|
|
|
UseDotAsDecimalSeparator *bool `json:"useDotAsDecimalSeparator,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12ProtocolSettings is the X12 agreement protocol settings.
|
|
|
|
type X12ProtocolSettings struct {
|
|
|
|
ValidationSettings *X12ValidationSettings `json:"validationSettings,omitempty"`
|
|
|
|
FramingSettings *X12FramingSettings `json:"framingSettings,omitempty"`
|
|
|
|
EnvelopeSettings *X12EnvelopeSettings `json:"envelopeSettings,omitempty"`
|
|
|
|
AcknowledgementSettings *X12AcknowledgementSettings `json:"acknowledgementSettings,omitempty"`
|
|
|
|
MessageFilter *X12MessageFilter `json:"messageFilter,omitempty"`
|
|
|
|
SecuritySettings *X12SecuritySettings `json:"securitySettings,omitempty"`
|
|
|
|
ProcessingSettings *X12ProcessingSettings `json:"processingSettings,omitempty"`
|
|
|
|
EnvelopeOverrides *[]X12EnvelopeOverride `json:"envelopeOverrides,omitempty"`
|
|
|
|
ValidationOverrides *[]X12ValidationOverride `json:"validationOverrides,omitempty"`
|
|
|
|
MessageFilterList *[]X12MessageIdentifier `json:"messageFilterList,omitempty"`
|
|
|
|
SchemaReferences *[]X12SchemaReference `json:"schemaReferences,omitempty"`
|
|
|
|
X12DelimiterOverrides *[]X12DelimiterOverrides `json:"x12DelimiterOverrides,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12SchemaReference is the X12 schema reference.
|
|
|
|
type X12SchemaReference struct {
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
SenderApplicationID *string `json:"senderApplicationId,omitempty"`
|
|
|
|
SchemaVersion *string `json:"schemaVersion,omitempty"`
|
|
|
|
SchemaName *string `json:"schemaName,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12SecuritySettings is the X12 agreement security settings.
|
|
|
|
type X12SecuritySettings struct {
|
|
|
|
AuthorizationQualifier *string `json:"authorizationQualifier,omitempty"`
|
|
|
|
AuthorizationValue *string `json:"authorizationValue,omitempty"`
|
|
|
|
SecurityQualifier *string `json:"securityQualifier,omitempty"`
|
|
|
|
PasswordValue *string `json:"passwordValue,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12ValidationOverride is the X12 validation override settings.
|
|
|
|
type X12ValidationOverride struct {
|
|
|
|
MessageID *string `json:"messageId,omitempty"`
|
|
|
|
ValidateEdiTypes *bool `json:"validateEdiTypes,omitempty"`
|
|
|
|
ValidateXsdTypes *bool `json:"validateXsdTypes,omitempty"`
|
|
|
|
AllowLeadingAndTrailingSpacesAndZeroes *bool `json:"allowLeadingAndTrailingSpacesAndZeroes,omitempty"`
|
|
|
|
ValidateCharacterSet *bool `json:"validateCharacterSet,omitempty"`
|
|
|
|
TrimLeadingAndTrailingSpacesAndZeroes *bool `json:"trimLeadingAndTrailingSpacesAndZeroes,omitempty"`
|
|
|
|
TrailingSeparatorPolicy TrailingSeparatorPolicy `json:"trailingSeparatorPolicy,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// X12ValidationSettings is the X12 agreement validation settings.
|
|
|
|
type X12ValidationSettings struct {
|
|
|
|
ValidateCharacterSet *bool `json:"validateCharacterSet,omitempty"`
|
|
|
|
CheckDuplicateInterchangeControlNumber *bool `json:"checkDuplicateInterchangeControlNumber,omitempty"`
|
|
|
|
InterchangeControlNumberValidityDays *int32 `json:"interchangeControlNumberValidityDays,omitempty"`
|
|
|
|
CheckDuplicateGroupControlNumber *bool `json:"checkDuplicateGroupControlNumber,omitempty"`
|
|
|
|
CheckDuplicateTransactionSetControlNumber *bool `json:"checkDuplicateTransactionSetControlNumber,omitempty"`
|
|
|
|
ValidateEdiTypes *bool `json:"validateEdiTypes,omitempty"`
|
|
|
|
ValidateXsdTypes *bool `json:"validateXsdTypes,omitempty"`
|
|
|
|
AllowLeadingAndTrailingSpacesAndZeroes *bool `json:"allowLeadingAndTrailingSpacesAndZeroes,omitempty"`
|
|
|
|
TrimLeadingAndTrailingSpacesAndZeroes *bool `json:"trimLeadingAndTrailingSpacesAndZeroes,omitempty"`
|
|
|
|
TrailingSeparatorPolicy TrailingSeparatorPolicy `json:"trailingSeparatorPolicy,omitempty"`
|
|
|
|
}
|