google-apis-ml_v1 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/ml_v1/classes.rb +22 -0
- data/lib/google/apis/ml_v1/gem_version.rb +3 -3
- data/lib/google/apis/ml_v1/representations.rb +3 -0
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c63d0ffab8825279098624ef94a2bfcde691a9fa7ad62b5360812951d271899
|
4
|
+
data.tar.gz: a9947300ac93bc89763851af92fd8f4f3e863391ac4ac14f5ab67ae19bb221aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1865ded9aa0cbfc83c3762d2f54ebb25f0986129c0ad7285825af816358bc40889daf64849d7bd338cad93ebb2e9bf4a103aa240fb087d96902c4490ce771c69
|
7
|
+
data.tar.gz: 9081345a031cc74c8298380df127f834efd2505c2994363b797db2e4373c07005eb2cc554125b19d0f1bf9cf9d0d3bfab350b398c6564639e792830eb4fdd1e6
|
data/CHANGELOG.md
CHANGED
@@ -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
|
|
@@ -2605,6 +2613,12 @@ module Google
|
|
2605
2613
|
# @return [Array<String>]
|
2606
2614
|
attr_accessor :args
|
2607
2615
|
|
2616
|
+
# Optional. Whether to enable web access for the training job.
|
2617
|
+
# Corresponds to the JSON property `enableWebAccess`
|
2618
|
+
# @return [Boolean]
|
2619
|
+
attr_accessor :enable_web_access
|
2620
|
+
alias_method :enable_web_access?, :enable_web_access
|
2621
|
+
|
2608
2622
|
# Represents a custom encryption key configuration that can be applied to a
|
2609
2623
|
# resource.
|
2610
2624
|
# Corresponds to the JSON property `encryptionConfig`
|
@@ -2808,6 +2822,7 @@ module Google
|
|
2808
2822
|
# Update properties of this object
|
2809
2823
|
def update!(**args)
|
2810
2824
|
@args = args[:args] if args.key?(:args)
|
2825
|
+
@enable_web_access = args[:enable_web_access] if args.key?(:enable_web_access)
|
2811
2826
|
@encryption_config = args[:encryption_config] if args.key?(:encryption_config)
|
2812
2827
|
@evaluator_config = args[:evaluator_config] if args.key?(:evaluator_config)
|
2813
2828
|
@evaluator_count = args[:evaluator_count] if args.key?(:evaluator_count)
|
@@ -2881,6 +2896,12 @@ module Google
|
|
2881
2896
|
# @return [Array<Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutput>]
|
2882
2897
|
attr_accessor :trials
|
2883
2898
|
|
2899
|
+
# Output only. The web URIs for the training job. Currently for debug terminal
|
2900
|
+
# access to the job.
|
2901
|
+
# Corresponds to the JSON property `webAccessUris`
|
2902
|
+
# @return [Hash<String,String>]
|
2903
|
+
attr_accessor :web_access_uris
|
2904
|
+
|
2884
2905
|
def initialize(**args)
|
2885
2906
|
update!(**args)
|
2886
2907
|
end
|
@@ -2894,6 +2915,7 @@ module Google
|
|
2894
2915
|
@is_built_in_algorithm_job = args[:is_built_in_algorithm_job] if args.key?(:is_built_in_algorithm_job)
|
2895
2916
|
@is_hyperparameter_tuning_job = args[:is_hyperparameter_tuning_job] if args.key?(:is_hyperparameter_tuning_job)
|
2896
2917
|
@trials = args[:trials] if args.key?(:trials)
|
2918
|
+
@web_access_uris = args[:web_access_uris] if args.key?(:web_access_uris)
|
2897
2919
|
end
|
2898
2920
|
end
|
2899
2921
|
|
@@ -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.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210611"
|
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
|
|
@@ -1203,6 +1204,7 @@ module Google
|
|
1203
1204
|
# @private
|
1204
1205
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1205
1206
|
collection :args, as: 'args'
|
1207
|
+
property :enable_web_access, as: 'enableWebAccess'
|
1206
1208
|
property :encryption_config, as: 'encryptionConfig', class: Google::Apis::MlV1::GoogleCloudMlV1EncryptionConfig, decorator: Google::Apis::MlV1::GoogleCloudMlV1EncryptionConfig::Representation
|
1207
1209
|
|
1208
1210
|
property :evaluator_config, as: 'evaluatorConfig', class: Google::Apis::MlV1::GoogleCloudMlV1ReplicaConfig, decorator: Google::Apis::MlV1::GoogleCloudMlV1ReplicaConfig::Representation
|
@@ -1249,6 +1251,7 @@ module Google
|
|
1249
1251
|
property :is_hyperparameter_tuning_job, as: 'isHyperparameterTuningJob'
|
1250
1252
|
collection :trials, as: 'trials', class: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutput, decorator: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutput::Representation
|
1251
1253
|
|
1254
|
+
hash :web_access_uris, as: 'webAccessUris'
|
1252
1255
|
end
|
1253
1256
|
end
|
1254
1257
|
|
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.8.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-06-28 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.3'
|
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.3'
|
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.8.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: []
|