Skip to content

Commit 21b28b7

Browse files
feat(apigee): update the api
#### apigee:v1 The following keys were deleted: - schemas.GoogleCloudApigeeV1Organization.properties.billingType (Total Keys: 1) The following keys were added: - resources.organizations.resources.environments.resources.analytics.resources.admin.methods.getSchemav2.parameters.disableCache (Total Keys: 2) - schemas.GoogleCloudApigeeV1ApiProduct.properties.graphqlOperationGroup (Total Keys: 1) - schemas.GoogleCloudApigeeV1GraphQLOperation (Total Keys: 18) - schemas.GoogleCloudApigeeV1Organization.properties.projectId (Total Keys: 1)
1 parent 0b73cb3 commit 21b28b7

6 files changed

+318
-54
lines changed

docs/dyn/apigee_v1.organizations.apiproducts.html

Lines changed: 189 additions & 0 deletions
Large diffs are not rendered by default.

docs/dyn/apigee_v1.organizations.apis.revisions.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ <h2>Instance Methods</h2>
8787
<p class="firstline">Deletes an API proxy revision and all policies, resources, endpoints, and revisions associated with it. The API proxy revision must be undeployed before you can delete it.</p>
8888
<p class="toc_element">
8989
<code><a href="#get">get(name, format=None, x__xgafv=None)</a></code></p>
90-
<p class="firstline">Gets an API proxy revision. To download the API proxy configuration bundle for the specified revision as a zip file, do the following: * Set the `format` query parameter to `bundle`. * Set the `Accept` header to `application/zip`. If you are using curl, specify `-o filename.zip` to save the output to a file; otherwise, it displays to `stdout`. Then, develop the API proxy configuration locally and upload the updated API proxy configuration revision, as described in [updateApiProxyRevision](updateApiProxyRevision).</p>
90+
<p class="firstline">Gets an API proxy revision. To download the API proxy configuration bundle for the specified revision as a zip file, set the `format` query parameter to `bundle`. If you are using curl, specify `-o filename.zip` to save the output to a file; otherwise, it displays to `stdout`. Then, develop the API proxy configuration locally and upload the updated API proxy configuration revision, as described in [updateApiProxyRevision](updateApiProxyRevision).</p>
9191
<p class="toc_element">
9292
<code><a href="#updateApiProxyRevision">updateApiProxyRevision(name, body=None, validate=None, x__xgafv=None)</a></code></p>
9393
<p class="firstline">Updates an existing API proxy revision by uploading the API proxy configuration bundle as a zip file from your local machine. You can update only API proxy revisions that have never been deployed. After deployment, an API proxy revision becomes immutable, even if it is undeployed. Set the `Content-Type` header to either `multipart/form-data` or `application/octet-stream`.</p>
@@ -171,7 +171,7 @@ <h3>Method Details</h3>
171171

172172
<div class="method">
173173
<code class="details" id="get">get(name, format=None, x__xgafv=None)</code>
174-
<pre>Gets an API proxy revision. To download the API proxy configuration bundle for the specified revision as a zip file, do the following: * Set the `format` query parameter to `bundle`. * Set the `Accept` header to `application/zip`. If you are using curl, specify `-o filename.zip` to save the output to a file; otherwise, it displays to `stdout`. Then, develop the API proxy configuration locally and upload the updated API proxy configuration revision, as described in [updateApiProxyRevision](updateApiProxyRevision).
174+
<pre>Gets an API proxy revision. To download the API proxy configuration bundle for the specified revision as a zip file, set the `format` query parameter to `bundle`. If you are using curl, specify `-o filename.zip` to save the output to a file; otherwise, it displays to `stdout`. Then, develop the API proxy configuration locally and upload the updated API proxy configuration revision, as described in [updateApiProxyRevision](updateApiProxyRevision).
175175

176176
Args:
177177
name: string, Required. API proxy revision in the following format: `organizations/{org}/apis/{api}/revisions/{rev}` (required)

docs/dyn/apigee_v1.organizations.environments.analytics.admin.html

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -78,21 +78,22 @@ <h2>Instance Methods</h2>
7878
<code><a href="#close">close()</a></code></p>
7979
<p class="firstline">Close httplib2 connections.</p>
8080
<p class="toc_element">
81-
<code><a href="#getSchemav2">getSchemav2(name, type=None, x__xgafv=None)</a></code></p>
82-
<p class="firstline">Get a list of metrics and dimensions which can be used for creating analytics queries and reports. Each schema element contains the name of the field with its associated type and if it is either custom field or standard field.</p>
81+
<code><a href="#getSchemav2">getSchemav2(name, disableCache=None, type=None, x__xgafv=None)</a></code></p>
82+
<p class="firstline">Gets a list of metrics and dimensions that can be used to create analytics queries and reports. Each schema element contains the name of the field, its associated type, and a flag indicating whether it is a standard or custom field.</p>
8383
<h3>Method Details</h3>
8484
<div class="method">
8585
<code class="details" id="close">close()</code>
8686
<pre>Close httplib2 connections.</pre>
8787
</div>
8888

