com.google.cloud.securitycenter.v1.Cvssv3OrBuilder 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-v1 Show documentation
Show all versions of proto-google-cloud-securitycenter-v1 Show documentation
PROTO library for proto-google-cloud-securitycenter-v1
/*
* 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/v1/vulnerability.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.securitycenter.v1;
public interface Cvssv3OrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v1.Cvssv3)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The base score is a function of the base metric scores.
*
*
* double base_score = 1;
*
* @return The baseScore.
*/
double getBaseScore();
/**
*
*
*
* Base Metrics
* Represents the intrinsic characteristics of a vulnerability that are
* constant over time and across user environments.
* This metric reflects the context by which vulnerability exploitation is
* possible.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.AttackVector attack_vector = 5;
*
* @return The enum numeric value on the wire for attackVector.
*/
int getAttackVectorValue();
/**
*
*
*
* Base Metrics
* Represents the intrinsic characteristics of a vulnerability that are
* constant over time and across user environments.
* This metric reflects the context by which vulnerability exploitation is
* possible.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.AttackVector attack_vector = 5;
*
* @return The attackVector.
*/
com.google.cloud.securitycenter.v1.Cvssv3.AttackVector getAttackVector();
/**
*
*
*
* This metric describes the conditions beyond the attacker's control that
* must exist in order to exploit the vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.AttackComplexity attack_complexity = 6;
*
* @return The enum numeric value on the wire for attackComplexity.
*/
int getAttackComplexityValue();
/**
*
*
*
* This metric describes the conditions beyond the attacker's control that
* must exist in order to exploit the vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.AttackComplexity attack_complexity = 6;
*
* @return The attackComplexity.
*/
com.google.cloud.securitycenter.v1.Cvssv3.AttackComplexity getAttackComplexity();
/**
*
*
*
* This metric describes the level of privileges an attacker must possess
* before successfully exploiting the vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.PrivilegesRequired privileges_required = 7;
*
* @return The enum numeric value on the wire for privilegesRequired.
*/
int getPrivilegesRequiredValue();
/**
*
*
*
* This metric describes the level of privileges an attacker must possess
* before successfully exploiting the vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.PrivilegesRequired privileges_required = 7;
*
* @return The privilegesRequired.
*/
com.google.cloud.securitycenter.v1.Cvssv3.PrivilegesRequired getPrivilegesRequired();
/**
*
*
*
* This metric captures the requirement for a human user, other than the
* attacker, to participate in the successful compromise of the vulnerable
* component.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.UserInteraction user_interaction = 8;
*
* @return The enum numeric value on the wire for userInteraction.
*/
int getUserInteractionValue();
/**
*
*
*
* This metric captures the requirement for a human user, other than the
* attacker, to participate in the successful compromise of the vulnerable
* component.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.UserInteraction user_interaction = 8;
*
* @return The userInteraction.
*/
com.google.cloud.securitycenter.v1.Cvssv3.UserInteraction getUserInteraction();
/**
*
*
*
* The Scope metric captures whether a vulnerability in one vulnerable
* component impacts resources in components beyond its security scope.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.Scope scope = 9;
*
* @return The enum numeric value on the wire for scope.
*/
int getScopeValue();
/**
*
*
*
* The Scope metric captures whether a vulnerability in one vulnerable
* component impacts resources in components beyond its security scope.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.Scope scope = 9;
*
* @return The scope.
*/
com.google.cloud.securitycenter.v1.Cvssv3.Scope getScope();
/**
*
*
*
* This metric measures the impact to the confidentiality of the information
* resources managed by a software component due to a successfully exploited
* vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.Impact confidentiality_impact = 10;
*
* @return The enum numeric value on the wire for confidentialityImpact.
*/
int getConfidentialityImpactValue();
/**
*
*
*
* This metric measures the impact to the confidentiality of the information
* resources managed by a software component due to a successfully exploited
* vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.Impact confidentiality_impact = 10;
*
* @return The confidentialityImpact.
*/
com.google.cloud.securitycenter.v1.Cvssv3.Impact getConfidentialityImpact();
/**
*
*
*
* This metric measures the impact to integrity of a successfully exploited
* vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.Impact integrity_impact = 11;
*
* @return The enum numeric value on the wire for integrityImpact.
*/
int getIntegrityImpactValue();
/**
*
*
*
* This metric measures the impact to integrity of a successfully exploited
* vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.Impact integrity_impact = 11;
*
* @return The integrityImpact.
*/
com.google.cloud.securitycenter.v1.Cvssv3.Impact getIntegrityImpact();
/**
*
*
*
* This metric measures the impact to the availability of the impacted
* component resulting from a successfully exploited vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.Impact availability_impact = 12;
*
* @return The enum numeric value on the wire for availabilityImpact.
*/
int getAvailabilityImpactValue();
/**
*
*
*
* This metric measures the impact to the availability of the impacted
* component resulting from a successfully exploited vulnerability.
*
*
* .google.cloud.securitycenter.v1.Cvssv3.Impact availability_impact = 12;
*
* @return The availabilityImpact.
*/
com.google.cloud.securitycenter.v1.Cvssv3.Impact getAvailabilityImpact();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy