google-apis-ml_v1 0.6.0 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/lib/google/apis/ml_v1/classes.rb +31 -0
- data/lib/google/apis/ml_v1/gem_version.rb +3 -3
- data/lib/google/apis/ml_v1/representations.rb +4 -0
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a1dd6cceda232a9f410f2fe11caa331c82412bb326f0b731f9353da7f2a75c7
|
4
|
+
data.tar.gz: c42604eb42531b90d9b15bdedc2197a3f20e90be1b90c2608a7dbfc1fa797da4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46c42309b8ebbb5459357835061fb26251898dc481ac5460e654241ca5fa265364933b9cc16ac178ce727aa69727b2e9c90c080cf0872321707e53d526a256ee
|
7
|
+
data.tar.gz: 5f20c1e1fa93e9613cac943f288e3fe57aee6cdccaf3e7fc08b88df95c374c6ce799a0cf826dc1c892a5e9a7e01bca529f23fd787611ff2158f29ea4b7ab6aa4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-ml_v1
|
2
2
|
|
3
|
+
### v0.10.0 (2021-07-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210709
|
6
|
+
|
7
|
+
### v0.9.0 (2021-06-29)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.4.0
|
10
|
+
|
11
|
+
### v0.8.0 (2021-06-24)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210611
|
14
|
+
* Regenerated using generator version 0.3.0
|
15
|
+
|
16
|
+
### v0.7.0 (2021-05-19)
|
17
|
+
|
18
|
+
* Unspecified changes
|
19
|
+
|
3
20
|
### v0.6.0 (2021-04-01)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20210326
|
@@ -1208,6 +1208,13 @@ module Google
|
|
1208
1208
|
# @return [String]
|
1209
1209
|
attr_accessor :trial_id
|
1210
1210
|
|
1211
|
+
# The web URIs for the training job. Currently for debug terminal access to the
|
1212
|
+
# job. Only set for in-progress hyperparameter tuning trials with web access
|
1213
|
+
# enabled.
|
1214
|
+
# Corresponds to the JSON property `webAccessUris`
|
1215
|
+
# @return [Hash<String,String>]
|
1216
|
+
attr_accessor :web_access_uris
|
1217
|
+
|
1211
1218
|
def initialize(**args)
|
1212
1219
|
update!(**args)
|
1213
1220
|
end
|
@@ -1223,6 +1230,7 @@ module Google
|
|
1223
1230
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1224
1231
|
@state = args[:state] if args.key?(:state)
|
1225
1232
|
@trial_id = args[:trial_id] if args.key?(:trial_id)
|
1233
|
+
@web_access_uris = args[:web_access_uris] if args.key?(:web_access_uris)
|
1226
1234
|
end
|
1227
1235
|
end
|
1228
1236
|
|
@@ -2367,6 +2375,14 @@ module Google
|
|
2367
2375
|
# @return [String]
|
2368
2376
|
attr_accessor :max_wait_time
|
2369
2377
|
|
2378
|
+
# Optional. Job scheduling will be based on this priority, which in the range [0,
|
2379
|
+
# 1000]. The bigger the number, the higher the priority. Default to 0 if not
|
2380
|
+
# set. If there are multiple jobs requesting same type of accelerators, the high
|
2381
|
+
# priority job will be scheduled prior to ones with low priority.
|
2382
|
+
# Corresponds to the JSON property `priority`
|
2383
|
+
# @return [Fixnum]
|
2384
|
+
attr_accessor :priority
|
2385
|
+
|
2370
2386
|
def initialize(**args)
|
2371
2387
|
update!(**args)
|
2372
2388
|
end
|
@@ -2375,6 +2391,7 @@ module Google
|
|
2375
2391
|
def update!(**args)
|
2376
2392
|
@max_running_time = args[:max_running_time] if args.key?(:max_running_time)
|
2377
2393
|
@max_wait_time = args[:max_wait_time] if args.key?(:max_wait_time)
|
2394
|
+
@priority = args[:priority] if args.key?(:priority)
|
2378
2395
|
end
|
2379
2396
|
end
|
2380
2397
|
|
@@ -2605,6 +2622,12 @@ module Google
|
|
2605
2622
|
# @return [Array<String>]
|
2606
2623
|
attr_accessor :args
|
2607
2624
|
|
2625
|
+
# Optional. Whether to enable web access for the training job.
|
2626
|
+
# Corresponds to the JSON property `enableWebAccess`
|
2627
|
+
# @return [Boolean]
|
2628
|
+
attr_accessor :enable_web_access
|
2629
|
+
alias_method :enable_web_access?, :enable_web_access
|
2630
|
+
|
2608
2631
|
# Represents a custom encryption key configuration that can be applied to a
|
2609
2632
|
# resource.
|
2610
2633
|
# Corresponds to the JSON property `encryptionConfig`
|
@@ -2808,6 +2831,7 @@ module Google
|
|
2808
2831
|
# Update properties of this object
|
2809
2832
|
def update!(**args)
|
2810
2833
|
@args = args[:args] if args.key?(:args)
|
2834
|
+
@enable_web_access = args[:enable_web_access] if args.key?(:enable_web_access)
|
2811
2835
|
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
2812
2836
|
@evaluator_config = args[:evaluator_config] if args.key?(:evaluator_config)
|
2813
2837
|
@evaluator_count = args[:evaluator_count] if args.key?(:evaluator_count)
|
@@ -2881,6 +2905,12 @@ module Google
|
|
2881
2905
|
# @return [Array<Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutput>]
|
2882
2906
|
attr_accessor :trials
|
2883
2907
|
|
2908
|
+
# Output only. The web URIs for the training job. Currently for debug terminal
|
2909
|
+
# access to the job.
|
2910
|
+
# Corresponds to the JSON property `webAccessUris`
|
2911
|
+
# @return [Hash<String,String>]
|
2912
|
+
attr_accessor :web_access_uris
|
2913
|
+
|
2884
2914
|
def initialize(**args)
|
2885
2915
|
update!(**args)
|
2886
2916
|
end
|
@@ -2894,6 +2924,7 @@ module Google
|
|
2894
2924
|
@is_built_in_algorithm_job = args[:is_built_in_algorithm_job] if args.key?(:is_built_in_algorithm_job)
|
2895
2925
|
@is_hyperparameter_tuning_job = args[:is_hyperparameter_tuning_job] if args.key?(:is_hyperparameter_tuning_job)
|
2896
2926
|
@trials = args[:trials] if args.key?(:trials)
|
2927
|
+
@web_access_uris = args[:web_access_uris] if args.key?(:web_access_uris)
|
2897
2928
|
end
|
2898
2929
|
end
|
2899
2930
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MlV1
|
18
18
|
# Version of the google-apis-ml_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.10.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210709"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -860,6 +860,7 @@ module Google
|
|
860
860
|
property :start_time, as: 'startTime'
|
861
861
|
property :state, as: 'state'
|
862
862
|
property :trial_id, as: 'trialId'
|
863
|
+
hash :web_access_uris, as: 'webAccessUris'
|
863
864
|
end
|
864
865
|
end
|
865
866
|
|
@@ -1130,6 +1131,7 @@ module Google
|
|
1130
1131
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1131
1132
|
property :max_running_time, as: 'maxRunningTime'
|
1132
1133
|
property :max_wait_time, as: 'maxWaitTime'
|
1134
|
+
property :priority, as: 'priority'
|
1133
1135
|
end
|
1134
1136
|
end
|
1135
1137
|
|
@@ -1203,6 +1205,7 @@ module Google
|
|
1203
1205
|
# @private
|
1204
1206
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1205
1207
|
collection :args, as: 'args'
|
1208
|
+
property :enable_web_access, as: 'enableWebAccess'
|
1206
1209
|
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::MlV1::GoogleCloudMlV1EncryptionConfig, decorator: Google::Apis::MlV1::GoogleCloudMlV1EncryptionConfig::Representation
|
1207
1210
|
|
1208
1211
|
property :evaluator_config, as: 'evaluatorConfig', class: Google::Apis::MlV1::GoogleCloudMlV1ReplicaConfig, decorator: Google::Apis::MlV1::GoogleCloudMlV1ReplicaConfig::Representation
|
@@ -1249,6 +1252,7 @@ module Google
|
|
1249
1252
|
property :is_hyperparameter_tuning_job, as: 'isHyperparameterTuningJob'
|
1250
1253
|
collection :trials, as: 'trials', class: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutput, decorator: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutput::Representation
|
1251
1254
|
|
1255
|
+
hash :web_access_uris, as: 'webAccessUris'
|
1252
1256
|
end
|
1253
1257
|
end
|
1254
1258
|
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-ml_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for AI Platform Training & Prediction
|
28
34
|
API V1. Simple REST clients are Ruby client libraries that provide access to Google
|
29
35
|
services via their HTTP REST API endpoints. These libraries are generated and updated
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-ml_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.10.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-ml_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for AI Platform Training & Prediction API V1
|