aws-sdk-appflow 1.68.0 → 1.69.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: 81b22ea2af396f846c478c7348f40d1f7cf042a60eec2b13ed075e6f5ee65afb
4
- data.tar.gz: 0731fe237dbbac5fb39f1656ba01a33f97595cd1e122cb9d3ffb5d10e1edc0ba
3
+ metadata.gz: 10d0257d496dcc8aad465a66767a4d783fec0b01f944c109441da029cb6b79e2
4
+ data.tar.gz: 34bf450cf03156b155e9e3b93c6b03d42f3c1c821a0ed50fb836bc3a53934713
5
5
  SHA512:
6
- metadata.gz: 7bb6be91c932182d54e8fe313377761cb7765adb014cda5ee67f7341414c132b2f808671bbd7d9012c363742ceaea8da4a4bf06c1392a91745bf1b5dc4d59d18
7
- data.tar.gz: a532f13f444b85607161c74b20ae28f60bf9634630aba2124bcd69067272e0255f1fd9b7356886fae5ec0777fcf026db95f65ec7528b8e21f48da53f7e299bff
6
+ metadata.gz: 74bd759e73ec3d4cd3a4fc174f7610c2546d33a2d57ab16805f5f3e734678c2586cd13ff208635a48d3b5ebdd4a65a44a4cea8fd3b936992d2854b610fe950ed
7
+ data.tar.gz: 88f8be012a0135ccc3f4c02474f88659f35c8fe5ae1d7df4cd6c132cba65be13f8f08653fe057320a6beeb517434086ae5aa9a878e87a0abf10049142bccb2ab
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.69.0 (2024-10-11)
5
+ ------------------
6
+
7
+ * Feature - Doc only updates for clarification around OAuth2GrantType for Salesforce.
8
+
4
9
  1.68.0 (2024-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.68.0
1
+ 1.69.0
@@ -3332,7 +3332,7 @@ module Aws::Appflow
3332
3332
  tracer: tracer
3333
3333
  )
3334
3334
  context[:gem_name] = 'aws-sdk-appflow'
3335
- context[:gem_version] = '1.68.0'
3335
+ context[:gem_version] = '1.69.0'
3336
3336
  Seahorse::Client::Request.new(handlers, context)
3337
3337
  end
3338
3338
 
@@ -32,7 +32,7 @@ module Aws::Appflow
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://appflow-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -4357,13 +4357,6 @@ module Aws::Appflow
4357
4357
  # Salesforce account and authorize Amazon AppFlow to access your
4358
4358
  # records.
4359
4359
  #
4360
- # CLIENT\_CREDENTIALS
4361
- #
4362
- # : Amazon AppFlow passes client credentials (a client ID and client
4363
- # secret) when it requests the access token from Salesforce. You
4364
- # provide these credentials to Amazon AppFlow when you define the
4365
- # connection to your Salesforce account.
4366
- #
4367
4360
  # JWT\_BEARER
4368
4361
  #
4369
4362
  # : Amazon AppFlow passes a JSON web token (JWT) when it requests the
@@ -4372,6 +4365,10 @@ module Aws::Appflow
4372
4365
  # When you use this grant type, you don't need to log in to your
4373
4366
  # Salesforce account to authorize Amazon AppFlow to access your
4374
4367
  # records.
4368
+ #
4369
+ # <note markdown="1"> The CLIENT\_CREDENTIALS value is not supported for Salesforce.
4370
+ #
4371
+ # </note>
4375
4372
  # @return [String]
4376
4373
  #
4377
4374
  # @!attribute [rw] jwt_token
@@ -4569,13 +4566,6 @@ module Aws::Appflow
4569
4566
  # Salesforce account and authorize Amazon AppFlow to access your
4570
4567
  # records.
4571
4568
  #
4572
- # CLIENT\_CREDENTIALS
4573
- #
4574
- # : Amazon AppFlow passes client credentials (a client ID and client
4575
- # secret) when it requests the access token from Salesforce. You
4576
- # provide these credentials to Amazon AppFlow when you define the
4577
- # connection to your Salesforce account.
4578
- #
4579
4569
  # JWT\_BEARER
4580
4570
  #
4581
4571
  # : Amazon AppFlow passes a JSON web token (JWT) when it requests the
@@ -4584,6 +4574,10 @@ module Aws::Appflow
4584
4574
  # When you use this grant type, you don't need to log in to your
4585
4575
  # Salesforce account to authorize Amazon AppFlow to access your
4586
4576
  # records.
4577
+ #
4578
+ # <note markdown="1"> The CLIENT\_CREDENTIALS value is not supported for Salesforce.
4579
+ #
4580
+ # </note>
4587
4581
  # @return [Array<String>]
4588
4582
  #
4589
4583
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SalesforceMetadata AWS API Documentation
@@ -54,7 +54,7 @@ module Aws::Appflow
54
54
  autoload :EndpointProvider, 'aws-sdk-appflow/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-appflow/endpoints'
56
56
 
57
- GEM_VERSION = '1.68.0'
57
+ GEM_VERSION = '1.69.0'
58
58
 
59
59
  end
60
60
 
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.68.0
4
+ version: 1.69.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: 2024-09-24 00:00:00.000000000 Z
11
+ date: 2024-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core