@azure/eventgrid-systemevents 1.0.0 → 1.0.1-alpha.20250630.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.
@@ -3065,7 +3065,7 @@ export interface ResourceWriteSuccessEventData {
3065
3065
  /** The resource provider performing the operation. */
3066
3066
  resourceProvider?: string;
3067
3067
  /** The URI of the resource in the operation. */
3068
- resourceUri?: string;
3068
+ resourceUrl?: string;
3069
3069
  /** The operation that was performed. */
3070
3070
  operationName?: string;
3071
3071
  /** The status of the operation. */
@@ -3113,7 +3113,7 @@ export interface ResourceWriteFailureEventData {
3113
3113
  /** The resource provider performing the operation. */
3114
3114
  resourceProvider?: string;
3115
3115
  /** The URI of the resource in the operation. */
3116
- resourceUri?: string;
3116
+ resourceUrl?: string;
3117
3117
  /** The operation that was performed. */
3118
3118
  operationName?: string;
3119
3119
  /** The status of the operation. */
@@ -3139,7 +3139,7 @@ export interface ResourceWriteCancelEventData {
3139
3139
  /** The resource provider performing the operation. */
3140
3140
  resourceProvider?: string;
3141
3141
  /** The URI of the resource in the operation. */
3142
- resourceUri?: string;
3142
+ resourceUrl?: string;
3143
3143
  /** The operation that was performed. */
3144
3144
  operationName?: string;
3145
3145
  /** The status of the operation. */
@@ -3165,7 +3165,7 @@ export interface ResourceDeleteSuccessEventData {
3165
3165
  /** The resource provider performing the operation. */
3166
3166
  resourceProvider?: string;
3167
3167
  /** The URI of the resource in the operation. */
3168
- resourceUri?: string;
3168
+ resourceUrl?: string;
3169
3169
  /** The operation that was performed. */
3170
3170
  operationName?: string;
3171
3171
  /** The status of the operation. */
@@ -3191,7 +3191,7 @@ export interface ResourceDeleteFailureEventData {
3191
3191
  /** The resource provider performing the operation. */
3192
3192
  resourceProvider?: string;
3193
3193
  /** The URI of the resource in the operation. */
3194
- resourceUri?: string;
3194
+ resourceUrl?: string;
3195
3195
  /** The operation that was performed. */
3196
3196
  operationName?: string;
3197
3197
  /** The status of the operation. */
@@ -3217,7 +3217,7 @@ export interface ResourceDeleteCancelEventData {
3217
3217
  /** The resource provider performing the operation. */
3218
3218
  resourceProvider?: string;
3219
3219
  /** The URI of the resource in the operation. */
3220
- resourceUri?: string;
3220
+ resourceUrl?: string;
3221
3221
  /** The operation that was performed. */
3222
3222
  operationName?: string;
3223
3223
  /** The status of the operation. */
@@ -3243,7 +3243,7 @@ export interface ResourceActionSuccessEventData {
3243
3243
  /** The resource provider performing the operation. */
3244
3244
  resourceProvider?: string;
3245
3245
  /** The URI of the resource in the operation. */
3246
- resourceUri?: string;
3246
+ resourceUrl?: string;
3247
3247
  /** The operation that was performed. */
3248
3248
  operationName?: string;
3249
3249
  /** The status of the operation. */
@@ -3269,7 +3269,7 @@ export interface ResourceActionFailureEventData {
3269
3269
  /** The resource provider performing the operation. */
3270
3270
  resourceProvider?: string;
3271
3271
  /** The URI of the resource in the operation. */
3272
- resourceUri?: string;
3272
+ resourceUrl?: string;
3273
3273
  /** The operation that was performed. */
3274
3274
  operationName?: string;
3275
3275
  /** The status of the operation. */
@@ -3295,7 +3295,7 @@ export interface ResourceActionCancelEventData {
3295
3295
  /** The resource provider performing the operation. */
3296
3296
  resourceProvider?: string;
3297
3297
  /** The URI of the resource in the operation. */
3298
- resourceUri?: string;
3298
+ resourceUrl?: string;
3299
3299
  /** The operation that was performed. */
3300
3300
  operationName?: string;
3301
3301
  /** The status of the operation. */
@@ -3008,7 +3008,7 @@ function resourceWriteSuccessEventDataDeserializer(item) {
3008
3008
  subscriptionId: item["subscriptionId"],
3009
3009
  resourceGroup: item["resourceGroup"],
3010
3010
  resourceProvider: item["resourceProvider"],
3011
- resourceUri: item["resourceUri"],
3011
+ resourceUrl: item["resourceUri"],
3012
3012
  operationName: item["operationName"],
3013
3013
  status: item["status"],
3014
3014
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -3038,7 +3038,7 @@ function resourceWriteFailureEventDataDeserializer(item) {
3038
3038
  subscriptionId: item["subscriptionId"],
3039
3039
  resourceGroup: item["resourceGroup"],
3040
3040
  resourceProvider: item["resourceProvider"],
3041
- resourceUri: item["resourceUri"],
3041
+ resourceUrl: item["resourceUri"],
3042
3042
  operationName: item["operationName"],
3043
3043
  status: item["status"],
3044
3044
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -3053,7 +3053,7 @@ function resourceWriteCancelEventDataDeserializer(item) {
3053
3053
  subscriptionId: item["subscriptionId"],
3054
3054
  resourceGroup: item["resourceGroup"],
3055
3055
  resourceProvider: item["resourceProvider"],
3056
- resourceUri: item["resourceUri"],
3056
+ resourceUrl: item["resourceUri"],
3057
3057
  operationName: item["operationName"],
3058
3058
  status: item["status"],
3059
3059
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -3068,7 +3068,7 @@ function resourceDeleteSuccessEventDataDeserializer(item) {
3068
3068
  subscriptionId: item["subscriptionId"],
3069
3069
  resourceGroup: item["resourceGroup"],
3070
3070
  resourceProvider: item["resourceProvider"],
3071
- resourceUri: item["resourceUri"],
3071
+ resourceUrl: item["resourceUri"],
3072
3072
  operationName: item["operationName"],
3073
3073
  status: item["status"],
3074
3074
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -3083,7 +3083,7 @@ function resourceDeleteFailureEventDataDeserializer(item) {
3083
3083
  subscriptionId: item["subscriptionId"],
3084
3084
  resourceGroup: item["resourceGroup"],
3085
3085
  resourceProvider: item["resourceProvider"],
3086
- resourceUri: item["resourceUri"],
3086
+ resourceUrl: item["resourceUri"],
3087
3087
  operationName: item["operationName"],
3088
3088
  status: item["status"],
3089
3089
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -3098,7 +3098,7 @@ function resourceDeleteCancelEventDataDeserializer(item) {
3098
3098
  subscriptionId: item["subscriptionId"],
3099
3099
  resourceGroup: item["resourceGroup"],
3100
3100
  resourceProvider: item["resourceProvider"],
3101
- resourceUri: item["resourceUri"],
3101
+ resourceUrl: item["resourceUri"],
3102
3102
  operationName: item["operationName"],
3103
3103
  status: item["status"],
3104
3104
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -3113,7 +3113,7 @@ function resourceActionSuccessEventDataDeserializer(item) {
3113
3113
  subscriptionId: item["subscriptionId"],
3114
3114
  resourceGroup: item["resourceGroup"],
3115
3115
  resourceProvider: item["resourceProvider"],
3116
- resourceUri: item["resourceUri"],
3116
+ resourceUrl: item["resourceUri"],
3117
3117
  operationName: item["operationName"],
3118
3118
  status: item["status"],
3119
3119
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -3128,7 +3128,7 @@ function resourceActionFailureEventDataDeserializer(item) {
3128
3128
  subscriptionId: item["subscriptionId"],
3129
3129
  resourceGroup: item["resourceGroup"],
3130
3130
  resourceProvider: item["resourceProvider"],
3131
- resourceUri: item["resourceUri"],
3131
+ resourceUrl: item["resourceUri"],
3132
3132
  operationName: item["operationName"],
3133
3133
  status: item["status"],
3134
3134
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -3143,7 +3143,7 @@ function resourceActionCancelEventDataDeserializer(item) {
3143
3143
  subscriptionId: item["subscriptionId"],
3144
3144
  resourceGroup: item["resourceGroup"],
3145
3145
  resourceProvider: item["resourceProvider"],
3146
- resourceUri: item["resourceUri"],
3146
+ resourceUrl: item["resourceUri"],
3147
3147
  operationName: item["operationName"],
3148
3148
  status: item["status"],
3149
3149
  authorization: resourceAuthorizationDeserializer(item["authorization"]),