Class: Google::Apis::SecuritycenterV1beta1::Exfiltration

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/securitycenter_v1beta1/classes.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Exfiltration

Returns a new instance of Exfiltration.



2205
2206
2207
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2205

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#sourcesArray<Google::Apis::SecuritycenterV1beta1::ExfilResource>

Corresponds to the JSON property sources



2193
2194
2195
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2193

def sources
  @sources
end

#targetsArray<Google::Apis::SecuritycenterV1beta1::ExfilResource>

Corresponds to the JSON property targets



2198
2199
2200
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2198

def targets
  @targets
end

#total_exfiltrated_bytesFixnum

Corresponds to the JSON property totalExfiltratedBytes

Returns:

  • (Fixnum)


2203
2204
2205
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2203

def total_exfiltrated_bytes
  @total_exfiltrated_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2210
2211
2212
2213
2214
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 2210

def update!(**args)
  @sources = args[:sources] if args.key?(:sources)
  @targets = args[:targets] if args.key?(:targets)
  @total_exfiltrated_bytes = args[:total_exfiltrated_bytes] if args.key?(:total_exfiltrated_bytes)
end