docs: update docs (#916)
* fix: re-run script
* test: fix noxfile
diff --git a/docs/dyn/jobs_v3.projects.html b/docs/dyn/jobs_v3.projects.html
index ee4c37a..223a551 100644
--- a/docs/dyn/jobs_v3.projects.html
+++ b/docs/dyn/jobs_v3.projects.html
@@ -90,11 +90,11 @@
<p class="firstline">Returns the jobs Resource.</p>
<p class="toc_element">
- <code><a href="#complete">complete(name, pageSize=None, query=None, languageCode=None, type=None, languageCodes=None, companyName=None, scope=None, x__xgafv=None)</a></code></p>
+ <code><a href="#complete">complete(name, languageCodes=None, companyName=None, scope=None, pageSize=None, query=None, languageCode=None, type=None, x__xgafv=None)</a></code></p>
<p class="firstline">Completes the specified prefix with keyword suggestions.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="complete">complete(name, pageSize=None, query=None, languageCode=None, type=None, languageCodes=None, companyName=None, scope=None, x__xgafv=None)</code>
+ <code class="details" id="complete">complete(name, languageCodes=None, companyName=None, scope=None, pageSize=None, query=None, languageCode=None, type=None, x__xgafv=None)</code>
<pre>Completes the specified prefix with keyword suggestions.
Intended for use by a job search auto-complete search box.
@@ -103,6 +103,28 @@
The format is "projects/{project_id}", for example,
"projects/api-test-project". (required)
+ languageCodes: string, Optional. The list of languages of the query. This is
+the BCP-47 language code, such as "en-US" or "sr-Latn".
+For more information, see
+[Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
+
+For CompletionType.JOB_TITLE type, only open jobs with the same
+language_codes are returned.
+
+For CompletionType.COMPANY_NAME type,
+only companies having open jobs with the same language_codes are
+returned.
+
+For CompletionType.COMBINED type, only open jobs with the same
+language_codes or companies having open jobs with the same
+language_codes are returned.
+
+The maximum number of allowed characters is 255. (repeated)
+ companyName: string, Optional. If provided, restricts completion to specified company.
+
+The format is "projects/{project_id}/companies/{company_id}", for example,
+"projects/api-test-project/companies/foo".
+ scope: string, Optional. The scope of the completion. The defaults is CompletionScope.PUBLIC.
pageSize: integer, Required. Completion result count.
The maximum allowed page size is 10.
@@ -131,28 +153,6 @@
The maximum number of allowed characters is 255.
type: string, Optional. The completion topic. The default is CompletionType.COMBINED.
- languageCodes: string, Optional. The list of languages of the query. This is
-the BCP-47 language code, such as "en-US" or "sr-Latn".
-For more information, see
-[Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
-
-For CompletionType.JOB_TITLE type, only open jobs with the same
-language_codes are returned.
-
-For CompletionType.COMPANY_NAME type,
-only companies having open jobs with the same language_codes are
-returned.
-
-For CompletionType.COMBINED type, only open jobs with the same
-language_codes or companies having open jobs with the same
-language_codes are returned.
-
-The maximum number of allowed characters is 255. (repeated)
- companyName: string, Optional. If provided, restricts completion to specified company.
-
-The format is "projects/{project_id}/companies/{company_id}", for example,
-"projects/api-test-project/companies/foo".
- scope: string, Optional. The scope of the completion. The defaults is CompletionScope.PUBLIC.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
@@ -164,13 +164,6 @@
{ # Output only.
#
# Response of auto-complete query.
- "metadata": { # Output only. # Additional information for the API invocation, such as the request
- # tracking id.
- #
- # Additional information returned to client, such as debugging information.
- "requestId": "A String", # A unique id associated with this call.
- # This id is logged for tracking purposes.
- },
"completionResults": [ # Results of the matching job/company candidates.
{ # Output only.
#
@@ -180,6 +173,13 @@
"suggestion": "A String", # The suggestion for the query.
},
],
+ "metadata": { # Output only. # Additional information for the API invocation, such as the request
+ # tracking id.
+ #
+ # Additional information returned to client, such as debugging information.
+ "requestId": "A String", # A unique id associated with this call.
+ # This id is logged for tracking purposes.
+ },
}</pre>
</div>