google-apis-dataflow_v1b3 0.10.0 → 0.11.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: 73b963900b0378cf42d26a43fa3ea81dafe482843a135314d8cf96e5c448dd92
4
- data.tar.gz: 5a0354d3e1accc695fdac6f65e6f11101bb9684e3a365ffd797204e855853cc9
3
+ metadata.gz: 405ca7d9f44b16efa723a7e8e3155c02fdb71ac0ccd44ab0880d6fd4ea4a3ae0
4
+ data.tar.gz: 1328700cb2778b964adc5c5819a7c34cc5c853c62ec9669b1a9d510224b98f7e
5
5
  SHA512:
6
- metadata.gz: cf9ad3e3a4359725c7feeb1b0d91923fef5d30a1016bcc90ec3bb1ea0e6723afb509b4d0c7b90afb68884523fd58bf5cf3ebd01152683f8e7e76e465ea0ecb66
7
- data.tar.gz: 0cf5d15f420ab588ccd5e0428c8cc393337654852c45e03e99ced46b22ad10ef2c0918fa2a97ae454bc2a5e648cc8e79329c43743dccfb343c0845698308d0c8
6
+ metadata.gz: e81f22dee6923b033acd139830b9e940565431bad9b05c1665903933bdc43868b0eaf38db354b9a2d9057c448c84badc7edcd12c7cf42c85b50d5c52f0f30eeb
7
+ data.tar.gz: f8092fe78d20fe427fa66b45d379a94e25095e375d5f5a43d1880a91fc2165b63c4a9523bba857547f26d3282a9e1baf87b14d56893c7cfc10606db5b02e88de
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataflow_v1b3
2
2
 
3
+ ### v0.11.0 (2021-07-13)
4
+
5
+ * Regenerated from discovery document revision 20210703
6
+
3
7
  ### v0.10.0 (2021-07-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20210618
@@ -1462,6 +1462,11 @@ module Google
1462
1462
  # @return [Hash<String,String>]
1463
1463
  attr_accessor :additional_user_labels
1464
1464
 
1465
+ # Worker disk size, in gigabytes.
1466
+ # Corresponds to the JSON property `diskSizeGb`
1467
+ # @return [Fixnum]
1468
+ attr_accessor :disk_size_gb
1469
+
1465
1470
  # Whether to enable Streaming Engine for the job.
1466
1471
  # Corresponds to the JSON property `enableStreamingEngine`
1467
1472
  # @return [Boolean]
@@ -1491,6 +1496,11 @@ module Google
1491
1496
  # @return [String]
1492
1497
  attr_accessor :machine_type
1493
1498
 
1499
+ # The maximum number of workers to cap scaling at.
1500
+ # Corresponds to the JSON property `maxNumWorkers`
1501
+ # @return [Fixnum]
1502
+ attr_accessor :max_num_workers
1503
+
1494
1504
  # The maximum number of Google Compute Engine instances to be made available to
1495
1505
  # your pipeline during execution, from 1 to 1000.
1496
1506
  # Corresponds to the JSON property `maxWorkers`
@@ -1575,11 +1585,13 @@ module Google
1575
1585
  def update!(**args)
1576
1586
  @additional_experiments = args[:additional_experiments] if args.key?(:additional_experiments)
1577
1587
  @additional_user_labels = args[:additional_user_labels] if args.key?(:additional_user_labels)
1588
+ @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
1578
1589
  @enable_streaming_engine = args[:enable_streaming_engine] if args.key?(:enable_streaming_engine)
1579
1590
  @flexrs_goal = args[:flexrs_goal] if args.key?(:flexrs_goal)
1580
1591
  @ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
1581
1592
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
1582
1593
  @machine_type = args[:machine_type] if args.key?(:machine_type)
1594
+ @max_num_workers = args[:max_num_workers] if args.key?(:max_num_workers)
1583
1595
  @max_workers = args[:max_workers] if args.key?(:max_workers)
1584
1596
  @network = args[:network] if args.key?(:network)
1585
1597
  @num_workers = args[:num_workers] if args.key?(:num_workers)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataflowV1b3
18
18
  # Version of the google-apis-dataflow_v1b3 gem
19
- GEM_VERSION = "0.10.0"
19
+ GEM_VERSION = "0.11.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 = "20210618"
25
+ REVISION = "20210703"
26
26
  end
27
27
  end
28
28
  end
@@ -1383,11 +1383,13 @@ module Google
1383
1383
  class Representation < Google::Apis::Core::JsonRepresentation
1384
1384
  collection :additional_experiments, as: 'additionalExperiments'
1385
1385
  hash :additional_user_labels, as: 'additionalUserLabels'
1386
+ property :disk_size_gb, as: 'diskSizeGb'
1386
1387
  property :enable_streaming_engine, as: 'enableStreamingEngine'
1387
1388
  property :flexrs_goal, as: 'flexrsGoal'
1388
1389
  property :ip_configuration, as: 'ipConfiguration'
1389
1390
  property :kms_key_name, as: 'kmsKeyName'
1390
1391
  property :machine_type, as: 'machineType'
1392
+ property :max_num_workers, as: 'maxNumWorkers'
1391
1393
  property :max_workers, as: 'maxWorkers'
1392
1394
  property :network, as: 'network'
1393
1395
  property :num_workers, as: 'numWorkers'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataflow_v1b3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.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-05 00:00:00.000000000 Z
11
+ date: 2021-07-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/master/generated/google-apis-dataflow_v1b3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataflow_v1b3
63
63
  post_install_message:
64
64
  rdoc_options: []