google-apis-dataproc_v1 0.17.0 → 0.18.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: dbb22296a7f591889897b848b6bdc0f3b3e974b29215601987a5878b327e8cc8
4
- data.tar.gz: 757040ee8af9aaf98f791f858f0bbf5e287714a085afaa3aeaa5e6fa8fffbcc6
3
+ metadata.gz: bf1feca2f1c11ebedec266a2b5e0b508e97ccd77ca7f5f4c1720803516c37a1f
4
+ data.tar.gz: b10349942e5e629ec7af13d9493adf5f206085a526fd04a1ea74ee8adfbced92
5
5
  SHA512:
6
- metadata.gz: ff848714736a84794e54dd8e81881f2ccf1c4a1da8e5f93b55f831bc21e19199dcb237679cb25f7a5fd644e3a87731c26230791fd5cac201c8d82aec889f5f5f
7
- data.tar.gz: 95cb3c5cc5b86b0356c6c8dfae96ef4aa2380cd44b04310e82b393fa5124a2cfaaec3877827d0dc5abfb9b17d55495c24fd9eca59169151c8f22fefe9e47bc66
6
+ metadata.gz: 2b3125d24f0eaac4cbeb6e082f85ad7f8a907754038cd6ed3e841c3cf8df6a91ef96e4af5c6b61afd4aff1e6a09fc062ee0aa7801a6a2a64b66f7dd63eaa1647
7
+ data.tar.gz: aee8dbedaef3365d6f9c651a07aea954dfc5ca330daaaa78b4c29838643d454fc4a23bf99d32d6f63852695176dbcde36f53c6b91dc8b6a135ef592d4bc34e96
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.18.0 (2022-01-07)
4
+
5
+ * Regenerated from discovery document revision 20220105
6
+ * Unspecified changes
7
+
3
8
  ### v0.17.0 (2021-11-10)
4
9
 
5
10
  * Regenerated from discovery document revision 20211105
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/dataproc_v1"
51
51
  client = Google::Apis::DataprocV1::DataprocService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -884,6 +884,14 @@ module Google
884
884
  # @return [String]
885
885
  attr_accessor :boot_disk_type
886
886
 
887
+ # Optional. Interface type of local SSDs (default is "scsi"). Valid values: "
888
+ # scsi" (Small Computer System Interface), "nvme" (Non-Volatile Memory Express).
889
+ # See SSD Interface types (https://cloud.google.com/compute/docs/disks/local-ssd#
890
+ # performance).
891
+ # Corresponds to the JSON property `localSsdInterface`
892
+ # @return [String]
893
+ attr_accessor :local_ssd_interface
894
+
887
895
  # Optional. Number of attached SSDs, from 0 to 4 (default is 0). If SSDs are not
888
896
  # attached, the boot disk is used to store runtime logs and HDFS (https://hadoop.
889
897
  # apache.org/docs/r1.2.1/hdfs_user_guide.html) data. If one or more SSDs are
@@ -901,6 +909,7 @@ module Google
901
909
  def update!(**args)
902
910
  @boot_disk_size_gb = args[:boot_disk_size_gb] if args.key?(:boot_disk_size_gb)
903
911
  @boot_disk_type = args[:boot_disk_type] if args.key?(:boot_disk_type)
912
+ @local_ssd_interface = args[:local_ssd_interface] if args.key?(:local_ssd_interface)
904
913
  @num_local_ssds = args[:num_local_ssds] if args.key?(:num_local_ssds)
905
914
  end
906
915
  end
@@ -1897,14 +1906,19 @@ module Google
1897
1906
  # Optional. Maximum number of times per hour a driver may be restarted as a
1898
1907
  # result of driver exiting with non-zero code before job is reported failed.A
1899
1908
  # job may be reported as thrashing if driver exits with non-zero code 4 times
1900
- # within 10 minute window.Maximum value is 10.
1909
+ # within 10 minute window.Maximum value is 10.Note: Currently, this restartable
1910
+ # job option is not supported in Dataproc workflow template (https://cloud.
1911
+ # google.com/dataproc/docs/concepts/workflows/using-workflows#
1912
+ # adding_jobs_to_a_template) jobs.
1901
1913
  # Corresponds to the JSON property `maxFailuresPerHour`
1902
1914
  # @return [Fixnum]
1903
1915
  attr_accessor :max_failures_per_hour
1904
1916
 
1905
1917
  # Optional. Maximum number of times in total a driver may be restarted as a
1906
1918
  # result of driver exiting with non-zero code before job is reported failed.
1907
- # Maximum value is 240.
1919
+ # Maximum value is 240.Note: Currently, this restartable job option is not
1920
+ # supported in Dataproc workflow template (https://cloud.google.com/dataproc/
1921
+ # docs/concepts/workflows/using-workflows#adding_jobs_to_a_template) jobs.
1908
1922
  # Corresponds to the JSON property `maxFailuresTotal`
1909
1923
  # @return [Fixnum]
1910
1924
  attr_accessor :max_failures_total
@@ -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.17.0"
19
+ GEM_VERSION = "0.18.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 = "20211105"
25
+ REVISION = "20220105"
26
26
  end
27
27
  end
28
28
  end
@@ -782,6 +782,7 @@ module Google
782
782
  class Representation < Google::Apis::Core::JsonRepresentation
783
783
  property :boot_disk_size_gb, as: 'bootDiskSizeGb'
784
784
  property :boot_disk_type, as: 'bootDiskType'
785
+ property :local_ssd_interface, as: 'localSsdInterface'
785
786
  property :num_local_ssds, as: 'numLocalSsds'
786
787
  end
787
788
  end
@@ -356,7 +356,7 @@ module Google
356
356
  # @param [String] parent
357
357
  # Required. The resource name of the region or location, as described in https://
358
358
  # cloud.google.com/apis/design/resource_names. For projects.regions.
359
- # workflowTemplates,create, the resource name of the region has the following
359
+ # workflowTemplates.create, the resource name of the region has the following
360
360
  # format: projects/`project_id`/regions/`region` For projects.locations.
361
361
  # workflowTemplates.create, the resource name of the location has the following
362
362
  # format: projects/`project_id`/locations/`location`
@@ -2317,7 +2317,7 @@ module Google
2317
2317
  # @param [String] parent
2318
2318
  # Required. The resource name of the region or location, as described in https://
2319
2319
  # cloud.google.com/apis/design/resource_names. For projects.regions.
2320
- # workflowTemplates,create, the resource name of the region has the following
2320
+ # workflowTemplates.create, the resource name of the region has the following
2321
2321
  # format: projects/`project_id`/regions/`region` For projects.locations.
2322
2322
  # workflowTemplates.create, the resource name of the location has the following
2323
2323
  # format: projects/`project_id`/locations/`location`
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.17.0
4
+ version: 0.18.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-15 00:00:00.000000000 Z
11
+ date: 2022-01-10 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.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.18.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Dataproc API V1