google-apis-ml_v1 0.8.0 → 0.12.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: 6c63d0ffab8825279098624ef94a2bfcde691a9fa7ad62b5360812951d271899
4
- data.tar.gz: a9947300ac93bc89763851af92fd8f4f3e863391ac4ac14f5ab67ae19bb221aa
3
+ metadata.gz: b3ce935bdfe3343af515d39dca132662e94b80a4227da66ee4f385ed1dc6e59b
4
+ data.tar.gz: 499396194b1d5f1b226f873d61fd58151c64d00b9b89aa55435fb53f12657670
5
5
  SHA512:
6
- metadata.gz: 1865ded9aa0cbfc83c3762d2f54ebb25f0986129c0ad7285825af816358bc40889daf64849d7bd338cad93ebb2e9bf4a103aa240fb087d96902c4490ce771c69
7
- data.tar.gz: 9081345a031cc74c8298380df127f834efd2505c2994363b797db2e4373c07005eb2cc554125b19d0f1bf9cf9d0d3bfab350b398c6564639e792830eb4fdd1e6
6
+ metadata.gz: 1ca75094a000d0ecde715dfec43071b80fcf7aa601a744933fca8db1bb8b241aa5e75faafb569eba7fe146a3f9e2248b543dbeb45e3730d9e0ddedbf3662cc63
7
+ data.tar.gz: bbdb10aaf4353d8768a23b09600f686e77a1e9fbfd7bd5665d613bb9c5ccbbc74da449e97d9b30d255d3d9f0e8c390ffa6bff4dd5d6a875223be841e25f6ff90
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-ml_v1
2
2
 
3
+ ### v0.12.0 (2021-08-18)
4
+
5
+ * Regenerated from discovery document revision 20210806
6
+
7
+ ### v0.11.0 (2021-08-03)
8
+
9
+ * Regenerated from discovery document revision 20210729
10
+
11
+ ### v0.10.0 (2021-07-20)
12
+
13
+ * Regenerated from discovery document revision 20210709
14
+
15
+ ### v0.9.0 (2021-06-29)
16
+
17
+ * Regenerated using generator version 0.4.0
18
+
3
19
  ### v0.8.0 (2021-06-24)
4
20
 
5
21
  * Regenerated from discovery document revision 20210611
@@ -29,10 +29,10 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1'
31
31
 
32
- # See, edit, configure, and delete your Google Cloud Platform data
32
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
 
35
- # View your data across Google Cloud Platform services
35
+ # View your data across Google Cloud services and see the email address of your Google Account
36
36
  AUTH_CLOUD_PLATFORM_READ_ONLY = 'https://www.googleapis.com/auth/cloud-platform.read-only'
37
37
  end
38
38
  end
@@ -1208,9 +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.
1211
+ # URIs for accessing [interactive shells](https://cloud.google.com/ai-platform/
1212
+ # training/docs/monitor-debug-interactive-shell) (one URI for each training node)
1213
+ # . Only available if this trial is part of a hyperparameter tuning job and the
1214
+ # job's training_input.enable_web_access is `true`. The keys are names of each
1215
+ # node in the training job; for example, `master-replica-0` for the master node,
1216
+ # `worker-replica-0` for the first worker, and `ps-replica-0` for the first
1217
+ # parameter server. The values are the URIs for each node's interactive shell.
1214
1218
  # Corresponds to the JSON property `webAccessUris`
1215
1219
  # @return [Hash<String,String>]
1216
1220
  attr_accessor :web_access_uris
@@ -2375,6 +2379,14 @@ module Google
2375
2379
  # @return [String]
2376
2380
  attr_accessor :max_wait_time
2377
2381
 
2382
+ # Optional. Job scheduling will be based on this priority, which in the range [0,
2383
+ # 1000]. The bigger the number, the higher the priority. Default to 0 if not
2384
+ # set. If there are multiple jobs requesting same type of accelerators, the high
2385
+ # priority job will be scheduled prior to ones with low priority.
2386
+ # Corresponds to the JSON property `priority`
2387
+ # @return [Fixnum]
2388
+ attr_accessor :priority
2389
+
2378
2390
  def initialize(**args)
2379
2391
  update!(**args)
2380
2392
  end
@@ -2383,6 +2395,7 @@ module Google
2383
2395
  def update!(**args)
2384
2396
  @max_running_time = args[:max_running_time] if args.key?(:max_running_time)
2385
2397
  @max_wait_time = args[:max_wait_time] if args.key?(:max_wait_time)
2398
+ @priority = args[:priority] if args.key?(:priority)
2386
2399
  end
2387
2400
  end
2388
2401
 
@@ -2613,7 +2626,11 @@ module Google
2613
2626
  # @return [Array<String>]
2614
2627
  attr_accessor :args
2615
2628
 
2616
- # Optional. Whether to enable web access for the training job.
2629
+ # Optional. Whether you want AI Platform Training to enable [interactive shell
2630
+ # access](https://cloud.google.com/ai-platform/training/docs/monitor-debug-
2631
+ # interactive-shell) to training containers. If set to `true`, you can access
2632
+ # interactive shells at the URIs given by TrainingOutput.web_access_uris or
2633
+ # HyperparameterOutput.web_access_uris (within TrainingOutput.trials).
2617
2634
  # Corresponds to the JSON property `enableWebAccess`
2618
2635
  # @return [Boolean]
2619
2636
  attr_accessor :enable_web_access
@@ -2896,8 +2913,13 @@ module Google
2896
2913
  # @return [Array<Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutput>]
2897
2914
  attr_accessor :trials
2898
2915
 
2899
- # Output only. The web URIs for the training job. Currently for debug terminal
2900
- # access to the job.
2916
+ # Output only. URIs for accessing [interactive shells](https://cloud.google.com/
2917
+ # ai-platform/training/docs/monitor-debug-interactive-shell) (one URI for each
2918
+ # training node). Only available if training_input.enable_web_access is `true`.
2919
+ # The keys are names of each node in the training job; for example, `master-
2920
+ # replica-0` for the master node, `worker-replica-0` for the first worker, and `
2921
+ # ps-replica-0` for the first parameter server. The values are the URIs for each
2922
+ # node's interactive shell.
2901
2923
  # Corresponds to the JSON property `webAccessUris`
2902
2924
  # @return [Hash<String,String>]
2903
2925
  attr_accessor :web_access_uris
@@ -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.8.0"
19
+ GEM_VERSION = "0.12.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210611"
25
+ REVISION = "20210806"
26
26
  end
27
27
  end
28
28
  end
@@ -1131,6 +1131,7 @@ module Google
1131
1131
  class Representation < Google::Apis::Core::JsonRepresentation
1132
1132
  property :max_running_time, as: 'maxRunningTime'
1133
1133
  property :max_wait_time, as: 'maxWaitTime'
1134
+ property :priority, as: 'priority'
1134
1135
  end
1135
1136
  end
1136
1137
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-ml_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.12.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-06-28 00:00:00.000000000 Z
11
+ date: 2021-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-ml_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.12.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-ml_v1
63
63
  post_install_message:
64
64
  rdoc_options: []