simulations
Creates, updates, deletes, gets or lists a simulations
resource.
Overview
Name | simulations |
Type | Resource |
Id | google.securitycenter.simulations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Full resource name of the Simulation: organizations/123/simulations/456 |
cloudProvider | string | Indicates which cloud provider was used in this simulation. |
createTime | string | Output only. Time simulation was created |
resourceValueConfigsMetadata | array | Resource value configurations' metadata used in this simulation. Maximum of 100. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
organizations_simulations_get | SELECT | organizationsId, simulationsId | Get the simulation by name or the latest simulation for the given organization. |
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 }}'
AND simulationsId = '{{ simulationsId }}';