class Google::Apis::SecuritycenterV1beta2::ContainerThreatDetectionSettings

Resource capturing the settings for the Container Threat Detection service.

Attributes

modules[RW]

The configurations including the state of enablement for the service's different modules. The absence of a module in the map implies its configuration is inherited from its parent's. Corresponds to the JSON property `modules` @return [Hash<String,Google::Apis::SecuritycenterV1beta2::Config>]

name[RW]

The resource name of the ContainerThreatDetectionSettings. Formats: * organizations/`organization`/containerThreatDetectionSettings * folders/` folder`/containerThreatDetectionSettings * projects/`project`/ containerThreatDetectionSettings * projects/`project`/locations/`location`/ clusters/`cluster`/containerThreatDetectionSettings Corresponds to the JSON property `name` @return [String]

service_account[RW]

Output only. The service account used by Container Threat Detection for scanning. Service accounts are scoped at the project level meaning this field will be empty at any level above a project. Corresponds to the JSON property `serviceAccount` @return [String]

service_enablement_state[RW]

The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED. Corresponds to the JSON property `serviceEnablementState` @return [String]

update_time[RW]

Output only. The time the settings were last updated. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/securitycenter_v1beta2/classes.rb, line 89
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/securitycenter_v1beta2/classes.rb, line 94
def update!(**args)
  @modules = args[:modules] if args.key?(:modules)
  @name = args[:name] if args.key?(:name)
  @service_account = args[:service_account] if args.key?(:service_account)
  @service_enablement_state = args[:service_enablement_state] if args.key?(:service_enablement_state)
  @update_time = args[:update_time] if args.key?(:update_time)
end