@@ -10,8 +10,9 @@ summary: 'AccessControlChanges contains batch and cumulative counts of operation
10
10
Additionally it exposes path entries that failed to update while these operations
11
11
progress.'
12
12
constructor :
13
- syntax : AccessControlChanges(batch_counters, aggregate_counters, batch_failures,
14
- continuation)
13
+ syntax : ' AccessControlChanges(batch_counters: AccessControlChangeCounters, aggregate_counters:
14
+ AccessControlChangeCounters, batch_failures: List[AccessControlChangeFailure],
15
+ continuation: str | None)'
15
16
parameters :
16
17
- name : batch_counters
17
18
isRequired : true
@@ -21,25 +22,6 @@ constructor:
21
22
isRequired : true
22
23
- name : continuation
23
24
isRequired : true
24
- variables :
25
- - description : Contains counts of paths changed within single batch.
26
- name : batch_counters
27
- types :
28
- - <xref:azure.storage.filedatalake.AccessControlChangeCounters>
29
- - description : Contains counts of paths changed from start of the operation.
30
- name : aggregate_counters
31
- types :
32
- - <xref:azure.storage.filedatalake.AccessControlChangeCounters>
33
- - description : List of path entries that failed to update Access Control List within
34
- single batch.
35
- name : batch_failures
36
- types :
37
- - <xref:list>(<xref:azure.storage.filedatalake.AccessControlChangeFailure>)
38
- - description : An opaque continuation token that may be used to resume the operations
39
- in case of failures.
40
- name : continuation
41
- types :
42
- - <xref:str>
43
25
methods :
44
26
- uid : azure.storage.filedatalake.AccessControlChanges.get
45
27
name : get
@@ -67,3 +49,22 @@ methods:
67
49
- uid : azure.storage.filedatalake.AccessControlChanges.values
68
50
name : values
69
51
signature : values()
52
+ attributes :
53
+ - uid : azure.storage.filedatalake.AccessControlChanges.aggregate_counters
54
+ name : aggregate_counters
55
+ summary : Contains counts of paths changed from start of the operation.
56
+ signature : ' aggregate_counters: AccessControlChangeCounters'
57
+ - uid : azure.storage.filedatalake.AccessControlChanges.batch_counters
58
+ name : batch_counters
59
+ summary : Contains counts of paths changed within single batch.
60
+ signature : ' batch_counters: AccessControlChangeCounters'
61
+ - uid : azure.storage.filedatalake.AccessControlChanges.batch_failures
62
+ name : batch_failures
63
+ summary : List of path entries that failed to update Access Control List within single
64
+ batch.
65
+ signature : ' batch_failures: List[AccessControlChangeFailure]'
66
+ - uid : azure.storage.filedatalake.AccessControlChanges.continuation
67
+ name : continuation
68
+ summary : An opaque continuation token that may be used to resume the operations
69
+ in case of failures.
70
+ signature : ' continuation: str | None'
0 commit comments