|
5986 | 5986 | } |
5987 | 5987 | } |
5988 | 5988 | }, |
5989 | | - "revision": "20240826", |
| 5989 | + "revision": "20240829", |
5990 | 5990 | "rootUrl": "https://discoveryengine.googleapis.com/", |
5991 | 5991 | "schemas": { |
5992 | 5992 | "GoogleApiHttpBody": { |
|
6181 | 6181 | "POTENTIAL_POLICY_VIOLATION", |
6182 | 6182 | "NO_RELEVANT_CONTENT", |
6183 | 6183 | "JAIL_BREAKING_QUERY_IGNORED", |
6184 | | - "CUSTOMER_POLICY_VIOLATION" |
| 6184 | + "CUSTOMER_POLICY_VIOLATION", |
| 6185 | + "NON_ANSWER_SEEKING_QUERY_IGNORED_V2" |
6185 | 6186 | ], |
6186 | 6187 | "enumDescriptions": [ |
6187 | 6188 | "Default value. The answer skipped reason is not specified.", |
6188 | 6189 | "The adversarial query ignored case.", |
6189 | | - "The non-answer seeking query ignored case.", |
| 6190 | + "The non-answer seeking query ignored case Google skips the answer if the query is chit chat.", |
6190 | 6191 | "The out-of-domain query ignored case. Google skips the answer if there are no high-relevance search results.", |
6191 | 6192 | "The potential policy violation case. Google skips the answer if there is a potential policy violation detected. This includes content that may be violent or toxic.", |
6192 | 6193 | "The no relevant content case. Google skips the answer if there is no relevant content in the retrieved search results.", |
6193 | 6194 | "The jail-breaking query ignored case. For example, \"Reply in the tone of a competing company's CEO\". Google skips the answer if the query is classified as a jail-breaking query.", |
6194 | | - "The customer policy violation case. Google skips the summary if there is a customer policy violation detected. The policy is defined by the customer." |
| 6195 | + "The customer policy violation case. Google skips the summary if there is a customer policy violation detected. The policy is defined by the customer.", |
| 6196 | + "The non-answer seeking query ignored case. Google skips the answer if the query doesn't have clear intent." |
6195 | 6197 | ], |
6196 | 6198 | "type": "string" |
6197 | 6199 | }, |
|
6436 | 6438 | "TYPE_UNSPECIFIED", |
6437 | 6439 | "ADVERSARIAL_QUERY", |
6438 | 6440 | "NON_ANSWER_SEEKING_QUERY", |
6439 | | - "JAIL_BREAKING_QUERY" |
| 6441 | + "JAIL_BREAKING_QUERY", |
| 6442 | + "NON_ANSWER_SEEKING_QUERY_V2" |
6440 | 6443 | ], |
6441 | 6444 | "enumDescriptions": [ |
6442 | 6445 | "Unspecified query classification type.", |
6443 | 6446 | "Adversarial query classification type.", |
6444 | | - "Non-answer-seeking query classification type.", |
6445 | | - "Jail-breaking query classification type." |
| 6447 | + "Non-answer-seeking query classification type, for chit chat.", |
| 6448 | + "Jail-breaking query classification type.", |
| 6449 | + "Non-answer-seeking query classification type, for no clear intent." |
6446 | 6450 | ], |
6447 | 6451 | "type": "string" |
6448 | 6452 | }, |
|
6725 | 6729 | "TYPE_UNSPECIFIED", |
6726 | 6730 | "ADVERSARIAL_QUERY", |
6727 | 6731 | "NON_ANSWER_SEEKING_QUERY", |
6728 | | - "JAIL_BREAKING_QUERY" |
| 6732 | + "JAIL_BREAKING_QUERY", |
| 6733 | + "NON_ANSWER_SEEKING_QUERY_V2" |
6729 | 6734 | ], |
6730 | 6735 | "enumDescriptions": [ |
6731 | 6736 | "Unspecified query classification type.", |
6732 | 6737 | "Adversarial query classification type.", |
6733 | | - "Non-answer-seeking query classification type.", |
6734 | | - "Jail-breaking query classification type." |
| 6738 | + "Non-answer-seeking query classification type, for chit chat.", |
| 6739 | + "Jail-breaking query classification type.", |
| 6740 | + "Non-answer-seeking query classification type, for no clear intent." |
6735 | 6741 | ], |
6736 | 6742 | "type": "string" |
6737 | 6743 | } |
|
8392 | 8398 | "description": "Immutable. The identifier of the document. Id should conform to [RFC-1034](https://tools.ietf.org/html/rfc1034) standard with a length limit of 63 characters.", |
8393 | 8399 | "type": "string" |
8394 | 8400 | }, |
| 8401 | + "indexStatus": { |
| 8402 | + "$ref": "GoogleCloudDiscoveryengineV1DocumentIndexStatus", |
| 8403 | + "description": "Output only. The index status of the document. * If document is indexed successfully, the index_time field is populated. * Otherwise, if document is not indexed due to errors, the error_samples field is populated. * Otherwise, index_status is unset.", |
| 8404 | + "readOnly": true |
| 8405 | + }, |
8395 | 8406 | "indexTime": { |
8396 | 8407 | "description": "Output only. The last time the document was indexed. If this field is set, the document could be returned in search results. This field is OUTPUT_ONLY. If this field is not populated, it means the document has never been indexed.", |
8397 | 8408 | "format": "google-datetime", |
|
8445 | 8456 | }, |
8446 | 8457 | "type": "object" |
8447 | 8458 | }, |
| 8459 | + "GoogleCloudDiscoveryengineV1DocumentIndexStatus": { |
| 8460 | + "description": "Index status of the document.", |
| 8461 | + "id": "GoogleCloudDiscoveryengineV1DocumentIndexStatus", |
| 8462 | + "properties": { |
| 8463 | + "errorSamples": { |
| 8464 | + "description": "A sample of errors encountered while indexing the document. If this field is populated, the document is not indexed due to errors.", |
| 8465 | + "items": { |
| 8466 | + "$ref": "GoogleRpcStatus" |
| 8467 | + }, |
| 8468 | + "type": "array" |
| 8469 | + }, |
| 8470 | + "indexTime": { |
| 8471 | + "description": "The time when the document was indexed. If this field is populated, it means the document has been indexed.", |
| 8472 | + "format": "google-datetime", |
| 8473 | + "type": "string" |
| 8474 | + } |
| 8475 | + }, |
| 8476 | + "type": "object" |
| 8477 | + }, |
8448 | 8478 | "GoogleCloudDiscoveryengineV1DocumentInfo": { |
8449 | 8479 | "description": "Detailed document information associated with a user event.", |
8450 | 8480 | "id": "GoogleCloudDiscoveryengineV1DocumentInfo", |
@@ -10781,18 +10811,20 @@ |
10781 | 10811 | "LLM_ADDON_NOT_ENABLED", |
10782 | 10812 | "NO_RELEVANT_CONTENT", |
10783 | 10813 | "JAIL_BREAKING_QUERY_IGNORED", |
10784 | | - "CUSTOMER_POLICY_VIOLATION" |
| 10814 | + "CUSTOMER_POLICY_VIOLATION", |
| 10815 | + "NON_SUMMARY_SEEKING_QUERY_IGNORED_V2" |
10785 | 10816 | ], |
10786 | 10817 | "enumDescriptions": [ |
10787 | 10818 | "Default value. The summary skipped reason is not specified.", |
10788 | 10819 | "The adversarial query ignored case. Only used when SummarySpec.ignore_adversarial_query is set to `true`.", |
10789 | | - "The non-summary seeking query ignored case. Only used when SummarySpec.ignore_non_summary_seeking_query is set to `true`.", |
| 10820 | + "The non-summary seeking query ignored case. Google skips the summary if the query is chit chat. Only used when SummarySpec.ignore_non_summary_seeking_query is set to `true`.", |
10790 | 10821 | "The out-of-domain query ignored case. Google skips the summary if there are no high-relevance search results. For example, the data store contains facts about company A but the user query is asking questions about company B.", |
10791 | 10822 | "The potential policy violation case. Google skips the summary if there is a potential policy violation detected. This includes content that may be violent or toxic.", |
10792 | 10823 | "The LLM addon not enabled case. Google skips the summary if the LLM addon is not enabled.", |
10793 | 10824 | "The no relevant content case. Google skips the summary if there is no relevant content in the retrieved search results.", |
10794 | 10825 | "The jail-breaking query ignored case. For example, \"Reply in the tone of a competing company's CEO\". Only used when [SearchRequest.ContentSearchSpec.SummarySpec.ignore_jail_breaking_query] is set to `true`.", |
10795 | | - "The customer policy violation case. Google skips the summary if there is a customer policy violation detected. The policy is defined by the customer." |
| 10826 | + "The customer policy violation case. Google skips the summary if there is a customer policy violation detected. The policy is defined by the customer.", |
| 10827 | + "The non-answer seeking query ignored case. Google skips the summary if the query doesn't have clear intent. Only used when [SearchRequest.ContentSearchSpec.SummarySpec.ignore_non_answer_seeking_query] is set to `true`." |
10796 | 10828 | ], |
10797 | 10829 | "type": "string" |
10798 | 10830 | }, |
@@ -11510,15 +11542,19 @@ |
11510 | 11542 | "GOOGLE_MAIL", |
11511 | 11543 | "GOOGLE_SITES", |
11512 | 11544 | "GOOGLE_CALENDAR", |
11513 | | - "GOOGLE_GROUPS" |
| 11545 | + "GOOGLE_CHAT", |
| 11546 | + "GOOGLE_GROUPS", |
| 11547 | + "GOOGLE_KEEP" |
11514 | 11548 | ], |
11515 | 11549 | "enumDescriptions": [ |
11516 | | - "Default value.", |
11517 | | - "The data store is used to store content from Google Drive.", |
11518 | | - "The data store is used to store content from Gmail.", |
11519 | | - "The data store is used to store content from Google Sites.", |
11520 | | - "The data store is used to store content from Google Calendar.", |
11521 | | - "The data store is used to store content from Google Groups." |
| 11550 | + "Defaults to an unspecified Workspace type.", |
| 11551 | + "Workspace Data Store contains Drive data", |
| 11552 | + "Workspace Data Store contains Mail data", |
| 11553 | + "Workspace Data Store contains Sites data", |
| 11554 | + "Workspace Data Store contains Calendar data", |
| 11555 | + "Workspace Data Store contains Chat data", |
| 11556 | + "Workspace Data Store contains Groups data", |
| 11557 | + "Workspace Data Store contains Keep data" |
11522 | 11558 | ], |
11523 | 11559 | "type": "string" |
11524 | 11560 | } |
@@ -11555,17 +11591,19 @@ |
11555 | 11591 | "POTENTIAL_POLICY_VIOLATION", |
11556 | 11592 | "NO_RELEVANT_CONTENT", |
11557 | 11593 | "JAIL_BREAKING_QUERY_IGNORED", |
11558 | | - "CUSTOMER_POLICY_VIOLATION" |
| 11594 | + "CUSTOMER_POLICY_VIOLATION", |
| 11595 | + "NON_ANSWER_SEEKING_QUERY_IGNORED_V2" |
11559 | 11596 | ], |
11560 | 11597 | "enumDescriptions": [ |
11561 | 11598 | "Default value. The answer skipped reason is not specified.", |
11562 | 11599 | "The adversarial query ignored case.", |
11563 | | - "The non-answer seeking query ignored case.", |
| 11600 | + "The non-answer seeking query ignored case Google skips the answer if the query is chit chat.", |
11564 | 11601 | "The out-of-domain query ignored case. Google skips the answer if there are no high-relevance search results.", |
11565 | 11602 | "The potential policy violation case. Google skips the answer if there is a potential policy violation detected. This includes content that may be violent or toxic.", |
11566 | 11603 | "The no relevant content case. Google skips the answer if there is no relevant content in the retrieved search results.", |
11567 | 11604 | "The jail-breaking query ignored case. For example, \"Reply in the tone of a competing company's CEO\". Google skips the answer if the query is classified as a jail-breaking query.", |
11568 | | - "The customer policy violation case. Google skips the summary if there is a customer policy violation detected. The policy is defined by the customer." |
| 11605 | + "The customer policy violation case. Google skips the summary if there is a customer policy violation detected. The policy is defined by the customer.", |
| 11606 | + "The non-answer seeking query ignored case. Google skips the answer if the query doesn't have clear intent." |
11569 | 11607 | ], |
11570 | 11608 | "type": "string" |
11571 | 11609 | }, |
@@ -11705,13 +11743,15 @@ |
11705 | 11743 | "TYPE_UNSPECIFIED", |
11706 | 11744 | "ADVERSARIAL_QUERY", |
11707 | 11745 | "NON_ANSWER_SEEKING_QUERY", |
11708 | | - "JAIL_BREAKING_QUERY" |
| 11746 | + "JAIL_BREAKING_QUERY", |
| 11747 | + "NON_ANSWER_SEEKING_QUERY_V2" |
11709 | 11748 | ], |
11710 | 11749 | "enumDescriptions": [ |
11711 | 11750 | "Unspecified query classification type.", |
11712 | 11751 | "Adversarial query classification type.", |
11713 | | - "Non-answer-seeking query classification type.", |
11714 | | - "Jail-breaking query classification type." |
| 11752 | + "Non-answer-seeking query classification type, for chit chat.", |
| 11753 | + "Jail-breaking query classification type.", |
| 11754 | + "Non-answer-seeking query classification type, for no clear intent." |
11715 | 11755 | ], |
11716 | 11756 | "type": "string" |
11717 | 11757 | } |
@@ -15119,15 +15159,19 @@ |
15119 | 15159 | "GOOGLE_MAIL", |
15120 | 15160 | "GOOGLE_SITES", |
15121 | 15161 | "GOOGLE_CALENDAR", |
15122 | | - "GOOGLE_GROUPS" |
| 15162 | + "GOOGLE_CHAT", |
| 15163 | + "GOOGLE_GROUPS", |
| 15164 | + "GOOGLE_KEEP" |
15123 | 15165 | ], |
15124 | 15166 | "enumDescriptions": [ |
15125 | | - "Default value.", |
15126 | | - "The data store is used to store content from Google Drive.", |
15127 | | - "The data store is used to store content from Gmail.", |
15128 | | - "The data store is used to store content from Google Sites.", |
15129 | | - "The data store is used to store content from Google Calendar.", |
15130 | | - "The data store is used to store content from Google Groups." |
| 15167 | + "Defaults to an unspecified Workspace type.", |
| 15168 | + "Workspace Data Store contains Drive data", |
| 15169 | + "Workspace Data Store contains Mail data", |
| 15170 | + "Workspace Data Store contains Sites data", |
| 15171 | + "Workspace Data Store contains Calendar data", |
| 15172 | + "Workspace Data Store contains Chat data", |
| 15173 | + "Workspace Data Store contains Groups data", |
| 15174 | + "Workspace Data Store contains Keep data" |
15131 | 15175 | ], |
15132 | 15176 | "type": "string" |
15133 | 15177 | } |
@@ -17568,15 +17612,19 @@ |
17568 | 17612 | "GOOGLE_MAIL", |
17569 | 17613 | "GOOGLE_SITES", |
17570 | 17614 | "GOOGLE_CALENDAR", |
17571 | | - "GOOGLE_GROUPS" |
| 17615 | + "GOOGLE_CHAT", |
| 17616 | + "GOOGLE_GROUPS", |
| 17617 | + "GOOGLE_KEEP" |
17572 | 17618 | ], |
17573 | 17619 | "enumDescriptions": [ |
17574 | | - "Default value.", |
17575 | | - "The data store is used to store content from Google Drive.", |
17576 | | - "The data store is used to store content from Gmail.", |
17577 | | - "The data store is used to store content from Google Sites.", |
17578 | | - "The data store is used to store content from Google Calendar.", |
17579 | | - "The data store is used to store content from Google Groups." |
| 17620 | + "Defaults to an unspecified Workspace type.", |
| 17621 | + "Workspace Data Store contains Drive data", |
| 17622 | + "Workspace Data Store contains Mail data", |
| 17623 | + "Workspace Data Store contains Sites data", |
| 17624 | + "Workspace Data Store contains Calendar data", |
| 17625 | + "Workspace Data Store contains Chat data", |
| 17626 | + "Workspace Data Store contains Groups data", |
| 17627 | + "Workspace Data Store contains Keep data" |
17580 | 17628 | ], |
17581 | 17629 | "type": "string" |
17582 | 17630 | } |
|
0 commit comments