docs: update docs/dyn (#1096)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/6f0f288a-a1e8-4b2d-a85f-00b1c6150185/targets
- [ ] To automatically regenerate this PR, check this box.
Source-Link: https://github.com/googleapis/synthtool/commit/39b7149da4026765385403632db3c6f63db96b2c
Source-Link: https://github.com/googleapis/synthtool/commit/9a7d9fbb7045c34c9d3d22c1ff766eeae51f04c9
Source-Link: https://github.com/googleapis/synthtool/commit/dc9903a8c30c3662b6098f0e4a97f221d67268b2
Source-Link: https://github.com/googleapis/synthtool/commit/7fcc405a579d5d53a726ff3da1b7c8c08f0f2d58
Source-Link: https://github.com/googleapis/synthtool/commit/d5fc0bcf9ea9789c5b0e3154a9e3b29e5cea6116
Source-Link: https://github.com/googleapis/synthtool/commit/e89175cf074dccc4babb4eca66ae913696e47a71
Source-Link: https://github.com/googleapis/synthtool/commit/7d652819519dfa24da9e14548232e4aaba71a11c
Source-Link: https://github.com/googleapis/synthtool/commit/7db8a6c5ffb12a6e4c2f799c18f00f7f3d60e279
Source-Link: https://github.com/googleapis/synthtool/commit/1f1148d3c7a7a52f0c98077f976bd9b3c948ee2b
Source-Link: https://github.com/googleapis/synthtool/commit/2c8aecedd55b0480fb4e123b6e07fa5b12953862
Source-Link: https://github.com/googleapis/synthtool/commit/3d3e94c4e02370f307a9a200b0c743c3d8d19f29
Source-Link: https://github.com/googleapis/synthtool/commit/c7824ea48ff6d4d42dfae0849aec8a85acd90bd9
Source-Link: https://github.com/googleapis/synthtool/commit/ba9918cd22874245b55734f57470c719b577e591
Source-Link: https://github.com/googleapis/synthtool/commit/b19b401571e77192f8dd38eab5fb2300a0de9324
Source-Link: https://github.com/googleapis/synthtool/commit/6542bd723403513626f61642fc02ddca528409aa
diff --git a/docs/dyn/discovery_v1.apis.html b/docs/dyn/discovery_v1.apis.html
index ff7cda7..9b2b49b 100644
--- a/docs/dyn/discovery_v1.apis.html
+++ b/docs/dyn/discovery_v1.apis.html
@@ -101,233 +101,12 @@
An object of the form:
{
- "rootUrl": "A String", # The root URL under which all API services live.
- "schemas": { # The schemas for this API.
- "a_key": { # An individual schema description.
- "maximum": "A String", # The maximum value of this parameter.
- "repeated": True or False, # Whether this parameter may appear multiple times.
- "id": "A String", # Unique identifier for this schema.
- "description": "A String", # A description of this object.
- "additionalProperties": # Object with schema name: JsonSchema # If this is a schema for an object, this property is the schema for any additional properties with dynamic keys on this object.
- "location": "A String", # Whether this parameter goes in the query or the path for REST requests.
- "properties": { # If this is a schema for an object, list the schema for each property of this object.
- "a_key": # Object with schema name: JsonSchema # A single property of this object. The value is itself a JSON Schema object describing this property.
- },
- "format": "A String", # An additional regular expression or key that helps constrain the value. For more details see: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.23
- "required": True or False, # Whether the parameter is required.
- "$ref": "A String", # A reference to another schema. The value of this property is the "id" of another schema.
- "enum": [ # Values this parameter may take (if it is an enum).
- "A String",
- ],
- "minimum": "A String", # The minimum value of this parameter.
- "default": "A String", # The default value of this property (if one exists).
- "variant": { # In a variant data type, the value of one property is used to determine how to interpret the entire entity. Its value must exist in a map of descriminant values to schema names.
- "map": [ # The map of discriminant value to schema to use for parsing..
- {
- "type_value": "A String",
- "$ref": "A String",
- },
- ],
- "discriminant": "A String", # The name of the type discriminant property.
- },
- "items": # Object with schema name: JsonSchema # If this is a schema for an array, this property is the schema for each element in the array.
- "enumDescriptions": [ # The descriptions for the enums. Each position maps to the corresponding value in the "enum" array.
- "A String",
- ],
- "readOnly": True or False, # The value is read-only, generated by the service. The value cannot be modified by the client. If the value is included in a POST, PUT, or PATCH request, it is ignored by the service.
- "annotations": { # Additional information about this property.
- "required": [ # A list of methods for which this property is required on requests.
- "A String",
- ],
- },
- "pattern": "A String", # The regular expression this parameter must conform to. Uses Java 6 regex format: http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
- "type": "A String", # The value type for this schema. A list of values can be found here: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.1
- },
+ "icons": { # Links to 16x16 and 32x32 icons representing the API.
+ "x32": "A String", # The URL of the 32x32 icon.
+ "x16": "A String", # The URL of the 16x16 icon.
},
- "revision": "A String", # The version of this API.
- "methods": { # API-level methods for this API.
- "a_key": { # An individual method description.
- "id": "A String", # A unique ID for this method. This property can be used to match methods between different versions of Discovery.
- "path": "A String", # The URI path of this REST method. Should be used in conjunction with the basePath property at the api-level.
- "response": { # The schema for the response.
- "$ref": "A String", # Schema ID for the response schema.
- },
- "useMediaDownloadService": True or False, # Indicates that downloads from this method should use the download service URL (i.e. "/download"). Only applies if the method supports media download.
- "parameterOrder": [ # Ordered list of required parameters, serves as a hint to clients on how to structure their method signatures. The array is ordered such that the "most-significant" parameter appears first.
- "A String",
- ],
- "scopes": [ # OAuth 2.0 scopes applicable to this method.
- "A String",
- ],
- "supportsMediaUpload": True or False, # Whether this method supports media uploads.
- "mediaUpload": { # Media upload parameters.
- "protocols": { # Supported upload protocols.
- "resumable": { # Supports the Resumable Media Upload protocol.
- "multipart": true, # True if this endpoint supports uploading multipart media.
- "path": "A String", # The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.
- },
- "simple": { # Supports uploading as a single HTTP request.
- "multipart": true, # True if this endpoint supports upload multipart media.
- "path": "A String", # The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.
- },
- },
- "maxSize": "A String", # Maximum size of a media upload, such as "1MB", "2GB" or "3TB".
- "accept": [ # MIME Media Ranges for acceptable media uploads to this method.
- "A String",
- ],
- },
- "etagRequired": True or False, # Whether this method requires an ETag to be specified. The ETag is sent as an HTTP If-Match or If-None-Match header.
- "supportsMediaDownload": True or False, # Whether this method supports media downloads.
- "httpMethod": "A String", # HTTP method used by this method.
- "description": "A String", # Description of this method.
- "parameters": { # Details for all parameters in this method.
- "a_key": { # Details for a single parameter in this method.
- "maximum": "A String", # The maximum value of this parameter.
- "repeated": True or False, # Whether this parameter may appear multiple times.
- "id": "A String", # Unique identifier for this schema.
- "description": "A String", # A description of this object.
- "additionalProperties": # Object with schema name: JsonSchema # If this is a schema for an object, this property is the schema for any additional properties with dynamic keys on this object.
- "location": "A String", # Whether this parameter goes in the query or the path for REST requests.
- "properties": { # If this is a schema for an object, list the schema for each property of this object.
- "a_key": # Object with schema name: JsonSchema # A single property of this object. The value is itself a JSON Schema object describing this property.
- },
- "format": "A String", # An additional regular expression or key that helps constrain the value. For more details see: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.23
- "required": True or False, # Whether the parameter is required.
- "$ref": "A String", # A reference to another schema. The value of this property is the "id" of another schema.
- "enum": [ # Values this parameter may take (if it is an enum).
- "A String",
- ],
- "minimum": "A String", # The minimum value of this parameter.
- "default": "A String", # The default value of this property (if one exists).
- "variant": { # In a variant data type, the value of one property is used to determine how to interpret the entire entity. Its value must exist in a map of descriminant values to schema names.
- "map": [ # The map of discriminant value to schema to use for parsing..
- {
- "type_value": "A String",
- "$ref": "A String",
- },
- ],
- "discriminant": "A String", # The name of the type discriminant property.
- },
- "items": # Object with schema name: JsonSchema # If this is a schema for an array, this property is the schema for each element in the array.
- "enumDescriptions": [ # The descriptions for the enums. Each position maps to the corresponding value in the "enum" array.
- "A String",
- ],
- "readOnly": True or False, # The value is read-only, generated by the service. The value cannot be modified by the client. If the value is included in a POST, PUT, or PATCH request, it is ignored by the service.
- "annotations": { # Additional information about this property.
- "required": [ # A list of methods for which this property is required on requests.
- "A String",
- ],
- },
- "pattern": "A String", # The regular expression this parameter must conform to. Uses Java 6 regex format: http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
- "type": "A String", # The value type for this schema. A list of values can be found here: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.1
- },
- },
- "request": { # The schema for the request.
- "parameterName": "A String", # parameter name.
- "$ref": "A String", # Schema ID for the request schema.
- },
- "supportsSubscription": True or False, # Whether this method supports subscriptions.
- },
- },
- "name": "A String", # The name of this API.
- "id": "A String", # The ID of this API.
- "documentationLink": "A String", # A link to human readable documentation for the API.
- "servicePath": "A String", # The base path for all REST requests.
- "title": "A String", # The title of this API.
- "exponentialBackoffDefault": True or False, # Enable exponential backoff for suitable methods in the generated clients.
- "protocol": "rest", # The protocol described by this document.
"basePath": "A String", # [DEPRECATED] The base path for REST requests.
- "resources": { # The resources in this API.
- "a_key": { # An individual resource description. Contains methods and sub-resources related to this resource.
- "resources": { # Sub-resources on this resource.
- "a_key": # Object with schema name: RestResource # Description for any sub-resources on this resource.
- },
- "methods": { # Methods on this resource.
- "a_key": { # Description for any methods on this resource.
- "id": "A String", # A unique ID for this method. This property can be used to match methods between different versions of Discovery.
- "path": "A String", # The URI path of this REST method. Should be used in conjunction with the basePath property at the api-level.
- "response": { # The schema for the response.
- "$ref": "A String", # Schema ID for the response schema.
- },
- "useMediaDownloadService": True or False, # Indicates that downloads from this method should use the download service URL (i.e. "/download"). Only applies if the method supports media download.
- "parameterOrder": [ # Ordered list of required parameters, serves as a hint to clients on how to structure their method signatures. The array is ordered such that the "most-significant" parameter appears first.
- "A String",
- ],
- "scopes": [ # OAuth 2.0 scopes applicable to this method.
- "A String",
- ],
- "supportsMediaUpload": True or False, # Whether this method supports media uploads.
- "mediaUpload": { # Media upload parameters.
- "protocols": { # Supported upload protocols.
- "resumable": { # Supports the Resumable Media Upload protocol.
- "multipart": true, # True if this endpoint supports uploading multipart media.
- "path": "A String", # The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.
- },
- "simple": { # Supports uploading as a single HTTP request.
- "multipart": true, # True if this endpoint supports upload multipart media.
- "path": "A String", # The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.
- },
- },
- "maxSize": "A String", # Maximum size of a media upload, such as "1MB", "2GB" or "3TB".
- "accept": [ # MIME Media Ranges for acceptable media uploads to this method.
- "A String",
- ],
- },
- "etagRequired": True or False, # Whether this method requires an ETag to be specified. The ETag is sent as an HTTP If-Match or If-None-Match header.
- "supportsMediaDownload": True or False, # Whether this method supports media downloads.
- "httpMethod": "A String", # HTTP method used by this method.
- "description": "A String", # Description of this method.
- "parameters": { # Details for all parameters in this method.
- "a_key": { # Details for a single parameter in this method.
- "maximum": "A String", # The maximum value of this parameter.
- "repeated": True or False, # Whether this parameter may appear multiple times.
- "id": "A String", # Unique identifier for this schema.
- "description": "A String", # A description of this object.
- "additionalProperties": # Object with schema name: JsonSchema # If this is a schema for an object, this property is the schema for any additional properties with dynamic keys on this object.
- "location": "A String", # Whether this parameter goes in the query or the path for REST requests.
- "properties": { # If this is a schema for an object, list the schema for each property of this object.
- "a_key": # Object with schema name: JsonSchema # A single property of this object. The value is itself a JSON Schema object describing this property.
- },
- "format": "A String", # An additional regular expression or key that helps constrain the value. For more details see: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.23
- "required": True or False, # Whether the parameter is required.
- "$ref": "A String", # A reference to another schema. The value of this property is the "id" of another schema.
- "enum": [ # Values this parameter may take (if it is an enum).
- "A String",
- ],
- "minimum": "A String", # The minimum value of this parameter.
- "default": "A String", # The default value of this property (if one exists).
- "variant": { # In a variant data type, the value of one property is used to determine how to interpret the entire entity. Its value must exist in a map of descriminant values to schema names.
- "map": [ # The map of discriminant value to schema to use for parsing..
- {
- "type_value": "A String",
- "$ref": "A String",
- },
- ],
- "discriminant": "A String", # The name of the type discriminant property.
- },
- "items": # Object with schema name: JsonSchema # If this is a schema for an array, this property is the schema for each element in the array.
- "enumDescriptions": [ # The descriptions for the enums. Each position maps to the corresponding value in the "enum" array.
- "A String",
- ],
- "readOnly": True or False, # The value is read-only, generated by the service. The value cannot be modified by the client. If the value is included in a POST, PUT, or PATCH request, it is ignored by the service.
- "annotations": { # Additional information about this property.
- "required": [ # A list of methods for which this property is required on requests.
- "A String",
- ],
- },
- "pattern": "A String", # The regular expression this parameter must conform to. Uses Java 6 regex format: http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
- "type": "A String", # The value type for this schema. A list of values can be found here: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.1
- },
- },
- "request": { # The schema for the request.
- "parameterName": "A String", # parameter name.
- "$ref": "A String", # Schema ID for the request schema.
- },
- "supportsSubscription": True or False, # Whether this method supports subscriptions.
- },
- },
- },
- },
+ "baseUrl": "A String", # [DEPRECATED] The base URL for REST requests.
"auth": { # Authentication information.
"oauth2": { # OAuth 2.0 authentication information.
"scopes": { # Available OAuth 2.0 scopes.
@@ -338,46 +117,14 @@
},
},
"batchPath": "A String", # The path for REST batch requests.
- "canonicalName": "A String", # Indicates how the API name should be capitalized and split into various parts. Useful for generating pretty class names.
- "description": "A String", # The description of this API.
- "ownerName": "A String", # The name of the owner of this API. See ownerDomain.
- "features": [ # A list of supported features for this API.
- "A String",
- ],
- "version": "A String", # The version of this API.
- "icons": { # Links to 16x16 and 32x32 icons representing the API.
- "x32": "A String", # The URL of the 32x32 icon.
- "x16": "A String", # The URL of the 16x16 icon.
- },
- "version_module": True or False,
- "kind": "discovery#restDescription", # The kind for this response.
- "etag": "A String", # The ETag for this response.
"ownerDomain": "A String", # The domain of the owner of this API. Together with the ownerName and a packagePath values, this can be used to generate a library for this API which would have a unique fully qualified name.
- "labels": [ # Labels for the status of this API, such as labs or deprecated.
- "A String",
- ],
- "packagePath": "A String", # The package of the owner of this API. See ownerDomain.
- "discoveryVersion": "v1", # Indicate the version of the Discovery API used to generate this doc.
- "baseUrl": "A String", # [DEPRECATED] The base URL for REST requests.
"parameters": { # Common parameters that apply across all apis.
"a_key": { # Description of a single parameter.
- "maximum": "A String", # The maximum value of this parameter.
- "repeated": True or False, # Whether this parameter may appear multiple times.
- "id": "A String", # Unique identifier for this schema.
- "description": "A String", # A description of this object.
- "additionalProperties": # Object with schema name: JsonSchema # If this is a schema for an object, this property is the schema for any additional properties with dynamic keys on this object.
- "location": "A String", # Whether this parameter goes in the query or the path for REST requests.
+ "minimum": "A String", # The minimum value of this parameter.
+ "default": "A String", # The default value of this property (if one exists).
"properties": { # If this is a schema for an object, list the schema for each property of this object.
"a_key": # Object with schema name: JsonSchema # A single property of this object. The value is itself a JSON Schema object describing this property.
},
- "format": "A String", # An additional regular expression or key that helps constrain the value. For more details see: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.23
- "required": True or False, # Whether the parameter is required.
- "$ref": "A String", # A reference to another schema. The value of this property is the "id" of another schema.
- "enum": [ # Values this parameter may take (if it is an enum).
- "A String",
- ],
- "minimum": "A String", # The minimum value of this parameter.
- "default": "A String", # The default value of this property (if one exists).
"variant": { # In a variant data type, the value of one property is used to determine how to interpret the entire entity. Its value must exist in a map of descriminant values to schema names.
"map": [ # The map of discriminant value to schema to use for parsing..
{
@@ -387,20 +134,273 @@
],
"discriminant": "A String", # The name of the type discriminant property.
},
- "items": # Object with schema name: JsonSchema # If this is a schema for an array, this property is the schema for each element in the array.
"enumDescriptions": [ # The descriptions for the enums. Each position maps to the corresponding value in the "enum" array.
"A String",
],
+ "pattern": "A String", # The regular expression this parameter must conform to. Uses Java 6 regex format: http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
"readOnly": True or False, # The value is read-only, generated by the service. The value cannot be modified by the client. If the value is included in a POST, PUT, or PATCH request, it is ignored by the service.
+ "items": # Object with schema name: JsonSchema # If this is a schema for an array, this property is the schema for each element in the array.
+ "maximum": "A String", # The maximum value of this parameter.
+ "location": "A String", # Whether this parameter goes in the query or the path for REST requests.
+ "$ref": "A String", # A reference to another schema. The value of this property is the "id" of another schema.
+ "enum": [ # Values this parameter may take (if it is an enum).
+ "A String",
+ ],
+ "required": True or False, # Whether the parameter is required.
+ "additionalProperties": # Object with schema name: JsonSchema # If this is a schema for an object, this property is the schema for any additional properties with dynamic keys on this object.
"annotations": { # Additional information about this property.
"required": [ # A list of methods for which this property is required on requests.
"A String",
],
},
- "pattern": "A String", # The regular expression this parameter must conform to. Uses Java 6 regex format: http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
"type": "A String", # The value type for this schema. A list of values can be found here: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.1
+ "format": "A String", # An additional regular expression or key that helps constrain the value. For more details see: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.23
+ "id": "A String", # Unique identifier for this schema.
+ "repeated": True or False, # Whether this parameter may appear multiple times.
+ "description": "A String", # A description of this object.
},
},
+ "methods": { # API-level methods for this API.
+ "a_key": { # An individual method description.
+ "response": { # The schema for the response.
+ "$ref": "A String", # Schema ID for the response schema.
+ },
+ "parameters": { # Details for all parameters in this method.
+ "a_key": { # Details for a single parameter in this method.
+ "minimum": "A String", # The minimum value of this parameter.
+ "default": "A String", # The default value of this property (if one exists).
+ "properties": { # If this is a schema for an object, list the schema for each property of this object.
+ "a_key": # Object with schema name: JsonSchema # A single property of this object. The value is itself a JSON Schema object describing this property.
+ },
+ "variant": { # In a variant data type, the value of one property is used to determine how to interpret the entire entity. Its value must exist in a map of descriminant values to schema names.
+ "map": [ # The map of discriminant value to schema to use for parsing..
+ {
+ "type_value": "A String",
+ "$ref": "A String",
+ },
+ ],
+ "discriminant": "A String", # The name of the type discriminant property.
+ },
+ "enumDescriptions": [ # The descriptions for the enums. Each position maps to the corresponding value in the "enum" array.
+ "A String",
+ ],
+ "pattern": "A String", # The regular expression this parameter must conform to. Uses Java 6 regex format: http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
+ "readOnly": True or False, # The value is read-only, generated by the service. The value cannot be modified by the client. If the value is included in a POST, PUT, or PATCH request, it is ignored by the service.
+ "items": # Object with schema name: JsonSchema # If this is a schema for an array, this property is the schema for each element in the array.
+ "maximum": "A String", # The maximum value of this parameter.
+ "location": "A String", # Whether this parameter goes in the query or the path for REST requests.
+ "$ref": "A String", # A reference to another schema. The value of this property is the "id" of another schema.
+ "enum": [ # Values this parameter may take (if it is an enum).
+ "A String",
+ ],
+ "required": True or False, # Whether the parameter is required.
+ "additionalProperties": # Object with schema name: JsonSchema # If this is a schema for an object, this property is the schema for any additional properties with dynamic keys on this object.
+ "annotations": { # Additional information about this property.
+ "required": [ # A list of methods for which this property is required on requests.
+ "A String",
+ ],
+ },
+ "type": "A String", # The value type for this schema. A list of values can be found here: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.1
+ "format": "A String", # An additional regular expression or key that helps constrain the value. For more details see: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.23
+ "id": "A String", # Unique identifier for this schema.
+ "repeated": True or False, # Whether this parameter may appear multiple times.
+ "description": "A String", # A description of this object.
+ },
+ },
+ "mediaUpload": { # Media upload parameters.
+ "maxSize": "A String", # Maximum size of a media upload, such as "1MB", "2GB" or "3TB".
+ "protocols": { # Supported upload protocols.
+ "resumable": { # Supports the Resumable Media Upload protocol.
+ "path": "A String", # The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.
+ "multipart": true, # True if this endpoint supports uploading multipart media.
+ },
+ "simple": { # Supports uploading as a single HTTP request.
+ "multipart": true, # True if this endpoint supports upload multipart media.
+ "path": "A String", # The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.
+ },
+ },
+ "accept": [ # MIME Media Ranges for acceptable media uploads to this method.
+ "A String",
+ ],
+ },
+ "description": "A String", # Description of this method.
+ "path": "A String", # The URI path of this REST method. Should be used in conjunction with the basePath property at the api-level.
+ "request": { # The schema for the request.
+ "$ref": "A String", # Schema ID for the request schema.
+ "parameterName": "A String", # parameter name.
+ },
+ "useMediaDownloadService": True or False, # Indicates that downloads from this method should use the download service URL (i.e. "/download"). Only applies if the method supports media download.
+ "httpMethod": "A String", # HTTP method used by this method.
+ "supportsMediaDownload": True or False, # Whether this method supports media downloads.
+ "etagRequired": True or False, # Whether this method requires an ETag to be specified. The ETag is sent as an HTTP If-Match or If-None-Match header.
+ "id": "A String", # A unique ID for this method. This property can be used to match methods between different versions of Discovery.
+ "scopes": [ # OAuth 2.0 scopes applicable to this method.
+ "A String",
+ ],
+ "supportsSubscription": True or False, # Whether this method supports subscriptions.
+ "supportsMediaUpload": True or False, # Whether this method supports media uploads.
+ "parameterOrder": [ # Ordered list of required parameters, serves as a hint to clients on how to structure their method signatures. The array is ordered such that the "most-significant" parameter appears first.
+ "A String",
+ ],
+ },
+ },
+ "id": "A String", # The ID of this API.
+ "rootUrl": "A String", # The root URL under which all API services live.
+ "features": [ # A list of supported features for this API.
+ "A String",
+ ],
+ "documentationLink": "A String", # A link to human readable documentation for the API.
+ "labels": [ # Labels for the status of this API, such as labs or deprecated.
+ "A String",
+ ],
+ "canonicalName": "A String", # Indicates how the API name should be capitalized and split into various parts. Useful for generating pretty class names.
+ "name": "A String", # The name of this API.
+ "packagePath": "A String", # The package of the owner of this API. See ownerDomain.
+ "etag": "A String", # The ETag for this response.
+ "exponentialBackoffDefault": True or False, # Enable exponential backoff for suitable methods in the generated clients.
+ "revision": "A String", # The version of this API.
+ "schemas": { # The schemas for this API.
+ "a_key": { # An individual schema description.
+ "minimum": "A String", # The minimum value of this parameter.
+ "default": "A String", # The default value of this property (if one exists).
+ "properties": { # If this is a schema for an object, list the schema for each property of this object.
+ "a_key": # Object with schema name: JsonSchema # A single property of this object. The value is itself a JSON Schema object describing this property.
+ },
+ "variant": { # In a variant data type, the value of one property is used to determine how to interpret the entire entity. Its value must exist in a map of descriminant values to schema names.
+ "map": [ # The map of discriminant value to schema to use for parsing..
+ {
+ "type_value": "A String",
+ "$ref": "A String",
+ },
+ ],
+ "discriminant": "A String", # The name of the type discriminant property.
+ },
+ "enumDescriptions": [ # The descriptions for the enums. Each position maps to the corresponding value in the "enum" array.
+ "A String",
+ ],
+ "pattern": "A String", # The regular expression this parameter must conform to. Uses Java 6 regex format: http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
+ "readOnly": True or False, # The value is read-only, generated by the service. The value cannot be modified by the client. If the value is included in a POST, PUT, or PATCH request, it is ignored by the service.
+ "items": # Object with schema name: JsonSchema # If this is a schema for an array, this property is the schema for each element in the array.
+ "maximum": "A String", # The maximum value of this parameter.
+ "location": "A String", # Whether this parameter goes in the query or the path for REST requests.
+ "$ref": "A String", # A reference to another schema. The value of this property is the "id" of another schema.
+ "enum": [ # Values this parameter may take (if it is an enum).
+ "A String",
+ ],
+ "required": True or False, # Whether the parameter is required.
+ "additionalProperties": # Object with schema name: JsonSchema # If this is a schema for an object, this property is the schema for any additional properties with dynamic keys on this object.
+ "annotations": { # Additional information about this property.
+ "required": [ # A list of methods for which this property is required on requests.
+ "A String",
+ ],
+ },
+ "type": "A String", # The value type for this schema. A list of values can be found here: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.1
+ "format": "A String", # An additional regular expression or key that helps constrain the value. For more details see: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.23
+ "id": "A String", # Unique identifier for this schema.
+ "repeated": True or False, # Whether this parameter may appear multiple times.
+ "description": "A String", # A description of this object.
+ },
+ },
+ "kind": "discovery#restDescription", # The kind for this response.
+ "version": "A String", # The version of this API.
+ "servicePath": "A String", # The base path for all REST requests.
+ "title": "A String", # The title of this API.
+ "ownerName": "A String", # The name of the owner of this API. See ownerDomain.
+ "discoveryVersion": "v1", # Indicate the version of the Discovery API used to generate this doc.
+ "protocol": "rest", # The protocol described by this document.
+ "resources": { # The resources in this API.
+ "a_key": { # An individual resource description. Contains methods and sub-resources related to this resource.
+ "resources": { # Sub-resources on this resource.
+ "a_key": # Object with schema name: RestResource # Description for any sub-resources on this resource.
+ },
+ "methods": { # Methods on this resource.
+ "a_key": { # Description for any methods on this resource.
+ "response": { # The schema for the response.
+ "$ref": "A String", # Schema ID for the response schema.
+ },
+ "parameters": { # Details for all parameters in this method.
+ "a_key": { # Details for a single parameter in this method.
+ "minimum": "A String", # The minimum value of this parameter.
+ "default": "A String", # The default value of this property (if one exists).
+ "properties": { # If this is a schema for an object, list the schema for each property of this object.
+ "a_key": # Object with schema name: JsonSchema # A single property of this object. The value is itself a JSON Schema object describing this property.
+ },
+ "variant": { # In a variant data type, the value of one property is used to determine how to interpret the entire entity. Its value must exist in a map of descriminant values to schema names.
+ "map": [ # The map of discriminant value to schema to use for parsing..
+ {
+ "type_value": "A String",
+ "$ref": "A String",
+ },
+ ],
+ "discriminant": "A String", # The name of the type discriminant property.
+ },
+ "enumDescriptions": [ # The descriptions for the enums. Each position maps to the corresponding value in the "enum" array.
+ "A String",
+ ],
+ "pattern": "A String", # The regular expression this parameter must conform to. Uses Java 6 regex format: http://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html
+ "readOnly": True or False, # The value is read-only, generated by the service. The value cannot be modified by the client. If the value is included in a POST, PUT, or PATCH request, it is ignored by the service.
+ "items": # Object with schema name: JsonSchema # If this is a schema for an array, this property is the schema for each element in the array.
+ "maximum": "A String", # The maximum value of this parameter.
+ "location": "A String", # Whether this parameter goes in the query or the path for REST requests.
+ "$ref": "A String", # A reference to another schema. The value of this property is the "id" of another schema.
+ "enum": [ # Values this parameter may take (if it is an enum).
+ "A String",
+ ],
+ "required": True or False, # Whether the parameter is required.
+ "additionalProperties": # Object with schema name: JsonSchema # If this is a schema for an object, this property is the schema for any additional properties with dynamic keys on this object.
+ "annotations": { # Additional information about this property.
+ "required": [ # A list of methods for which this property is required on requests.
+ "A String",
+ ],
+ },
+ "type": "A String", # The value type for this schema. A list of values can be found here: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.1
+ "format": "A String", # An additional regular expression or key that helps constrain the value. For more details see: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.23
+ "id": "A String", # Unique identifier for this schema.
+ "repeated": True or False, # Whether this parameter may appear multiple times.
+ "description": "A String", # A description of this object.
+ },
+ },
+ "mediaUpload": { # Media upload parameters.
+ "maxSize": "A String", # Maximum size of a media upload, such as "1MB", "2GB" or "3TB".
+ "protocols": { # Supported upload protocols.
+ "resumable": { # Supports the Resumable Media Upload protocol.
+ "path": "A String", # The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.
+ "multipart": true, # True if this endpoint supports uploading multipart media.
+ },
+ "simple": { # Supports uploading as a single HTTP request.
+ "multipart": true, # True if this endpoint supports upload multipart media.
+ "path": "A String", # The URI path to be used for upload. Should be used in conjunction with the basePath property at the api-level.
+ },
+ },
+ "accept": [ # MIME Media Ranges for acceptable media uploads to this method.
+ "A String",
+ ],
+ },
+ "description": "A String", # Description of this method.
+ "path": "A String", # The URI path of this REST method. Should be used in conjunction with the basePath property at the api-level.
+ "request": { # The schema for the request.
+ "$ref": "A String", # Schema ID for the request schema.
+ "parameterName": "A String", # parameter name.
+ },
+ "useMediaDownloadService": True or False, # Indicates that downloads from this method should use the download service URL (i.e. "/download"). Only applies if the method supports media download.
+ "httpMethod": "A String", # HTTP method used by this method.
+ "supportsMediaDownload": True or False, # Whether this method supports media downloads.
+ "etagRequired": True or False, # Whether this method requires an ETag to be specified. The ETag is sent as an HTTP If-Match or If-None-Match header.
+ "id": "A String", # A unique ID for this method. This property can be used to match methods between different versions of Discovery.
+ "scopes": [ # OAuth 2.0 scopes applicable to this method.
+ "A String",
+ ],
+ "supportsSubscription": True or False, # Whether this method supports subscriptions.
+ "supportsMediaUpload": True or False, # Whether this method supports media uploads.
+ "parameterOrder": [ # Ordered list of required parameters, serves as a hint to clients on how to structure their method signatures. The array is ordered such that the "most-significant" parameter appears first.
+ "A String",
+ ],
+ },
+ },
+ },
+ },
+ "description": "A String", # The description of this API.
+ "version_module": True or False,
}</pre>
</div>
@@ -420,23 +420,23 @@
"discoveryVersion": "v1", # Indicate the version of the Discovery API used to generate this doc.
"items": [ # The individual directory entries. One entry per api/version pair.
{
- "kind": "discovery#directoryItem", # The kind for this response.
- "title": "A String", # The title of this API.
+ "id": "A String", # The id of this API.
"discoveryRestUrl": "A String", # The URL for the discovery REST document.
+ "discoveryLink": "A String", # A link to the discovery document.
+ "preferred": True or False, # True if this version is the preferred version to use.
+ "title": "A String", # The title of this API.
+ "version": "A String", # The version of the API.
"icons": { # Links to 16x16 and 32x32 icons representing the API.
- "x32": "A String", # The URL of the 32x32 icon.
"x16": "A String", # The URL of the 16x16 icon.
+ "x32": "A String", # The URL of the 32x32 icon.
},
- "documentationLink": "A String", # A link to human readable documentation for the API.
+ "kind": "discovery#directoryItem", # The kind for this response.
"labels": [ # Labels for the status of this API, such as labs or deprecated.
"A String",
],
- "discoveryLink": "A String", # A link to the discovery document.
- "preferred": True or False, # True if this version is the preferred version to use.
"description": "A String", # The description of this API.
"name": "A String", # The name of the API.
- "id": "A String", # The id of this API.
- "version": "A String", # The version of the API.
+ "documentationLink": "A String", # A link to human readable documentation for the API.
},
],
}</pre>