Skip to content

Commit

Permalink
feat!: regenerate all APIs (#1978)
Browse files Browse the repository at this point in the history
The following APIs have been removed:
- servicebroker/v1.ts
- servicebroker/v1alpha1.ts
- servicebroker/v1beta1.ts
- replicapool/v1beta1.ts
- plusDomains/v1
- gamesConfiguration/v1configuration
- analytics/v2.4

The following APIs have been added:
- accessapproval/v1
- admob/
- cloudbuild/v1alpha2
- cloudtrace/v2beta1
- osconfig/
- searchconsole/
- secretmanager/v1
- translate/v3

There have been a variety of improvements and changes throughout the rest of the API suite.  Enjoy!
  • Loading branch information
JustinBeckwith committed Feb 28, 2020
1 parent 27d9471 commit f0d4913
Show file tree
Hide file tree
Showing 177 changed files with 35,996 additions and 20,543 deletions.
2 changes: 1 addition & 1 deletion src/apis/acceleratedmobilepageurl/README.md
Expand Up @@ -2,7 +2,7 @@

# acceleratedmobilepageurl

> This API contains a single method, batchGet. Call this method to retrieve the AMP URL (and equivalent AMP Cache URL) for given public URL(s).
> Retrieves the list of AMP URLs (and equivalent AMP Cache URLs) for a given list of public URL(s).
## Installation

Expand Down
16 changes: 14 additions & 2 deletions src/apis/accessapproval/index.ts
Expand Up @@ -14,21 +14,33 @@
/*! THIS FILE IS AUTO-GENERATED */

import {AuthPlus, getAPI, GoogleConfigurable} from 'googleapis-common';
import {accessapproval_v1} from './v1';
import {accessapproval_v1beta1} from './v1beta1';

export const VERSIONS = {
v1: accessapproval_v1.Accessapproval,
v1beta1: accessapproval_v1beta1.Accessapproval,
};

export function accessapproval(version: 'v1'): accessapproval_v1.Accessapproval;
export function accessapproval(
options: accessapproval_v1.Options
): accessapproval_v1.Accessapproval;
export function accessapproval(
version: 'v1beta1'
): accessapproval_v1beta1.Accessapproval;
export function accessapproval(
options: accessapproval_v1beta1.Options
): accessapproval_v1beta1.Accessapproval;
export function accessapproval<T = accessapproval_v1beta1.Accessapproval>(
export function accessapproval<
T = accessapproval_v1.Accessapproval | accessapproval_v1beta1.Accessapproval
>(
this: GoogleConfigurable,
versionOrOptions: 'v1beta1' | accessapproval_v1beta1.Options
versionOrOptions:
| 'v1'
| accessapproval_v1.Options
| 'v1beta1'
| accessapproval_v1beta1.Options
) {
return getAPI<T>('accessapproval', versionOrOptions, VERSIONS, this);
}
Expand Down

0 comments on commit f0d4913

Please sign in to comment.