Class: Google::Apis::SecuritycenterV1beta2::SecurityCenterSettings
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta2::SecurityCenterSettings
- 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
Resource capturing the settings for Security Center.
Instance Attribute Summary collapse
-
#log_sink_project ⇒ String
The resource name of the project to send logs to.
-
#name ⇒ String
The resource name of the SecurityCenterSettings.
-
#onboarding_time ⇒ String
Timestamp of when the customer organization was onboarded to SCC.
-
#org_service_account ⇒ String
The organization level service account to be used for security center components.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecurityCenterSettings
constructor
A new instance of SecurityCenterSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecurityCenterSettings
Returns a new instance of SecurityCenterSettings.
1901 1902 1903 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1901 def initialize(**args) update!(**args) end |
Instance Attribute Details
#log_sink_project ⇒ String
The resource name of the project to send logs to. This project must be part of
the organization this resource resides in. The format is projects/project_id
. An empty value disables logging. This value is only referenced by services
that support log sink. Please refer to the documentation for an updated list
of compatible services.
Corresponds to the JSON property logSinkProject
1881 1882 1883 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1881 def log_sink_project @log_sink_project end |
#name ⇒ String
The resource name of the SecurityCenterSettings. Format: organizations/
organization/securityCenterSettings Format: folders/folder/
securityCenterSettings Format: projects/project/securityCenterSettings
Corresponds to the JSON property name
1888 1889 1890 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1888 def name @name end |
#onboarding_time ⇒ String
Timestamp of when the customer organization was onboarded to SCC.
Corresponds to the JSON property onboardingTime
1893 1894 1895 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1893 def onboarding_time @onboarding_time end |
#org_service_account ⇒ String
The organization level service account to be used for security center
components.
Corresponds to the JSON property orgServiceAccount
1899 1900 1901 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1899 def org_service_account @org_service_account end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1906 1907 1908 1909 1910 1911 |
# File 'lib/google/apis/securitycenter_v1beta2/classes.rb', line 1906 def update!(**args) @log_sink_project = args[:log_sink_project] if args.key?(:log_sink_project) @name = args[:name] if args.key?(:name) @onboarding_time = args[:onboarding_time] if args.key?(:onboarding_time) @org_service_account = args[:org_service_account] if args.key?(:org_service_account) end |