Class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2BigQueryExport
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2BigQueryExport
- 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
Instance Attribute Summary collapse
-
#create_time ⇒ String
Corresponds to the JSON property
createTime. -
#crypto_key_name ⇒ String
Corresponds to the JSON property
cryptoKeyName. -
#dataset ⇒ String
Corresponds to the JSON property
dataset. -
#description ⇒ String
Corresponds to the JSON property
description. -
#filter ⇒ String
Corresponds to the JSON property
filter. -
#most_recent_editor ⇒ String
Corresponds to the JSON property
mostRecentEditor. -
#name ⇒ String
Corresponds to the JSON property
name. -
#principal ⇒ String
Corresponds to the JSON property
principal. -
#update_time ⇒ String
Corresponds to the JSON property
updateTime.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudSecuritycenterV2BigQueryExport
constructor
A new instance of GoogleCloudSecuritycenterV2BigQueryExport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudSecuritycenterV2BigQueryExport
Returns a new instance of GoogleCloudSecuritycenterV2BigQueryExport.
4958 4959 4960 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4958 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Corresponds to the JSON property createTime
4916 4917 4918 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4916 def create_time @create_time end |
#crypto_key_name ⇒ String
Corresponds to the JSON property cryptoKeyName
4921 4922 4923 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4921 def crypto_key_name @crypto_key_name end |
#dataset ⇒ String
Corresponds to the JSON property dataset
4926 4927 4928 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4926 def dataset @dataset end |
#description ⇒ String
Corresponds to the JSON property description
4931 4932 4933 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4931 def description @description end |
#filter ⇒ String
Corresponds to the JSON property filter
4936 4937 4938 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4936 def filter @filter end |
#most_recent_editor ⇒ String
Corresponds to the JSON property mostRecentEditor
4941 4942 4943 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4941 def most_recent_editor @most_recent_editor end |
#name ⇒ String
Corresponds to the JSON property name
4946 4947 4948 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4946 def name @name end |
#principal ⇒ String
Corresponds to the JSON property principal
4951 4952 4953 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4951 def principal @principal end |
#update_time ⇒ String
Corresponds to the JSON property updateTime
4956 4957 4958 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4956 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 4963 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @crypto_key_name = args[:crypto_key_name] if args.key?(:crypto_key_name) @dataset = args[:dataset] if args.key?(:dataset) @description = args[:description] if args.key?(:description) @filter = args[:filter] if args.key?(:filter) @most_recent_editor = args[:most_recent_editor] if args.key?(:most_recent_editor) @name = args[:name] if args.key?(:name) @principal = args[:principal] if args.key?(:principal) @update_time = args[:update_time] if args.key?(:update_time) end |