We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d243d7d commit 03cef2bCopy full SHA for 03cef2b
ads/jobs/ads_job.py
@@ -74,6 +74,9 @@ class Job(Builder):
74
.with_python_path("other_packages")
75
# Copy files in "code_dir/output" to object storage after job finishes.
76
.with_output("output", "oci://bucket_name@namespace/path/to/dir")
77
+ # Tags
78
+ .with_freeform_tag(my_tag="my_value")
79
+ .with_defined_tag(**{"Operations": {"CostCenter": "42"}})
80
)
81
82
# Create and Run the job
ads/jobs/builders/infrastructure/dsc_job.py
@@ -847,6 +847,9 @@ class DataScienceJob(Infrastructure):
847
"dest" : "<destination_directory_name>"
848
}
849
850
851
852
853
854
855
"""
0 commit comments