|
Databricks C++ SDK 0.2.4
Interact with Databricks via an SDK
|
Represents a Databricks job. More...
#include <jobs_types.h>
Static Public Member Functions | |
| static Job | from_json (const std::string &json_str) |
| Parse a Job from JSON string. | |
Public Attributes | |
| uint64_t | job_id = 0 |
| Unique identifier for the job. | |
| std::string | name |
| Display name of the job. | |
| std::string | creator_user_name |
| Username of the job creator. | |
| uint64_t | created_time = 0 |
| Unix timestamp in milliseconds when the job was created. | |
| std::map< std::string, std::string > | settings |
| Job configuration settings (raw JSON) | |
Represents a Databricks job.
Jobs are the primary method for running data processing workloads in Databricks. This struct contains the core metadata about a job configuration.
Definition at line 16 of file jobs_types.h.
|
static |
| uint64_t databricks::Job::created_time = 0 |
Unix timestamp in milliseconds when the job was created.
Definition at line 20 of file jobs_types.h.
| std::string databricks::Job::creator_user_name |
Username of the job creator.
Definition at line 19 of file jobs_types.h.
| uint64_t databricks::Job::job_id = 0 |
Unique identifier for the job.
Definition at line 17 of file jobs_types.h.
| std::string databricks::Job::name |
Display name of the job.
Definition at line 18 of file jobs_types.h.
| std::map<std::string, std::string> databricks::Job::settings |
Job configuration settings (raw JSON)
Definition at line 21 of file jobs_types.h.