mirror of
https://github.com/rclone/rclone.git
synced 2025-08-13 15:37:26 +02:00
vendor: update all dependencies
This commit is contained in:
39
vendor/google.golang.org/api/testing/v1/testing-api.json
generated
vendored
39
vendor/google.golang.org/api/testing/v1/testing-api.json
generated
vendored
@ -61,11 +61,6 @@
|
||||
"location": "query",
|
||||
"type": "string"
|
||||
},
|
||||
"bearer_token": {
|
||||
"description": "OAuth bearer token.",
|
||||
"location": "query",
|
||||
"type": "string"
|
||||
},
|
||||
"callback": {
|
||||
"description": "JSONP",
|
||||
"location": "query",
|
||||
@ -86,12 +81,6 @@
|
||||
"location": "query",
|
||||
"type": "string"
|
||||
},
|
||||
"pp": {
|
||||
"default": "true",
|
||||
"description": "Pretty-print response.",
|
||||
"location": "query",
|
||||
"type": "boolean"
|
||||
},
|
||||
"prettyPrint": {
|
||||
"default": "true",
|
||||
"description": "Returns response with indentations and line breaks.",
|
||||
@ -257,7 +246,8 @@
|
||||
"enum": [
|
||||
"ENVIRONMENT_TYPE_UNSPECIFIED",
|
||||
"ANDROID",
|
||||
"NETWORK_CONFIGURATION"
|
||||
"NETWORK_CONFIGURATION",
|
||||
"PROVIDED_SOFTWARE"
|
||||
],
|
||||
"location": "path",
|
||||
"required": true,
|
||||
@ -281,7 +271,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"revision": "20180406",
|
||||
"revision": "20180606",
|
||||
"rootUrl": "https://testing.googleapis.com/",
|
||||
"schemas": {
|
||||
"Account": {
|
||||
@ -1042,6 +1032,17 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"ProvidedSoftwareCatalog": {
|
||||
"description": "The currently provided software environment on the devices under test.",
|
||||
"id": "ProvidedSoftwareCatalog",
|
||||
"properties": {
|
||||
"orchestratorVersion": {
|
||||
"description": "A string representing the current version of Android Test Orchestrator that\nis provided by TestExecutionService. Example: \"1.0.2 beta\"",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"RegularFile": {
|
||||
"description": "A file or directory to install on the device before the test starts",
|
||||
"id": "RegularFile",
|
||||
@ -1173,6 +1174,10 @@
|
||||
"networkConfigurationCatalog": {
|
||||
"$ref": "NetworkConfigurationCatalog",
|
||||
"description": "Supported network configurations"
|
||||
},
|
||||
"softwareCatalog": {
|
||||
"$ref": "ProvidedSoftwareCatalog",
|
||||
"description": "The software test environment provided by TestExecutionService."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@ -1282,7 +1287,9 @@
|
||||
"SCENARIO_NOT_DECLARED",
|
||||
"DEVICE_ADMIN_RECEIVER",
|
||||
"TEST_ONLY_APK",
|
||||
"NO_CODE_APK"
|
||||
"MALFORMED_IPA",
|
||||
"NO_CODE_APK",
|
||||
"INVALID_INPUT_APK"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Do not use. For proto versioning only.",
|
||||
@ -1305,7 +1312,9 @@
|
||||
"The request contains a scenario number that was not declared in the\nmanifest.",
|
||||
"Device administrator applications are not allowed.",
|
||||
"The APK is marked as \"testOnly\".\nNOT USED",
|
||||
"APK contains no code.\nSee also\nhttps://developer.android.com/guide/topics/manifest/application-element.html#code"
|
||||
"The input IPA could not be parsed.\nNOT USED",
|
||||
"APK contains no code.\nSee also\nhttps://developer.android.com/guide/topics/manifest/application-element.html#code",
|
||||
"Either the provided input APK path was malformed,\nthe APK file does not exist, or the user does not have permission to\naccess the APK file."
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
|
46
vendor/google.golang.org/api/testing/v1/testing-gen.go
generated
vendored
46
vendor/google.golang.org/api/testing/v1/testing-gen.go
generated
vendored
@ -1601,6 +1601,38 @@ func (s *Orientation) MarshalJSON() ([]byte, error) {
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// ProvidedSoftwareCatalog: The currently provided software environment
|
||||
// on the devices under test.
|
||||
type ProvidedSoftwareCatalog struct {
|
||||
// OrchestratorVersion: A string representing the current version of
|
||||
// Android Test Orchestrator that
|
||||
// is provided by TestExecutionService. Example: "1.0.2 beta"
|
||||
OrchestratorVersion string `json:"orchestratorVersion,omitempty"`
|
||||
|
||||
// ForceSendFields is a list of field names (e.g. "OrchestratorVersion")
|
||||
// to unconditionally include in API requests. By default, fields with
|
||||
// empty values are omitted from API requests. However, any non-pointer,
|
||||
// non-interface field appearing in ForceSendFields will be sent to the
|
||||
// server regardless of whether the field is empty or not. This may be
|
||||
// used to include empty fields in Patch requests.
|
||||
ForceSendFields []string `json:"-"`
|
||||
|
||||
// NullFields is a list of field names (e.g. "OrchestratorVersion") to
|
||||
// include in API requests with the JSON null value. By default, fields
|
||||
// with empty values are omitted from API requests. However, any field
|
||||
// with an empty value appearing in NullFields will be sent to the
|
||||
// server as null. It is an error if a field in this list has a
|
||||
// non-empty value. This may be used to include null fields in Patch
|
||||
// requests.
|
||||
NullFields []string `json:"-"`
|
||||
}
|
||||
|
||||
func (s *ProvidedSoftwareCatalog) MarshalJSON() ([]byte, error) {
|
||||
type NoMethod ProvidedSoftwareCatalog
|
||||
raw := NoMethod(*s)
|
||||
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
|
||||
}
|
||||
|
||||
// RegularFile: A file or directory to install on the device before the
|
||||
// test starts
|
||||
type RegularFile struct {
|
||||
@ -1889,6 +1921,10 @@ type TestEnvironmentCatalog struct {
|
||||
// NetworkConfigurationCatalog: Supported network configurations
|
||||
NetworkConfigurationCatalog *NetworkConfigurationCatalog `json:"networkConfigurationCatalog,omitempty"`
|
||||
|
||||
// SoftwareCatalog: The software test environment provided by
|
||||
// TestExecutionService.
|
||||
SoftwareCatalog *ProvidedSoftwareCatalog `json:"softwareCatalog,omitempty"`
|
||||
|
||||
// ServerResponse contains the HTTP response code and headers from the
|
||||
// server.
|
||||
googleapi.ServerResponse `json:"-"`
|
||||
@ -2103,11 +2139,18 @@ type TestMatrix struct {
|
||||
// allowed.
|
||||
// "TEST_ONLY_APK" - The APK is marked as "testOnly".
|
||||
// NOT USED
|
||||
// "MALFORMED_IPA" - The input IPA could not be parsed.
|
||||
// NOT USED
|
||||
// "NO_CODE_APK" - APK contains no code.
|
||||
// See
|
||||
// also
|
||||
// https://developer.android.com/guide/topics/manifest/application-e
|
||||
// lement.html#code
|
||||
// "INVALID_INPUT_APK" - Either the provided input APK path was
|
||||
// malformed,
|
||||
// the APK file does not exist, or the user does not have permission
|
||||
// to
|
||||
// access the APK file.
|
||||
InvalidMatrixDetails string `json:"invalidMatrixDetails,omitempty"`
|
||||
|
||||
// ProjectId: The cloud project that owns the test matrix.
|
||||
@ -3258,7 +3301,8 @@ func (c *TestEnvironmentCatalogGetCall) Do(opts ...googleapi.CallOption) (*TestE
|
||||
// "enum": [
|
||||
// "ENVIRONMENT_TYPE_UNSPECIFIED",
|
||||
// "ANDROID",
|
||||
// "NETWORK_CONFIGURATION"
|
||||
// "NETWORK_CONFIGURATION",
|
||||
// "PROVIDED_SOFTWARE"
|
||||
// ],
|
||||
// "location": "path",
|
||||
// "required": true,
|
||||
|
Reference in New Issue
Block a user