OrganizationSettings

User specified settings that are attached to the Security Command Center organization.

JSON representation
{
  "name": string,
  "enableAssetDiscovery": boolean,
  "assetDiscoveryConfig": {
    object (AssetDiscoveryConfig)
  }
}
Fields
name

string

The relative resource name of the settings. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/organizationSettings".

enableAssetDiscovery

boolean

A flag that indicates if Asset Discovery should be enabled. If the flag is set to true, then discovery of assets will occur. If it is set to false, all historical assets will remain, but discovery of future assets will not occur.

assetDiscoveryConfig

object (AssetDiscoveryConfig)

The configuration used for Asset Discovery runs.

AssetDiscoveryConfig

The configuration used for Asset Discovery runs.

JSON representation
{
  "projectIds": [
    string
  ],
  "inclusionMode": enum (InclusionMode)
}
Fields
projectIds[]

string

The project ids to use for filtering asset discovery.

inclusionMode

enum (InclusionMode)

The mode to use for filtering asset discovery.

InclusionMode

The mode of inclusion when running Asset Discovery. Asset discovery can be limited by explicitly identifying projects to be included or excluded. If INCLUDE_ONLY is set, then only those projects within the organization and their children are discovered during asset discovery. If EXCLUDE is set, then projects that don't match those projects are discovered during asset discovery. If neither are set, then all projects within the organization are discovered during asset discovery.

Enums
INCLUSION_MODE_UNSPECIFIED Unspecified. Setting the mode with this value will disable inclusion/exclusion filtering for Asset Discovery.
INCLUDE_ONLY Asset Discovery will capture only the resources within the projects specified. All other resources will be ignored.
EXCLUDE Asset Discovery will ignore all resources under the projects specified. All other resources will be retrieved.