Interface ListAssetsResponse.ListAssetsResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ListAssetsResponse.ListAssetsResult
,ListAssetsResponse.ListAssetsResult.Builder
- Enclosing class:
- ListAssetsResponse
public static interface ListAssetsResponse.ListAssetsResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Asset
getAsset()
Asset matching the search request.AssetOrBuilder
getAssetOrBuilder()
Asset matching the search request.ListAssetsResponse.ListAssetsResult.StateChange
getStateChange()
State change of the asset between the points in time.int
getStateChangeValue()
State change of the asset between the points in time.boolean
hasAsset()
Asset matching the search request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasAsset
boolean hasAsset()
Asset matching the search request.
.google.cloud.securitycenter.v1.Asset asset = 1;
- Returns:
- Whether the asset field is set.
-
getAsset
Asset getAsset()
Asset matching the search request.
.google.cloud.securitycenter.v1.Asset asset = 1;
- Returns:
- The asset.
-
getAssetOrBuilder
AssetOrBuilder getAssetOrBuilder()
Asset matching the search request.
.google.cloud.securitycenter.v1.Asset asset = 1;
-
getStateChangeValue
int getStateChangeValue()
State change of the asset between the points in time.
.google.cloud.securitycenter.v1.ListAssetsResponse.ListAssetsResult.StateChange state_change = 2;
- Returns:
- The enum numeric value on the wire for stateChange.
-
getStateChange
ListAssetsResponse.ListAssetsResult.StateChange getStateChange()
State change of the asset between the points in time.
.google.cloud.securitycenter.v1.ListAssetsResponse.ListAssetsResult.StateChange state_change = 2;
- Returns:
- The stateChange.
-
-