google-apis-dataproc_v1 0.7.0 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e049559d191c55a5cd9bacb596a661e1987dbf54e79a698c0be15ee22553e507
4
- data.tar.gz: c6ae876ecbef55e2c56410ca1a9b032bc474e2bce7a1a33bc33432f6883302e3
3
+ metadata.gz: 560e26db443325ace57e9025a81ad7196ed8dcdd5371b4d3b467b3bad65f11f1
4
+ data.tar.gz: 666b3334945b12817a6bef11997eb0cd2a452da986e98c0af7bb82f1337e5b30
5
5
  SHA512:
6
- metadata.gz: d531eeba0a89b81bf17c1dfe401d3027258e24023a2bee642a590a1261adcc2f8f76d50caca6633f06aa381a7717cde4e7bd9b9c3157e6a9f419d5837456e982
7
- data.tar.gz: 47b60ad37037f890719ef4680f2fa06c1b49beb89d5926ead82bee62203b8a7d6472723499ae25facf9904a6c198932896c6b7016d6a4d35031817632a6c9ca9
6
+ metadata.gz: ac2ddbcd23b43caa629c9e64e77aece580a43f912a65bc499091bbdc9b8dd0f86b2ee02e218239cfba4a3e4675305e62fe4fb720e4f6140f4e9ac9645fead421
7
+ data.tar.gz: 5dc23b8556353dcb96228f9809da24917374e7ce90d0f1b6a6c83c71979450af5ed36c0d45996928d699261d6e44e05d7aa5128860f947f1b89566ae3df16d7c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.8.0 (2021-04-30)
4
+
5
+ * Regenerated from discovery document revision 20210421
6
+
3
7
  ### v0.7.0 (2021-03-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20210322
@@ -228,6 +228,67 @@ module Google
228
228
  end
229
229
  end
230
230
 
231
+ # Metadata describing the Batch operation.
232
+ class BatchOperationMetadata
233
+ include Google::Apis::Core::Hashable
234
+
235
+ # Name of the batch for the operation.
236
+ # Corresponds to the JSON property `batch`
237
+ # @return [String]
238
+ attr_accessor :batch
239
+
240
+ # Batch UUID for the operation.
241
+ # Corresponds to the JSON property `batchUuid`
242
+ # @return [String]
243
+ attr_accessor :batch_uuid
244
+
245
+ # The time when the operation was created.
246
+ # Corresponds to the JSON property `createTime`
247
+ # @return [String]
248
+ attr_accessor :create_time
249
+
250
+ # Short description of the operation.
251
+ # Corresponds to the JSON property `description`
252
+ # @return [String]
253
+ attr_accessor :description
254
+
255
+ # The time when the operation was finished.
256
+ # Corresponds to the JSON property `doneTime`
257
+ # @return [String]
258
+ attr_accessor :done_time
259
+
260
+ # Labels associated with the operation.
261
+ # Corresponds to the JSON property `labels`
262
+ # @return [Hash<String,String>]
263
+ attr_accessor :labels
264
+
265
+ # The operation type.
266
+ # Corresponds to the JSON property `operationType`
267
+ # @return [String]
268
+ attr_accessor :operation_type
269
+
270
+ # Warnings encountered during operation execution.
271
+ # Corresponds to the JSON property `warnings`
272
+ # @return [Array<String>]
273
+ attr_accessor :warnings
274
+
275
+ def initialize(**args)
276
+ update!(**args)
277
+ end
278
+
279
+ # Update properties of this object
280
+ def update!(**args)
281
+ @batch = args[:batch] if args.key?(:batch)
282
+ @batch_uuid = args[:batch_uuid] if args.key?(:batch_uuid)
283
+ @create_time = args[:create_time] if args.key?(:create_time)
284
+ @description = args[:description] if args.key?(:description)
285
+ @done_time = args[:done_time] if args.key?(:done_time)
286
+ @labels = args[:labels] if args.key?(:labels)
287
+ @operation_type = args[:operation_type] if args.key?(:operation_type)
288
+ @warnings = args[:warnings] if args.key?(:warnings)
289
+ end
290
+ end
291
+
231
292
  # Associates members with a role.
232
293
  class Binding
233
294
  include Google::Apis::Core::Hashable
@@ -731,6 +792,28 @@ module Google
731
792
  end
732
793
  end
733
794
 
795
+ # Confidential Instance Config for clusters using Confidential VMs (https://
796
+ # cloud.google.com/compute/confidential-vm/docs) NEXT ID: 2
797
+ class ConfidentialInstanceConfig
798
+ include Google::Apis::Core::Hashable
799
+
800
+ # Optional. Defines whether the instance should have confidential compute
801
+ # enabled.
802
+ # Corresponds to the JSON property `enableConfidentialCompute`
803
+ # @return [Boolean]
804
+ attr_accessor :enable_confidential_compute
805
+ alias_method :enable_confidential_compute?, :enable_confidential_compute
806
+
807
+ def initialize(**args)
808
+ update!(**args)
809
+ end
810
+
811
+ # Update properties of this object
812
+ def update!(**args)
813
+ @enable_confidential_compute = args[:enable_confidential_compute] if args.key?(:enable_confidential_compute)
814
+ end
815
+ end
816
+
734
817
  # A request to collect cluster diagnostic information.
735
818
  class DiagnoseClusterRequest
736
819
  include Google::Apis::Core::Hashable
@@ -926,6 +1009,12 @@ module Google
926
1009
  class GceClusterConfig
927
1010
  include Google::Apis::Core::Hashable
928
1011
 
1012
+ # Confidential Instance Config for clusters using Confidential VMs (https://
1013
+ # cloud.google.com/compute/confidential-vm/docs) NEXT ID: 2
1014
+ # Corresponds to the JSON property `confidentialInstanceConfig`
1015
+ # @return [Google::Apis::DataprocV1::ConfidentialInstanceConfig]
1016
+ attr_accessor :confidential_instance_config
1017
+
929
1018
  # Optional. If true, all instances in the cluster will only have internal IP
930
1019
  # addresses. By default, clusters are not restricted to internal IP addresses,
931
1020
  # and will have ephemeral external IP addresses assigned to each instance. This
@@ -1033,6 +1122,7 @@ module Google
1033
1122
 
1034
1123
  # Update properties of this object
1035
1124
  def update!(**args)
1125
+ @confidential_instance_config = args[:confidential_instance_config] if args.key?(:confidential_instance_config)
1036
1126
  @internal_ip_only = args[:internal_ip_only] if args.key?(:internal_ip_only)
1037
1127
  @metadata = args[:metadata] if args.key?(:metadata)
1038
1128
  @network_uri = args[:network_uri] if args.key?(:network_uri)
@@ -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.7.0"
19
+ GEM_VERSION = "0.8.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210322"
25
+ REVISION = "20210421"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,12 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class BatchOperationMetadata
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
55
61
  class Binding
56
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
63
 
@@ -112,6 +118,12 @@ module Google
112
118
  include Google::Apis::Core::JsonObjectSupport
113
119
  end
114
120
 
121
+ class ConfidentialInstanceConfig
122
+ class Representation < Google::Apis::Core::JsonRepresentation; end
123
+
124
+ include Google::Apis::Core::JsonObjectSupport
125
+ end
126
+
115
127
  class DiagnoseClusterRequest
116
128
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
129
 
@@ -581,6 +593,20 @@ module Google
581
593
  end
582
594
  end
583
595
 
596
+ class BatchOperationMetadata
597
+ # @private
598
+ class Representation < Google::Apis::Core::JsonRepresentation
599
+ property :batch, as: 'batch'
600
+ property :batch_uuid, as: 'batchUuid'
601
+ property :create_time, as: 'createTime'
602
+ property :description, as: 'description'
603
+ property :done_time, as: 'doneTime'
604
+ hash :labels, as: 'labels'
605
+ property :operation_type, as: 'operationType'
606
+ collection :warnings, as: 'warnings'
607
+ end
608
+ end
609
+
584
610
  class Binding
585
611
  # @private
586
612
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -710,6 +736,13 @@ module Google
710
736
  end
711
737
  end
712
738
 
739
+ class ConfidentialInstanceConfig
740
+ # @private
741
+ class Representation < Google::Apis::Core::JsonRepresentation
742
+ property :enable_confidential_compute, as: 'enableConfidentialCompute'
743
+ end
744
+ end
745
+
713
746
  class DiagnoseClusterRequest
714
747
  # @private
715
748
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -766,6 +799,8 @@ module Google
766
799
  class GceClusterConfig
767
800
  # @private
768
801
  class Representation < Google::Apis::Core::JsonRepresentation
802
+ property :confidential_instance_config, as: 'confidentialInstanceConfig', class: Google::Apis::DataprocV1::ConfidentialInstanceConfig, decorator: Google::Apis::DataprocV1::ConfidentialInstanceConfig::Representation
803
+
769
804
  property :internal_ip_only, as: 'internalIpOnly'
770
805
  hash :metadata, as: 'metadata'
771
806
  property :network_uri, as: 'networkUri'
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.7.0
4
+ version: 0.8.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-03-29 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataproc_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.7.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.8.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataproc_v1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Dataproc API V1