Information about a resource such as a task, Cloud Storage bucket, database, disk, logical policy, or something similar.
| JSON representation |
|---|
{ "type": string, "resourceType": enum ( |
| Fields | |
|---|---|
type |
Deprecated: use resourceType instead. |
resourceType |
Resource type. |
resourceSubtype |
Resource sub-type (e.g. "BigQuery", "Bigtable"). |
id |
Deprecated: Use resource.name or resource.product_object_id. |
name |
The full name of the resource. For example, Google Cloud: //cloudresourcemanager.googleapis.com/projects/wombat-123, and AWS: arn:aws:iam::123456789012:user/johndoe. |
parent |
The parent of the resource. For a database table, the parent is the database. For a storage object, the bucket name. Deprecated: use resourceAncestors.name. |
productObjectId |
A vendor-specific identifier to uniquely identify the entity (a GUID, OID, or similar) This field can be used as an entity indicator for a Resource entity. |
attribute |
Generic entity metadata attributes of the resource. |
scheduledTask |
Information about a scheduled task associated with the resource. |
volume |
Information about a storage volume associated with the resource. |
service |
Information about a Windows service associated with the resource. |
ScheduledTask
Information about a scheduled task.
| JSON representation |
|---|
{ "minute": integer, "hour": integer, "monthDay": integer, "month": integer, "weekDay": integer, "comment": string, "author": string } |
| Fields | |
|---|---|
minute |
The minute of the hour (0-59). |
hour |
The hour of the day (0-23). |
monthDay |
The day of the month (1-31). |
month |
The month of the year (1-12). |
weekDay |
The day of the week (0-6, Sunday=0). |
comment |
A comment or description for the task. |
author |
The author or creator of the task. |
Volume
Information about a storage volume.
| JSON representation |
|---|
{ "fileSystem": string, "mountPoint": string, "devicePath": string, "isMounted": boolean, "isReadOnly": boolean, "name": string } |
| Fields | |
|---|---|
fileSystem |
The name of the file system on the volume (e.g., "NTFS", "FAT32"). |
mountPoint |
The path where the volume is mounted (e.g., "C:", "/mnt/data"). |
devicePath |
The system path to the device (e.g., "\.\HarddiskVolume1", "/dev/sda1"). |
isMounted |
Indicates whether the volume is currently mounted. |
isReadOnly |
Indicates whether the volume is mounted as read-only. |
name |
The user-assigned label or name for the volume. |
Service
Information about a Windows service.
| JSON representation |
|---|
{ "displayName": string, "serviceType": enum ( |
| Fields | |
|---|---|
displayName |
The user-friendly display name of the service. |
serviceType |
The type of service. |
startupType |
The startup type of the service. |
state |
Output only. The status of the service. |