Interface OrganizationSettingsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OrganizationSettings,OrganizationSettings.Builder
public interface OrganizationSettingsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OrganizationSettings.AssetDiscoveryConfiggetAssetDiscoveryConfig()The configuration used for Asset Discovery runs.OrganizationSettings.AssetDiscoveryConfigOrBuildergetAssetDiscoveryConfigOrBuilder()The configuration used for Asset Discovery runs.booleangetEnableAssetDiscovery()A flag that indicates if Asset Discovery should be enabled.StringgetName()The relative resource name of the settings.com.google.protobuf.ByteStringgetNameBytes()The relative resource name of the settings.booleanhasAssetDiscoveryConfig()The configuration used for Asset Discovery runs.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The relative resource name of the settings. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/organizationSettings".string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The relative resource name of the settings. See: https://cloud.google.com/apis/design/resource_names#relative_resource_name Example: "organizations/{organization_id}/organizationSettings".string name = 1;- Returns:
- The bytes for name.
-
getEnableAssetDiscovery
boolean getEnableAssetDiscovery()
A flag that indicates if Asset Discovery should be enabled. If the flag is set to `true`, then discovery of assets will occur. If it is set to `false, all historical assets will remain, but discovery of future assets will not occur.
bool enable_asset_discovery = 2;- Returns:
- The enableAssetDiscovery.
-
hasAssetDiscoveryConfig
boolean hasAssetDiscoveryConfig()
The configuration used for Asset Discovery runs.
.google.cloud.securitycenter.v1p1beta1.OrganizationSettings.AssetDiscoveryConfig asset_discovery_config = 3;- Returns:
- Whether the assetDiscoveryConfig field is set.
-
getAssetDiscoveryConfig
OrganizationSettings.AssetDiscoveryConfig getAssetDiscoveryConfig()
The configuration used for Asset Discovery runs.
.google.cloud.securitycenter.v1p1beta1.OrganizationSettings.AssetDiscoveryConfig asset_discovery_config = 3;- Returns:
- The assetDiscoveryConfig.
-
getAssetDiscoveryConfigOrBuilder
OrganizationSettings.AssetDiscoveryConfigOrBuilder getAssetDiscoveryConfigOrBuilder()
The configuration used for Asset Discovery runs.
.google.cloud.securitycenter.v1p1beta1.OrganizationSettings.AssetDiscoveryConfig asset_discovery_config = 3;
-
-