google-apis-dataproc_v1 0.58.0 → 0.60.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: 92983eff91ad1c0499abe73d3ec3061db236d420823f624c2d0b0e33cdd59605
4
- data.tar.gz: 253b02e05ae313b90e7dd0285433b5c390e55a92a3664c12c26ffceb99988d32
3
+ metadata.gz: 8de223da3a0afa9d6126b9f409e92bbcd02f376587070b55bd2be88d0b9f38a0
4
+ data.tar.gz: 3960da54ad8bbce88469a4e0e23e1ef9824a1c3fa811bb94f493e7042c1c2f18
5
5
  SHA512:
6
- metadata.gz: 4abdff2993701269ab4f5ad6129f1549c44d0e2aa3d75564082db73d3a2b419c11deacd5fa102be1c0064bb54bb21ade4ed77c2d9a722e7510eaf1858e14d0ee
7
- data.tar.gz: a84639b7c532eee0bc343e2ed7db6268161e407f69578d8d88b336d2dab5bdeff0f9ca004c91ba6a749f98b6b235ebe3fb67a6988026ab5b9757d0bf6592b34d
6
+ metadata.gz: ebc43c93b898093a7efd7e81bd0dbdcffafd86d2d7ca89940ad0e01baaa817460de353ce2e1039137d3d8b05daab610dca37cd36c772dbb7be7c4493cecae261
7
+ data.tar.gz: 9ee78d6f007777ef61344d98e07f533d1916d7c52f0a798d9d0d591bdc6967cd00326bc5f5f89c03586e85bcacc19f00e0e0f0176cd84c9bac6f053f75b07030
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.60.0 (2023-11-19)
4
+
5
+ * Regenerated from discovery document revision 20231109
6
+
7
+ ### v0.59.0 (2023-11-05)
8
+
9
+ * Regenerated from discovery document revision 20231028
10
+
3
11
  ### v0.58.0 (2023-10-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20231019
@@ -1089,6 +1089,12 @@ module Google
1089
1089
  # @return [Array<String>]
1090
1090
  attr_accessor :jobs
1091
1091
 
1092
+ # Optional. (Optional) The access type to the diagnostic tarball. If not
1093
+ # specified, falls back to default access of the bucket
1094
+ # Corresponds to the JSON property `tarballAccess`
1095
+ # @return [String]
1096
+ attr_accessor :tarball_access
1097
+
1092
1098
  # Optional. (Optional) The output Cloud Storage directory for the diagnostic
1093
1099
  # tarball. If not specified, a task-specific directory in the cluster's staging
1094
1100
  # bucket will be used.
@@ -1117,6 +1123,7 @@ module Google
1117
1123
  @diagnosis_interval = args[:diagnosis_interval] if args.key?(:diagnosis_interval)
1118
1124
  @job = args[:job] if args.key?(:job)
1119
1125
  @jobs = args[:jobs] if args.key?(:jobs)
1126
+ @tarball_access = args[:tarball_access] if args.key?(:tarball_access)
1120
1127
  @tarball_gcs_dir = args[:tarball_gcs_dir] if args.key?(:tarball_gcs_dir)
1121
1128
  @yarn_application_id = args[:yarn_application_id] if args.key?(:yarn_application_id)
1122
1129
  @yarn_application_ids = args[:yarn_application_ids] if args.key?(:yarn_application_ids)
@@ -1242,6 +1249,12 @@ module Google
1242
1249
  # @return [String]
1243
1250
  attr_accessor :gce_pd_kms_key_name
1244
1251
 
1252
+ # Optional. The Cloud KMS key name to use for encrypting customer core content
1253
+ # in spanner and cluster PD disk for all instances in the cluster.
1254
+ # Corresponds to the JSON property `kmsKey`
1255
+ # @return [String]
1256
+ attr_accessor :kms_key
1257
+
1245
1258
  def initialize(**args)
1246
1259
  update!(**args)
1247
1260
  end
@@ -1249,6 +1262,7 @@ module Google
1249
1262
  # Update properties of this object
1250
1263
  def update!(**args)
1251
1264
  @gce_pd_kms_key_name = args[:gce_pd_kms_key_name] if args.key?(:gce_pd_kms_key_name)
1265
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
1252
1266
  end
1253
1267
  end
1254
1268
 
@@ -3213,6 +3227,13 @@ module Google
3213
3227
  # @return [String]
3214
3228
  attr_accessor :next_page_token
3215
3229
 
3230
+ # Output only. List of jobs that could not be included in the response.
3231
+ # Attempting to get one of these resources may indicate why it was not included
3232
+ # in the list response.
3233
+ # Corresponds to the JSON property `unreachable`
3234
+ # @return [Array<String>]
3235
+ attr_accessor :unreachable
3236
+
3216
3237
  def initialize(**args)
3217
3238
  update!(**args)
3218
3239
  end
@@ -3221,6 +3242,7 @@ module Google
3221
3242
  def update!(**args)
3222
3243
  @jobs = args[:jobs] if args.key?(:jobs)
3223
3244
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3245
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3224
3246
  end
3225
3247
  end
3226
3248
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataprocV1
18
18
  # Version of the google-apis-dataproc_v1 gem
19
- GEM_VERSION = "0.58.0"
19
+ GEM_VERSION = "0.60.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231019"
25
+ REVISION = "20231109"
26
26
  end
27
27
  end
28
28
  end
@@ -1130,6 +1130,7 @@ module Google
1130
1130
 
1131
1131
  property :job, as: 'job'
1132
1132
  collection :jobs, as: 'jobs'
1133
+ property :tarball_access, as: 'tarballAccess'
1133
1134
  property :tarball_gcs_dir, as: 'tarballGcsDir'
1134
1135
  property :yarn_application_id, as: 'yarnApplicationId'
1135
1136
  collection :yarn_application_ids, as: 'yarnApplicationIds'
@@ -1171,6 +1172,7 @@ module Google
1171
1172
  # @private
1172
1173
  class Representation < Google::Apis::Core::JsonRepresentation
1173
1174
  property :gce_pd_kms_key_name, as: 'gcePdKmsKeyName'
1175
+ property :kms_key, as: 'kmsKey'
1174
1176
  end
1175
1177
  end
1176
1178
 
@@ -1651,6 +1653,7 @@ module Google
1651
1653
  collection :jobs, as: 'jobs', class: Google::Apis::DataprocV1::Job, decorator: Google::Apis::DataprocV1::Job::Representation
1652
1654
 
1653
1655
  property :next_page_token, as: 'nextPageToken'
1656
+ collection :unreachable, as: 'unreachable'
1654
1657
  end
1655
1658
  end
1656
1659
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataproc_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.58.0
4
+ version: 0.60.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: 2023-10-29 00:00:00.000000000 Z
11
+ date: 2023-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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/main/generated/google-apis-dataproc_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.58.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.60.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1
63
63
  post_install_message:
64
64
  rdoc_options: []