aws-sdk-transfer 1.70.0 → 1.71.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 614e44a6b647422b2b2b1098f2b22b4f93005873cc28ac10f0df8d4731f12080
4
- data.tar.gz: 1b71dd138bea3265f873b59ed5310f47f148249e97d8bced3885ebd6bd45cf07
3
+ metadata.gz: 021e1b195c51851066036d08c15d86d79f3a9a8155d0c9a163cb582579fed214
4
+ data.tar.gz: 4940a8fe92a4015d1bb5b4bdac758a04386da439a80b85cd894f49a15b3d32be
5
5
  SHA512:
6
- metadata.gz: bf906f39c40b0afd40863db6c9dde9152654eb3e52cd752d88b8b81fb826df864558f1fd1ee82f2bfbb054e29e651d3c2be9e56bc7500b64833935109c9ec86b
7
- data.tar.gz: 31d374615ecc2582f50fc69f8642bfe5cb17e4a59fa1fef673d44e99d594ab38d40686b98233308dbae88c8074ce9985eae541521b1e59ef6318b1f5a47d3540
6
+ metadata.gz: 54f0f3c274ce2b3ffdb7ec2beea3a46be91e7eece21a42985301868472bb63da00bc63b4a006f050fe78bda42bd4790ba324b283cba752aa82e573d23292465e
7
+ data.tar.gz: 27070f80c0bfbc5a9a95456248110bdec93bcef9ee331bdac7276a0d4ec9e1638d53927a859ac7f23aae6532e1578c603d80e860941f4b9f2adb0cf0849ebe66
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.71.0 (2023-06-21)
5
+ ------------------
6
+
7
+ * Feature - This release adds a new parameter StructuredLogDestinations to CreateServer, UpdateServer APIs.
8
+
4
9
  1.70.0 (2023-06-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.70.0
1
+ 1.71.0
@@ -1026,6 +1026,25 @@ module Aws::Transfer
1026
1026
  # upload occurs when the server session disconnects while the file is
1027
1027
  # still being uploaded.
1028
1028
  #
1029
+ # @option params [Array<String>] :structured_log_destinations
1030
+ # Specifies the log groups to which your server logs are sent.
1031
+ #
1032
+ # To specify a log group, you must provide the ARN for an existing log
1033
+ # group. In this case, the format of the log group is as follows:
1034
+ #
1035
+ # `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
1036
+ #
1037
+ # For example,
1038
+ # `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
1039
+ #
1040
+ # If you have previously specified a log group for a server, you can
1041
+ # clear it, and in effect turn off structured logging, by providing an
1042
+ # empty value for this parameter in an `update-server` call. For
1043
+ # example:
1044
+ #
1045
+ # `update-server --server-id s-1234567890abcdef0
1046
+ # --structured-log-destinations`
1047
+ #
1029
1048
  # @return [Types::CreateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1030
1049
  #
1031
1050
  # * {Types::CreateServerResponse#server_id #server_id} => String
@@ -1083,6 +1102,7 @@ module Aws::Transfer
1083
1102
  # },
1084
1103
  # ],
1085
1104
  # },
1105
+ # structured_log_destinations: ["Arn"],
1086
1106
  # })
1087
1107
  #
1088
1108
  # @example Response structure
@@ -2198,6 +2218,8 @@ module Aws::Transfer
2198
2218
  # resp.server.workflow_details.on_partial_upload #=> Array
2199
2219
  # resp.server.workflow_details.on_partial_upload[0].workflow_id #=> String
2200
2220
  # resp.server.workflow_details.on_partial_upload[0].execution_role #=> String
2221
+ # resp.server.structured_log_destinations #=> Array
2222
+ # resp.server.structured_log_destinations[0] #=> String
2201
2223
  #
2202
2224
  #
2203
2225
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4114,6 +4136,25 @@ module Aws::Transfer
4114
4136
  # `aws transfer update-server --server-id s-01234567890abcdef
4115
4137
  # --workflow-details '\{"OnUpload":[]\}'`
4116
4138
  #
4139
+ # @option params [Array<String>] :structured_log_destinations
4140
+ # Specifies the log groups to which your server logs are sent.
4141
+ #
4142
+ # To specify a log group, you must provide the ARN for an existing log
4143
+ # group. In this case, the format of the log group is as follows:
4144
+ #
4145
+ # `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
4146
+ #
4147
+ # For example,
4148
+ # `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
4149
+ #
4150
+ # If you have previously specified a log group for a server, you can
4151
+ # clear it, and in effect turn off structured logging, by providing an
4152
+ # empty value for this parameter in an `update-server` call. For
4153
+ # example:
4154
+ #
4155
+ # `update-server --server-id s-1234567890abcdef0
4156
+ # --structured-log-destinations`
4157
+ #
4117
4158
  # @return [Types::UpdateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4118
4159
  #
4119
4160
  # * {Types::UpdateServerResponse#server_id #server_id} => String
@@ -4164,6 +4205,7 @@ module Aws::Transfer
4164
4205
  # },
4165
4206
  # ],
4166
4207
  # },
4208
+ # structured_log_destinations: ["Arn"],
4167
4209
  # })
4168
4210
  #
4169
4211
  # @example Response structure
@@ -4337,7 +4379,7 @@ module Aws::Transfer
4337
4379
  params: params,
4338
4380
  config: config)
4339
4381
  context[:gem_name] = 'aws-sdk-transfer'
4340
- context[:gem_version] = '1.70.0'
4382
+ context[:gem_version] = '1.71.0'
4341
4383
  Seahorse::Client::Request.new(handlers, context)
4342
4384
  end
4343
4385
 
@@ -265,6 +265,7 @@ module Aws::Transfer
265
265
  StatusCode = Shapes::IntegerShape.new(name: 'StatusCode')
266
266
  StepResultOutputsJson = Shapes::StringShape.new(name: 'StepResultOutputsJson')
267
267
  StopServerRequest = Shapes::StructureShape.new(name: 'StopServerRequest')
268
+ StructuredLogDestinations = Shapes::ListShape.new(name: 'StructuredLogDestinations')
268
269
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
269
270
  SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
270
271
  Tag = Shapes::StructureShape.new(name: 'Tag')
@@ -401,6 +402,7 @@ module Aws::Transfer
401
402
  CreateServerRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: SecurityPolicyName, location_name: "SecurityPolicyName"))
402
403
  CreateServerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
403
404
  CreateServerRequest.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
405
+ CreateServerRequest.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
404
406
  CreateServerRequest.struct_class = Types::CreateServerRequest
405
407
 
406
408
  CreateServerResponse.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
@@ -658,6 +660,7 @@ module Aws::Transfer
658
660
  DescribedServer.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
659
661
  DescribedServer.add_member(:user_count, Shapes::ShapeRef.new(shape: UserCount, location_name: "UserCount"))
660
662
  DescribedServer.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
663
+ DescribedServer.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
661
664
  DescribedServer.struct_class = Types::DescribedServer
662
665
 
663
666
  DescribedUser.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
@@ -1061,6 +1064,8 @@ module Aws::Transfer
1061
1064
  StopServerRequest.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
1062
1065
  StopServerRequest.struct_class = Types::StopServerRequest
1063
1066
 
1067
+ StructuredLogDestinations.member = Shapes::ShapeRef.new(shape: Arn)
1068
+
1064
1069
  SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
1065
1070
 
1066
1071
  Tag.add_member(:key, Shapes::ShapeRef.new(shape: TagKey, required: true, location_name: "Key"))
@@ -1175,6 +1180,7 @@ module Aws::Transfer
1175
1180
  UpdateServerRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: SecurityPolicyName, location_name: "SecurityPolicyName"))
1176
1181
  UpdateServerRequest.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
1177
1182
  UpdateServerRequest.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
1183
+ UpdateServerRequest.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
1178
1184
  UpdateServerRequest.struct_class = Types::UpdateServerRequest
1179
1185
 
1180
1186
  UpdateServerResponse.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
@@ -789,6 +789,26 @@ module Aws::Transfer
789
789
  # file is still being uploaded.
790
790
  # @return [Types::WorkflowDetails]
791
791
  #
792
+ # @!attribute [rw] structured_log_destinations
793
+ # Specifies the log groups to which your server logs are sent.
794
+ #
795
+ # To specify a log group, you must provide the ARN for an existing log
796
+ # group. In this case, the format of the log group is as follows:
797
+ #
798
+ # `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
799
+ #
800
+ # For example,
801
+ # `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
802
+ #
803
+ # If you have previously specified a log group for a server, you can
804
+ # clear it, and in effect turn off structured logging, by providing an
805
+ # empty value for this parameter in an `update-server` call. For
806
+ # example:
807
+ #
808
+ # `update-server --server-id s-1234567890abcdef0
809
+ # --structured-log-destinations`
810
+ # @return [Array<String>]
811
+ #
792
812
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateServerRequest AWS API Documentation
793
813
  #
794
814
  class CreateServerRequest < Struct.new(
@@ -806,7 +826,8 @@ module Aws::Transfer
806
826
  :protocol_details,
807
827
  :security_policy_name,
808
828
  :tags,
809
- :workflow_details)
829
+ :workflow_details,
830
+ :structured_log_destinations)
810
831
  SENSITIVE = [:host_key]
811
832
  include Aws::Structure
812
833
  end
@@ -2440,6 +2461,26 @@ module Aws::Transfer
2440
2461
  # file is still being uploaded.
2441
2462
  # @return [Types::WorkflowDetails]
2442
2463
  #
2464
+ # @!attribute [rw] structured_log_destinations
2465
+ # Specifies the log groups to which your server logs are sent.
2466
+ #
2467
+ # To specify a log group, you must provide the ARN for an existing log
2468
+ # group. In this case, the format of the log group is as follows:
2469
+ #
2470
+ # `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
2471
+ #
2472
+ # For example,
2473
+ # `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
2474
+ #
2475
+ # If you have previously specified a log group for a server, you can
2476
+ # clear it, and in effect turn off structured logging, by providing an
2477
+ # empty value for this parameter in an `update-server` call. For
2478
+ # example:
2479
+ #
2480
+ # `update-server --server-id s-1234567890abcdef0
2481
+ # --structured-log-destinations`
2482
+ # @return [Array<String>]
2483
+ #
2443
2484
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedServer AWS API Documentation
2444
2485
  #
2445
2486
  class DescribedServer < Struct.new(
@@ -2461,7 +2502,8 @@ module Aws::Transfer
2461
2502
  :state,
2462
2503
  :tags,
2463
2504
  :user_count,
2464
- :workflow_details)
2505
+ :workflow_details,
2506
+ :structured_log_destinations)
2465
2507
  SENSITIVE = []
2466
2508
  include Aws::Structure
2467
2509
  end
@@ -5520,6 +5562,26 @@ module Aws::Transfer
5520
5562
  # --workflow-details '\{"OnUpload":[]\}'`
5521
5563
  # @return [Types::WorkflowDetails]
5522
5564
  #
5565
+ # @!attribute [rw] structured_log_destinations
5566
+ # Specifies the log groups to which your server logs are sent.
5567
+ #
5568
+ # To specify a log group, you must provide the ARN for an existing log
5569
+ # group. In this case, the format of the log group is as follows:
5570
+ #
5571
+ # `arn:aws:logs:region-name:amazon-account-id:log-group:log-group-name:*`
5572
+ #
5573
+ # For example,
5574
+ # `arn:aws:logs:us-east-1:111122223333:log-group:mytestgroup:*`
5575
+ #
5576
+ # If you have previously specified a log group for a server, you can
5577
+ # clear it, and in effect turn off structured logging, by providing an
5578
+ # empty value for this parameter in an `update-server` call. For
5579
+ # example:
5580
+ #
5581
+ # `update-server --server-id s-1234567890abcdef0
5582
+ # --structured-log-destinations`
5583
+ # @return [Array<String>]
5584
+ #
5523
5585
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateServerRequest AWS API Documentation
5524
5586
  #
5525
5587
  class UpdateServerRequest < Struct.new(
@@ -5535,7 +5597,8 @@ module Aws::Transfer
5535
5597
  :protocols,
5536
5598
  :security_policy_name,
5537
5599
  :server_id,
5538
- :workflow_details)
5600
+ :workflow_details,
5601
+ :structured_log_destinations)
5539
5602
  SENSITIVE = [:host_key]
5540
5603
  include Aws::Structure
5541
5604
  end
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-transfer/customizations'
53
53
  # @!group service
54
54
  module Aws::Transfer
55
55
 
56
- GEM_VERSION = '1.70.0'
56
+ GEM_VERSION = '1.71.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transfer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.70.0
4
+ version: 1.71.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-06-15 00:00:00.000000000 Z
11
+ date: 2023-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core