public final class ListAssetsRequest extends GeneratedMessageV3 implements ListAssetsRequestOrBuilder
ListAssets request.
Protobuf type google.cloud.asset.v1.ListAssetsRequest
Static Fields
ASSET_TYPES_FIELD_NUMBER
public static final int ASSET_TYPES_FIELD_NUMBER
Field Value
CONTENT_TYPE_FIELD_NUMBER
public static final int CONTENT_TYPE_FIELD_NUMBER
Field Value
PAGE_SIZE_FIELD_NUMBER
public static final int PAGE_SIZE_FIELD_NUMBER
Field Value
PAGE_TOKEN_FIELD_NUMBER
public static final int PAGE_TOKEN_FIELD_NUMBER
Field Value
PARENT_FIELD_NUMBER
public static final int PARENT_FIELD_NUMBER
Field Value
READ_TIME_FIELD_NUMBER
public static final int READ_TIME_FIELD_NUMBER
Field Value
RELATIONSHIP_TYPES_FIELD_NUMBER
public static final int RELATIONSHIP_TYPES_FIELD_NUMBER
Field Value
Static Methods
getDefaultInstance()
public static ListAssetsRequest getDefaultInstance()
Returns
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Returns
newBuilder()
public static ListAssetsRequest.Builder newBuilder()
Returns
newBuilder(ListAssetsRequest prototype)
public static ListAssetsRequest.Builder newBuilder(ListAssetsRequest prototype)
Parameter
Returns
public static ListAssetsRequest parseDelimitedFrom(InputStream input)
Parameter
Returns
Exceptions
public static ListAssetsRequest parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(byte[] data)
public static ListAssetsRequest parseFrom(byte[] data)
Parameter
Name |
Description |
data |
byte[]
|
Returns
Exceptions
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static ListAssetsRequest parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(ByteString data)
public static ListAssetsRequest parseFrom(ByteString data)
Parameter
Returns
Exceptions
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static ListAssetsRequest parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
public static ListAssetsRequest parseFrom(CodedInputStream input)
Parameter
Returns
Exceptions
public static ListAssetsRequest parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
public static ListAssetsRequest parseFrom(InputStream input)
Parameter
Returns
Exceptions
public static ListAssetsRequest parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parseFrom(ByteBuffer data)
public static ListAssetsRequest parseFrom(ByteBuffer data)
Parameter
Returns
Exceptions
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static ListAssetsRequest parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
Returns
Exceptions
parser()
public static Parser<ListAssetsRequest> parser()
Returns
Methods
equals(Object obj)
public boolean equals(Object obj)
Parameter
Returns
Overrides
getAssetTypes(int index)
public String getAssetTypes(int index)
A list of asset types to take a snapshot for. For example:
"compute.googleapis.com/Disk".
Regular expression is also supported. For example:
- "compute.googleapis.com.*" snapshots resources whose asset type starts
with "compute.googleapis.com".
- ".*Instance" snapshots resources whose asset type ends with "Instance".
- ".Instance." snapshots resources whose asset type contains "Instance".
See RE2 for all supported
regular expression syntax. If the regular expression does not match any
supported asset type, an INVALID_ARGUMENT error will be returned.
If specified, only matching assets will be returned, otherwise, it will
snapshot all asset types. See Introduction to Cloud Asset
Inventory
for all supported asset types.
repeated string asset_types = 3;
Parameter
Name |
Description |
index |
int
The index of the element to return.
|
Returns
Type |
Description |
String |
The assetTypes at the given index.
|
getAssetTypesBytes(int index)
public ByteString getAssetTypesBytes(int index)
A list of asset types to take a snapshot for. For example:
"compute.googleapis.com/Disk".
Regular expression is also supported. For example:
- "compute.googleapis.com.*" snapshots resources whose asset type starts
with "compute.googleapis.com".
- ".*Instance" snapshots resources whose asset type ends with "Instance".
- ".Instance." snapshots resources whose asset type contains "Instance".
See RE2 for all supported
regular expression syntax. If the regular expression does not match any
supported asset type, an INVALID_ARGUMENT error will be returned.
If specified, only matching assets will be returned, otherwise, it will
snapshot all asset types. See Introduction to Cloud Asset
Inventory
for all supported asset types.
repeated string asset_types = 3;
Parameter
Name |
Description |
index |
int
The index of the value to return.
|
Returns
Type |
Description |
ByteString |
The bytes of the assetTypes at the given index.
|
getAssetTypesCount()
public int getAssetTypesCount()
A list of asset types to take a snapshot for. For example:
"compute.googleapis.com/Disk".
Regular expression is also supported. For example:
- "compute.googleapis.com.*" snapshots resources whose asset type starts
with "compute.googleapis.com".
- ".*Instance" snapshots resources whose asset type ends with "Instance".
- ".Instance." snapshots resources whose asset type contains "Instance".
See RE2 for all supported
regular expression syntax. If the regular expression does not match any
supported asset type, an INVALID_ARGUMENT error will be returned.
If specified, only matching assets will be returned, otherwise, it will
snapshot all asset types. See Introduction to Cloud Asset
Inventory
for all supported asset types.
repeated string asset_types = 3;
Returns
Type |
Description |
int |
The count of assetTypes.
|
getAssetTypesList()
public ProtocolStringList getAssetTypesList()
A list of asset types to take a snapshot for. For example:
"compute.googleapis.com/Disk".
Regular expression is also supported. For example:
- "compute.googleapis.com.*" snapshots resources whose asset type starts
with "compute.googleapis.com".
- ".*Instance" snapshots resources whose asset type ends with "Instance".
- ".Instance." snapshots resources whose asset type contains "Instance".
See RE2 for all supported
regular expression syntax. If the regular expression does not match any
supported asset type, an INVALID_ARGUMENT error will be returned.
If specified, only matching assets will be returned, otherwise, it will
snapshot all asset types. See Introduction to Cloud Asset
Inventory
for all supported asset types.
repeated string asset_types = 3;
Returns
getContentType()
public ContentType getContentType()
Asset content type. If not specified, no content but the asset name will
be returned.
.google.cloud.asset.v1.ContentType content_type = 4;
Returns
getContentTypeValue()
public int getContentTypeValue()
Asset content type. If not specified, no content but the asset name will
be returned.
.google.cloud.asset.v1.ContentType content_type = 4;
Returns
Type |
Description |
int |
The enum numeric value on the wire for contentType.
|
getDefaultInstanceForType()
public ListAssetsRequest getDefaultInstanceForType()
Returns
getPageSize()
The maximum number of assets to be returned in a single response. Default
is 100, minimum is 1, and maximum is 1000.
int32 page_size = 5;
Returns
Type |
Description |
int |
The pageSize.
|
getPageToken()
public String getPageToken()
The next_page_token
returned from the previous ListAssetsResponse
, or
unspecified for the first ListAssetsRequest
. It is a continuation of a
prior ListAssets
call, and the API should return the next page of assets.
string page_token = 6;
Returns
Type |
Description |
String |
The pageToken.
|
getPageTokenBytes()
public ByteString getPageTokenBytes()
The next_page_token
returned from the previous ListAssetsResponse
, or
unspecified for the first ListAssetsRequest
. It is a continuation of a
prior ListAssets
call, and the API should return the next page of assets.
string page_token = 6;
Returns
Type |
Description |
ByteString |
The bytes for pageToken.
|
getParent()
public String getParent()
Required. Name of the organization, folder, or project the assets belong
to. Format: "organizations/[organization-number]" (such as
"organizations/123"), "projects/[project-id]" (such as
"projects/my-project-id"), "projects/[project-number]" (such as
"projects/12345"), or "folders/[folder-number]" (such as "folders/12345").
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
Returns
Type |
Description |
String |
The parent.
|
getParentBytes()
public ByteString getParentBytes()
Required. Name of the organization, folder, or project the assets belong
to. Format: "organizations/[organization-number]" (such as
"organizations/123"), "projects/[project-id]" (such as
"projects/my-project-id"), "projects/[project-number]" (such as
"projects/12345"), or "folders/[folder-number]" (such as "folders/12345").
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
Returns
getParserForType()
public Parser<ListAssetsRequest> getParserForType()
Returns
Overrides
getReadTime()
public Timestamp getReadTime()
Timestamp to take an asset snapshot. This can only be set to a timestamp
between the current time and the current time minus 35 days (inclusive).
If not specified, the current time will be used. Due to delays in resource
data collection and indexing, there is a volatile window during which
running the same query may get different results.
.google.protobuf.Timestamp read_time = 2;
Returns
getReadTimeOrBuilder()
public TimestampOrBuilder getReadTimeOrBuilder()
Timestamp to take an asset snapshot. This can only be set to a timestamp
between the current time and the current time minus 35 days (inclusive).
If not specified, the current time will be used. Due to delays in resource
data collection and indexing, there is a volatile window during which
running the same query may get different results.
.google.protobuf.Timestamp read_time = 2;
Returns
getRelationshipTypes(int index)
public String getRelationshipTypes(int index)
A list of relationship types to output, for example:
INSTANCE_TO_INSTANCEGROUP
. This field should only be specified if
content_type=RELATIONSHIP.
- If specified:
it snapshots specified relationships. It returns an error if
any of the [relationship_types] doesn't belong to the supported
relationship types of the [asset_types] or if any of the [asset_types]
doesn't belong to the source types of the [relationship_types].
- Otherwise:
it snapshots the supported relationships for all [asset_types] or returns
an error if any of the [asset_types] has no relationship support.
An unspecified asset types field means all supported asset_types.
See Introduction to Cloud Asset
Inventory
for all supported asset types and relationship types.
repeated string relationship_types = 7;
Parameter
Name |
Description |
index |
int
The index of the element to return.
|
Returns
Type |
Description |
String |
The relationshipTypes at the given index.
|
getRelationshipTypesBytes(int index)
public ByteString getRelationshipTypesBytes(int index)
A list of relationship types to output, for example:
INSTANCE_TO_INSTANCEGROUP
. This field should only be specified if
content_type=RELATIONSHIP.
- If specified:
it snapshots specified relationships. It returns an error if
any of the [relationship_types] doesn't belong to the supported
relationship types of the [asset_types] or if any of the [asset_types]
doesn't belong to the source types of the [relationship_types].
- Otherwise:
it snapshots the supported relationships for all [asset_types] or returns
an error if any of the [asset_types] has no relationship support.
An unspecified asset types field means all supported asset_types.
See Introduction to Cloud Asset
Inventory
for all supported asset types and relationship types.
repeated string relationship_types = 7;
Parameter
Name |
Description |
index |
int
The index of the value to return.
|
Returns
Type |
Description |
ByteString |
The bytes of the relationshipTypes at the given index.
|
getRelationshipTypesCount()
public int getRelationshipTypesCount()
A list of relationship types to output, for example:
INSTANCE_TO_INSTANCEGROUP
. This field should only be specified if
content_type=RELATIONSHIP.
- If specified:
it snapshots specified relationships. It returns an error if
any of the [relationship_types] doesn't belong to the supported
relationship types of the [asset_types] or if any of the [asset_types]
doesn't belong to the source types of the [relationship_types].
- Otherwise:
it snapshots the supported relationships for all [asset_types] or returns
an error if any of the [asset_types] has no relationship support.
An unspecified asset types field means all supported asset_types.
See Introduction to Cloud Asset
Inventory
for all supported asset types and relationship types.
repeated string relationship_types = 7;
Returns
Type |
Description |
int |
The count of relationshipTypes.
|
getRelationshipTypesList()
public ProtocolStringList getRelationshipTypesList()
A list of relationship types to output, for example:
INSTANCE_TO_INSTANCEGROUP
. This field should only be specified if
content_type=RELATIONSHIP.
- If specified:
it snapshots specified relationships. It returns an error if
any of the [relationship_types] doesn't belong to the supported
relationship types of the [asset_types] or if any of the [asset_types]
doesn't belong to the source types of the [relationship_types].
- Otherwise:
it snapshots the supported relationships for all [asset_types] or returns
an error if any of the [asset_types] has no relationship support.
An unspecified asset types field means all supported asset_types.
See Introduction to Cloud Asset
Inventory
for all supported asset types and relationship types.
repeated string relationship_types = 7;
Returns
getSerializedSize()
public int getSerializedSize()
Returns
Overrides
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Returns
Overrides
hasReadTime()
public boolean hasReadTime()
Timestamp to take an asset snapshot. This can only be set to a timestamp
between the current time and the current time minus 35 days (inclusive).
If not specified, the current time will be used. Due to delays in resource
data collection and indexing, there is a volatile window during which
running the same query may get different results.
.google.protobuf.Timestamp read_time = 2;
Returns
Type |
Description |
boolean |
Whether the readTime field is set.
|
hashCode()
Returns
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
Overrides
isInitialized()
public final boolean isInitialized()
Returns
Overrides
newBuilderForType()
public ListAssetsRequest.Builder newBuilderForType()
Returns
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected ListAssetsRequest.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
Returns
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
Returns
Overrides
toBuilder()
public ListAssetsRequest.Builder toBuilder()
Returns
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Parameter
Overrides
Exceptions