Skip to main content

simulations

Creates, updates, deletes, gets or lists a simulations resource.

Overview

Namesimulations
TypeResource
Idgoogle.securitycenter.simulations

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringFull resource name of the Simulation: organizations/123/simulations/456
cloudProviderstringIndicates which cloud provider was used in this simulation.
createTimestring (google-datetime)Output only. Time simulation was created
resourceValueConfigsMetadataarrayResource value configurations' metadata used in this simulation. Maximum of 100.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
organizations_simulations_getselectorganizationsId, simulationsIdGet the simulation by name or the latest simulation for the given organization.

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
organizationsIdstring
simulationsIdstring

SELECT examples

Get the simulation by name or the latest simulation for the given organization.

SELECT
name,
cloudProvider,
createTime,
resourceValueConfigsMetadata
FROM google.securitycenter.simulations
WHERE organizationsId = '{{ organizationsId }}' -- required
AND simulationsId = '{{ simulationsId }}' -- required;