google-apis-ml_v1 0.4.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 221295bd02b5bbb241d6f818d0a09104061652eb1c6b5d1dd1366cc4496c9117
4
- data.tar.gz: 8036a0837fd7f4e97bb3c9ba704c411512cbcaa51734b062061b92dfa3d72fbf
3
+ metadata.gz: 8c7a99c5da518a0043fe86d3bc921110d7d4273fe0a21d1212c5862c89035758
4
+ data.tar.gz: c1a68859b016245b89fac89f38f1fb3da6faabd33938ad2b2d9711f6b364d155
5
5
  SHA512:
6
- metadata.gz: 4180a093f01ae3f8e100cba07dd276ada4a09762ba3f651de336a43b92c43d393d2189c14a2f8962abe1a5cf9d67dc282752c576659583dfbce60f66a179805d
7
- data.tar.gz: e061f382da57ca1961117f99669207c5437e351186380ec6f48e307664066293fc96f3f78da98326efeda5dad8b432fec463fe381e49c21425b4731e7bfef95d
6
+ metadata.gz: 9149a357f9eb8a4489e6c5bb576c8b117b921d7129100222aeef7de0f3806c14bb8d9f4a177ca914b124f54523f9c4933c3b0a760f84c15c35d3c7fc23cf628a
7
+ data.tar.gz: fed5bc02db43e64eb5f0185ca5f36fa77785c77d2224186627a7c30ad08c5ac2cad6bf33374ce025296690cbd0f4944edf8df2a4397f3ec41db53d7d7b7bf2a2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Release history for google-apis-ml_v1
2
2
 
3
+ ### v0.9.0 (2021-06-29)
4
+
5
+ * Regenerated using generator version 0.4.0
6
+
7
+ ### v0.8.0 (2021-06-24)
8
+
9
+ * Regenerated from discovery document revision 20210611
10
+ * Regenerated using generator version 0.3.0
11
+
12
+ ### v0.7.0 (2021-05-19)
13
+
14
+ * Unspecified changes
15
+
16
+ ### v0.6.0 (2021-04-01)
17
+
18
+ * Regenerated from discovery document revision 20210326
19
+ * Regenerated using generator version 0.2.0
20
+
21
+ ### v0.5.0 (2021-03-04)
22
+
23
+ * Unspecified changes
24
+
3
25
  ### v0.4.0 (2021-02-17)
4
26
 
5
27
  * Regenerated from discovery document revision 20210212
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1'
31
31
 
32
- # View and manage your data across Google Cloud Platform services
32
+ # See, edit, configure, and delete your Google Cloud Platform data
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
 
35
35
  # View your data across Google Cloud Platform services
@@ -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.4.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210212"
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.0
4
+ version: 0.9.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-02-22 00:00:00.000000000 Z
11
+ date: 2021-07-05 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.1'
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: '0.1'
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.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.9.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: []
@@ -62,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
68
  requirements:
63
69
  - - ">="
64
70
  - !ruby/object:Gem::Version
65
- version: '2.4'
71
+ version: '2.5'
66
72
  required_rubygems_version: !ruby/object:Gem::Requirement
67
73
  requirements:
68
74
  - - ">="
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  requirements: []
72
- rubygems_version: 3.2.6
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