@azure/eventgrid 5.0.0 → 5.1.0-alpha.20240116.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +635 -245
- package/dist/index.js.map +1 -1
- package/dist-esm/src/consumer.js +1 -1
- package/dist-esm/src/consumer.js.map +1 -1
- package/dist-esm/src/cryptoHelpers.browser.js.map +1 -1
- package/dist-esm/src/eventGridAuthenticationPolicy.js.map +1 -1
- package/dist-esm/src/eventGridClient.js +14 -8
- package/dist-esm/src/eventGridClient.js.map +1 -1
- package/dist-esm/src/generateSharedAccessSignature.js +1 -1
- package/dist-esm/src/generateSharedAccessSignature.js.map +1 -1
- package/dist-esm/src/generated/generatedClientContext.js +8 -3
- package/dist-esm/src/generated/generatedClientContext.js.map +1 -1
- package/dist-esm/src/generated/models/index.js.map +1 -1
- package/dist-esm/src/generated/models/mappers.js +606 -229
- package/dist-esm/src/generated/models/mappers.js.map +1 -1
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/predicates.js.map +1 -1
- package/dist-esm/src/tracing.js +1 -1
- package/dist-esm/src/tracing.js.map +1 -1
- package/dist-esm/src/util.js.map +1 -1
- package/package.json +7 -9
- package/types/eventgrid.d.ts +36 -0
package/dist/index.js
CHANGED
@@ -3,7 +3,6 @@
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
4
4
|
|
5
5
|
var coreAuth = require('@azure/core-auth');
|
6
|
-
var tslib = require('tslib');
|
7
6
|
var coreClient = require('@azure/core-client');
|
8
7
|
var coreTracing = require('@azure/core-tracing');
|
9
8
|
var uuid = require('uuid');
|
@@ -1206,6 +1205,71 @@ const StorageTaskCompletedEventData = {
|
|
1206
1205
|
}
|
1207
1206
|
}
|
1208
1207
|
};
|
1208
|
+
const StorageTaskAssignmentQueuedEventData = {
|
1209
|
+
type: {
|
1210
|
+
name: "Composite",
|
1211
|
+
className: "StorageTaskAssignmentQueuedEventData",
|
1212
|
+
modelProperties: {
|
1213
|
+
queuedDateTime: {
|
1214
|
+
serializedName: "queuedDateTime",
|
1215
|
+
required: true,
|
1216
|
+
type: {
|
1217
|
+
name: "String"
|
1218
|
+
}
|
1219
|
+
},
|
1220
|
+
taskExecutionId: {
|
1221
|
+
serializedName: "taskExecutionId",
|
1222
|
+
required: true,
|
1223
|
+
type: {
|
1224
|
+
name: "String"
|
1225
|
+
}
|
1226
|
+
}
|
1227
|
+
}
|
1228
|
+
}
|
1229
|
+
};
|
1230
|
+
const StorageTaskAssignmentCompletedEventData = {
|
1231
|
+
type: {
|
1232
|
+
name: "Composite",
|
1233
|
+
className: "StorageTaskAssignmentCompletedEventData",
|
1234
|
+
modelProperties: {
|
1235
|
+
status: {
|
1236
|
+
serializedName: "status",
|
1237
|
+
required: true,
|
1238
|
+
type: {
|
1239
|
+
name: "String"
|
1240
|
+
}
|
1241
|
+
},
|
1242
|
+
completedDateTime: {
|
1243
|
+
serializedName: "completedDateTime",
|
1244
|
+
required: true,
|
1245
|
+
type: {
|
1246
|
+
name: "String"
|
1247
|
+
}
|
1248
|
+
},
|
1249
|
+
taskExecutionId: {
|
1250
|
+
serializedName: "taskExecutionId",
|
1251
|
+
required: true,
|
1252
|
+
type: {
|
1253
|
+
name: "String"
|
1254
|
+
}
|
1255
|
+
},
|
1256
|
+
taskName: {
|
1257
|
+
serializedName: "taskName",
|
1258
|
+
required: true,
|
1259
|
+
type: {
|
1260
|
+
name: "String"
|
1261
|
+
}
|
1262
|
+
},
|
1263
|
+
summaryReportBlobUrl: {
|
1264
|
+
serializedName: "summaryReportBlobUrl",
|
1265
|
+
required: true,
|
1266
|
+
type: {
|
1267
|
+
name: "String"
|
1268
|
+
}
|
1269
|
+
}
|
1270
|
+
}
|
1271
|
+
}
|
1272
|
+
};
|
1209
1273
|
const EventHubCaptureFileCreatedEventData = {
|
1210
1274
|
type: {
|
1211
1275
|
name: "Composite",
|
@@ -7897,146 +7961,181 @@ const EventGridMqttClientCreatedOrUpdatedEventData = {
|
|
7897
7961
|
type: {
|
7898
7962
|
name: "Composite",
|
7899
7963
|
className: "EventGridMqttClientCreatedOrUpdatedEventData",
|
7900
|
-
modelProperties:
|
7964
|
+
modelProperties: {
|
7965
|
+
...EventGridMqttClientEventData.type.modelProperties,
|
7966
|
+
state: {
|
7901
7967
|
serializedName: "state",
|
7902
7968
|
required: true,
|
7903
7969
|
type: {
|
7904
7970
|
name: "String"
|
7905
7971
|
}
|
7906
|
-
},
|
7972
|
+
},
|
7973
|
+
createdOn: {
|
7907
7974
|
serializedName: "createdOn",
|
7908
7975
|
required: true,
|
7909
7976
|
type: {
|
7910
7977
|
name: "String"
|
7911
7978
|
}
|
7912
|
-
},
|
7979
|
+
},
|
7980
|
+
updatedOn: {
|
7913
7981
|
serializedName: "updatedOn",
|
7914
7982
|
required: true,
|
7915
7983
|
type: {
|
7916
7984
|
name: "String"
|
7917
7985
|
}
|
7918
|
-
},
|
7986
|
+
},
|
7987
|
+
attributes: {
|
7919
7988
|
serializedName: "attributes",
|
7920
7989
|
required: true,
|
7921
7990
|
type: {
|
7922
7991
|
name: "Dictionary",
|
7923
7992
|
value: { type: { name: "String" } }
|
7924
7993
|
}
|
7925
|
-
}
|
7994
|
+
}
|
7995
|
+
}
|
7926
7996
|
}
|
7927
7997
|
};
|
7928
7998
|
const EventGridMqttClientDeletedEventData = {
|
7929
7999
|
type: {
|
7930
8000
|
name: "Composite",
|
7931
8001
|
className: "EventGridMqttClientDeletedEventData",
|
7932
|
-
modelProperties:
|
8002
|
+
modelProperties: {
|
8003
|
+
...EventGridMqttClientEventData.type.modelProperties
|
8004
|
+
}
|
7933
8005
|
}
|
7934
8006
|
};
|
7935
8007
|
const EventGridMqttClientSessionConnectedEventData = {
|
7936
8008
|
type: {
|
7937
8009
|
name: "Composite",
|
7938
8010
|
className: "EventGridMqttClientSessionConnectedEventData",
|
7939
|
-
modelProperties:
|
8011
|
+
modelProperties: {
|
8012
|
+
...EventGridMqttClientEventData.type.modelProperties,
|
8013
|
+
clientSessionName: {
|
7940
8014
|
serializedName: "clientSessionName",
|
7941
8015
|
required: true,
|
7942
8016
|
type: {
|
7943
8017
|
name: "String"
|
7944
8018
|
}
|
7945
|
-
},
|
8019
|
+
},
|
8020
|
+
sequenceNumber: {
|
7946
8021
|
serializedName: "sequenceNumber",
|
7947
8022
|
required: true,
|
7948
8023
|
type: {
|
7949
8024
|
name: "Number"
|
7950
8025
|
}
|
7951
|
-
}
|
8026
|
+
}
|
8027
|
+
}
|
7952
8028
|
}
|
7953
8029
|
};
|
7954
8030
|
const EventGridMqttClientSessionDisconnectedEventData = {
|
7955
8031
|
type: {
|
7956
8032
|
name: "Composite",
|
7957
8033
|
className: "EventGridMqttClientSessionDisconnectedEventData",
|
7958
|
-
modelProperties:
|
8034
|
+
modelProperties: {
|
8035
|
+
...EventGridMqttClientEventData.type.modelProperties,
|
8036
|
+
clientSessionName: {
|
7959
8037
|
serializedName: "clientSessionName",
|
7960
8038
|
required: true,
|
7961
8039
|
type: {
|
7962
8040
|
name: "String"
|
7963
8041
|
}
|
7964
|
-
},
|
8042
|
+
},
|
8043
|
+
sequenceNumber: {
|
7965
8044
|
serializedName: "sequenceNumber",
|
7966
8045
|
required: true,
|
7967
8046
|
type: {
|
7968
8047
|
name: "Number"
|
7969
8048
|
}
|
7970
|
-
},
|
8049
|
+
},
|
8050
|
+
disconnectionReason: {
|
7971
8051
|
serializedName: "disconnectionReason",
|
7972
8052
|
required: true,
|
7973
8053
|
type: {
|
7974
8054
|
name: "String"
|
7975
8055
|
}
|
7976
|
-
}
|
8056
|
+
}
|
8057
|
+
}
|
7977
8058
|
}
|
7978
8059
|
};
|
7979
8060
|
const IotHubDeviceCreatedEventData = {
|
7980
8061
|
type: {
|
7981
8062
|
name: "Composite",
|
7982
8063
|
className: "IotHubDeviceCreatedEventData",
|
7983
|
-
modelProperties:
|
8064
|
+
modelProperties: {
|
8065
|
+
...DeviceLifeCycleEvent.type.modelProperties
|
8066
|
+
}
|
7984
8067
|
}
|
7985
8068
|
};
|
7986
8069
|
const IotHubDeviceDeletedEventData = {
|
7987
8070
|
type: {
|
7988
8071
|
name: "Composite",
|
7989
8072
|
className: "IotHubDeviceDeletedEventData",
|
7990
|
-
modelProperties:
|
8073
|
+
modelProperties: {
|
8074
|
+
...DeviceLifeCycleEvent.type.modelProperties
|
8075
|
+
}
|
7991
8076
|
}
|
7992
8077
|
};
|
7993
8078
|
const IotHubDeviceConnectedEventData = {
|
7994
8079
|
type: {
|
7995
8080
|
name: "Composite",
|
7996
8081
|
className: "IotHubDeviceConnectedEventData",
|
7997
|
-
modelProperties:
|
8082
|
+
modelProperties: {
|
8083
|
+
...DeviceConnectionStateEvent.type.modelProperties
|
8084
|
+
}
|
7998
8085
|
}
|
7999
8086
|
};
|
8000
8087
|
const IotHubDeviceDisconnectedEventData = {
|
8001
8088
|
type: {
|
8002
8089
|
name: "Composite",
|
8003
8090
|
className: "IotHubDeviceDisconnectedEventData",
|
8004
|
-
modelProperties:
|
8091
|
+
modelProperties: {
|
8092
|
+
...DeviceConnectionStateEvent.type.modelProperties
|
8093
|
+
}
|
8005
8094
|
}
|
8006
8095
|
};
|
8007
8096
|
const IotHubDeviceTelemetryEventData = {
|
8008
8097
|
type: {
|
8009
8098
|
name: "Composite",
|
8010
8099
|
className: "IotHubDeviceTelemetryEventData",
|
8011
|
-
modelProperties:
|
8100
|
+
modelProperties: {
|
8101
|
+
...DeviceTelemetryEvent.type.modelProperties
|
8102
|
+
}
|
8012
8103
|
}
|
8013
8104
|
};
|
8014
8105
|
const ContainerRegistryImagePushedEventData = {
|
8015
8106
|
type: {
|
8016
8107
|
name: "Composite",
|
8017
8108
|
className: "ContainerRegistryImagePushedEventData",
|
8018
|
-
modelProperties:
|
8109
|
+
modelProperties: {
|
8110
|
+
...ContainerRegistryEventData.type.modelProperties
|
8111
|
+
}
|
8019
8112
|
}
|
8020
8113
|
};
|
8021
8114
|
const ContainerRegistryImageDeletedEventData = {
|
8022
8115
|
type: {
|
8023
8116
|
name: "Composite",
|
8024
8117
|
className: "ContainerRegistryImageDeletedEventData",
|
8025
|
-
modelProperties:
|
8118
|
+
modelProperties: {
|
8119
|
+
...ContainerRegistryEventData.type.modelProperties
|
8120
|
+
}
|
8026
8121
|
}
|
8027
8122
|
};
|
8028
8123
|
const ContainerRegistryChartPushedEventData = {
|
8029
8124
|
type: {
|
8030
8125
|
name: "Composite",
|
8031
8126
|
className: "ContainerRegistryChartPushedEventData",
|
8032
|
-
modelProperties:
|
8127
|
+
modelProperties: {
|
8128
|
+
...ContainerRegistryArtifactEventData.type.modelProperties
|
8129
|
+
}
|
8033
8130
|
}
|
8034
8131
|
};
|
8035
8132
|
const ContainerRegistryChartDeletedEventData = {
|
8036
8133
|
type: {
|
8037
8134
|
name: "Composite",
|
8038
8135
|
className: "ContainerRegistryChartDeletedEventData",
|
8039
|
-
modelProperties:
|
8136
|
+
modelProperties: {
|
8137
|
+
...ContainerRegistryArtifactEventData.type.modelProperties
|
8138
|
+
}
|
8040
8139
|
}
|
8041
8140
|
};
|
8042
8141
|
const MediaJobScheduledEventData = {
|
@@ -8044,7 +8143,9 @@ const MediaJobScheduledEventData = {
|
|
8044
8143
|
type: {
|
8045
8144
|
name: "Composite",
|
8046
8145
|
className: "MediaJobScheduledEventData",
|
8047
|
-
modelProperties:
|
8146
|
+
modelProperties: {
|
8147
|
+
...MediaJobStateChangeEventData.type.modelProperties
|
8148
|
+
}
|
8048
8149
|
}
|
8049
8150
|
};
|
8050
8151
|
const MediaJobProcessingEventData = {
|
@@ -8052,7 +8153,9 @@ const MediaJobProcessingEventData = {
|
|
8052
8153
|
type: {
|
8053
8154
|
name: "Composite",
|
8054
8155
|
className: "MediaJobProcessingEventData",
|
8055
|
-
modelProperties:
|
8156
|
+
modelProperties: {
|
8157
|
+
...MediaJobStateChangeEventData.type.modelProperties
|
8158
|
+
}
|
8056
8159
|
}
|
8057
8160
|
};
|
8058
8161
|
const MediaJobCancelingEventData = {
|
@@ -8060,7 +8163,9 @@ const MediaJobCancelingEventData = {
|
|
8060
8163
|
type: {
|
8061
8164
|
name: "Composite",
|
8062
8165
|
className: "MediaJobCancelingEventData",
|
8063
|
-
modelProperties:
|
8166
|
+
modelProperties: {
|
8167
|
+
...MediaJobStateChangeEventData.type.modelProperties
|
8168
|
+
}
|
8064
8169
|
}
|
8065
8170
|
};
|
8066
8171
|
const MediaJobFinishedEventData = {
|
@@ -8068,7 +8173,9 @@ const MediaJobFinishedEventData = {
|
|
8068
8173
|
type: {
|
8069
8174
|
name: "Composite",
|
8070
8175
|
className: "MediaJobFinishedEventData",
|
8071
|
-
modelProperties:
|
8176
|
+
modelProperties: {
|
8177
|
+
...MediaJobStateChangeEventData.type.modelProperties,
|
8178
|
+
outputs: {
|
8072
8179
|
serializedName: "outputs",
|
8073
8180
|
required: true,
|
8074
8181
|
type: {
|
@@ -8080,7 +8187,8 @@ const MediaJobFinishedEventData = {
|
|
8080
8187
|
}
|
8081
8188
|
}
|
8082
8189
|
}
|
8083
|
-
}
|
8190
|
+
}
|
8191
|
+
}
|
8084
8192
|
}
|
8085
8193
|
};
|
8086
8194
|
const MediaJobCanceledEventData = {
|
@@ -8088,7 +8196,9 @@ const MediaJobCanceledEventData = {
|
|
8088
8196
|
type: {
|
8089
8197
|
name: "Composite",
|
8090
8198
|
className: "MediaJobCanceledEventData",
|
8091
|
-
modelProperties:
|
8199
|
+
modelProperties: {
|
8200
|
+
...MediaJobStateChangeEventData.type.modelProperties,
|
8201
|
+
outputs: {
|
8092
8202
|
serializedName: "outputs",
|
8093
8203
|
required: true,
|
8094
8204
|
type: {
|
@@ -8100,7 +8210,8 @@ const MediaJobCanceledEventData = {
|
|
8100
8210
|
}
|
8101
8211
|
}
|
8102
8212
|
}
|
8103
|
-
}
|
8213
|
+
}
|
8214
|
+
}
|
8104
8215
|
}
|
8105
8216
|
};
|
8106
8217
|
const MediaJobErroredEventData = {
|
@@ -8108,7 +8219,9 @@ const MediaJobErroredEventData = {
|
|
8108
8219
|
type: {
|
8109
8220
|
name: "Composite",
|
8110
8221
|
className: "MediaJobErroredEventData",
|
8111
|
-
modelProperties:
|
8222
|
+
modelProperties: {
|
8223
|
+
...MediaJobStateChangeEventData.type.modelProperties,
|
8224
|
+
outputs: {
|
8112
8225
|
serializedName: "outputs",
|
8113
8226
|
required: true,
|
8114
8227
|
type: {
|
@@ -8120,7 +8233,8 @@ const MediaJobErroredEventData = {
|
|
8120
8233
|
}
|
8121
8234
|
}
|
8122
8235
|
}
|
8123
|
-
}
|
8236
|
+
}
|
8237
|
+
}
|
8124
8238
|
}
|
8125
8239
|
};
|
8126
8240
|
const MediaJobOutputAsset = {
|
@@ -8130,13 +8244,16 @@ const MediaJobOutputAsset = {
|
|
8130
8244
|
className: "MediaJobOutputAsset",
|
8131
8245
|
uberParent: "MediaJobOutput",
|
8132
8246
|
polymorphicDiscriminator: MediaJobOutput.type.polymorphicDiscriminator,
|
8133
|
-
modelProperties:
|
8247
|
+
modelProperties: {
|
8248
|
+
...MediaJobOutput.type.modelProperties,
|
8249
|
+
assetName: {
|
8134
8250
|
serializedName: "assetName",
|
8135
8251
|
required: true,
|
8136
8252
|
type: {
|
8137
8253
|
name: "String"
|
8138
8254
|
}
|
8139
|
-
}
|
8255
|
+
}
|
8256
|
+
}
|
8140
8257
|
}
|
8141
8258
|
};
|
8142
8259
|
const MediaJobOutputCanceledEventData = {
|
@@ -8144,7 +8261,9 @@ const MediaJobOutputCanceledEventData = {
|
|
8144
8261
|
type: {
|
8145
8262
|
name: "Composite",
|
8146
8263
|
className: "MediaJobOutputCanceledEventData",
|
8147
|
-
modelProperties:
|
8264
|
+
modelProperties: {
|
8265
|
+
...MediaJobOutputStateChangeEventData.type.modelProperties
|
8266
|
+
}
|
8148
8267
|
}
|
8149
8268
|
};
|
8150
8269
|
const MediaJobOutputCancelingEventData = {
|
@@ -8152,7 +8271,9 @@ const MediaJobOutputCancelingEventData = {
|
|
8152
8271
|
type: {
|
8153
8272
|
name: "Composite",
|
8154
8273
|
className: "MediaJobOutputCancelingEventData",
|
8155
|
-
modelProperties:
|
8274
|
+
modelProperties: {
|
8275
|
+
...MediaJobOutputStateChangeEventData.type.modelProperties
|
8276
|
+
}
|
8156
8277
|
}
|
8157
8278
|
};
|
8158
8279
|
const MediaJobOutputErroredEventData = {
|
@@ -8160,7 +8281,9 @@ const MediaJobOutputErroredEventData = {
|
|
8160
8281
|
type: {
|
8161
8282
|
name: "Composite",
|
8162
8283
|
className: "MediaJobOutputErroredEventData",
|
8163
|
-
modelProperties:
|
8284
|
+
modelProperties: {
|
8285
|
+
...MediaJobOutputStateChangeEventData.type.modelProperties
|
8286
|
+
}
|
8164
8287
|
}
|
8165
8288
|
};
|
8166
8289
|
const MediaJobOutputFinishedEventData = {
|
@@ -8168,7 +8291,9 @@ const MediaJobOutputFinishedEventData = {
|
|
8168
8291
|
type: {
|
8169
8292
|
name: "Composite",
|
8170
8293
|
className: "MediaJobOutputFinishedEventData",
|
8171
|
-
modelProperties:
|
8294
|
+
modelProperties: {
|
8295
|
+
...MediaJobOutputStateChangeEventData.type.modelProperties
|
8296
|
+
}
|
8172
8297
|
}
|
8173
8298
|
};
|
8174
8299
|
const MediaJobOutputProcessingEventData = {
|
@@ -8176,7 +8301,9 @@ const MediaJobOutputProcessingEventData = {
|
|
8176
8301
|
type: {
|
8177
8302
|
name: "Composite",
|
8178
8303
|
className: "MediaJobOutputProcessingEventData",
|
8179
|
-
modelProperties:
|
8304
|
+
modelProperties: {
|
8305
|
+
...MediaJobOutputStateChangeEventData.type.modelProperties
|
8306
|
+
}
|
8180
8307
|
}
|
8181
8308
|
};
|
8182
8309
|
const MediaJobOutputScheduledEventData = {
|
@@ -8184,287 +8311,347 @@ const MediaJobOutputScheduledEventData = {
|
|
8184
8311
|
type: {
|
8185
8312
|
name: "Composite",
|
8186
8313
|
className: "MediaJobOutputScheduledEventData",
|
8187
|
-
modelProperties:
|
8314
|
+
modelProperties: {
|
8315
|
+
...MediaJobOutputStateChangeEventData.type.modelProperties
|
8316
|
+
}
|
8188
8317
|
}
|
8189
8318
|
};
|
8190
8319
|
const MapsGeofenceEnteredEventData = {
|
8191
8320
|
type: {
|
8192
8321
|
name: "Composite",
|
8193
8322
|
className: "MapsGeofenceEnteredEventData",
|
8194
|
-
modelProperties:
|
8323
|
+
modelProperties: {
|
8324
|
+
...MapsGeofenceEvent.type.modelProperties
|
8325
|
+
}
|
8195
8326
|
}
|
8196
8327
|
};
|
8197
8328
|
const MapsGeofenceExitedEventData = {
|
8198
8329
|
type: {
|
8199
8330
|
name: "Composite",
|
8200
8331
|
className: "MapsGeofenceExitedEventData",
|
8201
|
-
modelProperties:
|
8332
|
+
modelProperties: {
|
8333
|
+
...MapsGeofenceEvent.type.modelProperties
|
8334
|
+
}
|
8202
8335
|
}
|
8203
8336
|
};
|
8204
8337
|
const MapsGeofenceResultEventData = {
|
8205
8338
|
type: {
|
8206
8339
|
name: "Composite",
|
8207
8340
|
className: "MapsGeofenceResultEventData",
|
8208
|
-
modelProperties:
|
8341
|
+
modelProperties: {
|
8342
|
+
...MapsGeofenceEvent.type.modelProperties
|
8343
|
+
}
|
8209
8344
|
}
|
8210
8345
|
};
|
8211
8346
|
const AppConfigurationSnapshotCreatedEventData = {
|
8212
8347
|
type: {
|
8213
8348
|
name: "Composite",
|
8214
8349
|
className: "AppConfigurationSnapshotCreatedEventData",
|
8215
|
-
modelProperties:
|
8350
|
+
modelProperties: {
|
8351
|
+
...AppConfigurationSnapshotEventData.type.modelProperties
|
8352
|
+
}
|
8216
8353
|
}
|
8217
8354
|
};
|
8218
8355
|
const AppConfigurationSnapshotModifiedEventData = {
|
8219
8356
|
type: {
|
8220
8357
|
name: "Composite",
|
8221
8358
|
className: "AppConfigurationSnapshotModifiedEventData",
|
8222
|
-
modelProperties:
|
8359
|
+
modelProperties: {
|
8360
|
+
...AppConfigurationSnapshotEventData.type.modelProperties
|
8361
|
+
}
|
8223
8362
|
}
|
8224
8363
|
};
|
8225
8364
|
const AcsRouterJobEventData = {
|
8226
8365
|
type: {
|
8227
8366
|
name: "Composite",
|
8228
8367
|
className: "AcsRouterJobEventData",
|
8229
|
-
modelProperties:
|
8368
|
+
modelProperties: {
|
8369
|
+
...AcsRouterEventData.type.modelProperties,
|
8370
|
+
queueId: {
|
8230
8371
|
serializedName: "queueId",
|
8231
8372
|
required: true,
|
8232
8373
|
type: {
|
8233
8374
|
name: "String"
|
8234
8375
|
}
|
8235
|
-
},
|
8376
|
+
},
|
8377
|
+
labels: {
|
8236
8378
|
serializedName: "labels",
|
8237
8379
|
required: true,
|
8238
8380
|
type: {
|
8239
8381
|
name: "Dictionary",
|
8240
8382
|
value: { type: { name: "String" } }
|
8241
8383
|
}
|
8242
|
-
},
|
8384
|
+
},
|
8385
|
+
tags: {
|
8243
8386
|
serializedName: "tags",
|
8244
8387
|
required: true,
|
8245
8388
|
type: {
|
8246
8389
|
name: "Dictionary",
|
8247
8390
|
value: { type: { name: "String" } }
|
8248
8391
|
}
|
8249
|
-
}
|
8392
|
+
}
|
8393
|
+
}
|
8250
8394
|
}
|
8251
8395
|
};
|
8252
8396
|
const AcsRouterWorkerEventData = {
|
8253
8397
|
type: {
|
8254
8398
|
name: "Composite",
|
8255
8399
|
className: "AcsRouterWorkerEventData",
|
8256
|
-
modelProperties:
|
8400
|
+
modelProperties: {
|
8401
|
+
...AcsRouterEventData.type.modelProperties,
|
8402
|
+
workerId: {
|
8257
8403
|
serializedName: "workerId",
|
8258
8404
|
required: true,
|
8259
8405
|
type: {
|
8260
8406
|
name: "String"
|
8261
8407
|
}
|
8262
|
-
}
|
8408
|
+
}
|
8409
|
+
}
|
8263
8410
|
}
|
8264
8411
|
};
|
8265
8412
|
const AcsChatMessageEventBase = {
|
8266
8413
|
type: {
|
8267
8414
|
name: "Composite",
|
8268
8415
|
className: "AcsChatMessageEventBase",
|
8269
|
-
modelProperties:
|
8416
|
+
modelProperties: {
|
8417
|
+
...AcsChatEventBase.type.modelProperties,
|
8418
|
+
messageId: {
|
8270
8419
|
serializedName: "messageId",
|
8271
8420
|
required: true,
|
8272
8421
|
type: {
|
8273
8422
|
name: "String"
|
8274
8423
|
}
|
8275
|
-
},
|
8424
|
+
},
|
8425
|
+
senderCommunicationIdentifier: {
|
8276
8426
|
serializedName: "senderCommunicationIdentifier",
|
8277
8427
|
type: {
|
8278
8428
|
name: "Composite",
|
8279
8429
|
className: "CommunicationIdentifierModel"
|
8280
8430
|
}
|
8281
|
-
},
|
8431
|
+
},
|
8432
|
+
senderDisplayName: {
|
8282
8433
|
serializedName: "senderDisplayName",
|
8283
8434
|
required: true,
|
8284
8435
|
type: {
|
8285
8436
|
name: "String"
|
8286
8437
|
}
|
8287
|
-
},
|
8438
|
+
},
|
8439
|
+
composeTime: {
|
8288
8440
|
serializedName: "composeTime",
|
8289
8441
|
required: true,
|
8290
8442
|
type: {
|
8291
8443
|
name: "String"
|
8292
8444
|
}
|
8293
|
-
},
|
8445
|
+
},
|
8446
|
+
type: {
|
8294
8447
|
serializedName: "type",
|
8295
8448
|
required: true,
|
8296
8449
|
type: {
|
8297
8450
|
name: "String"
|
8298
8451
|
}
|
8299
|
-
},
|
8452
|
+
},
|
8453
|
+
version: {
|
8300
8454
|
serializedName: "version",
|
8301
8455
|
required: true,
|
8302
8456
|
type: {
|
8303
8457
|
name: "Number"
|
8304
8458
|
}
|
8305
|
-
}
|
8459
|
+
}
|
8460
|
+
}
|
8306
8461
|
}
|
8307
8462
|
};
|
8308
8463
|
const AcsChatThreadEventBase = {
|
8309
8464
|
type: {
|
8310
8465
|
name: "Composite",
|
8311
8466
|
className: "AcsChatThreadEventBase",
|
8312
|
-
modelProperties:
|
8467
|
+
modelProperties: {
|
8468
|
+
...AcsChatEventBase.type.modelProperties,
|
8469
|
+
createTime: {
|
8313
8470
|
serializedName: "createTime",
|
8314
8471
|
required: true,
|
8315
8472
|
type: {
|
8316
8473
|
name: "String"
|
8317
8474
|
}
|
8318
|
-
},
|
8475
|
+
},
|
8476
|
+
version: {
|
8319
8477
|
serializedName: "version",
|
8320
8478
|
required: true,
|
8321
8479
|
type: {
|
8322
8480
|
name: "Number"
|
8323
8481
|
}
|
8324
|
-
}
|
8482
|
+
}
|
8483
|
+
}
|
8325
8484
|
}
|
8326
8485
|
};
|
8327
8486
|
const AcsChatMessageEventInThreadBase = {
|
8328
8487
|
type: {
|
8329
8488
|
name: "Composite",
|
8330
8489
|
className: "AcsChatMessageEventInThreadBase",
|
8331
|
-
modelProperties:
|
8490
|
+
modelProperties: {
|
8491
|
+
...AcsChatEventInThreadBase.type.modelProperties,
|
8492
|
+
messageId: {
|
8332
8493
|
serializedName: "messageId",
|
8333
8494
|
required: true,
|
8334
8495
|
type: {
|
8335
8496
|
name: "String"
|
8336
8497
|
}
|
8337
|
-
},
|
8498
|
+
},
|
8499
|
+
senderCommunicationIdentifier: {
|
8338
8500
|
serializedName: "senderCommunicationIdentifier",
|
8339
8501
|
type: {
|
8340
8502
|
name: "Composite",
|
8341
8503
|
className: "CommunicationIdentifierModel"
|
8342
8504
|
}
|
8343
|
-
},
|
8505
|
+
},
|
8506
|
+
senderDisplayName: {
|
8344
8507
|
serializedName: "senderDisplayName",
|
8345
8508
|
required: true,
|
8346
8509
|
type: {
|
8347
8510
|
name: "String"
|
8348
8511
|
}
|
8349
|
-
},
|
8512
|
+
},
|
8513
|
+
composeTime: {
|
8350
8514
|
serializedName: "composeTime",
|
8351
8515
|
required: true,
|
8352
8516
|
type: {
|
8353
8517
|
name: "String"
|
8354
8518
|
}
|
8355
|
-
},
|
8519
|
+
},
|
8520
|
+
type: {
|
8356
8521
|
serializedName: "type",
|
8357
8522
|
required: true,
|
8358
8523
|
type: {
|
8359
8524
|
name: "String"
|
8360
8525
|
}
|
8361
|
-
},
|
8526
|
+
},
|
8527
|
+
version: {
|
8362
8528
|
serializedName: "version",
|
8363
8529
|
required: true,
|
8364
8530
|
type: {
|
8365
8531
|
name: "Number"
|
8366
8532
|
}
|
8367
|
-
}
|
8533
|
+
}
|
8534
|
+
}
|
8368
8535
|
}
|
8369
8536
|
};
|
8370
8537
|
const AcsChatThreadEventInThreadBase = {
|
8371
8538
|
type: {
|
8372
8539
|
name: "Composite",
|
8373
8540
|
className: "AcsChatThreadEventInThreadBase",
|
8374
|
-
modelProperties:
|
8541
|
+
modelProperties: {
|
8542
|
+
...AcsChatEventInThreadBase.type.modelProperties,
|
8543
|
+
createTime: {
|
8375
8544
|
serializedName: "createTime",
|
8376
8545
|
required: true,
|
8377
8546
|
type: {
|
8378
8547
|
name: "String"
|
8379
8548
|
}
|
8380
|
-
},
|
8549
|
+
},
|
8550
|
+
version: {
|
8381
8551
|
serializedName: "version",
|
8382
8552
|
required: true,
|
8383
8553
|
type: {
|
8384
8554
|
name: "Number"
|
8385
8555
|
}
|
8386
|
-
}
|
8556
|
+
}
|
8557
|
+
}
|
8387
8558
|
}
|
8388
8559
|
};
|
8389
8560
|
const AcsChatParticipantAddedToThreadEventData = {
|
8390
8561
|
type: {
|
8391
8562
|
name: "Composite",
|
8392
8563
|
className: "AcsChatParticipantAddedToThreadEventData",
|
8393
|
-
modelProperties:
|
8564
|
+
modelProperties: {
|
8565
|
+
...AcsChatEventInThreadBase.type.modelProperties,
|
8566
|
+
time: {
|
8394
8567
|
serializedName: "time",
|
8395
8568
|
required: true,
|
8396
8569
|
type: {
|
8397
8570
|
name: "String"
|
8398
8571
|
}
|
8399
|
-
},
|
8572
|
+
},
|
8573
|
+
addedByCommunicationIdentifier: {
|
8400
8574
|
serializedName: "addedByCommunicationIdentifier",
|
8401
8575
|
type: {
|
8402
8576
|
name: "Composite",
|
8403
8577
|
className: "CommunicationIdentifierModel"
|
8404
8578
|
}
|
8405
|
-
},
|
8579
|
+
},
|
8580
|
+
participantAdded: {
|
8406
8581
|
serializedName: "participantAdded",
|
8407
8582
|
type: {
|
8408
8583
|
name: "Composite",
|
8409
8584
|
className: "AcsChatThreadParticipant"
|
8410
8585
|
}
|
8411
|
-
},
|
8586
|
+
},
|
8587
|
+
version: {
|
8412
8588
|
serializedName: "version",
|
8413
8589
|
required: true,
|
8414
8590
|
type: {
|
8415
8591
|
name: "Number"
|
8416
8592
|
}
|
8417
|
-
}
|
8593
|
+
}
|
8594
|
+
}
|
8418
8595
|
}
|
8419
8596
|
};
|
8420
8597
|
const AcsChatParticipantRemovedFromThreadEventData = {
|
8421
8598
|
type: {
|
8422
8599
|
name: "Composite",
|
8423
8600
|
className: "AcsChatParticipantRemovedFromThreadEventData",
|
8424
|
-
modelProperties:
|
8601
|
+
modelProperties: {
|
8602
|
+
...AcsChatEventInThreadBase.type.modelProperties,
|
8603
|
+
time: {
|
8425
8604
|
serializedName: "time",
|
8426
8605
|
required: true,
|
8427
8606
|
type: {
|
8428
8607
|
name: "String"
|
8429
8608
|
}
|
8430
|
-
},
|
8609
|
+
},
|
8610
|
+
removedByCommunicationIdentifier: {
|
8431
8611
|
serializedName: "removedByCommunicationIdentifier",
|
8432
8612
|
type: {
|
8433
8613
|
name: "Composite",
|
8434
8614
|
className: "CommunicationIdentifierModel"
|
8435
8615
|
}
|
8436
|
-
},
|
8616
|
+
},
|
8617
|
+
participantRemoved: {
|
8437
8618
|
serializedName: "participantRemoved",
|
8438
8619
|
type: {
|
8439
8620
|
name: "Composite",
|
8440
8621
|
className: "AcsChatThreadParticipant"
|
8441
8622
|
}
|
8442
|
-
},
|
8623
|
+
},
|
8624
|
+
version: {
|
8443
8625
|
serializedName: "version",
|
8444
8626
|
required: true,
|
8445
8627
|
type: {
|
8446
8628
|
name: "Number"
|
8447
8629
|
}
|
8448
|
-
}
|
8630
|
+
}
|
8631
|
+
}
|
8449
8632
|
}
|
8450
8633
|
};
|
8451
8634
|
const AcsSmsDeliveryReportReceivedEventData = {
|
8452
8635
|
type: {
|
8453
8636
|
name: "Composite",
|
8454
8637
|
className: "AcsSmsDeliveryReportReceivedEventData",
|
8455
|
-
modelProperties:
|
8638
|
+
modelProperties: {
|
8639
|
+
...AcsSmsEventBase.type.modelProperties,
|
8640
|
+
deliveryStatus: {
|
8456
8641
|
serializedName: "deliveryStatus",
|
8457
8642
|
required: true,
|
8458
8643
|
type: {
|
8459
8644
|
name: "String"
|
8460
8645
|
}
|
8461
|
-
},
|
8646
|
+
},
|
8647
|
+
deliveryStatusDetails: {
|
8462
8648
|
serializedName: "deliveryStatusDetails",
|
8463
8649
|
required: true,
|
8464
8650
|
type: {
|
8465
8651
|
name: "String"
|
8466
8652
|
}
|
8467
|
-
},
|
8653
|
+
},
|
8654
|
+
deliveryAttempts: {
|
8468
8655
|
serializedName: "deliveryAttempts",
|
8469
8656
|
required: true,
|
8470
8657
|
type: {
|
@@ -8476,133 +8663,165 @@ const AcsSmsDeliveryReportReceivedEventData = {
|
|
8476
8663
|
}
|
8477
8664
|
}
|
8478
8665
|
}
|
8479
|
-
},
|
8666
|
+
},
|
8667
|
+
receivedTimestamp: {
|
8480
8668
|
serializedName: "receivedTimestamp",
|
8481
8669
|
required: true,
|
8482
8670
|
type: {
|
8483
8671
|
name: "String"
|
8484
8672
|
}
|
8485
|
-
},
|
8673
|
+
},
|
8674
|
+
tag: {
|
8486
8675
|
serializedName: "tag",
|
8487
8676
|
required: true,
|
8488
8677
|
type: {
|
8489
8678
|
name: "String"
|
8490
8679
|
}
|
8491
|
-
}
|
8680
|
+
}
|
8681
|
+
}
|
8492
8682
|
}
|
8493
8683
|
};
|
8494
8684
|
const AcsSmsReceivedEventData = {
|
8495
8685
|
type: {
|
8496
8686
|
name: "Composite",
|
8497
8687
|
className: "AcsSmsReceivedEventData",
|
8498
|
-
modelProperties:
|
8688
|
+
modelProperties: {
|
8689
|
+
...AcsSmsEventBase.type.modelProperties,
|
8690
|
+
message: {
|
8499
8691
|
serializedName: "message",
|
8500
8692
|
required: true,
|
8501
8693
|
type: {
|
8502
8694
|
name: "String"
|
8503
8695
|
}
|
8504
|
-
},
|
8696
|
+
},
|
8697
|
+
receivedTimestamp: {
|
8505
8698
|
serializedName: "receivedTimestamp",
|
8506
8699
|
required: true,
|
8507
8700
|
type: {
|
8508
8701
|
name: "String"
|
8509
8702
|
}
|
8510
|
-
}
|
8703
|
+
}
|
8704
|
+
}
|
8511
8705
|
}
|
8512
8706
|
};
|
8513
8707
|
const ContainerServiceClusterSupportEndedEventData = {
|
8514
8708
|
type: {
|
8515
8709
|
name: "Composite",
|
8516
8710
|
className: "ContainerServiceClusterSupportEndedEventData",
|
8517
|
-
modelProperties:
|
8711
|
+
modelProperties: {
|
8712
|
+
...ContainerServiceClusterSupportEventData.type.modelProperties
|
8713
|
+
}
|
8518
8714
|
}
|
8519
8715
|
};
|
8520
8716
|
const ContainerServiceClusterSupportEndingEventData = {
|
8521
8717
|
type: {
|
8522
8718
|
name: "Composite",
|
8523
8719
|
className: "ContainerServiceClusterSupportEndingEventData",
|
8524
|
-
modelProperties:
|
8720
|
+
modelProperties: {
|
8721
|
+
...ContainerServiceClusterSupportEventData.type.modelProperties
|
8722
|
+
}
|
8525
8723
|
}
|
8526
8724
|
};
|
8527
8725
|
const ContainerServiceNodePoolRollingStartedEventData = {
|
8528
8726
|
type: {
|
8529
8727
|
name: "Composite",
|
8530
8728
|
className: "ContainerServiceNodePoolRollingStartedEventData",
|
8531
|
-
modelProperties:
|
8729
|
+
modelProperties: {
|
8730
|
+
...ContainerServiceNodePoolRollingEventData.type.modelProperties
|
8731
|
+
}
|
8532
8732
|
}
|
8533
8733
|
};
|
8534
8734
|
const ContainerServiceNodePoolRollingSucceededEventData = {
|
8535
8735
|
type: {
|
8536
8736
|
name: "Composite",
|
8537
8737
|
className: "ContainerServiceNodePoolRollingSucceededEventData",
|
8538
|
-
modelProperties:
|
8738
|
+
modelProperties: {
|
8739
|
+
...ContainerServiceNodePoolRollingEventData.type.modelProperties
|
8740
|
+
}
|
8539
8741
|
}
|
8540
8742
|
};
|
8541
8743
|
const ContainerServiceNodePoolRollingFailedEventData = {
|
8542
8744
|
type: {
|
8543
8745
|
name: "Composite",
|
8544
8746
|
className: "ContainerServiceNodePoolRollingFailedEventData",
|
8545
|
-
modelProperties:
|
8747
|
+
modelProperties: {
|
8748
|
+
...ContainerServiceNodePoolRollingEventData.type.modelProperties
|
8749
|
+
}
|
8546
8750
|
}
|
8547
8751
|
};
|
8548
8752
|
const ResourceNotificationsHealthResourcesAvailabilityStatusChangedEventData = {
|
8549
8753
|
type: {
|
8550
8754
|
name: "Composite",
|
8551
8755
|
className: "ResourceNotificationsHealthResourcesAvailabilityStatusChangedEventData",
|
8552
|
-
modelProperties:
|
8756
|
+
modelProperties: {
|
8757
|
+
...ResourceNotificationsResourceUpdatedEventData.type.modelProperties
|
8758
|
+
}
|
8553
8759
|
}
|
8554
8760
|
};
|
8555
8761
|
const ResourceNotificationsHealthResourcesAnnotatedEventData = {
|
8556
8762
|
type: {
|
8557
8763
|
name: "Composite",
|
8558
8764
|
className: "ResourceNotificationsHealthResourcesAnnotatedEventData",
|
8559
|
-
modelProperties:
|
8765
|
+
modelProperties: {
|
8766
|
+
...ResourceNotificationsResourceUpdatedEventData.type.modelProperties
|
8767
|
+
}
|
8560
8768
|
}
|
8561
8769
|
};
|
8562
8770
|
const ResourceNotificationsResourceManagementCreatedOrUpdatedEventData = {
|
8563
8771
|
type: {
|
8564
8772
|
name: "Composite",
|
8565
8773
|
className: "ResourceNotificationsResourceManagementCreatedOrUpdatedEventData",
|
8566
|
-
modelProperties:
|
8774
|
+
modelProperties: {
|
8775
|
+
...ResourceNotificationsResourceUpdatedEventData.type.modelProperties
|
8776
|
+
}
|
8567
8777
|
}
|
8568
8778
|
};
|
8569
8779
|
const ResourceNotificationsResourceManagementDeletedEventData = {
|
8570
8780
|
type: {
|
8571
8781
|
name: "Composite",
|
8572
8782
|
className: "ResourceNotificationsResourceManagementDeletedEventData",
|
8573
|
-
modelProperties:
|
8783
|
+
modelProperties: {
|
8784
|
+
...ResourceNotificationsResourceDeletedEventData.type.modelProperties
|
8785
|
+
}
|
8574
8786
|
}
|
8575
8787
|
};
|
8576
8788
|
const AcsRouterJobCancelledEventData = {
|
8577
8789
|
type: {
|
8578
8790
|
name: "Composite",
|
8579
8791
|
className: "AcsRouterJobCancelledEventData",
|
8580
|
-
modelProperties:
|
8792
|
+
modelProperties: {
|
8793
|
+
...AcsRouterJobEventData.type.modelProperties,
|
8794
|
+
note: {
|
8581
8795
|
serializedName: "note",
|
8582
8796
|
required: true,
|
8583
8797
|
type: {
|
8584
8798
|
name: "String"
|
8585
8799
|
}
|
8586
|
-
},
|
8800
|
+
},
|
8801
|
+
dispositionCode: {
|
8587
8802
|
serializedName: "dispositionCode",
|
8588
8803
|
required: true,
|
8589
8804
|
type: {
|
8590
8805
|
name: "String"
|
8591
8806
|
}
|
8592
|
-
}
|
8807
|
+
}
|
8808
|
+
}
|
8593
8809
|
}
|
8594
8810
|
};
|
8595
8811
|
const AcsRouterJobClassificationFailedEventData = {
|
8596
8812
|
type: {
|
8597
8813
|
name: "Composite",
|
8598
8814
|
className: "AcsRouterJobClassificationFailedEventData",
|
8599
|
-
modelProperties:
|
8815
|
+
modelProperties: {
|
8816
|
+
...AcsRouterJobEventData.type.modelProperties,
|
8817
|
+
classificationPolicyId: {
|
8600
8818
|
serializedName: "classificationPolicyId",
|
8601
8819
|
required: true,
|
8602
8820
|
type: {
|
8603
8821
|
name: "String"
|
8604
8822
|
}
|
8605
|
-
},
|
8823
|
+
},
|
8824
|
+
errors: {
|
8606
8825
|
serializedName: "errors",
|
8607
8826
|
required: true,
|
8608
8827
|
type: {
|
@@ -8614,32 +8833,38 @@ const AcsRouterJobClassificationFailedEventData = {
|
|
8614
8833
|
}
|
8615
8834
|
}
|
8616
8835
|
}
|
8617
|
-
}
|
8836
|
+
}
|
8837
|
+
}
|
8618
8838
|
}
|
8619
8839
|
};
|
8620
8840
|
const AcsRouterJobClassifiedEventData = {
|
8621
8841
|
type: {
|
8622
8842
|
name: "Composite",
|
8623
8843
|
className: "AcsRouterJobClassifiedEventData",
|
8624
|
-
modelProperties:
|
8844
|
+
modelProperties: {
|
8845
|
+
...AcsRouterJobEventData.type.modelProperties,
|
8846
|
+
queueDetails: {
|
8625
8847
|
serializedName: "queueDetails",
|
8626
8848
|
type: {
|
8627
8849
|
name: "Composite",
|
8628
8850
|
className: "AcsRouterQueueDetails"
|
8629
8851
|
}
|
8630
|
-
},
|
8852
|
+
},
|
8853
|
+
classificationPolicyId: {
|
8631
8854
|
serializedName: "classificationPolicyId",
|
8632
8855
|
required: true,
|
8633
8856
|
type: {
|
8634
8857
|
name: "String"
|
8635
8858
|
}
|
8636
|
-
},
|
8859
|
+
},
|
8860
|
+
priority: {
|
8637
8861
|
serializedName: "priority",
|
8638
8862
|
required: true,
|
8639
8863
|
type: {
|
8640
8864
|
name: "Number"
|
8641
8865
|
}
|
8642
|
-
},
|
8866
|
+
},
|
8867
|
+
attachedWorkerSelectors: {
|
8643
8868
|
serializedName: "attachedWorkerSelectors",
|
8644
8869
|
required: true,
|
8645
8870
|
type: {
|
@@ -8651,90 +8876,109 @@ const AcsRouterJobClassifiedEventData = {
|
|
8651
8876
|
}
|
8652
8877
|
}
|
8653
8878
|
}
|
8654
|
-
}
|
8879
|
+
}
|
8880
|
+
}
|
8655
8881
|
}
|
8656
8882
|
};
|
8657
8883
|
const AcsRouterJobClosedEventData = {
|
8658
8884
|
type: {
|
8659
8885
|
name: "Composite",
|
8660
8886
|
className: "AcsRouterJobClosedEventData",
|
8661
|
-
modelProperties:
|
8887
|
+
modelProperties: {
|
8888
|
+
...AcsRouterJobEventData.type.modelProperties,
|
8889
|
+
assignmentId: {
|
8662
8890
|
serializedName: "assignmentId",
|
8663
8891
|
required: true,
|
8664
8892
|
type: {
|
8665
8893
|
name: "String"
|
8666
8894
|
}
|
8667
|
-
},
|
8895
|
+
},
|
8896
|
+
workerId: {
|
8668
8897
|
serializedName: "workerId",
|
8669
8898
|
required: true,
|
8670
8899
|
type: {
|
8671
8900
|
name: "String"
|
8672
8901
|
}
|
8673
|
-
},
|
8902
|
+
},
|
8903
|
+
dispositionCode: {
|
8674
8904
|
serializedName: "dispositionCode",
|
8675
8905
|
required: true,
|
8676
8906
|
type: {
|
8677
8907
|
name: "String"
|
8678
8908
|
}
|
8679
|
-
}
|
8909
|
+
}
|
8910
|
+
}
|
8680
8911
|
}
|
8681
8912
|
};
|
8682
8913
|
const AcsRouterJobCompletedEventData = {
|
8683
8914
|
type: {
|
8684
8915
|
name: "Composite",
|
8685
8916
|
className: "AcsRouterJobCompletedEventData",
|
8686
|
-
modelProperties:
|
8917
|
+
modelProperties: {
|
8918
|
+
...AcsRouterJobEventData.type.modelProperties,
|
8919
|
+
assignmentId: {
|
8687
8920
|
serializedName: "assignmentId",
|
8688
8921
|
required: true,
|
8689
8922
|
type: {
|
8690
8923
|
name: "String"
|
8691
8924
|
}
|
8692
|
-
},
|
8925
|
+
},
|
8926
|
+
workerId: {
|
8693
8927
|
serializedName: "workerId",
|
8694
8928
|
required: true,
|
8695
8929
|
type: {
|
8696
8930
|
name: "String"
|
8697
8931
|
}
|
8698
|
-
}
|
8932
|
+
}
|
8933
|
+
}
|
8699
8934
|
}
|
8700
8935
|
};
|
8701
8936
|
const AcsRouterJobDeletedEventData = {
|
8702
8937
|
type: {
|
8703
8938
|
name: "Composite",
|
8704
8939
|
className: "AcsRouterJobDeletedEventData",
|
8705
|
-
modelProperties:
|
8940
|
+
modelProperties: {
|
8941
|
+
...AcsRouterJobEventData.type.modelProperties
|
8942
|
+
}
|
8706
8943
|
}
|
8707
8944
|
};
|
8708
8945
|
const AcsRouterJobExceptionTriggeredEventData = {
|
8709
8946
|
type: {
|
8710
8947
|
name: "Composite",
|
8711
8948
|
className: "AcsRouterJobExceptionTriggeredEventData",
|
8712
|
-
modelProperties:
|
8949
|
+
modelProperties: {
|
8950
|
+
...AcsRouterJobEventData.type.modelProperties,
|
8951
|
+
ruleKey: {
|
8713
8952
|
serializedName: "ruleKey",
|
8714
8953
|
required: true,
|
8715
8954
|
type: {
|
8716
8955
|
name: "String"
|
8717
8956
|
}
|
8718
|
-
},
|
8957
|
+
},
|
8958
|
+
exceptionRuleId: {
|
8719
8959
|
serializedName: "exceptionRuleId",
|
8720
8960
|
required: true,
|
8721
8961
|
type: {
|
8722
8962
|
name: "String"
|
8723
8963
|
}
|
8724
|
-
}
|
8964
|
+
}
|
8965
|
+
}
|
8725
8966
|
}
|
8726
8967
|
};
|
8727
8968
|
const AcsRouterJobQueuedEventData = {
|
8728
8969
|
type: {
|
8729
8970
|
name: "Composite",
|
8730
8971
|
className: "AcsRouterJobQueuedEventData",
|
8731
|
-
modelProperties:
|
8972
|
+
modelProperties: {
|
8973
|
+
...AcsRouterJobEventData.type.modelProperties,
|
8974
|
+
priority: {
|
8732
8975
|
serializedName: "priority",
|
8733
8976
|
required: true,
|
8734
8977
|
type: {
|
8735
8978
|
name: "Number"
|
8736
8979
|
}
|
8737
|
-
},
|
8980
|
+
},
|
8981
|
+
attachedWorkerSelectors: {
|
8738
8982
|
serializedName: "attachedWorkerSelectors",
|
8739
8983
|
required: true,
|
8740
8984
|
type: {
|
@@ -8746,7 +8990,8 @@ const AcsRouterJobQueuedEventData = {
|
|
8746
8990
|
}
|
8747
8991
|
}
|
8748
8992
|
}
|
8749
|
-
},
|
8993
|
+
},
|
8994
|
+
requestedWorkerSelectors: {
|
8750
8995
|
serializedName: "requestedWorkerSelectors",
|
8751
8996
|
required: true,
|
8752
8997
|
type: {
|
@@ -8758,29 +9003,35 @@ const AcsRouterJobQueuedEventData = {
|
|
8758
9003
|
}
|
8759
9004
|
}
|
8760
9005
|
}
|
8761
|
-
}
|
9006
|
+
}
|
9007
|
+
}
|
8762
9008
|
}
|
8763
9009
|
};
|
8764
9010
|
const AcsRouterJobReceivedEventData = {
|
8765
9011
|
type: {
|
8766
9012
|
name: "Composite",
|
8767
9013
|
className: "AcsRouterJobReceivedEventData",
|
8768
|
-
modelProperties:
|
9014
|
+
modelProperties: {
|
9015
|
+
...AcsRouterJobEventData.type.modelProperties,
|
9016
|
+
jobStatus: {
|
8769
9017
|
serializedName: "jobStatus",
|
8770
9018
|
type: {
|
8771
9019
|
name: "String"
|
8772
9020
|
}
|
8773
|
-
},
|
9021
|
+
},
|
9022
|
+
classificationPolicyId: {
|
8774
9023
|
serializedName: "classificationPolicyId",
|
8775
9024
|
type: {
|
8776
9025
|
name: "String"
|
8777
9026
|
}
|
8778
|
-
},
|
9027
|
+
},
|
9028
|
+
priority: {
|
8779
9029
|
serializedName: "priority",
|
8780
9030
|
type: {
|
8781
9031
|
name: "Number"
|
8782
9032
|
}
|
8783
|
-
},
|
9033
|
+
},
|
9034
|
+
requestedWorkerSelectors: {
|
8784
9035
|
serializedName: "requestedWorkerSelectors",
|
8785
9036
|
type: {
|
8786
9037
|
name: "Sequence",
|
@@ -8791,31 +9042,37 @@ const AcsRouterJobReceivedEventData = {
|
|
8791
9042
|
}
|
8792
9043
|
}
|
8793
9044
|
}
|
8794
|
-
},
|
9045
|
+
},
|
9046
|
+
scheduledOn: {
|
8795
9047
|
serializedName: "scheduledOn",
|
8796
9048
|
type: {
|
8797
9049
|
name: "String"
|
8798
9050
|
}
|
8799
|
-
},
|
9051
|
+
},
|
9052
|
+
unavailableForMatching: {
|
8800
9053
|
serializedName: "unavailableForMatching",
|
8801
9054
|
required: true,
|
8802
9055
|
type: {
|
8803
9056
|
name: "Boolean"
|
8804
9057
|
}
|
8805
|
-
}
|
9058
|
+
}
|
9059
|
+
}
|
8806
9060
|
}
|
8807
9061
|
};
|
8808
9062
|
const AcsRouterJobSchedulingFailedEventData = {
|
8809
9063
|
type: {
|
8810
9064
|
name: "Composite",
|
8811
9065
|
className: "AcsRouterJobSchedulingFailedEventData",
|
8812
|
-
modelProperties:
|
9066
|
+
modelProperties: {
|
9067
|
+
...AcsRouterJobEventData.type.modelProperties,
|
9068
|
+
priority: {
|
8813
9069
|
serializedName: "priority",
|
8814
9070
|
required: true,
|
8815
9071
|
type: {
|
8816
9072
|
name: "Number"
|
8817
9073
|
}
|
8818
|
-
},
|
9074
|
+
},
|
9075
|
+
expiredAttachedWorkerSelectors: {
|
8819
9076
|
serializedName: "expiredAttachedWorkerSelectors",
|
8820
9077
|
required: true,
|
8821
9078
|
type: {
|
@@ -8827,7 +9084,8 @@ const AcsRouterJobSchedulingFailedEventData = {
|
|
8827
9084
|
}
|
8828
9085
|
}
|
8829
9086
|
}
|
8830
|
-
},
|
9087
|
+
},
|
9088
|
+
expiredRequestedWorkerSelectors: {
|
8831
9089
|
serializedName: "expiredRequestedWorkerSelectors",
|
8832
9090
|
required: true,
|
8833
9091
|
type: {
|
@@ -8839,50 +9097,60 @@ const AcsRouterJobSchedulingFailedEventData = {
|
|
8839
9097
|
}
|
8840
9098
|
}
|
8841
9099
|
}
|
8842
|
-
},
|
9100
|
+
},
|
9101
|
+
scheduledOn: {
|
8843
9102
|
serializedName: "scheduledOn",
|
8844
9103
|
required: true,
|
8845
9104
|
type: {
|
8846
9105
|
name: "String"
|
8847
9106
|
}
|
8848
|
-
},
|
9107
|
+
},
|
9108
|
+
failureReason: {
|
8849
9109
|
serializedName: "failureReason",
|
8850
9110
|
required: true,
|
8851
9111
|
type: {
|
8852
9112
|
name: "String"
|
8853
9113
|
}
|
8854
|
-
}
|
9114
|
+
}
|
9115
|
+
}
|
8855
9116
|
}
|
8856
9117
|
};
|
8857
9118
|
const AcsRouterJobUnassignedEventData = {
|
8858
9119
|
type: {
|
8859
9120
|
name: "Composite",
|
8860
9121
|
className: "AcsRouterJobUnassignedEventData",
|
8861
|
-
modelProperties:
|
9122
|
+
modelProperties: {
|
9123
|
+
...AcsRouterJobEventData.type.modelProperties,
|
9124
|
+
assignmentId: {
|
8862
9125
|
serializedName: "assignmentId",
|
8863
9126
|
required: true,
|
8864
9127
|
type: {
|
8865
9128
|
name: "String"
|
8866
9129
|
}
|
8867
|
-
},
|
9130
|
+
},
|
9131
|
+
workerId: {
|
8868
9132
|
serializedName: "workerId",
|
8869
9133
|
required: true,
|
8870
9134
|
type: {
|
8871
9135
|
name: "String"
|
8872
9136
|
}
|
8873
|
-
}
|
9137
|
+
}
|
9138
|
+
}
|
8874
9139
|
}
|
8875
9140
|
};
|
8876
9141
|
const AcsRouterJobWaitingForActivationEventData = {
|
8877
9142
|
type: {
|
8878
9143
|
name: "Composite",
|
8879
9144
|
className: "AcsRouterJobWaitingForActivationEventData",
|
8880
|
-
modelProperties:
|
9145
|
+
modelProperties: {
|
9146
|
+
...AcsRouterJobEventData.type.modelProperties,
|
9147
|
+
priority: {
|
8881
9148
|
serializedName: "priority",
|
8882
9149
|
type: {
|
8883
9150
|
name: "Number"
|
8884
9151
|
}
|
8885
|
-
},
|
9152
|
+
},
|
9153
|
+
expiredAttachedWorkerSelectors: {
|
8886
9154
|
serializedName: "expiredAttachedWorkerSelectors",
|
8887
9155
|
type: {
|
8888
9156
|
name: "Sequence",
|
@@ -8893,7 +9161,8 @@ const AcsRouterJobWaitingForActivationEventData = {
|
|
8893
9161
|
}
|
8894
9162
|
}
|
8895
9163
|
}
|
8896
|
-
},
|
9164
|
+
},
|
9165
|
+
expiredRequestedWorkerSelectors: {
|
8897
9166
|
serializedName: "expiredRequestedWorkerSelectors",
|
8898
9167
|
type: {
|
8899
9168
|
name: "Sequence",
|
@@ -8904,25 +9173,30 @@ const AcsRouterJobWaitingForActivationEventData = {
|
|
8904
9173
|
}
|
8905
9174
|
}
|
8906
9175
|
}
|
8907
|
-
},
|
9176
|
+
},
|
9177
|
+
scheduledOn: {
|
8908
9178
|
serializedName: "scheduledOn",
|
8909
9179
|
type: {
|
8910
9180
|
name: "String"
|
8911
9181
|
}
|
8912
|
-
},
|
9182
|
+
},
|
9183
|
+
unavailableForMatching: {
|
8913
9184
|
serializedName: "unavailableForMatching",
|
8914
9185
|
required: true,
|
8915
9186
|
type: {
|
8916
9187
|
name: "Boolean"
|
8917
9188
|
}
|
8918
|
-
}
|
9189
|
+
}
|
9190
|
+
}
|
8919
9191
|
}
|
8920
9192
|
};
|
8921
9193
|
const AcsRouterJobWorkerSelectorsExpiredEventData = {
|
8922
9194
|
type: {
|
8923
9195
|
name: "Composite",
|
8924
9196
|
className: "AcsRouterJobWorkerSelectorsExpiredEventData",
|
8925
|
-
modelProperties:
|
9197
|
+
modelProperties: {
|
9198
|
+
...AcsRouterJobEventData.type.modelProperties,
|
9199
|
+
expiredRequestedWorkerSelectors: {
|
8926
9200
|
serializedName: "expiredRequestedWorkerSelectors",
|
8927
9201
|
required: true,
|
8928
9202
|
type: {
|
@@ -8934,7 +9208,8 @@ const AcsRouterJobWorkerSelectorsExpiredEventData = {
|
|
8934
9208
|
}
|
8935
9209
|
}
|
8936
9210
|
}
|
8937
|
-
},
|
9211
|
+
},
|
9212
|
+
expiredAttachedWorkerSelectors: {
|
8938
9213
|
serializedName: "expiredAttachedWorkerSelectors",
|
8939
9214
|
required: true,
|
8940
9215
|
type: {
|
@@ -8946,281 +9221,334 @@ const AcsRouterJobWorkerSelectorsExpiredEventData = {
|
|
8946
9221
|
}
|
8947
9222
|
}
|
8948
9223
|
}
|
8949
|
-
}
|
9224
|
+
}
|
9225
|
+
}
|
8950
9226
|
}
|
8951
9227
|
};
|
8952
9228
|
const AcsRouterWorkerDeletedEventData = {
|
8953
9229
|
type: {
|
8954
9230
|
name: "Composite",
|
8955
9231
|
className: "AcsRouterWorkerDeletedEventData",
|
8956
|
-
modelProperties:
|
9232
|
+
modelProperties: {
|
9233
|
+
...AcsRouterWorkerEventData.type.modelProperties
|
9234
|
+
}
|
8957
9235
|
}
|
8958
9236
|
};
|
8959
9237
|
const AcsRouterWorkerOfferAcceptedEventData = {
|
8960
9238
|
type: {
|
8961
9239
|
name: "Composite",
|
8962
9240
|
className: "AcsRouterWorkerOfferAcceptedEventData",
|
8963
|
-
modelProperties:
|
9241
|
+
modelProperties: {
|
9242
|
+
...AcsRouterWorkerEventData.type.modelProperties,
|
9243
|
+
queueId: {
|
8964
9244
|
serializedName: "queueId",
|
8965
9245
|
required: true,
|
8966
9246
|
type: {
|
8967
9247
|
name: "String"
|
8968
9248
|
}
|
8969
|
-
},
|
9249
|
+
},
|
9250
|
+
offerId: {
|
8970
9251
|
serializedName: "offerId",
|
8971
9252
|
required: true,
|
8972
9253
|
type: {
|
8973
9254
|
name: "String"
|
8974
9255
|
}
|
8975
|
-
},
|
9256
|
+
},
|
9257
|
+
assignmentId: {
|
8976
9258
|
serializedName: "assignmentId",
|
8977
9259
|
required: true,
|
8978
9260
|
type: {
|
8979
9261
|
name: "String"
|
8980
9262
|
}
|
8981
|
-
},
|
9263
|
+
},
|
9264
|
+
jobPriority: {
|
8982
9265
|
serializedName: "jobPriority",
|
8983
9266
|
required: true,
|
8984
9267
|
type: {
|
8985
9268
|
name: "Number"
|
8986
9269
|
}
|
8987
|
-
},
|
9270
|
+
},
|
9271
|
+
workerLabels: {
|
8988
9272
|
serializedName: "workerLabels",
|
8989
9273
|
required: true,
|
8990
9274
|
type: {
|
8991
9275
|
name: "Dictionary",
|
8992
9276
|
value: { type: { name: "String" } }
|
8993
9277
|
}
|
8994
|
-
},
|
9278
|
+
},
|
9279
|
+
workerTags: {
|
8995
9280
|
serializedName: "workerTags",
|
8996
9281
|
required: true,
|
8997
9282
|
type: {
|
8998
9283
|
name: "Dictionary",
|
8999
9284
|
value: { type: { name: "String" } }
|
9000
9285
|
}
|
9001
|
-
},
|
9286
|
+
},
|
9287
|
+
jobLabels: {
|
9002
9288
|
serializedName: "jobLabels",
|
9003
9289
|
required: true,
|
9004
9290
|
type: {
|
9005
9291
|
name: "Dictionary",
|
9006
9292
|
value: { type: { name: "String" } }
|
9007
9293
|
}
|
9008
|
-
},
|
9294
|
+
},
|
9295
|
+
jobTags: {
|
9009
9296
|
serializedName: "jobTags",
|
9010
9297
|
required: true,
|
9011
9298
|
type: {
|
9012
9299
|
name: "Dictionary",
|
9013
9300
|
value: { type: { name: "String" } }
|
9014
9301
|
}
|
9015
|
-
}
|
9302
|
+
}
|
9303
|
+
}
|
9016
9304
|
}
|
9017
9305
|
};
|
9018
9306
|
const AcsRouterWorkerOfferDeclinedEventData = {
|
9019
9307
|
type: {
|
9020
9308
|
name: "Composite",
|
9021
9309
|
className: "AcsRouterWorkerOfferDeclinedEventData",
|
9022
|
-
modelProperties:
|
9310
|
+
modelProperties: {
|
9311
|
+
...AcsRouterWorkerEventData.type.modelProperties,
|
9312
|
+
queueId: {
|
9023
9313
|
serializedName: "queueId",
|
9024
9314
|
required: true,
|
9025
9315
|
type: {
|
9026
9316
|
name: "String"
|
9027
9317
|
}
|
9028
|
-
},
|
9318
|
+
},
|
9319
|
+
offerId: {
|
9029
9320
|
serializedName: "offerId",
|
9030
9321
|
required: true,
|
9031
9322
|
type: {
|
9032
9323
|
name: "String"
|
9033
9324
|
}
|
9034
|
-
}
|
9325
|
+
}
|
9326
|
+
}
|
9035
9327
|
}
|
9036
9328
|
};
|
9037
9329
|
const AcsRouterWorkerOfferExpiredEventData = {
|
9038
9330
|
type: {
|
9039
9331
|
name: "Composite",
|
9040
9332
|
className: "AcsRouterWorkerOfferExpiredEventData",
|
9041
|
-
modelProperties:
|
9333
|
+
modelProperties: {
|
9334
|
+
...AcsRouterWorkerEventData.type.modelProperties,
|
9335
|
+
queueId: {
|
9042
9336
|
serializedName: "queueId",
|
9043
9337
|
required: true,
|
9044
9338
|
type: {
|
9045
9339
|
name: "String"
|
9046
9340
|
}
|
9047
|
-
},
|
9341
|
+
},
|
9342
|
+
offerId: {
|
9048
9343
|
serializedName: "offerId",
|
9049
9344
|
required: true,
|
9050
9345
|
type: {
|
9051
9346
|
name: "String"
|
9052
9347
|
}
|
9053
|
-
}
|
9348
|
+
}
|
9349
|
+
}
|
9054
9350
|
}
|
9055
9351
|
};
|
9056
9352
|
const AcsRouterWorkerOfferIssuedEventData = {
|
9057
9353
|
type: {
|
9058
9354
|
name: "Composite",
|
9059
9355
|
className: "AcsRouterWorkerOfferIssuedEventData",
|
9060
|
-
modelProperties:
|
9356
|
+
modelProperties: {
|
9357
|
+
...AcsRouterWorkerEventData.type.modelProperties,
|
9358
|
+
queueId: {
|
9061
9359
|
serializedName: "queueId",
|
9062
9360
|
required: true,
|
9063
9361
|
type: {
|
9064
9362
|
name: "String"
|
9065
9363
|
}
|
9066
|
-
},
|
9364
|
+
},
|
9365
|
+
offerId: {
|
9067
9366
|
serializedName: "offerId",
|
9068
9367
|
required: true,
|
9069
9368
|
type: {
|
9070
9369
|
name: "String"
|
9071
9370
|
}
|
9072
|
-
},
|
9371
|
+
},
|
9372
|
+
jobPriority: {
|
9073
9373
|
serializedName: "jobPriority",
|
9074
9374
|
required: true,
|
9075
9375
|
type: {
|
9076
9376
|
name: "Number"
|
9077
9377
|
}
|
9078
|
-
},
|
9378
|
+
},
|
9379
|
+
workerLabels: {
|
9079
9380
|
serializedName: "workerLabels",
|
9080
9381
|
required: true,
|
9081
9382
|
type: {
|
9082
9383
|
name: "Dictionary",
|
9083
9384
|
value: { type: { name: "String" } }
|
9084
9385
|
}
|
9085
|
-
},
|
9386
|
+
},
|
9387
|
+
offeredOn: {
|
9086
9388
|
serializedName: "offeredOn",
|
9087
9389
|
required: true,
|
9088
9390
|
type: {
|
9089
9391
|
name: "String"
|
9090
9392
|
}
|
9091
|
-
},
|
9393
|
+
},
|
9394
|
+
expiresOn: {
|
9092
9395
|
serializedName: "expiresOn",
|
9093
9396
|
required: true,
|
9094
9397
|
type: {
|
9095
9398
|
name: "String"
|
9096
9399
|
}
|
9097
|
-
},
|
9400
|
+
},
|
9401
|
+
workerTags: {
|
9098
9402
|
serializedName: "workerTags",
|
9099
9403
|
required: true,
|
9100
9404
|
type: {
|
9101
9405
|
name: "Dictionary",
|
9102
9406
|
value: { type: { name: "String" } }
|
9103
9407
|
}
|
9104
|
-
},
|
9408
|
+
},
|
9409
|
+
jobLabels: {
|
9105
9410
|
serializedName: "jobLabels",
|
9106
9411
|
required: true,
|
9107
9412
|
type: {
|
9108
9413
|
name: "Dictionary",
|
9109
9414
|
value: { type: { name: "String" } }
|
9110
9415
|
}
|
9111
|
-
},
|
9416
|
+
},
|
9417
|
+
jobTags: {
|
9112
9418
|
serializedName: "jobTags",
|
9113
9419
|
required: true,
|
9114
9420
|
type: {
|
9115
9421
|
name: "Dictionary",
|
9116
9422
|
value: { type: { name: "String" } }
|
9117
9423
|
}
|
9118
|
-
}
|
9424
|
+
}
|
9425
|
+
}
|
9119
9426
|
}
|
9120
9427
|
};
|
9121
9428
|
const AcsRouterWorkerOfferRevokedEventData = {
|
9122
9429
|
type: {
|
9123
9430
|
name: "Composite",
|
9124
9431
|
className: "AcsRouterWorkerOfferRevokedEventData",
|
9125
|
-
modelProperties:
|
9432
|
+
modelProperties: {
|
9433
|
+
...AcsRouterWorkerEventData.type.modelProperties,
|
9434
|
+
queueId: {
|
9126
9435
|
serializedName: "queueId",
|
9127
9436
|
required: true,
|
9128
9437
|
type: {
|
9129
9438
|
name: "String"
|
9130
9439
|
}
|
9131
|
-
},
|
9440
|
+
},
|
9441
|
+
offerId: {
|
9132
9442
|
serializedName: "offerId",
|
9133
9443
|
required: true,
|
9134
9444
|
type: {
|
9135
9445
|
name: "String"
|
9136
9446
|
}
|
9137
|
-
}
|
9447
|
+
}
|
9448
|
+
}
|
9138
9449
|
}
|
9139
9450
|
};
|
9140
9451
|
const AcsChatMessageReceivedEventData = {
|
9141
9452
|
type: {
|
9142
9453
|
name: "Composite",
|
9143
9454
|
className: "AcsChatMessageReceivedEventData",
|
9144
|
-
modelProperties:
|
9455
|
+
modelProperties: {
|
9456
|
+
...AcsChatMessageEventBase.type.modelProperties,
|
9457
|
+
messageBody: {
|
9145
9458
|
serializedName: "messageBody",
|
9146
9459
|
required: true,
|
9147
9460
|
type: {
|
9148
9461
|
name: "String"
|
9149
9462
|
}
|
9150
|
-
},
|
9463
|
+
},
|
9464
|
+
metadata: {
|
9151
9465
|
serializedName: "metadata",
|
9152
9466
|
required: true,
|
9153
9467
|
type: {
|
9154
9468
|
name: "Dictionary",
|
9155
9469
|
value: { type: { name: "String" } }
|
9156
9470
|
}
|
9157
|
-
}
|
9471
|
+
}
|
9472
|
+
}
|
9158
9473
|
}
|
9159
9474
|
};
|
9160
9475
|
const AcsChatMessageEditedEventData = {
|
9161
9476
|
type: {
|
9162
9477
|
name: "Composite",
|
9163
9478
|
className: "AcsChatMessageEditedEventData",
|
9164
|
-
modelProperties:
|
9479
|
+
modelProperties: {
|
9480
|
+
...AcsChatMessageEventBase.type.modelProperties,
|
9481
|
+
messageBody: {
|
9165
9482
|
serializedName: "messageBody",
|
9166
9483
|
required: true,
|
9167
9484
|
type: {
|
9168
9485
|
name: "String"
|
9169
9486
|
}
|
9170
|
-
},
|
9487
|
+
},
|
9488
|
+
metadata: {
|
9171
9489
|
serializedName: "metadata",
|
9172
9490
|
required: true,
|
9173
9491
|
type: {
|
9174
9492
|
name: "Dictionary",
|
9175
9493
|
value: { type: { name: "String" } }
|
9176
9494
|
}
|
9177
|
-
},
|
9495
|
+
},
|
9496
|
+
editTime: {
|
9178
9497
|
serializedName: "editTime",
|
9179
9498
|
required: true,
|
9180
9499
|
type: {
|
9181
9500
|
name: "String"
|
9182
9501
|
}
|
9183
|
-
}
|
9502
|
+
}
|
9503
|
+
}
|
9184
9504
|
}
|
9185
9505
|
};
|
9186
9506
|
const AcsChatMessageDeletedEventData = {
|
9187
9507
|
type: {
|
9188
9508
|
name: "Composite",
|
9189
9509
|
className: "AcsChatMessageDeletedEventData",
|
9190
|
-
modelProperties:
|
9510
|
+
modelProperties: {
|
9511
|
+
...AcsChatMessageEventBase.type.modelProperties,
|
9512
|
+
deleteTime: {
|
9191
9513
|
serializedName: "deleteTime",
|
9192
9514
|
required: true,
|
9193
9515
|
type: {
|
9194
9516
|
name: "String"
|
9195
9517
|
}
|
9196
|
-
}
|
9518
|
+
}
|
9519
|
+
}
|
9197
9520
|
}
|
9198
9521
|
};
|
9199
9522
|
const AcsChatThreadCreatedWithUserEventData = {
|
9200
9523
|
type: {
|
9201
9524
|
name: "Composite",
|
9202
9525
|
className: "AcsChatThreadCreatedWithUserEventData",
|
9203
|
-
modelProperties:
|
9526
|
+
modelProperties: {
|
9527
|
+
...AcsChatThreadEventBase.type.modelProperties,
|
9528
|
+
createdByCommunicationIdentifier: {
|
9204
9529
|
serializedName: "createdByCommunicationIdentifier",
|
9205
9530
|
type: {
|
9206
9531
|
name: "Composite",
|
9207
9532
|
className: "CommunicationIdentifierModel"
|
9208
9533
|
}
|
9209
|
-
},
|
9534
|
+
},
|
9535
|
+
properties: {
|
9210
9536
|
serializedName: "properties",
|
9211
9537
|
required: true,
|
9212
9538
|
type: {
|
9213
9539
|
name: "Dictionary",
|
9214
9540
|
value: { type: { name: "any" } }
|
9215
9541
|
}
|
9216
|
-
},
|
9542
|
+
},
|
9543
|
+
metadata: {
|
9217
9544
|
serializedName: "metadata",
|
9218
9545
|
required: true,
|
9219
9546
|
type: {
|
9220
9547
|
name: "Dictionary",
|
9221
9548
|
value: { type: { name: "String" } }
|
9222
9549
|
}
|
9223
|
-
},
|
9550
|
+
},
|
9551
|
+
participants: {
|
9224
9552
|
serializedName: "participants",
|
9225
9553
|
required: true,
|
9226
9554
|
type: {
|
@@ -9232,188 +9560,225 @@ const AcsChatThreadCreatedWithUserEventData = {
|
|
9232
9560
|
}
|
9233
9561
|
}
|
9234
9562
|
}
|
9235
|
-
}
|
9563
|
+
}
|
9564
|
+
}
|
9236
9565
|
}
|
9237
9566
|
};
|
9238
9567
|
const AcsChatThreadWithUserDeletedEventData = {
|
9239
9568
|
type: {
|
9240
9569
|
name: "Composite",
|
9241
9570
|
className: "AcsChatThreadWithUserDeletedEventData",
|
9242
|
-
modelProperties:
|
9571
|
+
modelProperties: {
|
9572
|
+
...AcsChatThreadEventBase.type.modelProperties,
|
9573
|
+
deletedByCommunicationIdentifier: {
|
9243
9574
|
serializedName: "deletedByCommunicationIdentifier",
|
9244
9575
|
type: {
|
9245
9576
|
name: "Composite",
|
9246
9577
|
className: "CommunicationIdentifierModel"
|
9247
9578
|
}
|
9248
|
-
},
|
9579
|
+
},
|
9580
|
+
deleteTime: {
|
9249
9581
|
serializedName: "deleteTime",
|
9250
9582
|
required: true,
|
9251
9583
|
type: {
|
9252
9584
|
name: "String"
|
9253
9585
|
}
|
9254
|
-
}
|
9586
|
+
}
|
9587
|
+
}
|
9255
9588
|
}
|
9256
9589
|
};
|
9257
9590
|
const AcsChatThreadPropertiesUpdatedPerUserEventData = {
|
9258
9591
|
type: {
|
9259
9592
|
name: "Composite",
|
9260
9593
|
className: "AcsChatThreadPropertiesUpdatedPerUserEventData",
|
9261
|
-
modelProperties:
|
9594
|
+
modelProperties: {
|
9595
|
+
...AcsChatThreadEventBase.type.modelProperties,
|
9596
|
+
editedByCommunicationIdentifier: {
|
9262
9597
|
serializedName: "editedByCommunicationIdentifier",
|
9263
9598
|
type: {
|
9264
9599
|
name: "Composite",
|
9265
9600
|
className: "CommunicationIdentifierModel"
|
9266
9601
|
}
|
9267
|
-
},
|
9602
|
+
},
|
9603
|
+
editTime: {
|
9268
9604
|
serializedName: "editTime",
|
9269
9605
|
required: true,
|
9270
9606
|
type: {
|
9271
9607
|
name: "String"
|
9272
9608
|
}
|
9273
|
-
},
|
9609
|
+
},
|
9610
|
+
metadata: {
|
9274
9611
|
serializedName: "metadata",
|
9275
9612
|
required: true,
|
9276
9613
|
type: {
|
9277
9614
|
name: "Dictionary",
|
9278
9615
|
value: { type: { name: "String" } }
|
9279
9616
|
}
|
9280
|
-
},
|
9617
|
+
},
|
9618
|
+
properties: {
|
9281
9619
|
serializedName: "properties",
|
9282
9620
|
required: true,
|
9283
9621
|
type: {
|
9284
9622
|
name: "Dictionary",
|
9285
9623
|
value: { type: { name: "any" } }
|
9286
9624
|
}
|
9287
|
-
}
|
9625
|
+
}
|
9626
|
+
}
|
9288
9627
|
}
|
9289
9628
|
};
|
9290
9629
|
const AcsChatParticipantAddedToThreadWithUserEventData = {
|
9291
9630
|
type: {
|
9292
9631
|
name: "Composite",
|
9293
9632
|
className: "AcsChatParticipantAddedToThreadWithUserEventData",
|
9294
|
-
modelProperties:
|
9633
|
+
modelProperties: {
|
9634
|
+
...AcsChatThreadEventBase.type.modelProperties,
|
9635
|
+
time: {
|
9295
9636
|
serializedName: "time",
|
9296
9637
|
required: true,
|
9297
9638
|
type: {
|
9298
9639
|
name: "String"
|
9299
9640
|
}
|
9300
|
-
},
|
9641
|
+
},
|
9642
|
+
addedByCommunicationIdentifier: {
|
9301
9643
|
serializedName: "addedByCommunicationIdentifier",
|
9302
9644
|
type: {
|
9303
9645
|
name: "Composite",
|
9304
9646
|
className: "CommunicationIdentifierModel"
|
9305
9647
|
}
|
9306
|
-
},
|
9648
|
+
},
|
9649
|
+
participantAdded: {
|
9307
9650
|
serializedName: "participantAdded",
|
9308
9651
|
type: {
|
9309
9652
|
name: "Composite",
|
9310
9653
|
className: "AcsChatThreadParticipant"
|
9311
9654
|
}
|
9312
|
-
}
|
9655
|
+
}
|
9656
|
+
}
|
9313
9657
|
}
|
9314
9658
|
};
|
9315
9659
|
const AcsChatParticipantRemovedFromThreadWithUserEventData = {
|
9316
9660
|
type: {
|
9317
9661
|
name: "Composite",
|
9318
9662
|
className: "AcsChatParticipantRemovedFromThreadWithUserEventData",
|
9319
|
-
modelProperties:
|
9663
|
+
modelProperties: {
|
9664
|
+
...AcsChatThreadEventBase.type.modelProperties,
|
9665
|
+
time: {
|
9320
9666
|
serializedName: "time",
|
9321
9667
|
required: true,
|
9322
9668
|
type: {
|
9323
9669
|
name: "String"
|
9324
9670
|
}
|
9325
|
-
},
|
9671
|
+
},
|
9672
|
+
removedByCommunicationIdentifier: {
|
9326
9673
|
serializedName: "removedByCommunicationIdentifier",
|
9327
9674
|
type: {
|
9328
9675
|
name: "Composite",
|
9329
9676
|
className: "CommunicationIdentifierModel"
|
9330
9677
|
}
|
9331
|
-
},
|
9678
|
+
},
|
9679
|
+
participantRemoved: {
|
9332
9680
|
serializedName: "participantRemoved",
|
9333
9681
|
type: {
|
9334
9682
|
name: "Composite",
|
9335
9683
|
className: "AcsChatThreadParticipant"
|
9336
9684
|
}
|
9337
|
-
}
|
9685
|
+
}
|
9686
|
+
}
|
9338
9687
|
}
|
9339
9688
|
};
|
9340
9689
|
const AcsChatMessageReceivedInThreadEventData = {
|
9341
9690
|
type: {
|
9342
9691
|
name: "Composite",
|
9343
9692
|
className: "AcsChatMessageReceivedInThreadEventData",
|
9344
|
-
modelProperties:
|
9693
|
+
modelProperties: {
|
9694
|
+
...AcsChatMessageEventInThreadBase.type.modelProperties,
|
9695
|
+
messageBody: {
|
9345
9696
|
serializedName: "messageBody",
|
9346
9697
|
required: true,
|
9347
9698
|
type: {
|
9348
9699
|
name: "String"
|
9349
9700
|
}
|
9350
|
-
},
|
9701
|
+
},
|
9702
|
+
metadata: {
|
9351
9703
|
serializedName: "metadata",
|
9352
9704
|
required: true,
|
9353
9705
|
type: {
|
9354
9706
|
name: "Dictionary",
|
9355
9707
|
value: { type: { name: "String" } }
|
9356
9708
|
}
|
9357
|
-
}
|
9709
|
+
}
|
9710
|
+
}
|
9358
9711
|
}
|
9359
9712
|
};
|
9360
9713
|
const AcsChatMessageEditedInThreadEventData = {
|
9361
9714
|
type: {
|
9362
9715
|
name: "Composite",
|
9363
9716
|
className: "AcsChatMessageEditedInThreadEventData",
|
9364
|
-
modelProperties:
|
9717
|
+
modelProperties: {
|
9718
|
+
...AcsChatMessageEventInThreadBase.type.modelProperties,
|
9719
|
+
messageBody: {
|
9365
9720
|
serializedName: "messageBody",
|
9366
9721
|
required: true,
|
9367
9722
|
type: {
|
9368
9723
|
name: "String"
|
9369
9724
|
}
|
9370
|
-
},
|
9725
|
+
},
|
9726
|
+
metadata: {
|
9371
9727
|
serializedName: "metadata",
|
9372
9728
|
required: true,
|
9373
9729
|
type: {
|
9374
9730
|
name: "Dictionary",
|
9375
9731
|
value: { type: { name: "String" } }
|
9376
9732
|
}
|
9377
|
-
},
|
9733
|
+
},
|
9734
|
+
editTime: {
|
9378
9735
|
serializedName: "editTime",
|
9379
9736
|
required: true,
|
9380
9737
|
type: {
|
9381
9738
|
name: "String"
|
9382
9739
|
}
|
9383
|
-
}
|
9740
|
+
}
|
9741
|
+
}
|
9384
9742
|
}
|
9385
9743
|
};
|
9386
9744
|
const AcsChatMessageDeletedInThreadEventData = {
|
9387
9745
|
type: {
|
9388
9746
|
name: "Composite",
|
9389
9747
|
className: "AcsChatMessageDeletedInThreadEventData",
|
9390
|
-
modelProperties:
|
9748
|
+
modelProperties: {
|
9749
|
+
...AcsChatMessageEventInThreadBase.type.modelProperties,
|
9750
|
+
deleteTime: {
|
9391
9751
|
serializedName: "deleteTime",
|
9392
9752
|
required: true,
|
9393
9753
|
type: {
|
9394
9754
|
name: "String"
|
9395
9755
|
}
|
9396
|
-
}
|
9756
|
+
}
|
9757
|
+
}
|
9397
9758
|
}
|
9398
9759
|
};
|
9399
9760
|
const AcsChatThreadCreatedEventData = {
|
9400
9761
|
type: {
|
9401
9762
|
name: "Composite",
|
9402
9763
|
className: "AcsChatThreadCreatedEventData",
|
9403
|
-
modelProperties:
|
9764
|
+
modelProperties: {
|
9765
|
+
...AcsChatThreadEventInThreadBase.type.modelProperties,
|
9766
|
+
createdByCommunicationIdentifier: {
|
9404
9767
|
serializedName: "createdByCommunicationIdentifier",
|
9405
9768
|
type: {
|
9406
9769
|
name: "Composite",
|
9407
9770
|
className: "CommunicationIdentifierModel"
|
9408
9771
|
}
|
9409
|
-
},
|
9772
|
+
},
|
9773
|
+
properties: {
|
9410
9774
|
serializedName: "properties",
|
9411
9775
|
required: true,
|
9412
9776
|
type: {
|
9413
9777
|
name: "Dictionary",
|
9414
9778
|
value: { type: { name: "any" } }
|
9415
9779
|
}
|
9416
|
-
},
|
9780
|
+
},
|
9781
|
+
participants: {
|
9417
9782
|
serializedName: "participants",
|
9418
9783
|
required: true,
|
9419
9784
|
type: {
|
@@ -9425,59 +9790,70 @@ const AcsChatThreadCreatedEventData = {
|
|
9425
9790
|
}
|
9426
9791
|
}
|
9427
9792
|
}
|
9428
|
-
}
|
9793
|
+
}
|
9794
|
+
}
|
9429
9795
|
}
|
9430
9796
|
};
|
9431
9797
|
const AcsChatThreadDeletedEventData = {
|
9432
9798
|
type: {
|
9433
9799
|
name: "Composite",
|
9434
9800
|
className: "AcsChatThreadDeletedEventData",
|
9435
|
-
modelProperties:
|
9801
|
+
modelProperties: {
|
9802
|
+
...AcsChatThreadEventInThreadBase.type.modelProperties,
|
9803
|
+
deletedByCommunicationIdentifier: {
|
9436
9804
|
serializedName: "deletedByCommunicationIdentifier",
|
9437
9805
|
type: {
|
9438
9806
|
name: "Composite",
|
9439
9807
|
className: "CommunicationIdentifierModel"
|
9440
9808
|
}
|
9441
|
-
},
|
9809
|
+
},
|
9810
|
+
deleteTime: {
|
9442
9811
|
serializedName: "deleteTime",
|
9443
9812
|
required: true,
|
9444
9813
|
type: {
|
9445
9814
|
name: "String"
|
9446
9815
|
}
|
9447
|
-
}
|
9816
|
+
}
|
9817
|
+
}
|
9448
9818
|
}
|
9449
9819
|
};
|
9450
9820
|
const AcsChatThreadPropertiesUpdatedEventData = {
|
9451
9821
|
type: {
|
9452
9822
|
name: "Composite",
|
9453
9823
|
className: "AcsChatThreadPropertiesUpdatedEventData",
|
9454
|
-
modelProperties:
|
9824
|
+
modelProperties: {
|
9825
|
+
...AcsChatThreadEventInThreadBase.type.modelProperties,
|
9826
|
+
editedByCommunicationIdentifier: {
|
9455
9827
|
serializedName: "editedByCommunicationIdentifier",
|
9456
9828
|
type: {
|
9457
9829
|
name: "Composite",
|
9458
9830
|
className: "CommunicationIdentifierModel"
|
9459
9831
|
}
|
9460
|
-
},
|
9832
|
+
},
|
9833
|
+
editTime: {
|
9461
9834
|
serializedName: "editTime",
|
9462
9835
|
required: true,
|
9463
9836
|
type: {
|
9464
9837
|
name: "String"
|
9465
9838
|
}
|
9466
|
-
},
|
9839
|
+
},
|
9840
|
+
properties: {
|
9467
9841
|
serializedName: "properties",
|
9468
9842
|
required: true,
|
9469
9843
|
type: {
|
9470
9844
|
name: "Dictionary",
|
9471
9845
|
value: { type: { name: "any" } }
|
9472
9846
|
}
|
9473
|
-
},
|
9847
|
+
},
|
9848
|
+
metadata: {
|
9474
9849
|
serializedName: "metadata",
|
9475
9850
|
required: true,
|
9476
9851
|
type: {
|
9477
9852
|
name: "Dictionary",
|
9478
9853
|
value: { type: { name: "String" } }
|
9479
9854
|
}
|
9480
|
-
}
|
9855
|
+
}
|
9856
|
+
}
|
9481
9857
|
}
|
9482
9858
|
};
|
9483
9859
|
let discriminators = {
|
@@ -9732,6 +10108,8 @@ var Mappers = /*#__PURE__*/Object.freeze({
|
|
9732
10108
|
StorageDirectoryRenamedEventData: StorageDirectoryRenamedEventData,
|
9733
10109
|
StorageLifecyclePolicyActionSummaryDetail: StorageLifecyclePolicyActionSummaryDetail,
|
9734
10110
|
StorageLifecyclePolicyCompletedEventData: StorageLifecyclePolicyCompletedEventData,
|
10111
|
+
StorageTaskAssignmentCompletedEventData: StorageTaskAssignmentCompletedEventData,
|
10112
|
+
StorageTaskAssignmentQueuedEventData: StorageTaskAssignmentQueuedEventData,
|
9735
10113
|
StorageTaskCompletedEventData: StorageTaskCompletedEventData,
|
9736
10114
|
StorageTaskQueuedEventData: StorageTaskQueuedEventData,
|
9737
10115
|
SubscriptionDeletedEventData: SubscriptionDeletedEventData,
|
@@ -9775,13 +10153,18 @@ class GeneratedClientContext extends coreClient__namespace.ServiceClient {
|
|
9775
10153
|
const defaults = {
|
9776
10154
|
requestContentType: "application/json; charset=utf-8"
|
9777
10155
|
};
|
9778
|
-
const packageDetails = `azsdk-js-eventgrid/5.
|
10156
|
+
const packageDetails = `azsdk-js-eventgrid/5.1.0`;
|
9779
10157
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
9780
10158
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
9781
10159
|
: `${packageDetails}`;
|
9782
|
-
const optionsWithDefaults =
|
10160
|
+
const optionsWithDefaults = {
|
10161
|
+
...defaults,
|
10162
|
+
...options,
|
10163
|
+
userAgentOptions: {
|
9783
10164
|
userAgentPrefix
|
9784
|
-
},
|
10165
|
+
},
|
10166
|
+
baseUri: options.endpoint || "{topicHostname}"
|
10167
|
+
};
|
9785
10168
|
super(optionsWithDefaults);
|
9786
10169
|
// Assigning values to Constant parameters
|
9787
10170
|
this.apiVersion = options.apiVersion || "2018-01-01";
|
@@ -9930,7 +10313,7 @@ function cloudEventDistributedTracingEnricherPolicy() {
|
|
9930
10313
|
const tracingClient = coreTracing.createTracingClient({
|
9931
10314
|
namespace: "Microsoft.Messaging.EventGrid",
|
9932
10315
|
packageName: "@azure/event-grid",
|
9933
|
-
packageVersion: "5.
|
10316
|
+
packageVersion: "5.1.0",
|
9934
10317
|
});
|
9935
10318
|
|
9936
10319
|
// Copyright (c) Microsoft Corporation.
|
@@ -9987,7 +10370,7 @@ class EventGridPublisherClient {
|
|
9987
10370
|
// The underlying REST API expects a header named `aeg-channel-name`, and so the generated client
|
9988
10371
|
// expects that options bag has a property called `aegChannelName`, where as we expose it with the
|
9989
10372
|
// friendlier name "channelName". Fix up the impedence mismatch here
|
9990
|
-
const
|
10373
|
+
const { channelName, ...sendOptions } = updatedOptions;
|
9991
10374
|
if (channelName) {
|
9992
10375
|
sendOptions.aegChannelName = channelName;
|
9993
10376
|
}
|
@@ -10007,11 +10390,10 @@ class EventGridPublisherClient {
|
|
10007
10390
|
* @internal
|
10008
10391
|
*/
|
10009
10392
|
function convertEventGridEventToModelType(event) {
|
10010
|
-
var _a, _b;
|
10011
10393
|
return {
|
10012
10394
|
eventType: event.eventType,
|
10013
|
-
eventTime:
|
10014
|
-
id:
|
10395
|
+
eventTime: event.eventTime ?? new Date(),
|
10396
|
+
id: event.id ?? uuid.v4(),
|
10015
10397
|
subject: event.subject,
|
10016
10398
|
topic: event.topic,
|
10017
10399
|
data: event.data,
|
@@ -10022,7 +10404,6 @@ function convertEventGridEventToModelType(event) {
|
|
10022
10404
|
* @internal
|
10023
10405
|
*/
|
10024
10406
|
function convertCloudEventToModelType(event) {
|
10025
|
-
var _a, _b, _c, _d;
|
10026
10407
|
if (event.extensionAttributes) {
|
10027
10408
|
for (const propName in event.extensionAttributes) {
|
10028
10409
|
// Per the cloud events spec: "CloudEvents attribute names MUST consist of lower-case letters ('a' to 'z') or digits ('0' to '9') from the ASCII character set"
|
@@ -10033,7 +10414,16 @@ function convertCloudEventToModelType(event) {
|
|
10033
10414
|
}
|
10034
10415
|
}
|
10035
10416
|
}
|
10036
|
-
const converted =
|
10417
|
+
const converted = {
|
10418
|
+
specversion: "1.0",
|
10419
|
+
type: event.type,
|
10420
|
+
source: event.source,
|
10421
|
+
id: event.id ?? uuid.v4(),
|
10422
|
+
time: event.time ?? new Date(),
|
10423
|
+
subject: event.subject,
|
10424
|
+
dataschema: event.dataschema,
|
10425
|
+
...(event.extensionAttributes ?? []),
|
10426
|
+
};
|
10037
10427
|
if (event.data instanceof Uint8Array) {
|
10038
10428
|
if (!event.datacontenttype) {
|
10039
10429
|
throw new Error("a data content type must be provided when sending an event with binary data");
|
@@ -10042,7 +10432,7 @@ function convertCloudEventToModelType(event) {
|
|
10042
10432
|
converted.dataBase64 = event.data;
|
10043
10433
|
}
|
10044
10434
|
else {
|
10045
|
-
converted.datacontenttype =
|
10435
|
+
converted.datacontenttype = event.datacontenttype ?? "application/json";
|
10046
10436
|
converted.data = event.data;
|
10047
10437
|
}
|
10048
10438
|
return converted;
|
@@ -10071,7 +10461,7 @@ async function sha256Hmac(secret, stringToSign) {
|
|
10071
10461
|
*/
|
10072
10462
|
async function generateSharedAccessSignature(endpointUrl, credential, expiresOnUtc, options) {
|
10073
10463
|
const expiresOnString = dateToServiceTimeString(expiresOnUtc);
|
10074
|
-
const unsignedSas = `r=${encodeURIComponent(`${endpointUrl}?apiVersion=${
|
10464
|
+
const unsignedSas = `r=${encodeURIComponent(`${endpointUrl}?apiVersion=${options?.apiVersion || DEFAULT_API_VERSION}`)}&e=${encodeURIComponent(expiresOnString)}`;
|
10075
10465
|
return sha256Hmac(credential.key, unsignedSas).then((digest) => `${unsignedSas}&s=${encodeURIComponent(digest)}`);
|
10076
10466
|
}
|
10077
10467
|
|
@@ -10140,7 +10530,7 @@ class EventGridDeserializer {
|
|
10140
10530
|
modelEvent.data = deserialized.dataBase64;
|
10141
10531
|
}
|
10142
10532
|
// Build the "extensionsAttributes" property bag by removing all known top level properties.
|
10143
|
-
const extensionAttributes =
|
10533
|
+
const extensionAttributes = { ...deserialized };
|
10144
10534
|
for (const propName of cloudEventReservedPropertyNames) {
|
10145
10535
|
delete extensionAttributes[propName];
|
10146
10536
|
}
|
@@ -10174,11 +10564,11 @@ function isSystemEvent(eventType, event) {
|
|
10174
10564
|
}
|
10175
10565
|
}
|
10176
10566
|
|
10177
|
-
Object.defineProperty(exports,
|
10567
|
+
Object.defineProperty(exports, "AzureKeyCredential", {
|
10178
10568
|
enumerable: true,
|
10179
10569
|
get: function () { return coreAuth.AzureKeyCredential; }
|
10180
10570
|
});
|
10181
|
-
Object.defineProperty(exports,
|
10571
|
+
Object.defineProperty(exports, "AzureSASCredential", {
|
10182
10572
|
enumerable: true,
|
10183
10573
|
get: function () { return coreAuth.AzureSASCredential; }
|
10184
10574
|
});
|