com.google.cloud.securitycenter.v1.ComplianceOrBuilder 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/compliance.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.securitycenter.v1;
public interface ComplianceOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.securitycenter.v1.Compliance)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Industry-wide compliance standards or benchmarks, such as CIS, PCI, and
* OWASP.
*
*
* string standard = 1;
*
* @return The standard.
*/
java.lang.String getStandard();
/**
*
*
*
* Industry-wide compliance standards or benchmarks, such as CIS, PCI, and
* OWASP.
*
*
* string standard = 1;
*
* @return The bytes for standard.
*/
com.google.protobuf.ByteString getStandardBytes();
/**
*
*
*
* Version of the standard or benchmark, for example, 1.1
*
*
* string version = 2;
*
* @return The version.
*/
java.lang.String getVersion();
/**
*
*
*
* Version of the standard or benchmark, for example, 1.1
*
*
* string version = 2;
*
* @return The bytes for version.
*/
com.google.protobuf.ByteString getVersionBytes();
/**
*
*
*
* Policies within the standard or benchmark, for example, A.12.4.1
*
*
* repeated string ids = 3;
*
* @return A list containing the ids.
*/
java.util.List getIdsList();
/**
*
*
*
* Policies within the standard or benchmark, for example, A.12.4.1
*
*
* repeated string ids = 3;
*
* @return The count of ids.
*/
int getIdsCount();
/**
*
*
*
* Policies within the standard or benchmark, for example, A.12.4.1
*
*
* repeated string ids = 3;
*
* @param index The index of the element to return.
* @return The ids at the given index.
*/
java.lang.String getIds(int index);
/**
*
*
*
* Policies within the standard or benchmark, for example, A.12.4.1
*
*
* repeated string ids = 3;
*
* @param index The index of the value to return.
* @return The bytes of the ids at the given index.
*/
com.google.protobuf.ByteString getIdsBytes(int index);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy