aws-sdk-datapipeline 1.37.0 → 1.38.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: 69a7e0f4d4898765bc9597d0ed7707bbe62ab68c9637f520794ea58ccd06bcee
4
- data.tar.gz: 36d7ac870d64b3e8ea03b290b85fc4274e7c38e664b791a07111c35073c18f1b
3
+ metadata.gz: bbfa8927cec57075a0f6729a2c950c66e8182d5c62a0f24d532556cebf362860
4
+ data.tar.gz: bf9c1722e0bfd903cc58ce103d8fa367b4a9459d40c40b11e4f6f6eda45913e0
5
5
  SHA512:
6
- metadata.gz: fc52e0913ab85491f65f9e735bdf4068035a3d743c78b591924d4a095ac0f38b406eb11670bf54e7892141e013888bf69b731940ff023cb2414eb5dafa4d5cd1
7
- data.tar.gz: a08b9d4f46d174f98cb43be01c033a7e741f302e6c178eb052961ce2f27e8ccc95814925c2024e8531ed66c8e2f3322fde0548205164b061965399d6c91345b4
6
+ metadata.gz: a83fb5ee17fe4533b6f1c80c33fd3764e9ad5b1f2f4eccb6ad9126433a80d7f06ef4ab75c9efa1d459f1f98cf93fdd48a45b791d1ded438a6fb2eaebf6ba8dd7
7
+ data.tar.gz: e1171fcd25e0e1ab59e253da5266f40743e01041f2d6a10fd1b10e0ee81ea769b877ddd2442aebb4bab6b6f7b1064dac2e3fabc569f17ee6e41fcd0b32b8d485
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.38.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.37.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -253,4 +260,4 @@ Unreleased Changes
253
260
  1.0.0.rc1 (2016-12-05)
254
261
  ------------------
255
262
 
256
- * Feature - Initial preview release of the `aws-sdk-datapipeline` gem.
263
+ * Feature - Initial preview release of the `aws-sdk-datapipeline` gem.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.37.0
1
+ 1.38.0
@@ -1370,7 +1370,7 @@ module Aws::DataPipeline
1370
1370
  params: params,
1371
1371
  config: config)
1372
1372
  context[:gem_name] = 'aws-sdk-datapipeline'
1373
- context[:gem_version] = '1.37.0'
1373
+ context[:gem_version] = '1.38.0'
1374
1374
  Seahorse::Client::Request.new(handlers, context)
1375
1375
  end
1376
1376
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::DataPipeline
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://datapipeline-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://datapipeline-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://datapipeline.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://datapipeline.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2RhdGFwaXBlbGluZS1maXBzLntSZWdpb259
77
- LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
78
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
79
- eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sg
80
- YXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
81
- b3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
82
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
83
- ZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
84
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
85
- ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
86
- dCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
87
- Olt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
88
- b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9kYXRh
89
- cGlwZWxpbmUtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
90
- ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
91
- ZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBT
92
- IGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
93
- cnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJm
94
- biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3Rh
95
- Y2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
96
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
97
- IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
98
- LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
99
- cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
100
- Oi8vZGF0YXBpcGVsaW5lLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVh
101
- bFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
102
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
103
- b3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24g
104
- ZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19
105
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
106
- ZGF0YXBpcGVsaW5lLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3Vm
107
- Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
108
- bmRwb2ludCJ9XX1dfQ==
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -12,20 +12,6 @@ module Aws::DataPipeline
12
12
 
13
13
  # Contains the parameters for ActivatePipeline.
14
14
  #
15
- # @note When making an API call, you may pass ActivatePipelineInput
16
- # data as a hash:
17
- #
18
- # {
19
- # pipeline_id: "id", # required
20
- # parameter_values: [
21
- # {
22
- # id: "fieldNameString", # required
23
- # string_value: "fieldStringValue", # required
24
- # },
25
- # ],
26
- # start_timestamp: Time.now,
27
- # }
28
- #
29
15
  # @!attribute [rw] pipeline_id
