Skip to content

Commit 1c13f3e

Browse files
authored
Merge pull request #439 from atlanhq/FT-527
FT-527: Added `update_only`, `case_insensitive` and `table_agnostic` options to `Batch`
2 parents ac704ea + e25ec24 commit 1c13f3e

30 files changed

+1010
-241
lines changed

docs/assets.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,6 @@ You can interact with all of the following different kinds of assets:
5252
asset/businesspolicyexception
5353
asset/businesspolicyincident
5454
asset/businesspolicylog
55-
asset/businessprocessmodel
56-
asset/businessprocessmodelentity
5755
asset/calculationview
5856
asset/catalog
5957
asset/cloud

pyatlan/client/asset.py

Lines changed: 378 additions & 46 deletions
Large diffs are not rendered by default.

pyatlan/generator/templates/methods/asset/asset.jinja2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
return cls.creator(*args, **kwargs)
4444

4545
@classmethod
46+
@init_guid
4647
def updater(
4748
cls: type[SelfAsset], qualified_name: str = "", name: str = ""
4849
) -> SelfAsset:

pyatlan/generator/templates/methods/asset/atlas_glossary_category.jinja2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
)
7070

7171
@classmethod
72+
@init_guid
7273
def updater(
7374
cls: type[SelfAsset],
7475
qualified_name: str = "",

pyatlan/generator/templates/methods/asset/atlas_glossary_term.jinja2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
)
7474

7575
@classmethod
76+
@init_guid
7677
def updater(
7778
cls: type[SelfAsset],
7879
qualified_name: str = "",

pyatlan/generator/templates/methods/asset/auth_policy.jinja2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
return cls(attributes=attributes)
77

88
@classmethod
9+
@init_guid
910
def updater(
1011
cls: type[SelfAsset],
1112
qualified_name: str = "",

pyatlan/generator/templates/methods/asset/data_domain.jinja2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
)
3737

3838
@classmethod
39+
@init_guid
3940
def updater(
4041
cls: type[SelfAsset],
4142
qualified_name: str = "",

pyatlan/generator/templates/methods/asset/data_product.jinja2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
)
4040

4141
@classmethod
42+
@init_guid
4243
def updater(
4344
cls,
4445
qualified_name: str = "",

pyatlan/generator/templates/methods/asset/persona.jinja2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@
131131
return policy
132132

133133
@classmethod
134+
@init_guid
134135
def updater(
135136
cls: type[SelfAsset],
136137
qualified_name: str = "",

pyatlan/generator/templates/methods/asset/purpose.jinja2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@
137137
raise ValueError("No user or group specified for the policy.")
138138

139139
@classmethod
140+
@init_guid
140141
def updater(
141142
cls: type[SelfAsset],
142143
qualified_name: str = "",

0 commit comments

Comments
 (0)