simulations
Creates, updates, deletes, gets or lists a simulations
resource.
Overview
Name | simulations |
Type | Resource |
Id | google.securitycenter.simulations |
Fields
The following fields are returned by SELECT
queries:
- organizations_simulations_get
Successful response
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 (google-datetime) | Output only. Time simulation was created |
resourceValueConfigsMetadata | array | Resource value configurations' metadata used in this simulation. Maximum of 100. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
organizations_simulations_get | select | organizationsId , simulationsId | Get 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.
Name | Datatype | Description |
---|---|---|
organizationsId | string | |
simulationsId | string |
SELECT
examples
- organizations_simulations_get
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;