Update to latest versions of API declarations

This commit is contained in:
Sebastian Thiel
2018-10-13 13:49:14 +02:00
parent 5a67475b54
commit 255c7f5ad5
1508 changed files with 819225 additions and 838421 deletions

View File

@@ -4,14 +4,15 @@
[package]
name = "google-adexperiencereport1"
version = "1.0.7+20171129"
version = "1.0.7+20180911"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
description = "A complete library to interact with Ad Experience Report (protocol v1)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/adexperiencereport1"
homepage = "https://developers.google.com/ad-experience-report/"
documentation = "https://docs.rs/google-adexperiencereport1/1.0.7+20171129"
documentation = "https://docs.rs/google-adexperiencereport1/1.0.7+20180911"
license = "MIT"
keywords = ["adexperiencereport", "google", "protocol", "web", "api"]
autobins = false
[dev-dependencies]

View File

@@ -5,18 +5,18 @@ DO NOT EDIT !
-->
The `google-adexperiencereport1` library allows access to all features of the *Google Ad Experience Report* service.
This documentation was generated from *Ad Experience Report* crate version *1.0.7+20171129*, where *20171129* is the exact revision of the *adexperiencereport:v1* schema built by the [mako](http://www.makotemplates.org/) code generator *v1.0.7*.
This documentation was generated from *Ad Experience Report* crate version *1.0.7+20180911*, where *20180911* is the exact revision of the *adexperiencereport:v1* schema built by the [mako](http://www.makotemplates.org/) code generator *v1.0.7*.
Everything else about the *Ad Experience Report* *v1* API can be found at the
[official documentation site](https://developers.google.com/ad-experience-report/).
# Features
Handle the following *Resources* with ease from the central [hub](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/struct.AdExperienceReport.html) ...
Handle the following *Resources* with ease from the central [hub](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/struct.AdExperienceReport.html) ...
* sites
* [*get*](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/struct.SiteGetCall.html)
* [*get*](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/struct.SiteGetCall.html)
* violating sites
* [*list*](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/struct.ViolatingSiteListCall.html)
* [*list*](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/struct.ViolatingSiteListCall.html)
@@ -25,17 +25,17 @@ Handle the following *Resources* with ease from the central [hub](https://docs.r
The API is structured into the following primary items:
* **[Hub](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/struct.AdExperienceReport.html)**
* **[Hub](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/struct.AdExperienceReport.html)**
* a central object to maintain state and allow accessing all *Activities*
* creates [*Method Builders*](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.MethodsBuilder.html) which in turn
allow access to individual [*Call Builders*](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.CallBuilder.html)
* **[Resources](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.Resource.html)**
* creates [*Method Builders*](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.MethodsBuilder.html) which in turn
allow access to individual [*Call Builders*](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.CallBuilder.html)
* **[Resources](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.Resource.html)**
* primary types that you can apply *Activities* to
* a collection of properties and *Parts*
* **[Parts](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.Part.html)**
* **[Parts](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.Part.html)**
* a collection of properties
* never directly used in *Activities*
* **[Activities](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.CallBuilder.html)**
* **[Activities](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.CallBuilder.html)**
* operations to apply to *Resources*
All *structures* are marked with applicable traits to further categorize them and ease browsing.
@@ -66,6 +66,14 @@ To use this library, you would put the following lines into your `Cargo.toml` fi
```toml
[dependencies]
google-adexperiencereport1 = "*"
# This project intentionally uses an old version of Hyper. See
# https://github.com/Byron/google-apis-rs/issues/173 for more
# information.
hyper = "^0.10"
hyper-rustls = "^0.6"
serde = "^1.0"
serde_json = "^1.0"
yup-oauth2 = "^1.0"
```
## A complete example
@@ -118,17 +126,17 @@ match result {
```
## Handling Errors
All errors produced by the system are provided either as [Result](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/enum.Result.html) enumeration as return value of
All errors produced by the system are provided either as [Result](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/enum.Result.html) enumeration as return value of
the doit() methods, or handed as possibly intermediate results to either the
[Hub Delegate](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.Delegate.html), or the [Authenticator Delegate](https://docs.rs/yup-oauth2/*/yup_oauth2/trait.AuthenticatorDelegate.html).
[Hub Delegate](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.Delegate.html), or the [Authenticator Delegate](https://docs.rs/yup-oauth2/*/yup_oauth2/trait.AuthenticatorDelegate.html).
When delegates handle errors or intermediate values, they may have a chance to instruct the system to retry. This
makes the system potentially resilient to all kinds of errors.
## Uploads and Downloads
If a method supports downloads, the response body, which is part of the [Result](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/enum.Result.html), should be
If a method supports downloads, the response body, which is part of the [Result](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/enum.Result.html), should be
read by you to obtain the media.
If such a method also supports a [Response Result](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.ResponseResult.html), it will return that by default.
If such a method also supports a [Response Result](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.ResponseResult.html), it will return that by default.
You can see it as meta-data for the actual media. To trigger a media download, you will have to set up the builder by making
this call: `.param("alt", "media")`.
@@ -138,29 +146,29 @@ Methods supporting uploads can do so using up to 2 different protocols:
## Customization and Callbacks
You may alter the way an `doit()` method is called by providing a [delegate](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.Delegate.html) to the
[Method Builder](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.CallBuilder.html) before making the final `doit()` call.
You may alter the way an `doit()` method is called by providing a [delegate](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.Delegate.html) to the
[Method Builder](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.CallBuilder.html) before making the final `doit()` call.
Respective methods will be called to provide progress information, as well as determine whether the system should
retry on failure.
The [delegate trait](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.Delegate.html) is default-implemented, allowing you to customize it with minimal effort.
The [delegate trait](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.Delegate.html) is default-implemented, allowing you to customize it with minimal effort.
## Optional Parts in Server-Requests
All structures provided by this library are made to be [enocodable](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.RequestValue.html) and
[decodable](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.ResponseResult.html) via *json*. Optionals are used to indicate that partial requests are responses
All structures provided by this library are made to be [enocodable](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.RequestValue.html) and
[decodable](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.ResponseResult.html) via *json*. Optionals are used to indicate that partial requests are responses
are valid.
Most optionals are are considered [Parts](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.Part.html) which are identifiable by name, which will be sent to
Most optionals are are considered [Parts](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.Part.html) which are identifiable by name, which will be sent to
the server to indicate either the set parts of the request or the desired parts in the response.
## Builder Arguments
Using [method builders](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.CallBuilder.html), you are able to prepare an action call by repeatedly calling it's methods.
Using [method builders](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.CallBuilder.html), you are able to prepare an action call by repeatedly calling it's methods.
These will always take a single argument, for which the following statements are true.
* [PODs][wiki-pod] are handed by copy
* strings are passed as `&str`
* [request values](https://docs.rs/google-adexperiencereport1/1.0.7+20171129/google_adexperiencereport1/trait.RequestValue.html) are moved
* [request values](https://docs.rs/google-adexperiencereport1/1.0.7+20180911/google_adexperiencereport1/trait.RequestValue.html) are moved
Arguments will always be copied or cloned into the builder, to make them independent of their original life times.

View File

@@ -2,7 +2,7 @@
// This file was generated automatically from 'src/mako/api/lib.rs.mako'
// DO NOT EDIT !
//! This documentation was generated from *Ad Experience Report* crate version *1.0.7+20171129*, where *20171129* is the exact revision of the *adexperiencereport:v1* schema built by the [mako](http://www.makotemplates.org/) code generator *v1.0.7*.
//! This documentation was generated from *Ad Experience Report* crate version *1.0.7+20180911*, where *20180911* is the exact revision of the *adexperiencereport:v1* schema built by the [mako](http://www.makotemplates.org/) code generator *v1.0.7*.
//!
//! Everything else about the *Ad Experience Report* *v1* API can be found at the
//! [official documentation site](https://developers.google.com/ad-experience-report/).
@@ -66,6 +66,14 @@
//! ```toml
//! [dependencies]
//! google-adexperiencereport1 = "*"
//! # This project intentionally uses an old version of Hyper. See
//! # https://github.com/Byron/google-apis-rs/issues/173 for more
//! # information.
//! hyper = "^0.10"
//! hyper-rustls = "^0.6"
//! serde = "^1.0"
//! serde_json = "^1.0"
//! yup-oauth2 = "^1.0"
//! ```
//!
//! ## A complete example
@@ -397,12 +405,12 @@ impl Part for PlatformSummary {}
///
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
pub struct SiteSummaryResponse {
/// Summary for the desktop review of the site.
#[serde(rename="desktopSummary")]
pub desktop_summary: Option<PlatformSummary>,
/// The name of the site reviewed.
#[serde(rename="reviewedSite")]
pub reviewed_site: Option<String>,
/// Summary for the desktop review of the site.
#[serde(rename="desktopSummary")]
pub desktop_summary: Option<PlatformSummary>,
/// Summary for the mobile review of the site.
#[serde(rename="mobileSummary")]
pub mobile_summary: Option<PlatformSummary>,
@@ -618,7 +626,7 @@ impl<'a, C, A> SiteGetCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth
};
dlg.begin(MethodInfo { id: "adexperiencereport.sites.get",
http_method: hyper::method::Method::Get });
let mut params: Vec<(&str, String)> = Vec::with_capacity((3 + self._additional_params.len()));
let mut params: Vec<(&str, String)> = Vec::with_capacity(3 + self._additional_params.len());
params.push(("name", self._name.to_string()));
for &field in ["alt", "name"].iter() {
if self._additional_params.contains_key(field) {
@@ -774,17 +782,15 @@ impl<'a, C, A> SiteGetCall<'a, C, A> where C: BorrowMut<hyper::Client>, A: oauth
///
/// # Additional Parameters
///
/// * *bearer_token* (query-string) - OAuth bearer token.
/// * *pp* (query-boolean) - Pretty-print response.
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
/// * *upload_protocol* (query-string) - Upload protocol for media (e.g. "raw", "multipart").
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
/// * *access_token* (query-string) - OAuth access token.
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
/// * *uploadType* (query-string) - Legacy upload protocol for media (e.g. "media", "multipart").
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
/// * *callback* (query-string) - JSONP
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
/// * *uploadType* (query-string) - Legacy upload protocol for media (e.g. "media", "multipart").
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
/// * *alt* (query-string) - Data format for response.
/// * *$.xgafv* (query-string) - V1 error format.
pub fn param<T>(mut self, name: T, value: T) -> SiteGetCall<'a, C, A>
@@ -875,7 +881,7 @@ impl<'a, C, A> ViolatingSiteListCall<'a, C, A> where C: BorrowMut<hyper::Client>
};
dlg.begin(MethodInfo { id: "adexperiencereport.violatingSites.list",
http_method: hyper::method::Method::Get });
let mut params: Vec<(&str, String)> = Vec::with_capacity((2 + self._additional_params.len()));
let mut params: Vec<(&str, String)> = Vec::with_capacity(2 + self._additional_params.len());
for &field in ["alt"].iter() {
if self._additional_params.contains_key(field) {
dlg.finished(false);
@@ -990,17 +996,15 @@ impl<'a, C, A> ViolatingSiteListCall<'a, C, A> where C: BorrowMut<hyper::Client>
///
/// # Additional Parameters
///
/// * *bearer_token* (query-string) - OAuth bearer token.
/// * *pp* (query-boolean) - Pretty-print response.
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
/// * *upload_protocol* (query-string) - Upload protocol for media (e.g. "raw", "multipart").
/// * *prettyPrint* (query-boolean) - Returns response with indentations and line breaks.
/// * *access_token* (query-string) - OAuth access token.
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
/// * *uploadType* (query-string) - Legacy upload protocol for media (e.g. "media", "multipart").
/// * *quotaUser* (query-string) - Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
/// * *callback* (query-string) - JSONP
/// * *oauth_token* (query-string) - OAuth 2.0 token for the current user.
/// * *key* (query-string) - API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
/// * *uploadType* (query-string) - Legacy upload protocol for media (e.g. "media", "multipart").
/// * *fields* (query-string) - Selector specifying which fields to include in a partial response.
/// * *alt* (query-string) - Data format for response.
/// * *$.xgafv* (query-string) - V1 error format.
pub fn param<T>(mut self, name: T, value: T) -> ViolatingSiteListCall<'a, C, A>