Skip to content

Commit

Permalink
feat: run the generator (#1636)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Mar 12, 2019
1 parent bd49543 commit 9681754
Show file tree
Hide file tree
Showing 27 changed files with 14,970 additions and 10,322 deletions.
2 changes: 1 addition & 1 deletion src/apis/bigtableadmin/README.md
Expand Up @@ -2,7 +2,7 @@

# bigtableadmin

>
> Administer your Cloud Bigtable tables and instances.
## Installation

Expand Down
4 changes: 4 additions & 0 deletions src/apis/cloudbuild/v1.ts
Expand Up @@ -780,6 +780,10 @@ export namespace cloudbuild_v1 {
* uploaded.
*/
artifactManifest?: string;
/**
* Time to push all non-container artifacts.
*/
artifactTiming?: Schema$TimeSpan;
/**
* List of build step digests, in the order corresponding to build step
* indices.
Expand Down
4 changes: 4 additions & 0 deletions src/apis/cloudbuild/v1alpha1.ts
Expand Up @@ -592,6 +592,10 @@ export namespace cloudbuild_v1alpha1 {
* uploaded.
*/
artifactManifest?: string;
/**
* Time to push all non-container artifacts.
*/
artifactTiming?: Schema$TimeSpan;
/**
* List of build step digests, in the order corresponding to build step
* indices.
Expand Down
4 changes: 2 additions & 2 deletions src/apis/cloudiot/v1.ts
Expand Up @@ -150,8 +150,8 @@ export namespace cloudiot_v1 {
* * `serviceAccount:{emailid}`: An email address that represents a service
* account. For example, `my-other-app@appspot.gserviceaccount.com`. *
* `group:{emailid}`: An email address that represents a Google group. For
* example, `admins@example.com`. * `domain:{domain}`: A Google Apps
* domain name that represents all the users of that domain. For example,
* example, `admins@example.com`. * `domain:{domain}`: The G Suite domain
* (primary) that represents all the users of that domain. For example,
* `google.com` or `example.com`.
*/
members?: string[];
Expand Down
4 changes: 2 additions & 2 deletions src/apis/cloudtasks/README.md
@@ -1,13 +1,13 @@
<img src="https://avatars0.githubusercontent.com/u/1342004?v=3&s=96" alt="Google Inc. logo" title="Google" align="right" height="96" width="96"/>

# @google/cloudtasks
# cloudtasks

> Manages the execution of large numbers of distributed requests.
## Installation

```sh
$ npm install @google/cloudtasks
$ npm install googleapis
```

## Usage
Expand Down
21 changes: 4 additions & 17 deletions src/apis/content/v2.1.ts
Expand Up @@ -1818,11 +1818,6 @@ export namespace content_v2_1 {
* The billing address.
*/
billingAddress?: Schema$OrderAddress;
/**
* The channel type of the order: &quot;purchaseOnGoogle&quot; or
* &quot;googleExpress&quot;.
*/
channelType?: string;
/**
* The details of the customer who placed the order.
*/
Expand Down Expand Up @@ -1986,7 +1981,7 @@ export namespace content_v2_1 {
/**
* Email address that can be used for marketing purposes. The field may be
* empty even if explicitMarketingPreference is &#39;granted&#39;. This
* happens when retrieving an old order from the customer who deleted his
* happens when retrieving an old order from the customer who deleted their
* account.
*/
marketingEmailAddress?: string;
Expand Down Expand Up @@ -2166,10 +2161,6 @@ export namespace content_v2_1 {
* Brand of the item.
*/
brand?: string;
/**
* The item&#39;s channel (online or local).
*/
channel?: string;
/**
* Condition or state of the item.
*/
Expand Down Expand Up @@ -3959,7 +3950,7 @@ export namespace content_v2_1 {
}
/**
* The status of a product, i.e., information about a product computed
* asynchronously by the data quality analysis.
* asynchronously.
*/
export interface Schema$ProductStatus {
/**
Expand Down Expand Up @@ -4606,10 +4597,6 @@ export namespace content_v2_1 {
* Brand of the item.
*/
brand?: string;
/**
* The item&#39;s channel.
*/
channel?: string;
/**
* Condition or state of the item.
*/
Expand Down Expand Up @@ -5640,8 +5627,8 @@ export namespace content_v2_1 {

/**
* content.accountstatuses.get
* @desc Retrieves the status of a Merchant Center account. Multi-client
* accounts can only call this method for sub-accounts.
* @desc Retrieves the status of a Merchant Center account. No
* itemLevelIssues are returned for multi-client accounts.
* @alias content.accountstatuses.get
* @memberOf! ()
*
Expand Down
104 changes: 11 additions & 93 deletions src/apis/content/v2.ts
Expand Up @@ -452,7 +452,7 @@ export namespace content_v2 {
*/
accountLevelIssues?: Schema$AccountStatusAccountLevelIssue[];
/**
* A list of data quality issues.
* DEPRECATED - never populated.
*/
dataQualityIssues?: Schema$AccountStatusDataQualityIssue[];
/**
Expand Down Expand Up @@ -501,49 +501,16 @@ export namespace content_v2 {
title?: string;
}
export interface Schema$AccountStatusDataQualityIssue {
/**
* Country for which this issue is reported.
*/
country?: string;
/**
* The destination the issue applies to.
*/
destination?: string;
/**
* A more detailed description of the issue.
*/
detail?: string;
/**
* Actual value displayed on the landing page.
*/
displayedValue?: string;
/**
* Example items featuring the issue.
*/
exampleItems?: Schema$AccountStatusExampleItem[];
/**
* Issue identifier.
*/
id?: string;
/**
* Last time the account was checked for this issue.
*/
lastChecked?: string;
/**
* The attribute name that is relevant for the issue.
*/
location?: string;
/**
* Number of items in the account found to have the said issue.
*/
numItems?: number;
/**
* Severity of the problem.
*/
severity?: string;
/**
* Submitted value that causes the issue.
*/
submittedValue?: string;
}
export interface Schema$AccountstatusesCustomBatchRequest {
Expand Down Expand Up @@ -619,30 +586,11 @@ export namespace content_v2 {
nextPageToken?: string;
resources?: Schema$AccountStatus[];
}
/**
* An example of an item that has poor data quality. An item value on the
* landing page differs from what is submitted, or conflicts with a policy.
*/
export interface Schema$AccountStatusExampleItem {
/**
* Unique item ID as specified in the uploaded product data.
*/
itemId?: string;
/**
* Landing page of the item.
*/
link?: string;
/**
* The item value that was submitted.
*/
submittedValue?: string;
/**
* Title of the item.
*/
title?: string;
/**
* The actual value on the landing page.
*/
valueOnLandingPage?: string;
}
export interface Schema$AccountStatusItemLevelIssue {
Expand Down Expand Up @@ -2190,8 +2138,7 @@ export namespace content_v2 {
*/
acknowledged?: boolean;
/**
* The channel type of the order: &quot;purchaseOnGoogle&quot; or
* &quot;googleExpress&quot;.
* Deprecated.
*/
channelType?: string;
/**
Expand Down Expand Up @@ -2239,9 +2186,8 @@ export namespace content_v2 {
*/
placedDate?: string;
/**
* Deprecated. Ignored if provided for createTestOrder. The details of the
* merchant provided promotions applied to the order. More details about the
* program are here.
* The details of the merchant provided promotions applied to the order.
* More details about the program are here.
*/
promotions?: Schema$OrderLegacyPromotion[];
/**
Expand Down Expand Up @@ -2369,7 +2315,7 @@ export namespace content_v2 {
/**
* Email address that can be used for marketing purposes. The field may be
* empty even if explicitMarketingPreference is &#39;granted&#39;. This
* happens when retrieving an old order from the customer who deleted his
* happens when retrieving an old order from the customer who deleted their
* account.
*/
marketingEmailAddress?: string;
Expand Down Expand Up @@ -5025,15 +4971,15 @@ export namespace content_v2 {
}
/**
* The status of a product, i.e., information about a product computed
* asynchronously by the data quality analysis.
* asynchronously.
*/
export interface Schema$ProductStatus {
/**
* Date on which the item has been created, in ISO 8601 format.
*/
creationDate?: string;
/**
* A list of data quality issues associated with the product.
* DEPRECATED - never populated
*/
dataQualityIssues?: Schema$ProductStatusDataQualityIssue[];
/**
Expand Down Expand Up @@ -5075,41 +5021,14 @@ export namespace content_v2 {
title?: string;
}
export interface Schema$ProductStatusDataQualityIssue {
/**
* The destination the issue applies to.
*/
destination?: string;
/**
* A more detailed error string.
*/
detail?: string;
/**
* The fetch status for landing_page_errors.
*/
fetchStatus?: string;
/**
* The ID of the data quality issue.
*/
id?: string;
/**
* The attribute name that is relevant for the issue.
*/
location?: string;
/**
* The severity of the data quality issue.
*/
severity?: string;
/**
* The time stamp of the data quality issue.
*/
timestamp?: string;
/**
* The value of that attribute that was found on the landing page
*/
valueOnLandingPage?: string;
/**
* The value the attribute had at time of evaluation.
*/
valueProvided?: string;
}
export interface Schema$ProductStatusDestinationStatus {
Expand Down Expand Up @@ -5604,8 +5523,7 @@ export namespace content_v2 {
*/
predefinedDeliveryAddress?: string;
/**
* Deprecated. The details of the merchant provided promotions applied to
* the order. More details about the program are here.
* Deprecated. Ignored if provided.
*/
promotions?: Schema$OrderLegacyPromotion[];
/**
Expand Down Expand Up @@ -5681,7 +5599,7 @@ export namespace content_v2 {
*/
brand?: string;
/**
* The item&#39;s channel.
* Deprecated.
*/
channel?: string;
/**
Expand Down Expand Up @@ -6868,8 +6786,8 @@ export namespace content_v2 {

/**
* content.accountstatuses.get
* @desc Retrieves the status of a Merchant Center account. Multi-client
* accounts can only call this method for sub-accounts.
* @desc Retrieves the status of a Merchant Center account. No
* itemLevelIssues are returned for multi-client accounts.
* @alias content.accountstatuses.get
* @memberOf! ()
*
Expand Down

0 comments on commit 9681754

Please sign in to comment.