Class Report (3.46.0)

public final class Report extends GeneratedMessageV3 implements ReportOrBuilder

The ID and description of a report that was used to generate report data. For example, "Google Cloud Daily Spend", "Google Workspace License Activity", etc.

Protobuf type google.cloud.channel.v1.Report

Implements

ReportOrBuilder

Static Fields

COLUMNS_FIELD_NUMBER (deprecated)

public static final int COLUMNS_FIELD_NUMBER
Field Value
Type Description
int

DESCRIPTION_FIELD_NUMBER (deprecated)

public static final int DESCRIPTION_FIELD_NUMBER
Field Value
Type Description
int

DISPLAY_NAME_FIELD_NUMBER (deprecated)

public static final int DISPLAY_NAME_FIELD_NUMBER
Field Value
Type Description
int

NAME_FIELD_NUMBER (deprecated)

public static final int NAME_FIELD_NUMBER
Field Value
Type Description
int

Static Methods

getDefaultInstance() (deprecated)

public static Report getDefaultInstance()
Returns
Type Description
Report

getDescriptor() (deprecated)

public static final Descriptors.Descriptor getDescriptor()
Returns
Type Description
Descriptor

newBuilder() (deprecated)

public static Report.Builder newBuilder()
Returns
Type Description
Report.Builder

newBuilder(Report prototype) (deprecated)

public static Report.Builder newBuilder(Report prototype)
Parameter
Name Description
prototype Report
Returns
Type Description
Report.Builder

parseDelimitedFrom(InputStream input) (deprecated)

public static Report parseDelimitedFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
Report
Exceptions
Type Description
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry) (deprecated)

public static Report parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Report
Exceptions
Type Description
IOException

parseFrom(byte[] data) (deprecated)

public static Report parseFrom(byte[] data)
Parameter
Name Description
data byte[]
Returns
Type Description
Report
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry) (deprecated)

public static Report parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data byte[]
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Report
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data) (deprecated)

public static Report parseFrom(ByteString data)
Parameter
Name Description
data ByteString
Returns
Type Description
Report
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry) (deprecated)

public static Report parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteString
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Report
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(CodedInputStream input) (deprecated)

public static Report parseFrom(CodedInputStream input)
Parameter
Name Description
input CodedInputStream
Returns
Type Description
Report
Exceptions
Type Description
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry) (deprecated)

public static Report parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input CodedInputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Report
Exceptions
Type Description
IOException

parseFrom(InputStream input) (deprecated)

public static Report parseFrom(InputStream input)
Parameter
Name Description
input InputStream
Returns
Type Description
Report
Exceptions
Type Description
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry) (deprecated)

public static Report parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
input InputStream
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Report
Exceptions
Type Description
IOException

parseFrom(ByteBuffer data) (deprecated)

public static Report parseFrom(ByteBuffer data)
Parameter
Name Description
data ByteBuffer
Returns
Type Description
Report
Exceptions
Type Description
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry) (deprecated)

public static Report parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Name Description
data ByteBuffer
extensionRegistry ExtensionRegistryLite
Returns
Type Description
Report
Exceptions
Type Description
InvalidProtocolBufferException

parser() (deprecated)

public static Parser<Report> parser()
Returns
Type Description
Parser<Report>

Methods

equals(Object obj) (deprecated)

public boolean equals(Object obj)
Parameter
Name Description
obj Object
Returns
Type Description
boolean
Overrides

getColumns(int index) (deprecated)

public Column getColumns(int index)

The list of columns included in the report. This defines the schema of the report results.

repeated .google.cloud.channel.v1.Column columns = 3;

Parameter
Name Description
index int
Returns
Type Description
Column

getColumnsCount() (deprecated)

public int getColumnsCount()

The list of columns included in the report. This defines the schema of the report results.

repeated .google.cloud.channel.v1.Column columns = 3;

Returns
Type Description
int

getColumnsList() (deprecated)

public List<Column> getColumnsList()

The list of columns included in the report. This defines the schema of the report results.

repeated .google.cloud.channel.v1.Column columns = 3;

Returns
Type Description
List<Column>

getColumnsOrBuilder(int index) (deprecated)

public ColumnOrBuilder getColumnsOrBuilder(int index)

The list of columns included in the report. This defines the schema of the report results.

repeated .google.cloud.channel.v1.Column columns = 3;

Parameter
Name Description
index int
Returns
Type Description
ColumnOrBuilder

getColumnsOrBuilderList() (deprecated)

public List<? extends ColumnOrBuilder> getColumnsOrBuilderList()

The list of columns included in the report. This defines the schema of the report results.

repeated .google.cloud.channel.v1.Column columns = 3;

Returns
Type Description
List<? extends com.google.cloud.channel.v1.ColumnOrBuilder>

getDefaultInstanceForType() (deprecated)

public Report getDefaultInstanceForType()
Returns
Type Description
Report

getDescription() (deprecated)

public String getDescription()

A description of other aspects of the report, such as the products it supports.

string description = 4;

Returns
Type Description
String

The description.

getDescriptionBytes() (deprecated)

public ByteString getDescriptionBytes()

A description of other aspects of the report, such as the products it supports.

string description = 4;

Returns
Type Description
ByteString

The bytes for description.

getDisplayName() (deprecated)

public String getDisplayName()

A human-readable name for this report.

string display_name = 2;

Returns
Type Description
String

The displayName.

getDisplayNameBytes() (deprecated)

public ByteString getDisplayNameBytes()

A human-readable name for this report.

string display_name = 2;

Returns
Type Description
ByteString

The bytes for displayName.

getName() (deprecated)

public String getName()

Required. The report's resource name. Specifies the account and report used to generate report data. The report_id identifier is a UID (for example, 613bf59q).

Name uses the format: accounts/{account_id}/reports/{report_id}

string name = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
String

The name.

getNameBytes() (deprecated)

public ByteString getNameBytes()

Required. The report's resource name. Specifies the account and report used to generate report data. The report_id identifier is a UID (for example, 613bf59q).

Name uses the format: accounts/{account_id}/reports/{report_id}

string name = 1 [(.google.api.field_behavior) = REQUIRED];

Returns
Type Description
ByteString

The bytes for name.

getParserForType() (deprecated)

public Parser<Report> getParserForType()
Returns
Type Description
Parser<Report>
Overrides

getSerializedSize() (deprecated)

public int getSerializedSize()
Returns
Type Description
int
Overrides

hashCode() (deprecated)

public int hashCode()
Returns
Type Description
int
Overrides

internalGetFieldAccessorTable() (deprecated)

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Type Description
FieldAccessorTable
Overrides

isInitialized() (deprecated)

public final boolean isInitialized()
Returns
Type Description
boolean
Overrides

newBuilderForType() (deprecated)

public Report.Builder newBuilderForType()
Returns
Type Description
Report.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent) (deprecated)

protected Report.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Name Description
parent BuilderParent
Returns
Type Description
Report.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused) (deprecated)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Name Description
unused UnusedPrivateParameter
Returns
Type Description
Object
Overrides

toBuilder() (deprecated)

public Report.Builder toBuilder()
Returns
Type Description
Report.Builder

writeTo(CodedOutputStream output) (deprecated)

public void writeTo(CodedOutputStream output)
Parameter
Name Description
output CodedOutputStream
Overrides
Exceptions
Type Description
IOException