com.google.cloud.audit.AuthorizationInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lightstep-opentelemetry-auto-exporter Show documentation
Show all versions of lightstep-opentelemetry-auto-exporter Show documentation
Lightstep OpenTelemetry Auto Exporter
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/audit/audit_log.proto
package com.google.cloud.audit;
/**
*
* Authorization information for the operation.
*
*
* Protobuf type {@code google.cloud.audit.AuthorizationInfo}
*/
public final class AuthorizationInfo extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:google.cloud.audit.AuthorizationInfo)
AuthorizationInfoOrBuilder {
private static final long serialVersionUID = 0L;
// Use AuthorizationInfo.newBuilder() to construct.
private AuthorizationInfo(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private AuthorizationInfo() {
resource_ = "";
permission_ = "";
}
@Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private AuthorizationInfo(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
String s = input.readStringRequireUtf8();
resource_ = s;
break;
}
case 18: {
String s = input.readStringRequireUtf8();
permission_ = s;
break;
}
case 24: {
granted_ = input.readBool();
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return AuditLogProto.internal_static_google_cloud_audit_AuthorizationInfo_descriptor;
}
@Override
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return AuditLogProto.internal_static_google_cloud_audit_AuthorizationInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
AuthorizationInfo.class, Builder.class);
}
public static final int RESOURCE_FIELD_NUMBER = 1;
private volatile Object resource_;
/**
*
* The resource being accessed, as a REST-style string. For example:
* bigquery.googlapis.com/projects/PROJECTID/datasets/DATASETID
*
*
* string resource = 1;
*/
public String getResource() {
Object ref = resource_;
if (ref instanceof String) {
return (String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
String s = bs.toStringUtf8();
resource_ = s;
return s;
}
}
/**
*
* The resource being accessed, as a REST-style string. For example:
* bigquery.googlapis.com/projects/PROJECTID/datasets/DATASETID
*
*
* string resource = 1;
*/
public com.google.protobuf.ByteString
getResourceBytes() {
Object ref = resource_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(String) ref);
resource_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int PERMISSION_FIELD_NUMBER = 2;
private volatile Object permission_;
/**
*
* The required IAM permission.
*
*
* string permission = 2;
*/
public String getPermission() {
Object ref = permission_;
if (ref instanceof String) {
return (String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
String s = bs.toStringUtf8();
permission_ = s;
return s;
}
}
/**
*
* The required IAM permission.
*
*
* string permission = 2;
*/
public com.google.protobuf.ByteString
getPermissionBytes() {
Object ref = permission_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(String) ref);
permission_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int GRANTED_FIELD_NUMBER = 3;
private boolean granted_;
/**
*
* Whether or not authorization for `resource` and `permission`
* was granted.
*
*
* bool granted = 3;
*/
public boolean getGranted() {
return granted_;
}
private byte memoizedIsInitialized = -1;
@Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getResourceBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, resource_);
}
if (!getPermissionBytes().isEmpty()) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, permission_);
}
if (granted_ != false) {
output.writeBool(3, granted_);
}
unknownFields.writeTo(output);
}
@Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getResourceBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, resource_);
}
if (!getPermissionBytes().isEmpty()) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, permission_);
}
if (granted_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(3, granted_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@Override
public boolean equals(final Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof AuthorizationInfo)) {
return super.equals(obj);
}
AuthorizationInfo other = (AuthorizationInfo) obj;
if (!getResource()
.equals(other.getResource())) return false;
if (!getPermission()
.equals(other.getPermission())) return false;
if (getGranted()
!= other.getGranted()) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + RESOURCE_FIELD_NUMBER;
hash = (53 * hash) + getResource().hashCode();
hash = (37 * hash) + PERMISSION_FIELD_NUMBER;
hash = (53 * hash) + getPermission().hashCode();
hash = (37 * hash) + GRANTED_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getGranted());
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static AuthorizationInfo parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static AuthorizationInfo parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static AuthorizationInfo parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static AuthorizationInfo parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static AuthorizationInfo parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static AuthorizationInfo parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static AuthorizationInfo parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static AuthorizationInfo parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static AuthorizationInfo parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static AuthorizationInfo parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static AuthorizationInfo parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static AuthorizationInfo parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(AuthorizationInfo prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@Override
protected Builder newBuilderForType(
BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* Authorization information for the operation.
*
*
* Protobuf type {@code google.cloud.audit.AuthorizationInfo}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.cloud.audit.AuthorizationInfo)
com.google.cloud.audit.AuthorizationInfoOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return AuditLogProto.internal_static_google_cloud_audit_AuthorizationInfo_descriptor;
}
@Override
protected FieldAccessorTable
internalGetFieldAccessorTable() {
return AuditLogProto.internal_static_google_cloud_audit_AuthorizationInfo_fieldAccessorTable
.ensureFieldAccessorsInitialized(
AuthorizationInfo.class, Builder.class);
}
// Construct using com.google.cloud.audit.AuthorizationInfo.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@Override
public Builder clear() {
super.clear();
resource_ = "";
permission_ = "";
granted_ = false;
return this;
}
@Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return AuditLogProto.internal_static_google_cloud_audit_AuthorizationInfo_descriptor;
}
@Override
public AuthorizationInfo getDefaultInstanceForType() {
return AuthorizationInfo.getDefaultInstance();
}
@Override
public AuthorizationInfo build() {
AuthorizationInfo result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@Override
public AuthorizationInfo buildPartial() {
AuthorizationInfo result = new AuthorizationInfo(this);
result.resource_ = resource_;
result.permission_ = permission_;
result.granted_ = granted_;
onBuilt();
return result;
}
@Override
public Builder clone() {
return super.clone();
}
@Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return super.setField(field, value);
}
@Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return super.setRepeatedField(field, index, value);
}
@Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return super.addRepeatedField(field, value);
}
@Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof AuthorizationInfo) {
return mergeFrom((AuthorizationInfo)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(AuthorizationInfo other) {
if (other == AuthorizationInfo.getDefaultInstance()) return this;
if (!other.getResource().isEmpty()) {
resource_ = other.resource_;
onChanged();
}
if (!other.getPermission().isEmpty()) {
permission_ = other.permission_;
onChanged();
}
if (other.getGranted() != false) {
setGranted(other.getGranted());
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@Override
public final boolean isInitialized() {
return true;
}
@Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
AuthorizationInfo parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (AuthorizationInfo) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private Object resource_ = "";
/**
*
* The resource being accessed, as a REST-style string. For example:
* bigquery.googlapis.com/projects/PROJECTID/datasets/DATASETID
*
*
* string resource = 1;
*/
public String getResource() {
Object ref = resource_;
if (!(ref instanceof String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
String s = bs.toStringUtf8();
resource_ = s;
return s;
} else {
return (String) ref;
}
}
/**
*
* The resource being accessed, as a REST-style string. For example:
* bigquery.googlapis.com/projects/PROJECTID/datasets/DATASETID
*
*
* string resource = 1;
*/
public com.google.protobuf.ByteString
getResourceBytes() {
Object ref = resource_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(String) ref);
resource_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The resource being accessed, as a REST-style string. For example:
* bigquery.googlapis.com/projects/PROJECTID/datasets/DATASETID
*
*
* string resource = 1;
*/
public Builder setResource(
String value) {
if (value == null) {
throw new NullPointerException();
}
resource_ = value;
onChanged();
return this;
}
/**
*
* The resource being accessed, as a REST-style string. For example:
* bigquery.googlapis.com/projects/PROJECTID/datasets/DATASETID
*
*
* string resource = 1;
*/
public Builder clearResource() {
resource_ = getDefaultInstance().getResource();
onChanged();
return this;
}
/**
*
* The resource being accessed, as a REST-style string. For example:
* bigquery.googlapis.com/projects/PROJECTID/datasets/DATASETID
*
*
* string resource = 1;
*/
public Builder setResourceBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
resource_ = value;
onChanged();
return this;
}
private Object permission_ = "";
/**
*
* The required IAM permission.
*
*
* string permission = 2;
*/
public String getPermission() {
Object ref = permission_;
if (!(ref instanceof String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
String s = bs.toStringUtf8();
permission_ = s;
return s;
} else {
return (String) ref;
}
}
/**
*
* The required IAM permission.
*
*
* string permission = 2;
*/
public com.google.protobuf.ByteString
getPermissionBytes() {
Object ref = permission_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(String) ref);
permission_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The required IAM permission.
*
*
* string permission = 2;
*/
public Builder setPermission(
String value) {
if (value == null) {
throw new NullPointerException();
}
permission_ = value;
onChanged();
return this;
}
/**
*
* The required IAM permission.
*
*
* string permission = 2;
*/
public Builder clearPermission() {
permission_ = getDefaultInstance().getPermission();
onChanged();
return this;
}
/**
*
* The required IAM permission.
*
*
* string permission = 2;
*/
public Builder setPermissionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
permission_ = value;
onChanged();
return this;
}
private boolean granted_ ;
/**
*
* Whether or not authorization for `resource` and `permission`
* was granted.
*
*
* bool granted = 3;
*/
public boolean getGranted() {
return granted_;
}
/**
*
* Whether or not authorization for `resource` and `permission`
* was granted.
*
*
* bool granted = 3;
*/
public Builder setGranted(boolean value) {
granted_ = value;
onChanged();
return this;
}
/**
*
* Whether or not authorization for `resource` and `permission`
* was granted.
*
*
* bool granted = 3;
*/
public Builder clearGranted() {
granted_ = false;
onChanged();
return this;
}
@Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:google.cloud.audit.AuthorizationInfo)
}
// @@protoc_insertion_point(class_scope:google.cloud.audit.AuthorizationInfo)
private static final AuthorizationInfo DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new AuthorizationInfo();
}
public static AuthorizationInfo getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@Override
public AuthorizationInfo parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new AuthorizationInfo(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@Override
public AuthorizationInfo getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}