30
16
  # The ID of the pipeline.
31
17
  # @return [String]
@@ -57,19 +43,6 @@ module Aws::DataPipeline
57
43
 
58
44
  # Contains the parameters for AddTags.
59
45
  #
60
- # @note When making an API call, you may pass AddTagsInput
61
- # data as a hash:
62
- #
63
- # {
64
- # pipeline_id: "id", # required
65
- # tags: [ # required
66
- # {
67
- # key: "tagKey", # required
68
- # value: "tagValue", # required
69
- # },
70
- # ],
71
- # }
72
- #
73
46
  # @!attribute [rw] pipeline_id
74
47
  # The ID of the pipeline.
75
48
  # @return [String]
@@ -95,21 +68,6 @@ module Aws::DataPipeline
95
68
 
96
69
  # Contains the parameters for CreatePipeline.
97
70
  #
98
- # @note When making an API call, you may pass CreatePipelineInput
99
- # data as a hash:
100
- #
101
- # {
102
- # name: "id", # required
103
- # unique_id: "id", # required
104
- # description: "string",
105
- # tags: [
106
- # {
107
- # key: "tagKey", # required
108
- # value: "tagValue", # required
109
- # },
110
- # ],
111
- # }
112
- #
113
71
  # @!attribute [rw] name
114
72
  # The name for the pipeline. You can use the same name for multiple
115
73
  # pipelines associated with your AWS account, because AWS Data
@@ -175,14 +133,6 @@ module Aws::DataPipeline
175
133
 
176
134
  # Contains the parameters for DeactivatePipeline.
177
135
  #
178
- # @note When making an API call, you may pass DeactivatePipelineInput
179
- # data as a hash:
180
- #
181
- # {
182
- # pipeline_id: "id", # required
183
- # cancel_active: false,
184
- # }
185
- #
186
136
  # @!attribute [rw] pipeline_id
187
137
  # The ID of the pipeline.
188
138
  # @return [String]
@@ -211,13 +161,6 @@ module Aws::DataPipeline
211
161
 
212
162
  # Contains the parameters for DeletePipeline.
213
163
  #
214
- # @note When making an API call, you may pass DeletePipelineInput
215
- # data as a hash:
216
- #
217
- # {
218
- # pipeline_id: "id", # required
219
- # }
220
- #
221
164
  # @!attribute [rw] pipeline_id
222
165
  # The ID of the pipeline.
223
166
  # @return [String]
@@ -232,16 +175,6 @@ module Aws::DataPipeline
232
175
 
233
176
  # Contains the parameters for DescribeObjects.
234
177
  #
235
- # @note When making an API call, you may pass DescribeObjectsInput
236
- # data as a hash:
237
- #
238
- # {
239
- # pipeline_id: "id", # required
240
- # object_ids: ["id"], # required
241
- # evaluate_expressions: false,
242
- # marker: "string",
243
- # }
244
- #
245
178
  # @!attribute [rw] pipeline_id
246
179
  # The ID of the pipeline that contains the object definitions.
247
180
  # @return [String]
@@ -303,13 +236,6 @@ module Aws::DataPipeline
303
236
 
304
237
  # Contains the parameters for DescribePipelines.
305
238
  #
306
- # @note When making an API call, you may pass DescribePipelinesInput
307
- # data as a hash:
308
- #
309
- # {
310
- # pipeline_ids: ["id"], # required
311
- # }
312
- #
313
239
  # @!attribute [rw] pipeline_ids
314
240
  # The IDs of the pipelines to describe. You can pass as many as 25
315
241
  # identifiers in a single call. To obtain pipeline IDs, call
@@ -340,15 +266,6 @@ module Aws::DataPipeline
340
266
 
341
267
  # Contains the parameters for EvaluateExpression.
342
268
  #
343
- # @note When making an API call, you may pass EvaluateExpressionInput
344
- # data as a hash:
345
- #
346
- # {
347
- # pipeline_id: "id", # required
348
- # object_id: "id", # required
349
- # expression: "longString", # required
350
- # }
351
- #
352
269
  # @!attribute [rw] pipeline_id
353
270
  # The ID of the pipeline.
354
271
  # @return [String]
@@ -389,15 +306,6 @@ module Aws::DataPipeline
389
306
  # value is specified as either a string value (`StringValue`) or a
390
307
  # reference to another object (`RefValue`) but not as both.
391
308
  #
392
- # @note When making an API call, you may pass Field
393
- # data as a hash:
394
- #
395
- # {
396
- # key: "fieldNameString", # required
397
- # string_value: "fieldStringValue",
398
- # ref_value: "fieldNameString",
399
- # }
400
- #
401
309
  # @!attribute [rw] key
402
310
  # The field identifier.
403
311
  # @return [String]
@@ -422,14 +330,6 @@ module Aws::DataPipeline
422
330
 
423
331
  # Contains the parameters for GetPipelineDefinition.
424
332
  #
425
- # @note When making an API call, you may pass GetPipelineDefinitionInput
426
- # data as a hash:
427
- #
428
- # {
429
- # pipeline_id: "id", # required
430
- # version: "string",
431
- # }
432
- #
433
333
  # @!attribute [rw] pipeline_id
434
334
  # The ID of the pipeline.
435
335
  # @return [String]
@@ -486,14 +386,6 @@ module Aws::DataPipeline
486
386
  #
487
387
  # [1]: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/AESDG-chapter-instancedata.html
488
388
  #
489
- # @note When making an API call, you may pass InstanceIdentity
490
- # data as a hash:
491
- #
492
- # {
493
- # document: "string",
494
- # signature: "string",
495
- # }
496
- #
497
389
  # @!attribute [rw] document
498
390
  # A description of an EC2 instance that is generated when the instance
499
391
  # is launched and exposed to the instance via the instance metadata
@@ -548,13 +440,6 @@ module Aws::DataPipeline
548
440
 
549
441
  # Contains the parameters for ListPipelines.
550
442
  #
551
- # @note When making an API call, you may pass ListPipelinesInput
552
- # data as a hash:
553
- #
554
- # {
555
- # marker: "string",
556
- # }
557
- #
558
443
  # @!attribute [rw] marker
559
444
  # The starting point for the results to be returned. For the first
560
445
  # call, this value should be empty. As long as there are more results,
@@ -602,14 +487,6 @@ module Aws::DataPipeline
602
487
  # Contains a logical operation for comparing the value of a field with a
603
488
  # specified value.
604
489
  #
605
- # @note When making an API call, you may pass Operator
606
- # data as a hash:
607
- #
608
- # {
609
- # type: "EQ", # accepts EQ, REF_EQ, LE, GE, BETWEEN
610
- # values: ["string"],
611
- # }
612
- #
613
490
  # @!attribute [rw] type
614
491
  # The logical operation to be performed: equal (`EQ`), equal reference
615
492
  # (`REF_EQ`), less than or equal (`LE`), greater than or equal (`GE`),
@@ -661,14 +538,6 @@ module Aws::DataPipeline
661
538
 
662
539
  # The attributes allowed or specified with a parameter object.
663
540
  #
664
- # @note When making an API call, you may pass ParameterAttribute
665
- # data as a hash:
666
- #
667
- # {
668
- # key: "attributeNameString", # required
669
- # string_value: "attributeValueString", # required
670
- # }
671
- #
672
541
  # @!attribute [rw] key
673
542
  # The field identifier.
674
543
  # @return [String]
@@ -688,19 +557,6 @@ module Aws::DataPipeline
688
557
 
689
558
  # Contains information about a parameter object.
690
559
  #
691
- # @note When making an API call, you may pass ParameterObject
692
- # data as a hash:
693
- #
694
- # {
695
- # id: "fieldNameString", # required
696
- # attributes: [ # required
697
- # {
698
- # key: "attributeNameString", # required
699
- # string_value: "attributeValueString", # required
700
- # },
701
- # ],
702
- # }
703
- #
704
560
  # @!attribute [rw] id
705
561
  # The ID of the parameter object.
706
562
  # @return [String]
@@ -720,14 +576,6 @@ module Aws::DataPipeline
720
576
 
721
577
  # A value or list of parameter values.
722
578
  #
723
- # @note When making an API call, you may pass ParameterValue
724
- # data as a hash:
725
- #
726
- # {
727
- # id: "fieldNameString", # required
728
- # string_value: "fieldStringValue", # required
729
- # }
730
- #
731
579
  # @!attribute [rw] id
732
580
  # The ID of the parameter value.
733
581
  # @return [String]
@@ -840,21 +688,6 @@ module Aws::DataPipeline
840
688
  # physical, or physical attempt pipeline object. The complete set of
841
689
  # components of a pipeline defines the pipeline.
842
690
  #
843
- # @note When making an API call, you may pass PipelineObject
844
- # data as a hash:
845
- #
846
- # {
847
- # id: "id", # required
848
- # name: "id", # required
849
- # fields: [ # required
850
- # {
851
- # key: "fieldNameString", # required
852
- # string_value: "fieldStringValue",
853
- # ref_value: "fieldNameString",
854
- # },
855
- # ],
856
- # }
857
- #
858
691
  # @!attribute [rw] id
859
692
  # The ID of the object.
860
693
  # @return [String]
@@ -879,18 +712,6 @@ module Aws::DataPipeline
879
712
 
880
713
  # Contains the parameters for PollForTask.
881
714
  #
882
- # @note When making an API call, you may pass PollForTaskInput
883
- # data as a hash:
884
- #
885
- # {
886
- # worker_group: "string", # required
887
- # hostname: "id",
888
- # instance_identity: {
889
- # document: "string",
890
- # signature: "string",
891
- # },
892
- # }
893
- #
894
715
  # @!attribute [rw] worker_group
895
716
  # The type of task the task runner is configured to accept and
896
717
  # process. The worker group is set as a field on objects in the
@@ -948,43 +769,6 @@ module Aws::DataPipeline
948
769
 
949
770
  # Contains the parameters for PutPipelineDefinition.
950
771
  #
951
- # @note When making an API call, you may pass PutPipelineDefinitionInput
952
- # data as a hash:
953
- #
954
- # {
955
- # pipeline_id: "id", # required
956
- # pipeline_objects: [ # required
957
- # {
958
- # id: "id", # required
959
- # name: "id", # required
960
- # fields: [ # required
961
- # {
962
- # key: "fieldNameString", # required
963
- # string_value: "fieldStringValue",
964
- # ref_value: "fieldNameString",
965
- # },
966
- # ],
967
- # },
968
- # ],
969
- # parameter_objects: [
970
- # {
971
- # id: "fieldNameString", # required
972
- # attributes: [ # required
973
- # {
974
- # key: "attributeNameString", # required
975
- # string_value: "attributeValueString", # required
976
- # },
977
- # ],
978
- # },
979
- # ],
980
- # parameter_values: [
981
- # {
982
- # id: "fieldNameString", # required
983
- # string_value: "fieldStringValue", # required
984
- # },
985
- # ],
986
- # }
987
- #
988
772
  # @!attribute [rw] pipeline_id
989
773
  # The ID of the pipeline.
990
774
  # @return [String]
@@ -1044,21 +828,6 @@ module Aws::DataPipeline
1044
828
 
1045
829
  # Defines the query to run against an object.
1046
830
  #
1047
- # @note When making an API call, you may pass Query
1048
- # data as a hash:
1049
- #
1050
- # {
1051
- # selectors: [
1052
- # {
1053
- # field_name: "string",
1054
- # operator: {
1055
- # type: "EQ", # accepts EQ, REF_EQ, LE, GE, BETWEEN
1056
- # values: ["string"],
1057
- # },
1058
- # },
1059
- # ],
1060
- # }
1061
- #
1062
831
  # @!attribute [rw] selectors
1063
832
  # List of selectors that define the query. An object must satisfy all
1064
833
  # of the selectors to match the query.
@@ -1074,27 +843,6 @@ module Aws::DataPipeline
1074
843
 
1075
844
  # Contains the parameters for QueryObjects.
1076
845
  #
1077
- # @note When making an API call, you may pass QueryObjectsInput
1078
- # data as a hash:
1079
- #
1080
- # {
1081
- # pipeline_id: "id", # required
1082
- # query: {
1083
- # selectors: [
1084
- # {
1085
- # field_name: "string",
1086
- # operator: {
1087
- # type: "EQ", # accepts EQ, REF_EQ, LE, GE, BETWEEN
1088
- # values: ["string"],
1089
- # },
1090
- # },
1091
- # ],
1092
- # },
1093
- # sphere: "string", # required
1094
- # marker: "string",
1095
- # limit: 1,
1096
- # }
1097
- #
1098
846
  # @!attribute [rw] pipeline_id
1099
847
  # The ID of the pipeline.
1100
848
  # @return [String]
@@ -1164,14 +912,6 @@ module Aws::DataPipeline
1164
912
 
1165
913
  # Contains the parameters for RemoveTags.
1166
914
  #
1167
- # @note When making an API call, you may pass RemoveTagsInput
1168
- # data as a hash:
1169
- #
1170
- # {
1171
- # pipeline_id: "id", # required
1172
- # tag_keys: ["string"], # required
1173
- # }
1174
- #
1175
915
  # @!attribute [rw] pipeline_id
1176
916
  # The ID of the pipeline.
1177
917
  # @return [String]
@@ -1197,20 +937,6 @@ module Aws::DataPipeline
1197
937
 
1198
938
  # Contains the parameters for ReportTaskProgress.
1199
939
  #
1200
- # @note When making an API call, you may pass ReportTaskProgressInput
1201
- # data as a hash:
1202
- #
1203
- # {
1204
- # task_id: "taskId", # required
1205
- # fields: [
1206
- # {
1207
- # key: "fieldNameString", # required
1208
- # string_value: "fieldStringValue",
1209
- # ref_value: "fieldNameString",
1210
- # },
1211
- # ],
1212
- # }
1213
- #
1214
940
  # @!attribute [rw] task_id
1215
941
  # The ID of the task assigned to the task runner. This value is
1216
942
  # provided in the response for PollForTask.
@@ -1248,15 +974,6 @@ module Aws::DataPipeline
1248
974
 
1249
975
  # Contains the parameters for ReportTaskRunnerHeartbeat.
1250
976
  #
1251
- # @note When making an API call, you may pass ReportTaskRunnerHeartbeatInput
1252
- # data as a hash:
1253
- #
1254
- # {
1255
- # taskrunner_id: "id", # required
1256
- # worker_group: "string",
1257
- # hostname: "id",
1258
- # }
1259
- #
1260
977
  # @!attribute [rw] taskrunner_id
1261
978
  # The ID of the task runner. This value should be unique across your
1262
979
  # AWS account. In the case of AWS Data Pipeline Task Runner launched
@@ -1305,17 +1022,6 @@ module Aws::DataPipeline
1305
1022
  # A comparision that is used to determine whether a query should return
1306
1023
  # this object.
1307
1024
  #
1308
- # @note When making an API call, you may pass Selector
1309
- # data as a hash:
1310
- #
1311
- # {
1312
- # field_name: "string",
1313
- # operator: {
1314
- # type: "EQ", # accepts EQ, REF_EQ, LE, GE, BETWEEN
1315
- # values: ["string"],
1316
- # },
1317
- # }
1318
- #
1319
1025
  # @!attribute [rw] field_name
