Class: Google::Apis::SecuritycenterV1beta2::Dataset
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta2::Dataset
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta2/classes.rb,
lib/google/apis/securitycenter_v1beta2/representations.rb,
lib/google/apis/securitycenter_v1beta2/representations.rb
Overview
Vertex AI dataset associated with the finding.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The user defined display name of dataset, e.g.
-
#name ⇒ String
Resource name of the dataset, e.g.
-
#source ⇒ String
Data source, such as BigQuery source URI, e.g.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Dataset
constructor
A new instance of Dataset.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Dataset
Returns a new instance of Dataset.
1881 1882 1883 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1881 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The user defined display name of dataset, e.g. plants-dataset
Corresponds to the JSON property displayName
1867 1868 1869 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1867 def display_name @display_name end |
#name ⇒ String
Resource name of the dataset, e.g. projects/project/locations/location/
datasets/2094040236064505856
Corresponds to the JSON property name
1873 1874 1875 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1873 def name @name end |
#source ⇒ String
Data source, such as BigQuery source URI, e.g. bq://scc-nexus-test.AIPPtest.
gsod
Corresponds to the JSON property source
1879 1880 1881 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1879 def source @source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1886 1887 1888 1889 1890 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1886 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @source = args[:source] if args.key?(:source) end |