Class: Google::Cloud::Dialogflow::CX::V3::ListChangelogsRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Dialogflow::CX::V3::ListChangelogsRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dialogflow/cx/v3/changelog.rb
Overview
The request message for Changelogs.ListChangelogs.
Instance Attribute Summary collapse
-
#filter ⇒ ::String
The filter string.
-
#page_size ⇒ ::Integer
The maximum number of items to return in a single page.
-
#page_token ⇒ ::String
The next_page_token value returned from a previous list request.
-
#parent ⇒ ::String
Required.
Instance Attribute Details
#filter ⇒ ::String
Returns The filter string. Supports filter by user_email, resource, type and create_time. Some examples:
- By user email: user_email = "someone@google.com"
- By resource name: resource = "projects/123/locations/global/agents/456/flows/789"
- By resource display name: display_name = "my agent"
- By action: action = "Create"
- By type: type = "flows"
- By create time. Currently predicates on
create_time
andcreate_time_epoch_seconds
are supported: create_time_epoch_seconds > 1551790877 AND create_time <= 2017-01-15T01:30:15.01Z - Combination of above filters: resource = "projects/123/locations/global/agents/456/flows/789" AND user_email = "someone@google.com" AND create_time <= 2017-01-15T01:30:15.01Z.
60 61 62 63 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/changelog.rb', line 60 class ListChangelogsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#page_size ⇒ ::Integer
Returns The maximum number of items to return in a single page. By default 100 and at most 1000.
60 61 62 63 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/changelog.rb', line 60 class ListChangelogsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#page_token ⇒ ::String
Returns The next_page_token value returned from a previous list request.
60 61 62 63 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/changelog.rb', line 60 class ListChangelogsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parent ⇒ ::String
Returns Required. The agent containing the changelogs.
Format: projects/<ProjectID>/locations/<LocationID>/agents/<AgentID>
.
60 61 62 63 |
# File 'proto_docs/google/cloud/dialogflow/cx/v3/changelog.rb', line 60 class ListChangelogsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |