Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 1.26 KB

GcpAttributes.md

File metadata and controls

29 lines (21 loc) · 1.26 KB

GcpAttributes

Properties

Name Type Description Notes
use_preemptible_executors bool Use preemptible executors. [optional]
google_service_account str Google service account email address that the cluster uses to authenticate with Google Identity. This field is used for authentication with the GCS and BigQuery data sources. [optional]

Example

from databricks_jobs.models.gcp_attributes import GcpAttributes

# TODO update the JSON string below
json = "{}"
# create an instance of GcpAttributes from a JSON string
gcp_attributes_instance = GcpAttributes.from_json(json)
# print the JSON string representation of the object
print GcpAttributes.to_json()

# convert the object into a dict
gcp_attributes_dict = gcp_attributes_instance.to_dict()
# create an instance of GcpAttributes from a dict
gcp_attributes_form_dict = gcp_attributes.from_dict(gcp_attributes_dict)

[Back to Model list] [Back to API list] [Back to README]