@@ -87,13 +87,6 @@ class Action(AtlanObject):
87
87
task_action_display_text : Optional [str ] = Field (default = None , description = "" )
88
88
89
89
90
- class Histogram (AtlanObject ):
91
- """Description"""
92
-
93
- boundaries : Set [float ] = Field (description = "" )
94
- frequencies : Set [float ] = Field (description = "" )
95
-
96
-
97
90
class KafkaTopicConsumption (AtlanObject ):
98
91
"""Description"""
99
92
@@ -103,45 +96,18 @@ class KafkaTopicConsumption(AtlanObject):
103
96
topic_current_offset : Optional [int ] = Field (default = None , description = "" )
104
97
105
98
106
- class ColumnValueFrequencyMap (AtlanObject ):
99
+ class Histogram (AtlanObject ):
107
100
"""Description"""
108
101
109
- column_value : Optional [ str ] = Field (default = None , description = "" )
110
- column_value_frequency : Optional [ int ] = Field (default = None , description = "" )
102
+ boundaries : Set [ float ] = Field (description = "" )
103
+ frequencies : Set [ float ] = Field (description = "" )
111
104
112
105
113
- class BadgeCondition (AtlanObject ):
106
+ class ColumnValueFrequencyMap (AtlanObject ):
114
107
"""Description"""
115
108
116
- @classmethod
117
- def create (
118
- cls ,
119
- * ,
120
- badge_condition_operator : BadgeComparisonOperator ,
121
- badge_condition_value : str ,
122
- badge_condition_colorhex : Union [BadgeConditionColor , str ],
123
- ) -> "BadgeCondition" :
124
- validate_required_fields (
125
- [
126
- "badge_condition_operator" ,
127
- "badge_condition_value" ,
128
- "badge_condition_colorhex" ,
129
- ],
130
- [badge_condition_operator , badge_condition_value , badge_condition_colorhex ],
131
- )
132
- return cls (
133
- badge_condition_operator = badge_condition_operator .value ,
134
- badge_condition_value = badge_condition_value ,
135
- badge_condition_colorhex = (
136
- badge_condition_colorhex .value
137
- if isinstance (badge_condition_colorhex , BadgeConditionColor )
138
- else badge_condition_colorhex
139
- ),
140
- )
141
-
142
- badge_condition_operator : Optional [str ] = Field (default = None , description = "" )
143
- badge_condition_value : Optional [str ] = Field (default = None , description = "" )
144
- badge_condition_colorhex : Optional [str ] = Field (default = None , description = "" )
109
+ column_value : Optional [str ] = Field (default = None , description = "" )
110
+ column_value_frequency : Optional [int ] = Field (default = None , description = "" )
145
111
146
112
147
113
class SourceTagAttachmentValue (AtlanObject ):
@@ -295,11 +261,38 @@ def of(
295
261
)
296
262
297
263
298
- class AzureTag (AtlanObject ):
264
+ class BadgeCondition (AtlanObject ):
299
265
"""Description"""
300
266
301
- azure_tag_key : str = Field (description = "" )
302
- azure_tag_value : str = Field (description = "" )
267
+ @classmethod
268
+ def create (
269
+ cls ,
270
+ * ,
271
+ badge_condition_operator : BadgeComparisonOperator ,
272
+ badge_condition_value : str ,
273
+ badge_condition_colorhex : Union [BadgeConditionColor , str ],
274
+ ) -> "BadgeCondition" :
275
+ validate_required_fields (
276
+ [
277
+ "badge_condition_operator" ,
278
+ "badge_condition_value" ,
279
+ "badge_condition_colorhex" ,
280
+ ],
281
+ [badge_condition_operator , badge_condition_value , badge_condition_colorhex ],
282
+ )
283
+ return cls (
284
+ badge_condition_operator = badge_condition_operator .value ,
285
+ badge_condition_value = badge_condition_value ,
286
+ badge_condition_colorhex = (
287
+ badge_condition_colorhex .value
288
+ if isinstance (badge_condition_colorhex , BadgeConditionColor )
289
+ else badge_condition_colorhex
290
+ ),
291
+ )
292
+
293
+ badge_condition_operator : Optional [str ] = Field (default = None , description = "" )
294
+ badge_condition_value : Optional [str ] = Field (default = None , description = "" )
295
+ badge_condition_colorhex : Optional [str ] = Field (default = None , description = "" )
303
296
304
297
305
298
class StarredDetails (AtlanObject ):
@@ -309,6 +302,13 @@ class StarredDetails(AtlanObject):
309
302
asset_starred_at : Optional [datetime ] = Field (default = None , description = "" )
310
303
311
304
305
+ class AzureTag (AtlanObject ):
306
+ """Description"""
307
+
308
+ azure_tag_key : str = Field (description = "" )
309
+ azure_tag_value : str = Field (description = "" )
310
+
311
+
312
312
class AuthPolicyCondition (AtlanObject ):
313
313
"""Description"""
314
314
@@ -323,13 +323,6 @@ class AwsTag(AtlanObject):
323
323
aws_tag_value : str = Field (description = "" )
324
324
325
325
326
- class GoogleTag (AtlanObject ):
327
- """Description"""
328
-
329
- google_tag_key : str = Field (description = "" )
330
- google_tag_value : str = Field (description = "" )
331
-
332
-
333
326
class DbtMetricFilter (AtlanObject ):
334
327
"""Description"""
335
328
@@ -341,6 +334,13 @@ class DbtMetricFilter(AtlanObject):
341
334
dbt_metric_filter_value : Optional [str ] = Field (default = None , description = "" )
342
335
343
336
337
+ class GoogleTag (AtlanObject ):
338
+ """Description"""
339
+
340
+ google_tag_key : str = Field (description = "" )
341
+ google_tag_value : str = Field (description = "" )
342
+
343
+
344
344
class BusinessPolicyRule (AtlanObject ):
345
345
"""Description"""
346
346
@@ -416,30 +416,30 @@ class SourceTagAttribute(AtlanObject):
416
416
417
417
Action .update_forward_refs ()
418
418
419
- Histogram .update_forward_refs ()
420
-
421
419
KafkaTopicConsumption .update_forward_refs ()
422
420
423
- ColumnValueFrequencyMap .update_forward_refs ()
421
+ Histogram .update_forward_refs ()
424
422
425
- BadgeCondition .update_forward_refs ()
423
+ ColumnValueFrequencyMap .update_forward_refs ()
426
424
427
425
SourceTagAttachmentValue .update_forward_refs ()
428
426
429
427
SourceTagAttachment .update_forward_refs ()
430
428
431
- AzureTag .update_forward_refs ()
429
+ BadgeCondition .update_forward_refs ()
432
430
433
431
StarredDetails .update_forward_refs ()
434
432
433
+ AzureTag .update_forward_refs ()
434
+
435
435
AuthPolicyCondition .update_forward_refs ()
436
436
437
437
AwsTag .update_forward_refs ()
438
438
439
- GoogleTag .update_forward_refs ()
440
-
441
439
DbtMetricFilter .update_forward_refs ()
442
440
441
+ GoogleTag .update_forward_refs ()
442
+
443
443
BusinessPolicyRule .update_forward_refs ()
444
444
445
445
AuthPolicyValiditySchedule .update_forward_refs ()
0 commit comments