google-apis-dataflow_v1b3 0.49.0 → 0.50.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7090b3c2c308d51a7d2b5613cef45a5d79785843eab1428eee8a66bb821064f6
|
|
4
|
+
data.tar.gz: 3909d6b430718fceb014e7e61bd14fd9761b187b73acce45178c1d58a2d9d87b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a7d428ab8dbeeb73f56466dcf9e6d8c91548a1b5dd35907a3003106fb9d9e407eb9eb4ecea97d4c06789c75202039f7076a75bb497d88834c9af9afd432115e
|
|
7
|
+
data.tar.gz: e20b9a0b75321a4ab0c8c52cd73c31dfeecdbf5447dd3360c7f4e52a01cc2dc926e58d9a45f198ee9afd2d42b839c9fcef390c73b672bd6d094a14a5f1bad3d2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-dataflow_v1b3
|
|
2
2
|
|
|
3
|
+
### v0.50.0 (2024-01-28)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240121
|
|
6
|
+
* Regenerated using generator version 0.13.1
|
|
7
|
+
|
|
3
8
|
### v0.49.0 (2024-01-22)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20240113
|
|
@@ -3763,6 +3763,12 @@ module Google
|
|
|
3763
3763
|
# @return [String]
|
|
3764
3764
|
attr_accessor :help_text
|
|
3765
3765
|
|
|
3766
|
+
# Optional. Whether the parameter should be hidden in the UI.
|
|
3767
|
+
# Corresponds to the JSON property `hiddenUi`
|
|
3768
|
+
# @return [Boolean]
|
|
3769
|
+
attr_accessor :hidden_ui
|
|
3770
|
+
alias_method :hidden_ui?, :hidden_ui
|
|
3771
|
+
|
|
3766
3772
|
# Optional. Whether the parameter is optional. Defaults to false.
|
|
3767
3773
|
# Corresponds to the JSON property `isOptional`
|
|
3768
3774
|
# @return [Boolean]
|
|
@@ -3815,6 +3821,7 @@ module Google
|
|
|
3815
3821
|
@enum_options = args[:enum_options] if args.key?(:enum_options)
|
|
3816
3822
|
@group_name = args[:group_name] if args.key?(:group_name)
|
|
3817
3823
|
@help_text = args[:help_text] if args.key?(:help_text)
|
|
3824
|
+
@hidden_ui = args[:hidden_ui] if args.key?(:hidden_ui)
|
|
3818
3825
|
@is_optional = args[:is_optional] if args.key?(:is_optional)
|
|
3819
3826
|
@label = args[:label] if args.key?(:label)
|
|
3820
3827
|
@name = args[:name] if args.key?(:name)
|
|
@@ -6549,6 +6556,24 @@ module Google
|
|
|
6549
6556
|
# @return [Array<Google::Apis::DataflowV1b3::ParameterMetadata>]
|
|
6550
6557
|
attr_accessor :parameters
|
|
6551
6558
|
|
|
6559
|
+
# Optional. Indicates if the template is streaming or not.
|
|
6560
|
+
# Corresponds to the JSON property `streaming`
|
|
6561
|
+
# @return [Boolean]
|
|
6562
|
+
attr_accessor :streaming
|
|
6563
|
+
alias_method :streaming?, :streaming
|
|
6564
|
+
|
|
6565
|
+
# Optional. Indicates if the streaming template supports at least once mode.
|
|
6566
|
+
# Corresponds to the JSON property `supportsAtLeastOnce`
|
|
6567
|
+
# @return [Boolean]
|
|
6568
|
+
attr_accessor :supports_at_least_once
|
|
6569
|
+
alias_method :supports_at_least_once?, :supports_at_least_once
|
|
6570
|
+
|
|
6571
|
+
# Optional. Indicates if the streaming template supports exactly once mode.
|
|
6572
|
+
# Corresponds to the JSON property `supportsExactlyOnce`
|
|
6573
|
+
# @return [Boolean]
|
|
6574
|
+
attr_accessor :supports_exactly_once
|
|
6575
|
+
alias_method :supports_exactly_once?, :supports_exactly_once
|
|
6576
|
+
|
|
6552
6577
|
def initialize(**args)
|
|
6553
6578
|
update!(**args)
|
|
6554
6579
|
end
|
|
@@ -6558,6 +6583,9 @@ module Google
|
|
|
6558
6583
|
@description = args[:description] if args.key?(:description)
|
|
6559
6584
|
@name = args[:name] if args.key?(:name)
|
|
6560
6585
|
@parameters = args[:parameters] if args.key?(:parameters)
|
|
6586
|
+
@streaming = args[:streaming] if args.key?(:streaming)
|
|
6587
|
+
@supports_at_least_once = args[:supports_at_least_once] if args.key?(:supports_at_least_once)
|
|
6588
|
+
@supports_exactly_once = args[:supports_exactly_once] if args.key?(:supports_exactly_once)
|
|
6561
6589
|
end
|
|
6562
6590
|
end
|
|
6563
6591
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.50.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.13.
|
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240121"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2116,6 +2116,7 @@ module Google
|
|
|
2116
2116
|
|
|
2117
2117
|
property :group_name, as: 'groupName'
|
|
2118
2118
|
property :help_text, as: 'helpText'
|
|
2119
|
+
property :hidden_ui, as: 'hiddenUi'
|
|
2119
2120
|
property :is_optional, as: 'isOptional'
|
|
2120
2121
|
property :label, as: 'label'
|
|
2121
2122
|
property :name, as: 'name'
|
|
@@ -2887,6 +2888,9 @@ module Google
|
|
|
2887
2888
|
property :name, as: 'name'
|
|
2888
2889
|
collection :parameters, as: 'parameters', class: Google::Apis::DataflowV1b3::ParameterMetadata, decorator: Google::Apis::DataflowV1b3::ParameterMetadata::Representation
|
|
2889
2890
|
|
|
2891
|
+
property :streaming, as: 'streaming'
|
|
2892
|
+
property :supports_at_least_once, as: 'supportsAtLeastOnce'
|
|
2893
|
+
property :supports_exactly_once, as: 'supportsExactlyOnce'
|
|
2890
2894
|
end
|
|
2891
2895
|
end
|
|
2892
2896
|
|
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.
|
|
4
|
+
version: 0.50.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: 2024-01-
|
|
11
|
+
date: 2024-01-28 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-dataflow_v1b3/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataflow_v1b3/v0.50.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataflow_v1b3
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|