1320
1026
  # The name of the field that the operator will be applied to. The
1321
1027
  # field name is the "key" portion of the field definition in the
@@ -1339,15 +1045,6 @@ module Aws::DataPipeline
1339
1045
 
1340
1046
  # Contains the parameters for SetStatus.
1341
1047
  #
1342
- # @note When making an API call, you may pass SetStatusInput
1343
- # data as a hash:
1344
- #
1345
- # {
1346
- # pipeline_id: "id", # required
1347
- # object_ids: ["id"], # required
1348
- # status: "string", # required
1349
- # }
1350
- #
1351
1048
  # @!attribute [rw] pipeline_id
1352
1049
  # The ID of the pipeline that contains the objects.
1353
1050
  # @return [String]
@@ -1375,17 +1072,6 @@ module Aws::DataPipeline
1375
1072
 
1376
1073
  # Contains the parameters for SetTaskStatus.
1377
1074
  #
1378
- # @note When making an API call, you may pass SetTaskStatusInput
1379
- # data as a hash:
1380
- #
1381
- # {
1382
- # task_id: "taskId", # required
1383
- # task_status: "FINISHED", # required, accepts FINISHED, FAILED, FALSE
1384
- # error_id: "string",
1385
- # error_message: "errorMessage",
1386
- # error_stack_trace: "string",
1387
- # }
1388
- #
1389
1075
  # @!attribute [rw] task_id
1390
1076
  # The ID of the task assigned to the task runner. This value is
1391
1077
  # provided in the response for PollForTask.
@@ -1444,14 +1130,6 @@ module Aws::DataPipeline
1444
1130
  #
1445
1131
  # [1]: http://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-control-access.html
1446
1132
  #
1447
- # @note When making an API call, you may pass Tag
1448
- # data as a hash:
1449
- #
1450
- # {
1451
- # key: "tagKey", # required
1452
- # value: "tagValue", # required
1453
- # }
1454
- #
1455
1133
  # @!attribute [rw] key
1456
1134
  # The key name of a tag defined by a user. For more information, see
1457
1135
  # [Controlling User Access to Pipelines][1] in the *AWS Data Pipeline
@@ -1530,43 +1208,6 @@ module Aws::DataPipeline
1530
1208
 
1531
1209
  # Contains the parameters for ValidatePipelineDefinition.
1532
1210
  #
1533
- # @note When making an API call, you may pass ValidatePipelineDefinitionInput
1534
- # data as a hash:
1535
- #
1536
- # {
1537
- # pipeline_id: "id", # required
1538
- # pipeline_objects: [ # required
1539
- # {
1540
- # id: "id", # required
1541
- # name: "id", # required
1542
- # fields: [ # required
1543
- # {
1544
- # key: "fieldNameString", # required
1545
- # string_value: "fieldStringValue",
1546
- # ref_value: "fieldNameString",
1547
- # },
1548
- # ],
1549
- # },
1550
- # ],
1551
- # parameter_objects: [
1552
- # {
1553
- # id: "fieldNameString", # required
1554
- # attributes: [ # required
1555
- # {
1556
- # key: "attributeNameString", # required
1557
- # string_value: "attributeValueString", # required
1558
- # },
1559
- # ],
1560
- # },
1561
- # ],
1562
- # parameter_values: [
1563
- # {
1564
- # id: "fieldNameString", # required
1565
- # string_value: "fieldStringValue", # required
1566
- # },
1567
- # ],
1568
- # }
1569
- #
1570
1211
  # @!attribute [rw] pipeline_id
1571
1212
  # The ID of the pipeline.
1572
1213
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-datapipeline/customizations'
52
52
  # @!group service
53
53
  module Aws::DataPipeline
54
54
 
55
- GEM_VERSION = '1.37.0'
55
+ GEM_VERSION = '1.38.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-datapipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.37.0
4
+ version: 1.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core