@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. */
@@ -2707,7 +2707,7 @@ export function resourceWriteSuccessEventDataDeserializer(item) {
2707
2707
  subscriptionId: item["subscriptionId"],
2708
2708
  resourceGroup: item["resourceGroup"],
2709
2709
  resourceProvider: item["resourceProvider"],
2710
- resourceUri: item["resourceUri"],
2710
+ resourceUrl: item["resourceUri"],
2711
2711
  operationName: item["operationName"],
2712
2712
  status: item["status"],
2713
2713
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -2737,7 +2737,7 @@ export function resourceWriteFailureEventDataDeserializer(item) {
2737
2737
  subscriptionId: item["subscriptionId"],
2738
2738
  resourceGroup: item["resourceGroup"],
2739
2739
  resourceProvider: item["resourceProvider"],
2740
- resourceUri: item["resourceUri"],
2740
+ resourceUrl: item["resourceUri"],
2741
2741
  operationName: item["operationName"],
2742
2742
  status: item["status"],
2743
2743
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -2752,7 +2752,7 @@ export function resourceWriteCancelEventDataDeserializer(item) {
2752
2752
  subscriptionId: item["subscriptionId"],
2753
2753
  resourceGroup: item["resourceGroup"],
2754
2754
  resourceProvider: item["resourceProvider"],
2755
- resourceUri: item["resourceUri"],
2755
+ resourceUrl: item["resourceUri"],
2756
2756
  operationName: item["operationName"],
2757
2757
  status: item["status"],
2758
2758
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -2767,7 +2767,7 @@ export function resourceDeleteSuccessEventDataDeserializer(item) {
2767
2767
  subscriptionId: item["subscriptionId"],
2768
2768
  resourceGroup: item["resourceGroup"],
2769
2769
  resourceProvider: item["resourceProvider"],
2770
- resourceUri: item["resourceUri"],
2770
+ resourceUrl: item["resourceUri"],
2771
2771
  operationName: item["operationName"],
2772
2772
  status: item["status"],
2773
2773
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -2782,7 +2782,7 @@ export function resourceDeleteFailureEventDataDeserializer(item) {
2782
2782
  subscriptionId: item["subscriptionId"],
2783
2783
  resourceGroup: item["resourceGroup"],
2784
2784
  resourceProvider: item["resourceProvider"],
2785
- resourceUri: item["resourceUri"],
2785
+ resourceUrl: item["resourceUri"],
2786
2786
  operationName: item["operationName"],
2787
2787
  status: item["status"],
2788
2788
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -2797,7 +2797,7 @@ export function resourceDeleteCancelEventDataDeserializer(item) {
2797
2797
  subscriptionId: item["subscriptionId"],
2798
2798
  resourceGroup: item["resourceGroup"],
2799
2799
  resourceProvider: item["resourceProvider"],
2800
- resourceUri: item["resourceUri"],
2800
+ resourceUrl: item["resourceUri"],
2801
2801
  operationName: item["operationName"],
2802
2802
  status: item["status"],
2803
2803
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -2812,7 +2812,7 @@ export function resourceActionSuccessEventDataDeserializer(item) {
2812
2812
  subscriptionId: item["subscriptionId"],
2813
2813
  resourceGroup: item["resourceGroup"],
2814
2814
  resourceProvider: item["resourceProvider"],
2815
- resourceUri: item["resourceUri"],
2815
+ resourceUrl: item["resourceUri"],
2816
2816
  operationName: item["operationName"],
2817
2817
  status: item["status"],
2818
2818
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -2827,7 +2827,7 @@ export function resourceActionFailureEventDataDeserializer(item) {
2827
2827
  subscriptionId: item["subscriptionId"],
2828
2828
  resourceGroup: item["resourceGroup"],
2829
2829
  resourceProvider: item["resourceProvider"],
2830
- resourceUri: item["resourceUri"],
2830
+ resourceUrl: item["resourceUri"],
2831
2831
  operationName: item["operationName"],
2832
2832
  status: item["status"],
2833
2833
  authorization: resourceAuthorizationDeserializer(item["authorization"]),
@@ -2842,7 +2842,7 @@ export function resourceActionCancelEventDataDeserializer(item) {
2842
2842
  subscriptionId: item["subscriptionId"],
2843
2843
  resourceGroup: item["resourceGroup"],
2844
2844
  resourceProvider: item["resourceProvider"],
2845
- resourceUri: item["resourceUri"],
2845
+ resourceUrl: item["resourceUri"],
2846
2846
  operationName: item["operationName"],
2847
2847
  status: item["status"],
2848
2848
  authorization: resourceAuthorizationDeserializer(item["authorization"]),