Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.57 KB

File metadata and controls

34 lines (25 loc) · 1.57 KB

VulnerabilityAffectedDataStoreFilterOptions

Properties

Name Type Description Notes
data_store_ids List[str] [optional]
data_store_types List[str] [optional]
cloud_providers List[ServiceProvider] [optional]
cloud_regions List[str] [optional]
geo_locations List[str] [optional]
cloud_account_ids List[str] [optional]

Example

from ibm_gdsc_sdk_saas.models.vulnerability_affected_data_store_filter_options import VulnerabilityAffectedDataStoreFilterOptions

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

# convert the object into a dict
vulnerability_affected_data_store_filter_options_dict = vulnerability_affected_data_store_filter_options_instance.to_dict()
# create an instance of VulnerabilityAffectedDataStoreFilterOptions from a dict
vulnerability_affected_data_store_filter_options_from_dict = VulnerabilityAffectedDataStoreFilterOptions.from_dict(vulnerability_affected_data_store_filter_options_dict)

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