Caution: You are viewing documentation for the API's REST interface. Most of our official client libraries use gRPC. See the
REST Introduction for details.
AssetSetAsset
AssetSetAsset is the link between an asset and an asset set. Adding an AssetSetAsset links an asset with an asset set.
JSON representation |
{
"resourceName": string,
"assetSet": string,
"asset": string,
"status": enum (AssetSetAssetStatus )
} |
Fields |
resourceName |
string
Immutable. The resource name of the asset set asset. Asset set asset resource names have the form: customers/{customerId}/assetSetAssets/{asset_set_id}~{asset_id}
|
assetSet |
string
Immutable. The asset set which this asset set asset is linking to.
|
asset |
string
Immutable. The asset which this asset set asset is linking to.
|
status |
enum (AssetSetAssetStatus )
Output only. The status of the asset set asset. Read-only.
|
AssetSetAssetStatus
The possible statuses of an asset set asset.
Enums |
UNSPECIFIED |
The status has not been specified. |
UNKNOWN |
The received value is not known in this version. This is a response-only value. |
ENABLED |
The asset set asset is enabled. |
REMOVED |
The asset set asset is removed. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-03-06 UTC.
[null,null,["Last updated 2025-03-06 UTC."],[[["AssetSetAsset connects an asset with an asset set, establishing a link between them."],["It includes key properties like resource name, asset set, asset, and status, represented in JSON format."],["The status of an AssetSetAsset can be enabled, removed, or unspecified, reflecting its current state."],["AssetSetAsset resources have a specific naming convention: `customers/{customerId}/assetSetAssets/{asset_set_id}~{asset_id}`."],["AssetSetAsset's status is read-only and provides information about the asset set asset's current state, such as enabled or removed."]]],["AssetSetAsset connects an asset to an asset set. It contains a `resourceName`, `assetSet`, and `asset` (all strings). The `status`, an enum, indicates if it's `ENABLED` or `REMOVED`. `resourceName` uses the format: `customers/{customerId}/assetSetAssets/{asset_set_id}~{asset_id}`. Adding an AssetSetAsset links an asset with an asset set. The `status` is read-only, and the other fields are immutable.\n"]]