8989
<div class="method">
90-
<code class="details" id="getSchemav2">getSchemav2(name, type=None, x__xgafv=None)</code>
91-
<pre>Get a list of metrics and dimensions which can be used for creating analytics queries and reports. Each schema element contains the name of the field with its associated type and if it is either custom field or standard field.
90+
<code class="details" id="getSchemav2">getSchemav2(name, disableCache=None, type=None, x__xgafv=None)</code>
91+
<pre>Gets a list of metrics and dimensions that can be used to create analytics queries and reports. Each schema element contains the name of the field, its associated type, and a flag indicating whether it is a standard or custom field.
9292

9393
Args:
94-
name: string, Required. The parent organization and environment names. Must be of the form `organizations/{org}/environments/{env}/analytics/admin/schemav2`. (required)
95-
type: string, Required. Type refers to the dataset name whose schema needs to be retrieved E.g. type=fact or type=agg_cus1
94+
name: string, Required. Path to the schema. Use the following structure in your request: `organizations/{org}/environments/{env}/analytics/admin/schemav2`. (required)
95+
disableCache: boolean, Flag that specifies whether the schema is be read from the database or cache. Set to `true` to read the schema from the database. Defaults to cache.
96+
type: string, Required. Name of the dataset for which you want to retrieve the schema. For example: `fact` or `agg_cus1`
9697
x__xgafv: string, V1 error format.
9798
Allowed values
9899
1 - v1 error format
@@ -102,25 +103,25 @@ <h3>Method Details</h3>
102103
An object of the form:
103104

104105
{ # Response for Schema call
105-
&quot;dimensions&quot;: [ # List of schema fiels grouped as dimensions.
106+
&quot;dimensions&quot;: [ # List of schema fields grouped as dimensions.
106107
{ # Message type for the schema element
107-
&quot;name&quot;: &quot;A String&quot;, # Name of the field
108-
&quot;properties&quot;: { # Message type for schema property # Property of the schema field E.g. { &quot;createTime&quot;: &quot;2016-02-26T10:23:09.592Z&quot;, &quot;custom&quot;: &quot;false&quot;, &quot;type&quot;: &quot;string&quot; }
109-
&quot;createTime&quot;: &quot;A String&quot;, # Creation time of the field
110-
&quot;custom&quot;: &quot;A String&quot;, # Custom is a flag signifying if the field was provided as part of the standard dataset or a custom field created by the customer
108+
&quot;name&quot;: &quot;A String&quot;, # Name of the field.
109+
&quot;properties&quot;: { # Properties for the schema field. # Properties for the schema field. For example: { &quot;createTime&quot;: &quot;2016-02-26T10:23:09.592Z&quot;, &quot;custom&quot;: &quot;false&quot;, &quot;type&quot;: &quot;string&quot; }
110+
&quot;createTime&quot;: &quot;A String&quot;, # Time the field was created in RFC3339 string form. For example: `2016-02-26T10:23:09.592Z`.
111+
&quot;custom&quot;: &quot;A String&quot;, # Flag that specifies whether the field is standard in the dataset or a custom field created by the customer. `true` indicates that it is a custom field.
111112
&quot;type&quot;: &quot;A String&quot;, # Data type of the field.
112113
},
113114
},
114115
],
115116
&quot;meta&quot;: [ # Additional metadata associated with schema. This is a legacy field and usually consists of an empty array of strings.
116117
&quot;A String&quot;,
117118
],
118-
&quot;metrics&quot;: [ # List of schema fields grouped as dimensions. These are fields that can be used with an aggregate function such as sum, avg, min, max.
119+
&quot;metrics&quot;: [ # List of schema fields grouped as dimensions that can be used with an aggregate function such as `sum`, `avg`, `min`, and `max`.
119120
{ # Message type for the schema element
120-
&quot;name&quot;: &quot;A String&quot;, # Name of the field
121-
&quot;properties&quot;: { # Message type for schema property # Property of the schema field E.g. { &quot;createTime&quot;: &quot;2016-02-26T10:23:09.592Z&quot;, &quot;custom&quot;: &quot;false&quot;, &quot;type&quot;: &quot;string&quot; }
122-
&quot;createTime&quot;: &quot;A String&quot;, # Creation time of the field
123-
&quot;custom&quot;: &quot;A String&quot;, # Custom is a flag signifying if the field was provided as part of the standard dataset or a custom field created by the customer
121+
&quot;name&quot;: &quot;A String&quot;, # Name of the field.
122+
&quot;properties&quot;: { # Properties for the schema field. # Properties for the schema field. For example: { &quot;createTime&quot;: &quot;2016-02-26T10:23:09.592Z&quot;, &quot;custom&quot;: &quot;false&quot;, &quot;type&quot;: &quot;string&quot; }
123+
&quot;createTime&quot;: &quot;A String&quot;, # Time the field was created in RFC3339 string form. For example: `2016-02-26T10:23:09.592Z`.
124+
&quot;custom&quot;: &quot;A String&quot;, # Flag that specifies whether the field is standard in the dataset or a custom field created by the customer. `true` indicates that it is a custom field.
124125
&quot;type&quot;: &quot;A String&quot;, # Data type of the field.
125126
},
126127
},

0 commit comments

Comments
 (0)