aws-sdk-appflow 1.9.0 → 1.10.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: 40b01ce68c52117b0b24070036ddb849d572aece5bcfef98e8f365b60dab8725
4
- data.tar.gz: 440cf661d2a010d25281981f7b5cd93195128b5a8e650037f4ea070b43e1bdc3
3
+ metadata.gz: ac114da780457cb0e51082f1346c2e2aa54000702050459b8802eb1c4fd7e324
4
+ data.tar.gz: 86fcb8c917bf1dd5d91d3f9711076d221215002c8f76b0eee2ecceb51b7b8fe7
5
5
  SHA512:
6
- metadata.gz: d9f3826f83ef42201ca30f5bf119f07a13237e332a595513e8cb67c1ee611e97dcb03d7f63d3a4896f321eacfe08aa22fbd50d4f64f5650f407bf389b7476d79
7
- data.tar.gz: 476f5231365dfa75fdb8a2888d5022f1a02ad196fc8c5d8e46b1976d9ec717febb12c4d439e8d6da7e9b6dc32105c2e3eb0fba036e90df63684d602a99cd7226
6
+ metadata.gz: 48c6b9cf87f9aeef429aa1e41787b4f3d7ccc23cab0777021702edd0c5edef6f6fdd32834e9f93a884637d8e25a43ff78277a5893bec8944ee7d36d7c21d5389
7
+ data.tar.gz: 12934e84178fbb37d781e94127fdf4640345678094504b907fb9bd615e0a491efb111f53a0de42eac53cb5ca333e318625277aa8f480e4ff5cac50c2c7cf9945
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2021-04-05)
5
+ ------------------
6
+
7
+ * Feature - Added destination properties for Zendesk.
8
+
4
9
  1.9.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.10.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appflow/customizations'
48
48
  # @!group service
49
49
  module Aws::Appflow
50
50
 
51
- GEM_VERSION = '1.9.0'
51
+ GEM_VERSION = '1.10.0'
52
52
 
53
53
  end
@@ -734,6 +734,16 @@ module Aws::Appflow
734
734
  # domain_name: "DomainName", # required
735
735
  # object_type_name: "ObjectTypeName",
736
736
  # },
737
+ # zendesk: {
738
+ # object: "Object", # required
739
+ # id_field_names: ["Name"],
740
+ # error_handling_config: {
741
+ # fail_on_first_destination_error: false,
742
+ # bucket_prefix: "BucketPrefix",
743
+ # bucket_name: "BucketName",
744
+ # },
745
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
746
+ # },
737
747
  # },
738
748
  # },
739
749
  # ],
@@ -1143,6 +1153,13 @@ module Aws::Appflow
1143
1153
  # resp.destination_flow_config_list[0].destination_connector_properties.honeycode.error_handling_config.bucket_name #=> String
1144
1154
  # resp.destination_flow_config_list[0].destination_connector_properties.customer_profiles.domain_name #=> String
1145
1155
  # resp.destination_flow_config_list[0].destination_connector_properties.customer_profiles.object_type_name #=> String
1156
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.object #=> String
1157
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.id_field_names #=> Array
1158
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.id_field_names[0] #=> String
1159
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.fail_on_first_destination_error #=> Boolean
1160
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_prefix #=> String
1161
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.error_handling_config.bucket_name #=> String
1162
+ # resp.destination_flow_config_list[0].destination_connector_properties.zendesk.write_operation_type #=> String, one of "INSERT", "UPSERT", "UPDATE"
1146
1163
  # resp.last_run_execution_details.most_recent_execution_message #=> String
1147
1164
  # resp.last_run_execution_details.most_recent_execution_time #=> Time
1148
1165
  # resp.last_run_execution_details.most_recent_execution_status #=> String, one of "InProgress", "Successful", "Error"
@@ -1874,6 +1891,16 @@ module Aws::Appflow
1874
1891
  # domain_name: "DomainName", # required
1875
1892
  # object_type_name: "ObjectTypeName",
1876
1893
  # },
1894
+ # zendesk: {
1895
+ # object: "Object", # required
1896
+ # id_field_names: ["Name"],
1897
+ # error_handling_config: {
1898
+ # fail_on_first_destination_error: false,
1899
+ # bucket_prefix: "BucketPrefix",
1900
+ # bucket_name: "BucketName",
1901
+ # },
1902
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
1903
+ # },
1877
1904
  # },
1878
1905
  # },
1879
1906
  # ],
@@ -1931,7 +1958,7 @@ module Aws::Appflow
1931
1958
  params: params,
1932
1959
  config: config)
1933
1960
  context[:gem_name] = 'aws-sdk-appflow'
1934
- context[:gem_version] = '1.9.0'
1961
+ context[:gem_version] = '1.10.0'
1935
1962
  Seahorse::Client::Request.new(handlers, context)
1936
1963
  end
1937
1964
 
@@ -282,6 +282,7 @@ module Aws::Appflow
282
282
  ZendeskConnectorOperator = Shapes::StringShape.new(name: 'ZendeskConnectorOperator')
283
283
  ZendeskConnectorProfileCredentials = Shapes::StructureShape.new(name: 'ZendeskConnectorProfileCredentials')
284
284
  ZendeskConnectorProfileProperties = Shapes::StructureShape.new(name: 'ZendeskConnectorProfileProperties')
285
+ ZendeskDestinationProperties = Shapes::StructureShape.new(name: 'ZendeskDestinationProperties')
285
286
  ZendeskMetadata = Shapes::StructureShape.new(name: 'ZendeskMetadata')
286
287
  ZendeskSourceProperties = Shapes::StructureShape.new(name: 'ZendeskSourceProperties')
287
288
 
@@ -558,6 +559,7 @@ module Aws::Appflow
558
559
  DestinationConnectorProperties.add_member(:upsolver, Shapes::ShapeRef.new(shape: UpsolverDestinationProperties, location_name: "Upsolver"))
559
560
  DestinationConnectorProperties.add_member(:honeycode, Shapes::ShapeRef.new(shape: HoneycodeDestinationProperties, location_name: "Honeycode"))
560
561
  DestinationConnectorProperties.add_member(:customer_profiles, Shapes::ShapeRef.new(shape: CustomerProfilesDestinationProperties, location_name: "CustomerProfiles"))
562
+ DestinationConnectorProperties.add_member(:zendesk, Shapes::ShapeRef.new(shape: ZendeskDestinationProperties, location_name: "Zendesk"))
561
563
  DestinationConnectorProperties.struct_class = Types::DestinationConnectorProperties
562
564
 
563
565
  DestinationFieldProperties.add_member(:is_creatable, Shapes::ShapeRef.new(shape: Boolean, location_name: "isCreatable"))
@@ -1033,6 +1035,12 @@ module Aws::Appflow
1033
1035
  ZendeskConnectorProfileProperties.add_member(:instance_url, Shapes::ShapeRef.new(shape: InstanceUrl, required: true, location_name: "instanceUrl"))
1034
1036
  ZendeskConnectorProfileProperties.struct_class = Types::ZendeskConnectorProfileProperties
1035
1037
 
1038
+ ZendeskDestinationProperties.add_member(:object, Shapes::ShapeRef.new(shape: Object, required: true, location_name: "object"))
1039
+ ZendeskDestinationProperties.add_member(:id_field_names, Shapes::ShapeRef.new(shape: IdFieldNameList, location_name: "idFieldNames"))
1040
+ ZendeskDestinationProperties.add_member(:error_handling_config, Shapes::ShapeRef.new(shape: ErrorHandlingConfig, location_name: "errorHandlingConfig"))
1041
+ ZendeskDestinationProperties.add_member(:write_operation_type, Shapes::ShapeRef.new(shape: WriteOperationType, location_name: "writeOperationType"))
1042
+ ZendeskDestinationProperties.struct_class = Types::ZendeskDestinationProperties
1043
+
1036
1044
  ZendeskMetadata.add_member(:o_auth_scopes, Shapes::ShapeRef.new(shape: OAuthScopeList, location_name: "oAuthScopes"))
1037
1045
  ZendeskMetadata.struct_class = Types::ZendeskMetadata
1038
1046
 
@@ -1455,6 +1455,16 @@ module Aws::Appflow
1455
1455
  # domain_name: "DomainName", # required
1456
1456
  # object_type_name: "ObjectTypeName",
1457
1457
  # },
1458
+ # zendesk: {
1459
+ # object: "Object", # required
1460
+ # id_field_names: ["Name"],
1461
+ # error_handling_config: {
1462
+ # fail_on_first_destination_error: false,
1463
+ # bucket_prefix: "BucketPrefix",
1464
+ # bucket_name: "BucketName",
1465
+ # },
1466
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
1467
+ # },
1458
1468
  # },
1459
1469
  # },
1460
1470
  # ],
@@ -2143,6 +2153,16 @@ module Aws::Appflow
2143
2153
  # domain_name: "DomainName", # required
2144
2154
  # object_type_name: "ObjectTypeName",
2145
2155
  # },
2156
+ # zendesk: {
2157
+ # object: "Object", # required
2158
+ # id_field_names: ["Name"],
2159
+ # error_handling_config: {
2160
+ # fail_on_first_destination_error: false,
2161
+ # bucket_prefix: "BucketPrefix",
2162
+ # bucket_name: "BucketName",
2163
+ # },
2164
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
2165
+ # },
2146
2166
  # }
2147
2167
  #
2148
2168
  # @!attribute [rw] redshift
@@ -2181,6 +2201,9 @@ module Aws::Appflow
2181
2201
  # The properties required to query Amazon Connect Customer Profiles.
2182
2202
  # @return [Types::CustomerProfilesDestinationProperties]
2183
2203
  #
2204
+ # @!attribute [rw] zendesk
2205
+ # @return [Types::ZendeskDestinationProperties]
2206
+ #
2184
2207
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/DestinationConnectorProperties AWS API Documentation
2185
2208
  #
2186
2209
  class DestinationConnectorProperties < Struct.new(
@@ -2192,7 +2215,8 @@ module Aws::Appflow
2192
2215
  :lookout_metrics,
2193
2216
  :upsolver,
2194
2217
  :honeycode,
2195
- :customer_profiles)
2218
+ :customer_profiles,
2219
+ :zendesk)
2196
2220
  SENSITIVE = []
2197
2221
  include Aws::Structure
2198
2222
  end
@@ -2328,6 +2352,16 @@ module Aws::Appflow
2328
2352
  # domain_name: "DomainName", # required
2329
2353
  # object_type_name: "ObjectTypeName",
2330
2354
  # },
2355
+ # zendesk: {
2356
+ # object: "Object", # required
2357
+ # id_field_names: ["Name"],
2358
+ # error_handling_config: {
2359
+ # fail_on_first_destination_error: false,
2360
+ # bucket_prefix: "BucketPrefix",
2361
+ # bucket_name: "BucketName",
2362
+ # },
2363
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
2364
+ # },
2331
2365
  # },
2332
2366
  # }
2333
2367
  #
@@ -5194,6 +5228,16 @@ module Aws::Appflow
5194
5228
  # domain_name: "DomainName", # required
5195
5229
  # object_type_name: "ObjectTypeName",
5196
5230
  # },
5231
+ # zendesk: {
5232
+ # object: "Object", # required
5233
+ # id_field_names: ["Name"],
5234
+ # error_handling_config: {
5235
+ # fail_on_first_destination_error: false,
5236
+ # bucket_prefix: "BucketPrefix",
5237
+ # bucket_name: "BucketName",
5238
+ # },
5239
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
5240
+ # },
5197
5241
  # },
5198
5242
  # },
5199
5243
  # ],
@@ -5527,6 +5571,53 @@ module Aws::Appflow
5527
5571
  include Aws::Structure
5528
5572
  end
5529
5573
 
5574
+ # @note When making an API call, you may pass ZendeskDestinationProperties
5575
+ # data as a hash:
5576
+ #
5577
+ # {
5578
+ # object: "Object", # required
5579
+ # id_field_names: ["Name"],
5580
+ # error_handling_config: {
5581
+ # fail_on_first_destination_error: false,
5582
+ # bucket_prefix: "BucketPrefix",
5583
+ # bucket_name: "BucketName",
5584
+ # },
5585
+ # write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
5586
+ # }
5587
+ #
5588
+ # @!attribute [rw] object
5589
+ # @return [String]
5590
+ #
5591
+ # @!attribute [rw] id_field_names
5592
+ # A list of field names that can be used as an ID field when
5593
+ # performing a write operation.
5594
+ # @return [Array<String>]
5595
+ #
5596
+ # @!attribute [rw] error_handling_config
5597
+ # The settings that determine how Amazon AppFlow handles an error when
5598
+ # placing data in the destination. For example, this setting would
5599
+ # determine if the flow should fail after one insertion error, or
5600
+ # continue and attempt to insert every record regardless of the
5601
+ # initial failure. `ErrorHandlingConfig` is a part of the destination
5602
+ # connector details.
5603
+ # @return [Types::ErrorHandlingConfig]
5604
+ #
5605
+ # @!attribute [rw] write_operation_type
5606
+ # The possible write operations in the destination connector. When
5607
+ # this value is not provided, this defaults to the `INSERT` operation.
5608
+ # @return [String]
5609
+ #
5610
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ZendeskDestinationProperties AWS API Documentation
5611
+ #
5612
+ class ZendeskDestinationProperties < Struct.new(
5613
+ :object,
5614
+ :id_field_names,
5615
+ :error_handling_config,
5616
+ :write_operation_type)
5617
+ SENSITIVE = []
5618
+ include Aws::Structure
5619
+ end
5620
+
5530
5621
  # The connector metadata specific to Zendesk.
5531
5622
  #
5532
5623
  # @!attribute [rw] o_auth_scopes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.10.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: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-04-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-appflow
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-appflow/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appflow
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appflow/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths: