Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.15 KB

File metadata and controls

34 lines (25 loc) · 1.15 KB

VendorDataStore

Properties

Name Type Description Notes
data_store_id str
data_store_type str
data_store_name str
cloud_region str
sensitivities_summary List[SensitivitySummary]
cloud_provider CloudServiceProvider

Example

from ibm_gdsc_sdk_saas.models.vendor_data_store import VendorDataStore

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

# convert the object into a dict
vendor_data_store_dict = vendor_data_store_instance.to_dict()
# create an instance of VendorDataStore from a dict
vendor_data_store_from_dict = VendorDataStore.from_dict(vendor_data_store_dict)

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