com.google.cloud.securitycenter.v2.ValuedResourceOrBuilder 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-v2 Show documentation
Show all versions of proto-google-cloud-securitycenter-v2 Show documentation
Proto library for google-cloud-securitycenter
/*
* 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/v2/valued_resource.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.securitycenter.v2;
public interface ValuedResourceOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v2.ValuedResource)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Valued resource name, for example,
* e.g.:
* `organizations/123/simulations/456/valuedResources/789`
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Valued resource name, for example,
* e.g.:
* `organizations/123/simulations/456/valuedResources/789`
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* The
* [full resource
* name](https://cloud.google.com/apis/design/resource_names#full_resource_name)
* of the valued resource.
*
*
* string resource = 2;
*
* @return The resource.
*/
java.lang.String getResource();
/**
*
*
*
* The
* [full resource
* name](https://cloud.google.com/apis/design/resource_names#full_resource_name)
* of the valued resource.
*
*
* string resource = 2;
*
* @return The bytes for resource.
*/
com.google.protobuf.ByteString getResourceBytes();
/**
*
*
*
* The [resource
* type](https://cloud.google.com/asset-inventory/docs/supported-asset-types)
* of the valued resource.
*
*
* string resource_type = 3;
*
* @return The resourceType.
*/
java.lang.String getResourceType();
/**
*
*
*
* The [resource
* type](https://cloud.google.com/asset-inventory/docs/supported-asset-types)
* of the valued resource.
*
*
* string resource_type = 3;
*
* @return The bytes for resourceType.
*/
com.google.protobuf.ByteString getResourceTypeBytes();
/**
*
*
*
* Human-readable name of the valued resource.
*
*
* string display_name = 4;
*
* @return The displayName.
*/
java.lang.String getDisplayName();
/**
*
*
*
* Human-readable name of the valued resource.
*
*
* string display_name = 4;
*
* @return The bytes for displayName.
*/
com.google.protobuf.ByteString getDisplayNameBytes();
/**
*
*
*
* How valuable this resource is.
*
*
* .google.cloud.securitycenter.v2.ValuedResource.ResourceValue resource_value = 5;
*
* @return The enum numeric value on the wire for resourceValue.
*/
int getResourceValueValue();
/**
*
*
*
* How valuable this resource is.
*
*
* .google.cloud.securitycenter.v2.ValuedResource.ResourceValue resource_value = 5;
*
* @return The resourceValue.
*/
com.google.cloud.securitycenter.v2.ValuedResource.ResourceValue getResourceValue();
/**
*
*
*
* Exposed score for this valued resource. A value of 0 means no exposure was
* detected exposure.
*
*
* double exposed_score = 6;
*
* @return The exposedScore.
*/
double getExposedScore();
/**
*
*
*
* List of resource value configurations' metadata used to determine the value
* of this resource. Maximum of 100.
*
*
*
* repeated .google.cloud.securitycenter.v2.ResourceValueConfigMetadata resource_value_configs_used = 7;
*
*/
java.util.List
getResourceValueConfigsUsedList();
/**
*
*
*
* List of resource value configurations' metadata used to determine the value
* of this resource. Maximum of 100.
*
*
*
* repeated .google.cloud.securitycenter.v2.ResourceValueConfigMetadata resource_value_configs_used = 7;
*
*/
com.google.cloud.securitycenter.v2.ResourceValueConfigMetadata getResourceValueConfigsUsed(
int index);
/**
*
*
*
* List of resource value configurations' metadata used to determine the value
* of this resource. Maximum of 100.
*
*
*
* repeated .google.cloud.securitycenter.v2.ResourceValueConfigMetadata resource_value_configs_used = 7;
*
*/
int getResourceValueConfigsUsedCount();
/**
*
*
*
* List of resource value configurations' metadata used to determine the value
* of this resource. Maximum of 100.
*
*
*
* repeated .google.cloud.securitycenter.v2.ResourceValueConfigMetadata resource_value_configs_used = 7;
*
*/
java.util.List extends com.google.cloud.securitycenter.v2.ResourceValueConfigMetadataOrBuilder>
getResourceValueConfigsUsedOrBuilderList();
/**
*
*
*
* List of resource value configurations' metadata used to determine the value
* of this resource. Maximum of 100.
*
*
*
* repeated .google.cloud.securitycenter.v2.ResourceValueConfigMetadata resource_value_configs_used = 7;
*
*/
com.google.cloud.securitycenter.v2.ResourceValueConfigMetadataOrBuilder
getResourceValueConfigsUsedOrBuilder(int index);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy