com.google.cloud.securitycenter.v1p1beta1.OrganizationSettingsOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-securitycenter-v1p1beta1 Show documentation
Show all versions of proto-google-cloud-securitycenter-v1p1beta1 Show documentation
PROTO library for proto-google-cloud-securitycenter-v1p1beta1
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/securitycenter/v1p1beta1/organization_settings.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.securitycenter.v1p1beta1;
public interface OrganizationSettingsOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v1p1beta1.OrganizationSettings)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* 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;
*
* @return The name.
*/
java.lang.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;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* 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;
*
* @return The enableAssetDiscovery.
*/
boolean getEnableAssetDiscovery();
/**
*
*
*
* The configuration used for Asset Discovery runs.
*
*
*
* .google.cloud.securitycenter.v1p1beta1.OrganizationSettings.AssetDiscoveryConfig asset_discovery_config = 3;
*
*
* @return Whether the assetDiscoveryConfig field is set.
*/
boolean hasAssetDiscoveryConfig();
/**
*
*
*
* The configuration used for Asset Discovery runs.
*
*
*
* .google.cloud.securitycenter.v1p1beta1.OrganizationSettings.AssetDiscoveryConfig asset_discovery_config = 3;
*
*
* @return The assetDiscoveryConfig.
*/
com.google.cloud.securitycenter.v1p1beta1.OrganizationSettings.AssetDiscoveryConfig
getAssetDiscoveryConfig();
/**
*
*
*
* The configuration used for Asset Discovery runs.
*
*
*
* .google.cloud.securitycenter.v1p1beta1.OrganizationSettings.AssetDiscoveryConfig asset_discovery_config = 3;
*
*/
com.google.cloud.securitycenter.v1p1beta1.OrganizationSettings.AssetDiscoveryConfigOrBuilder
getAssetDiscoveryConfigOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy