aws-sdk-appflow 1.49.0 → 1.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: 6a47eac1dbf17e01b676a66102398016fd71fac394cd01925310cde3b794959a
4
- data.tar.gz: 89c9d00841a38a2648e0f9d576a88979177c539ea5d13c739fb79a77ac621841
3
+ metadata.gz: 6933fbf00c0f8fa2254720f537a1b5d9640e1535caf81fb622cef90829581c6b
4
+ data.tar.gz: 02ee166ec71309829a8cb7851b207ab994b12b72d8bebaed09e07e00cab20f06
5
5
  SHA512:
6
- metadata.gz: 2c64dc29e34a34e5af8e9b7b39e4cf5728ad35167b1e59260db7c38cb91fd4019faa2190d8ecb2a7209f5380aef872ca8cde8de4c5f74a9ef4db1f2549153e2e
7
- data.tar.gz: 63ffaefc3361fccec8e731d3699c3ab7f36ce23979b336ae5c748e55f6791921fa9071c1ae93576ba0d88328ce08e48f37c16ad906b980f40742eee00b558341
6
+ metadata.gz: 5c83ed52b78c464108802446d3bd7fefe3a1a61089615efd1c358bb7d01fda88f3e30a48a11d31f01642dc06f6e35ac9e02e37060a6c22732e26074bf5f6ecf8
7
+ data.tar.gz: 22840d5c31dd39cb883d97395a29fcfa4a6b7456022415ac11ef130811d21d357dcf5d620abda74ab973aebdd4c9dc787f11b59aa5c3548be1d2e44546dd3d93
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2023-09-06)
5
+ ------------------
6
+
7
+ * Feature - Adding OAuth2.0 support for servicenow connector.
8
+
4
9
  1.49.0 (2023-08-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.50.0
@@ -676,8 +676,18 @@ module Aws::Appflow
676
676
  # jwt_token: "JwtToken",
677
677
  # },
678
678
  # service_now: {
679
- # username: "Username", # required
680
- # password: "Password", # required
679
+ # username: "Username",
680
+ # password: "Password",
681
+ # o_auth_2_credentials: {
682
+ # client_id: "ClientId",
683
+ # client_secret: "ClientSecret",
684
+ # access_token: "AccessToken",
685
+ # refresh_token: "RefreshToken",
686
+ # o_auth_request: {
687
+ # auth_code: "AuthCode",
688
+ # redirect_uri: "RedirectUri",
689
+ # },
690
+ # },
681
691
  # },
682
692
  # singular: {
683
693
  # api_key: "ApiKey", # required
@@ -2710,8 +2720,18 @@ module Aws::Appflow
2710
2720
  # jwt_token: "JwtToken",
2711
2721
  # },
2712
2722
  # service_now: {
2713
- # username: "Username", # required
2714
- # password: "Password", # required
2723
+ # username: "Username",
2724
+ # password: "Password",
2725
+ # o_auth_2_credentials: {
2726
+ # client_id: "ClientId",
2727
+ # client_secret: "ClientSecret",
2728
+ # access_token: "AccessToken",
2729
+ # refresh_token: "RefreshToken",
2730
+ # o_auth_request: {
2731
+ # auth_code: "AuthCode",
2732
+ # redirect_uri: "RedirectUri",
2733
+ # },
2734
+ # },
2715
2735
  # },
2716
2736
  # singular: {
2717
2737
  # api_key: "ApiKey", # required
@@ -3248,7 +3268,7 @@ module Aws::Appflow
3248
3268
  params: params,
3249
3269
  config: config)
3250
3270
  context[:gem_name] = 'aws-sdk-appflow'
3251
- context[:gem_version] = '1.49.0'
3271
+ context[:gem_version] = '1.50.0'
3252
3272
  Seahorse::Client::Request.new(handlers, context)
3253
3273
  end
3254
3274
 
@@ -1338,8 +1338,9 @@ module Aws::Appflow
1338
1338
 
1339
1339
  SchedulingFrequencyTypeList.member = Shapes::ShapeRef.new(shape: ScheduleFrequencyType)
1340
1340
 
1341
- ServiceNowConnectorProfileCredentials.add_member(:username, Shapes::ShapeRef.new(shape: Username, required: true, location_name: "username"))
1342
- ServiceNowConnectorProfileCredentials.add_member(:password, Shapes::ShapeRef.new(shape: Password, required: true, location_name: "password"))
1341
+ ServiceNowConnectorProfileCredentials.add_member(:username, Shapes::ShapeRef.new(shape: Username, location_name: "username"))
1342
+ ServiceNowConnectorProfileCredentials.add_member(:password, Shapes::ShapeRef.new(shape: Password, location_name: "password"))
1343
+ ServiceNowConnectorProfileCredentials.add_member(:o_auth_2_credentials, Shapes::ShapeRef.new(shape: OAuth2Credentials, location_name: "oAuth2Credentials"))
1343
1344
  ServiceNowConnectorProfileCredentials.struct_class = Types::ServiceNowConnectorProfileCredentials
1344
1345
 
1345
1346
  ServiceNowConnectorProfileProperties.add_member(:instance_url, Shapes::ShapeRef.new(shape: InstanceUrl, required: true, location_name: "instanceUrl"))
@@ -4751,11 +4751,16 @@ module Aws::Appflow
4751
4751
  # The password that corresponds to the user name.
4752
4752
  # @return [String]
4753
4753
  #
4754
+ # @!attribute [rw] o_auth_2_credentials
4755
+ # The OAuth 2.0 credentials required to authenticate the user.
4756
+ # @return [Types::OAuth2Credentials]
4757
+ #
4754
4758
  # @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ServiceNowConnectorProfileCredentials AWS API Documentation
4755
4759
  #
4756
4760
  class ServiceNowConnectorProfileCredentials < Struct.new(
4757
4761
  :username,
4758
- :password)
4762
+ :password,
4763
+ :o_auth_2_credentials)
4759
4764
  SENSITIVE = [:password]
4760
4765
  include Aws::Structure
4761
4766
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-appflow/customizations'
52
52
  # @!group service
53
53
  module Aws::Appflow
54
54
 
55
- GEM_VERSION = '1.49.0'
55
+ GEM_VERSION = '1.50.0'
56
56
 
57
57
  end
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.49.0
4
+ version: 1.50.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: 2023-08-30 00:00:00.000000000 Z
11
+ date: 2023-09-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core