Skip to content

Commit

Permalink
Update discovery documents and generated code
Browse files Browse the repository at this point in the history
automatically_generated_update
  • Loading branch information
cloudsharp committed Aug 22, 2016
1 parent f3a616d commit ef907ed
Show file tree
Hide file tree
Showing 1,065 changed files with 5,466 additions and 1,990 deletions.
42 changes: 21 additions & 21 deletions DiscoveryJson/datastore_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
"type": "object",
"properties": {
"transaction": {
"description": "The identifier of the transaction in which to read. A\ntransaction identifier is returned by a call to\nBeginTransaction.",
"description": "The identifier of the transaction in which to read. A\ntransaction identifier is returned by a call to\nDatastore.BeginTransaction.",
"type": "string",
"format": "byte"
},
Expand Down Expand Up @@ -312,11 +312,11 @@
"id": "PropertyOrder"
},
"CommitRequest": {
"description": "The request for google.datastore.v1.Datastore.Commit.",
"description": "The request for Datastore.Commit.",
"type": "object",
"properties": {
"transaction": {
"description": "The identifier of the transaction associated with the commit. A\ntransaction identifier is returned by a call to\nBeginTransaction.",
"description": "The identifier of the transaction associated with the commit. A\ntransaction identifier is returned by a call to\nDatastore.BeginTransaction.",
"type": "string",
"format": "byte"
},
Expand Down Expand Up @@ -404,11 +404,11 @@
"id": "Query"
},
"RollbackRequest": {
"description": "The request for google.datastore.v1.Datastore.Rollback.",
"description": "The request for Datastore.Rollback.",
"type": "object",
"properties": {
"transaction": {
"description": "The transaction identifier, returned by a call to\ngoogle.datastore.v1.Datastore.BeginTransaction.",
"description": "The transaction identifier, returned by a call to\nDatastore.BeginTransaction.",
"type": "string",
"format": "byte"
}
Expand All @@ -429,7 +429,7 @@
"$ref": "Entity"
},
"version": {
"description": "The version of the entity, a strictly positive number that monotonically\nincreases with changes to the entity.\n\nThis field is set for `FULL` entity results.\nFor missing entities in\n`LookupResponse`, this is the version of the snapshot that was used to look\nup the entity, and it is always set except for eventually consistent reads.",
"description": "The version of the entity, a strictly positive number that monotonically\nincreases with changes to the entity.\n\nThis field is set for `FULL` entity\nresults.\n\nFor missing entities in `LookupResponse`, this\nis the version of the snapshot that was used to look up the entity, and it\nis always set except for eventually consistent reads.",
"type": "string",
"format": "int64"
}
Expand Down Expand Up @@ -482,7 +482,7 @@
"id": "Filter"
},
"BeginTransactionResponse": {
"description": "The response for google.datastore.v1.Datastore.BeginTransaction.",
"description": "The response for Datastore.BeginTransaction.",
"type": "object",
"properties": {
"transaction": {
Expand Down Expand Up @@ -556,7 +556,7 @@
"Unspecified. This value is never used.",
"There may be additional batches to fetch from this query.",
"The query is finished, but there may be more results after the limit.",
"The query is finished, but there may be more results after the end cursor.",
"The query is finished, but there may be more results after the end\ncursor.",
"The query has been exhausted."
],
"type": "string"
Expand All @@ -577,7 +577,7 @@
"id": "QueryResultBatch"
},
"AllocateIdsRequest": {
"description": "The request for google.datastore.v1.Datastore.AllocateIds.",
"description": "The request for Datastore.AllocateIds.",
"type": "object",
"properties": {
"keys": {
Expand Down Expand Up @@ -659,7 +659,7 @@
"id": "PathElement"
},
"RollbackResponse": {
"description": "The response for google.datastore.v1.Datastore.Rollback\n(an empty message).",
"description": "The response for Datastore.Rollback.\n(an empty message).",
"type": "object",
"properties": {},
"id": "RollbackResponse"
Expand Down Expand Up @@ -707,7 +707,7 @@
"id": "MutationResult"
},
"AllocateIdsResponse": {
"description": "The response for google.datastore.v1.Datastore.AllocateIds.",
"description": "The response for Datastore.AllocateIds.",
"type": "object",
"properties": {
"keys": {
Expand All @@ -721,7 +721,7 @@
"id": "AllocateIdsResponse"
},
"LookupResponse": {
"description": "The response for google.datastore.v1.Datastore.Lookup.",
"description": "The response for Datastore.Lookup.",
"type": "object",
"properties": {
"found": {
Expand Down Expand Up @@ -749,7 +749,7 @@
"id": "LookupResponse"
},
"BeginTransactionRequest": {
"description": "The request for google.datastore.v1.Datastore.BeginTransaction.",
"description": "The request for Datastore.BeginTransaction.",
"type": "object",
"properties": {},
"id": "BeginTransactionRequest"
Expand All @@ -773,7 +773,7 @@
"id": "Key"
},
"RunQueryResponse": {
"description": "The response for google.datastore.v1.Datastore.RunQuery.",
"description": "The response for Datastore.RunQuery.",
"type": "object",
"properties": {
"batch": {
Expand Down Expand Up @@ -814,18 +814,18 @@
"type": "string"
},
"namedBindings": {
"description": "For each non-reserved named binding site in the query string,\nthere must be a named parameter with that name,\nbut not necessarily the inverse.\nKey must match regex `A-Za-z_$*`, must not match regex\n`__.*__`, and must not be `\"\"`.",
"description": "For each non-reserved named binding site in the query string, there must be\na named parameter with that name, but not necessarily the inverse.\n\nKey must match regex `A-Za-z_$*`, must not match regex\n`__.*__`, and must not be `\"\"`.",
"additionalProperties": {
"$ref": "GqlQueryParameter"
},
"type": "object"
},
"allowLiterals": {
"description": "When false, the query string must not contain any literals and instead\nmust bind all values. For example,\n`SELECT * FROM Kind WHERE a = 'string literal'` is not allowed, while\n`SELECT * FROM Kind WHERE a = @value` is.",
"description": "When false, the query string must not contain any literals and instead must\nbind all values. For example,\n`SELECT * FROM Kind WHERE a = 'string literal'` is not allowed, while\n`SELECT * FROM Kind WHERE a = @value` is.",
"type": "boolean"
},
"positionalBindings": {
"description": "Numbered binding site @1 references the first numbered parameter,\neffectively using 1-based indexing, rather than the usual 0.\nFor each binding site numbered i in `query_string`,\nthere must be an i-th numbered parameter.\nThe inverse must also be true.",
"description": "Numbered binding site @1 references the first numbered parameter,\neffectively using 1-based indexing, rather than the usual 0.\n\nFor each binding site numbered i in `query_string`, there must be an i-th\nnumbered parameter. The inverse must also be true.",
"type": "array",
"items": {
"$ref": "GqlQueryParameter"
Expand Down Expand Up @@ -863,7 +863,7 @@
"id": "Mutation"
},
"CommitResponse": {
"description": "The response for google.datastore.v1.Datastore.Commit.",
"description": "The response for Datastore.Commit.",
"type": "object",
"properties": {
"mutationResults": {
Expand All @@ -882,7 +882,7 @@
"id": "CommitResponse"
},
"RunQueryRequest": {
"description": "The request for google.datastore.v1.Datastore.RunQuery.",
"description": "The request for Datastore.RunQuery.",
"type": "object",
"properties": {
"partitionId": {
Expand All @@ -905,7 +905,7 @@
"id": "RunQueryRequest"
},
"LookupRequest": {
"description": "The request for google.datastore.v1.Datastore.Lookup.",
"description": "The request for Datastore.Lookup.",
"type": "object",
"properties": {
"readOptions": {
Expand Down Expand Up @@ -966,7 +966,7 @@
"id": "CompositeFilter"
}
},
"revision": "20160802",
"revision": "20160816",
"basePath": "",
"icons": {
"x32": "http://www.google.com/images/icons/product/search-32.gif",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by google-apis-code-generator 1.5.1
// C# generator version: 1.15.0
// C# generator version: 1.16.0
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Google.Apis.Acceleratedmobilepageurl.v1</id>
<version>1.15.0.586</version>
<version>1.16.0.586</version>
<title>Google.Apis.Acceleratedmobilepageurl.v1 Client Library</title>
<authors>Google Inc.</authors>
<owners>google-apis-packages</owners>
Expand Down Expand Up @@ -33,7 +33,7 @@
<tags>Google</tags>
<dependencies>
<group targetFramework="netstandard1.3">
<dependency id="Google.Apis" version="1.15.0" />
<dependency id="Google.Apis" version="1.16.0" />
</group>
<!--
After v1.10.0 of Google.Apis, we
Expand All @@ -42,7 +42,7 @@
version of Google.Apis.
-->
<group targetFramework="portable-net45+netcore45+wpa81+wp8">
<dependency id="Google.Apis" version="1.15.0" />
<dependency id="Google.Apis" version="1.16.0" />
</group>
<group targetFramework="portable-net40+sl50+netcore45+wpa81+wp8">
<!-- Use [version] to require exact match. -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"supports": {},
"dependencies": {
"Google.Apis": "1.15.0",
"Google.Apis.Core": "1.15.0",
"Google.Apis": "1.16.0",
"Google.Apis.Core": "1.16.0",
"Newtonsoft.Json": "9.0.1",
"System.IO": "4.1.0",
"System.Runtime": "4.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
</ItemGroup>
<ItemGroup>
<Reference Include="Google.Apis.Core">
<HintPath>..\..\packages\Google.Apis.Core.1.15.0\lib\portable-net45+sl50+netcore45+wpa81+wp8\Google.Apis.Core.dll</HintPath>
<HintPath>..\..\packages\Google.Apis.Core.1.16.0\lib\portable-net45+sl50+netcore45+wpa81+wp8\Google.Apis.Core.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Google.Apis">
<HintPath>..\..\packages\Google.Apis.1.15.0\lib\portable-net45+sl50+netcore45+wpa81+wp8\Google.Apis.dll</HintPath>
<HintPath>..\..\packages\Google.Apis.1.16.0\lib\portable-net45+sl50+netcore45+wpa81+wp8\Google.Apis.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Google.Apis" version="1.15.0" targetFramework="portable45-net45+win8+wp8+wpa81"/>
<package id="Google.Apis.Core" version="1.15.0" targetFramework="portable45-net45+win8+wp8+wpa81"/>
<package id="Google.Apis" version="1.16.0" targetFramework="portable45-net45+win8+wp8+wpa81"/>
<package id="Google.Apis.Core" version="1.16.0" targetFramework="portable45-net45+win8+wp8+wpa81"/>
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="portable45-net45+win8+wp8+wpa81" />
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="portable45-net45+win8+wp8+wpa81" />
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="portable45-net45+win8+wp8+wpa81" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ limitations under the License.
[assembly: AssemblyCopyright("Copyright © Google Inc. 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("1.15.0.586")]
[assembly: AssemblyVersion("1.16.0.586")]
23 changes: 23 additions & 0 deletions Src/Generated/Google.Apis.Acceleratedmobilepageurl.v1/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"version": "1.16.0",

"dependencies": {
"GoogleApis_dotnetcore": { "target": "project" },
"GoogleApis.Core_dotnetcore": { "target": "project" },
},

"buildOptions": {
"compile": {
"include": [
"*.cs"
]
},
"define": [ "NETSTANDARD;SIGNED" ],
"keyFile": "../../../google.apis.snk"
},

"frameworks": {
"netstandard1.3": {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by google-apis-code-generator 1.5.1
// C# generator version: 1.15.0
// C# generator version: 1.16.0
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Google.Apis.AdExchangeBuyer.v1_2</id>
<version>1.15.0.567</version>
<version>1.16.0.567</version>
<title>Google.Apis.AdExchangeBuyer.v1_2 Client Library</title>
<authors>Google Inc.</authors>
<owners>google-apis-packages</owners>
Expand Down Expand Up @@ -33,8 +33,8 @@
<tags>Google</tags>
<dependencies>
<group targetFramework="netstandard1.3">
<dependency id="Google.Apis" version="1.15.0" />
<dependency id="Google.Apis.Auth" version="1.15.0" />
<dependency id="Google.Apis" version="1.16.0" />
<dependency id="Google.Apis.Auth" version="1.16.0" />
</group>
<!--
After v1.10.0 of Google.Apis, we
Expand All @@ -43,8 +43,8 @@
version of Google.Apis.
-->
<group targetFramework="portable-net45+netcore45+wpa81+wp8">
<dependency id="Google.Apis" version="1.15.0" />
<dependency id="Google.Apis.Auth" version="1.15.0" />
<dependency id="Google.Apis" version="1.16.0" />
<dependency id="Google.Apis.Auth" version="1.16.0" />
</group>
<group targetFramework="portable-net40+sl50+netcore45+wpa81+wp8">
<!-- Use [version] to require exact match. -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"supports": {},
"dependencies": {
"Google.Apis": "1.15.0",
"Google.Apis.Core": "1.15.0",
"Google.Apis": "1.16.0",
"Google.Apis.Core": "1.16.0",
"Newtonsoft.Json": "9.0.1",
"System.IO": "4.1.0",
"System.Runtime": "4.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
</ItemGroup>
<ItemGroup>
<Reference Include="Google.Apis.Core">
<HintPath>..\..\packages\Google.Apis.Core.1.15.0\lib\portable-net45+sl50+netcore45+wpa81+wp8\Google.Apis.Core.dll</HintPath>
<HintPath>..\..\packages\Google.Apis.Core.1.16.0\lib\portable-net45+sl50+netcore45+wpa81+wp8\Google.Apis.Core.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Google.Apis">
<HintPath>..\..\packages\Google.Apis.1.15.0\lib\portable-net45+sl50+netcore45+wpa81+wp8\Google.Apis.dll</HintPath>
<HintPath>..\..\packages\Google.Apis.1.16.0\lib\portable-net45+sl50+netcore45+wpa81+wp8\Google.Apis.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Newtonsoft.Json">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Google.Apis" version="1.15.0" targetFramework="portable45-net45+win8+wp8+wpa81"/>
<package id="Google.Apis.Core" version="1.15.0" targetFramework="portable45-net45+win8+wp8+wpa81"/>
<package id="Google.Apis" version="1.16.0" targetFramework="portable45-net45+win8+wp8+wpa81"/>
<package id="Google.Apis.Core" version="1.16.0" targetFramework="portable45-net45+win8+wp8+wpa81"/>
<package id="Microsoft.Bcl" version="1.1.10" targetFramework="portable45-net45+win8+wp8+wpa81" />
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="portable45-net45+win8+wp8+wpa81" />
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="portable45-net45+win8+wp8+wpa81" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ limitations under the License.
[assembly: AssemblyCopyright("Copyright © Google Inc. 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyVersion("1.15.0.567")]
[assembly: AssemblyVersion("1.16.0.567")]
23 changes: 23 additions & 0 deletions Src/Generated/Google.Apis.AdExchangeBuyer.v1_2/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"version": "1.16.0",

"dependencies": {
"GoogleApis_dotnetcore": { "target": "project" },
"GoogleApis.Core_dotnetcore": { "target": "project" },
},

"buildOptions": {
"compile": {
"include": [
"*.cs"
]
},
"define": [ "NETSTANDARD;SIGNED" ],
"keyFile": "../../../google.apis.snk"
},

"frameworks": {
"netstandard1.3": {
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by google-apis-code-generator 1.5.1
// C# generator version: 1.15.0
// C# generator version: 1.16.0
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
Expand Down
Loading

0 comments on commit ef907ed

Please sign in to comment.