Skip to main content

effective_custom_modules

Creates, updates, deletes, gets or lists an effective_custom_modules resource.

Overview

Nameeffective_custom_modules
TypeResource
Idgoogle.securitycenter.effective_custom_modules

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestring
cloudProviderstring (CLOUD_PROVIDER_UNSPECIFIED, GOOGLE_CLOUD_PLATFORM, AMAZON_WEB_SERVICES, MICROSOFT_AZURE)
configobject
descriptionstring
displayNamestring
enablementStatestring (ENABLEMENT_STATE_UNSPECIFIED, ENABLED, DISABLED)
typestring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_event_threat_detection_settings_effective_custom_modules_getselectorganizationsId, effectiveCustomModulesId
organizations_security_health_analytics_settings_effective_custom_modules_getselectorganizationsId, effectiveCustomModulesId
projects_security_health_analytics_settings_effective_custom_modules_getselectprojectsId, effectiveCustomModulesId
projects_event_threat_detection_settings_effective_custom_modules_getselectprojectsId, effectiveCustomModulesId
folders_security_health_analytics_settings_effective_custom_modules_getselectfoldersId, effectiveCustomModulesId
folders_event_threat_detection_settings_effective_custom_modules_getselectfoldersId, effectiveCustomModulesId
organizations_event_threat_detection_settings_effective_custom_modules_listselectorganizationsIdpageToken, pageSize
organizations_security_health_analytics_settings_effective_custom_modules_listselectorganizationsIdpageToken, pageSize
projects_security_health_analytics_settings_effective_custom_modules_listselectprojectsIdpageSize, pageToken
projects_event_threat_detection_settings_effective_custom_modules_listselectprojectsIdpageSize, pageToken
folders_security_health_analytics_settings_effective_custom_modules_listselectfoldersIdpageToken, pageSize
folders_event_threat_detection_settings_effective_custom_modules_listselectfoldersIdpageSize, pageToken

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
effectiveCustomModulesIdstring
foldersIdstring
organizationsIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Successful response

SELECT
name,
cloudProvider,
config,
description,
displayName,
enablementState,
type
FROM google.securitycenter.effective_custom_modules
WHERE organizationsId = '{{ organizationsId }}' -- required
AND effectiveCustomModulesId = '{{ effectiveCustomModulesId }}' -- required
;