Package com.google.cloud.dataplex.v1
Interface AssetStatusOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AssetStatus
,AssetStatus.Builder
public interface AssetStatusOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getActiveAssets()
Number of active assets.int
getSecurityPolicyApplyingAssets()
Number of assets that are in process of updating the security policy on attached resources.com.google.protobuf.Timestamp
getUpdateTime()
Last update time of the status.com.google.protobuf.TimestampOrBuilder
getUpdateTimeOrBuilder()
Last update time of the status.boolean
hasUpdateTime()
Last update time of the status.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasUpdateTime
boolean hasUpdateTime()
Last update time of the status.
.google.protobuf.Timestamp update_time = 1;
- Returns:
- Whether the updateTime field is set.
-
getUpdateTime
com.google.protobuf.Timestamp getUpdateTime()
Last update time of the status.
.google.protobuf.Timestamp update_time = 1;
- Returns:
- The updateTime.
-
getUpdateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
Last update time of the status.
.google.protobuf.Timestamp update_time = 1;
-
getActiveAssets
int getActiveAssets()
Number of active assets.
int32 active_assets = 2;
- Returns:
- The activeAssets.
-
getSecurityPolicyApplyingAssets
int getSecurityPolicyApplyingAssets()
Number of assets that are in process of updating the security policy on attached resources.
int32 security_policy_applying_assets = 3;
- Returns:
- The securityPolicyApplyingAssets.
-
-