- 3.56.0 (latest)
- 3.55.0
- 3.53.0
- 3.52.0
- 3.51.0
- 3.50.0
- 3.49.0
- 3.48.0
- 3.47.0
- 3.46.0
- 3.45.0
- 3.44.0
- 3.43.0
- 3.41.0
- 3.40.0
- 3.39.0
- 3.38.0
- 3.37.0
- 3.36.0
- 3.35.0
- 3.34.0
- 3.33.0
- 3.32.0
- 3.31.0
- 3.28.0
- 3.27.0
- 3.26.0
- 3.25.0
- 3.24.0
- 3.23.0
- 3.22.0
- 3.21.0
- 3.20.0
- 3.19.0
- 3.18.0
- 3.17.0
- 3.16.0
- 3.15.0
- 3.13.0
- 3.12.0
- 3.11.0
- 3.10.0
- 3.9.0
- 3.8.0
- 3.7.6
- 3.6.7
- 3.5.0
- 3.4.0
- 3.3.2
- 3.2.1
- 3.1.4
public interface ContainerOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getFullPath()
public abstract String getFullPath()
A string representation of the full container name. Examples:
- BigQuery: 'Project:DataSetId.TableId'
- Cloud Storage: 'gs://Bucket/folders/filename.txt'
string full_path = 3;
Returns | |
---|---|
Type | Description |
String | The fullPath. |
getFullPathBytes()
public abstract ByteString getFullPathBytes()
A string representation of the full container name. Examples:
- BigQuery: 'Project:DataSetId.TableId'
- Cloud Storage: 'gs://Bucket/folders/filename.txt'
string full_path = 3;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for fullPath. |
getProjectId()
public abstract String getProjectId()
Project where the finding was found. Can be different from the project that owns the finding.
string project_id = 2;
Returns | |
---|---|
Type | Description |
String | The projectId. |
getProjectIdBytes()
public abstract ByteString getProjectIdBytes()
Project where the finding was found. Can be different from the project that owns the finding.
string project_id = 2;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for projectId. |
getRelativePath()
public abstract String getRelativePath()
The rest of the path after the root. Examples:
- For BigQuery table
project_id:dataset_id.table_id
, the relative path istable_id
- For Cloud Storage file
gs://bucket/folder/filename.txt
, the relative path isfolder/filename.txt
string relative_path = 5;
Returns | |
---|---|
Type | Description |
String | The relativePath. |
getRelativePathBytes()
public abstract ByteString getRelativePathBytes()
The rest of the path after the root. Examples:
- For BigQuery table
project_id:dataset_id.table_id
, the relative path istable_id
- For Cloud Storage file
gs://bucket/folder/filename.txt
, the relative path isfolder/filename.txt
string relative_path = 5;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for relativePath. |
getRootPath()
public abstract String getRootPath()
The root of the container. Examples:
- For BigQuery table
project_id:dataset_id.table_id
, the root isdataset_id
- For Cloud Storage file
gs://bucket/folder/filename.txt
, the root isgs://bucket
string root_path = 4;
Returns | |
---|---|
Type | Description |
String | The rootPath. |
getRootPathBytes()
public abstract ByteString getRootPathBytes()
The root of the container. Examples:
- For BigQuery table
project_id:dataset_id.table_id
, the root isdataset_id
- For Cloud Storage file
gs://bucket/folder/filename.txt
, the root isgs://bucket
string root_path = 4;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for rootPath. |
getType()
public abstract String getType()
Container type, for example BigQuery or Cloud Storage.
string type = 1;
Returns | |
---|---|
Type | Description |
String | The type. |
getTypeBytes()
public abstract ByteString getTypeBytes()
Container type, for example BigQuery or Cloud Storage.
string type = 1;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for type. |
getUpdateTime()
public abstract Timestamp getUpdateTime()
Findings container modification timestamp, if applicable. For Cloud Storage, this field contains the last file modification timestamp. For a BigQuery table, this field contains the last_modified_time property. For Datastore, this field isn't populated.
.google.protobuf.Timestamp update_time = 6;
Returns | |
---|---|
Type | Description |
Timestamp | The updateTime. |
getUpdateTimeOrBuilder()
public abstract TimestampOrBuilder getUpdateTimeOrBuilder()
Findings container modification timestamp, if applicable. For Cloud Storage, this field contains the last file modification timestamp. For a BigQuery table, this field contains the last_modified_time property. For Datastore, this field isn't populated.
.google.protobuf.Timestamp update_time = 6;
Returns | |
---|---|
Type | Description |
TimestampOrBuilder |
getVersion()
public abstract String getVersion()
Findings container version, if available ("generation" for Cloud Storage).
string version = 7;
Returns | |
---|---|
Type | Description |
String | The version. |
getVersionBytes()
public abstract ByteString getVersionBytes()
Findings container version, if available ("generation" for Cloud Storage).
string version = 7;
Returns | |
---|---|
Type | Description |
ByteString | The bytes for version. |
hasUpdateTime()
public abstract boolean hasUpdateTime()
Findings container modification timestamp, if applicable. For Cloud Storage, this field contains the last file modification timestamp. For a BigQuery table, this field contains the last_modified_time property. For Datastore, this field isn't populated.
.google.protobuf.Timestamp update_time = 6;
Returns | |
---|---|
Type | Description |
boolean | Whether the updateTime field is set. |