google-apis-ml_v1 0.10.0 → 0.14.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: 3a1dd6cceda232a9f410f2fe11caa331c82412bb326f0b731f9353da7f2a75c7
4
- data.tar.gz: c42604eb42531b90d9b15bdedc2197a3f20e90be1b90c2608a7dbfc1fa797da4
3
+ metadata.gz: 214e0a9a0c30aadf1a678580804eed17dd6a502cd9603ce2915c507c0a0bd5f2
4
+ data.tar.gz: 1523679f1844cced086c5145c43afeca42da1252b2a64c6f76f8a3c97feaf9e7
5
5
  SHA512:
6
- metadata.gz: 46c42309b8ebbb5459357835061fb26251898dc481ac5460e654241ca5fa265364933b9cc16ac178ce727aa69727b2e9c90c080cf0872321707e53d526a256ee
7
- data.tar.gz: 5f20c1e1fa93e9613cac943f288e3fe57aee6cdccaf3e7fc08b88df95c374c6ce799a0cf826dc1c892a5e9a7e01bca529f23fd787611ff2158f29ea4b7ab6aa4
6
+ metadata.gz: 714e7d2c029d7a35646606e147c5c1bf9d868a06fe78c3098c165348bf0a24d1711b515319815518c2982a409d79e6db2ca58c36f66b733a90fb02395c67d29b
7
+ data.tar.gz: 3a4fb19571565eab5848f23b2c206405df696523759a79cc1163c458d00d23c70d5c76d97ea7885e792df8c756f70f1aba5f977d89fc91153bbab9a49f79644c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-ml_v1
2
2
 
3
+ ### v0.14.0 (2021-10-21)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.13.0 (2021-08-25)
8
+
9
+ * Regenerated from discovery document revision 20210816
10
+
11
+ ### v0.12.0 (2021-08-18)
12
+
13
+ * Regenerated from discovery document revision 20210806
14
+
15
+ ### v0.11.0 (2021-08-03)
16
+
17
+ * Regenerated from discovery document revision 20210729
18
+
3
19
  ### v0.10.0 (2021-07-20)
4
20
 
5
21
  * Regenerated from discovery document revision 20210709
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Ml service in particular.)
67
67
 
@@ -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
@@ -2622,7 +2626,11 @@ module Google
2622
2626
  # @return [Array<String>]
2623
2627
  attr_accessor :args
2624
2628
 
2625
- # 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).
2626
2634
  # Corresponds to the JSON property `enableWebAccess`
2627
2635
  # @return [Boolean]
2628
2636
  attr_accessor :enable_web_access
@@ -2905,8 +2913,13 @@ module Google
2905
2913
  # @return [Array<Google::Apis::MlV1::GoogleCloudMlV1HyperparameterOutput>]
2906
2914
  attr_accessor :trials
2907
2915
 
2908
- # Output only. The web URIs for the training job. Currently for debug terminal
2909
- # 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.
2910
2923
  # Corresponds to the JSON property `webAccessUris`
2911
2924
  # @return [Hash<String,String>]
2912
2925
  attr_accessor :web_access_uris
@@ -3475,7 +3488,7 @@ module Google
3475
3488
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
3476
3489
  # roles/resourcemanager.organizationViewer condition: title: expirable access
3477
3490
  # description: Does not grant access after Sep 2020 expression: request.time <
3478
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
3491
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
3479
3492
  # description of IAM and its features, see the [IAM documentation](https://cloud.
3480
3493
  # google.com/iam/docs/).
3481
3494
  class GoogleIamV1Policy
@@ -3569,7 +3582,7 @@ module Google
3569
3582
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
3570
3583
  # roles/resourcemanager.organizationViewer condition: title: expirable access
3571
3584
  # description: Does not grant access after Sep 2020 expression: request.time <
3572
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
3585
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
3573
3586
  # description of IAM and its features, see the [IAM documentation](https://cloud.
3574
3587
  # google.com/iam/docs/).
3575
3588
  # Corresponds to the JSON property `policy`
@@ -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.10.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210709"
25
+ REVISION = "20210816"
26
26
  end
27
27
  end
28
28
  end
@@ -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
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.10.0
4
+ version: 0.14.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-07-26 00:00:00.000000000 Z
11
+ date: 2021-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
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.10.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-ml_v1
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ml_v1/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-ml_v1/v0.14.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-ml_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: