Skip to content

Commit

Permalink
all: autogenerated update (2018-07-24)
Browse files Browse the repository at this point in the history
Add:
- firestore/v1
- firestore/v1beta2

Update:
- androiddeviceprovisioning/v1
- bigquerydatatransfer/v1
- calendar/v3
- chat/v1
- civicinfo/v2
- clouderrorreporting/v1beta1
- cloudprofiler/v2
- composer/v1beta1
- compute/v1
- datastore/v1
- datastore/v1beta1
- datastore/v1beta3
- dialogflow/v2
- dialogflow/v2beta1
- drive/v2
- genomics/v1
- genomics/v1alpha2
- genomics/v2alpha1
- jobs/v2
- slides/v1
- sourcerepo/v1
- toolresults/v1beta3
  • Loading branch information
googleapis-publisher committed Jul 24, 2018
1 parent cd7aead commit 2c45710
Show file tree
Hide file tree
Showing 50 changed files with 7,059 additions and 155 deletions.
120 changes: 119 additions & 1 deletion androiddeviceprovisioning/v1/androiddeviceprovisioning-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"description": "Automates Android zero-touch enrollment for device resellers, customers, and EMMs.",
"discoveryVersion": "v1",
"documentationLink": "https://developers.google.com/zero-touch/",
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
"x32": "http://www.google.com/images/icons/product/search-32.gif"
Expand Down Expand Up @@ -732,11 +733,87 @@
}
}
}
},
"vendors": {
"methods": {
"list": {
"description": "Lists vendors of the partner.",
"flatPath": "v1/partners/{partnersId}/vendors",
"httpMethod": "GET",
"id": "androiddeviceprovisioning.partners.vendors.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of results to be returned.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A token identifying a page of results returned by the server.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name in the format `partners/[PARTNER_ID]`.",
"location": "path",
"pattern": "^partners/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/vendors",
"response": {
"$ref": "ListVendorsResponse"
}
}
},
"resources": {
"customers": {
"methods": {
"list": {
"description": "Lists the customers of the vendor.",
"flatPath": "v1/partners/{partnersId}/vendors/{vendorsId}/customers",
"httpMethod": "GET",
"id": "androiddeviceprovisioning.partners.vendors.customers.list",
"parameterOrder": [
"parent"
],
"parameters": {
"pageSize": {
"description": "The maximum number of results to be returned.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A token identifying a page of results returned by the server.",
"location": "query",
"type": "string"
},
"parent": {
"description": "Required. The resource name in the format\n`partners/[PARTNER_ID]/vendors/[VENDOR_ID]`.",
"location": "path",
"pattern": "^partners/[^/]+/vendors/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1/{+parent}/customers",
"response": {
"$ref": "ListVendorCustomersResponse"
}
}
}
}
}
}
}
}
},
"revision": "20180713",
"revision": "20180720",
"rootUrl": "https://androiddeviceprovisioning.googleapis.com/",
"schemas": {
"ClaimDeviceRequest": {
Expand Down Expand Up @@ -1051,6 +1128,11 @@
"format": "int64",
"type": "string"
},
"resellerId": {
"description": "The ID of the reseller that claimed the device.",
"format": "int64",
"type": "string"
},
"sectionType": {
"description": "Output only. The type of claim made on the device.",
"enum": [
Expand Down Expand Up @@ -1302,6 +1384,42 @@
},
"type": "object"
},
"ListVendorCustomersResponse": {
"description": "Response message to list customers of the vendor.",
"id": "ListVendorCustomersResponse",
"properties": {
"customers": {
"description": "List of customers of the vendor.",
"items": {
"$ref": "Company"
},
"type": "array"
},
"nextPageToken": {
"description": "A token to retrieve the next page of results. Omitted if no further results\nare available.",
"type": "string"
}
},
"type": "object"
},
"ListVendorsResponse": {
"description": "Response message to list vendors of the partner.",
"id": "ListVendorsResponse",
"properties": {
"nextPageToken": {
"description": "A token to retrieve the next page of results. Omitted if no further results\nare available.",
"type": "string"
},
"vendors": {
"description": "List of vendors of the reseller partner. Fields `name`, `companyId` and\n`companyName` are populated to the Company object.",
"items": {
"$ref": "Company"
},
"type": "array"
}
},
"type": "object"
},
"Operation": {
"description": "This resource represents a long-running operation that is the result of a\nnetwork API call.",
"id": "Operation",
Expand Down
Loading

0 comments on commit 2c45710

Please sign in to comment.