aws-sdk-mainframemodernization 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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mainframemodernization/client.rb +29 -6
- data/lib/aws-sdk-mainframemodernization/client_api.rb +117 -102
- data/lib/aws-sdk-mainframemodernization/endpoints.rb +14 -0
- data/lib/aws-sdk-mainframemodernization/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-mainframemodernization/types.rb +20 -4
- data/lib/aws-sdk-mainframemodernization.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78928ba6c6c43a9a4d31270583d49f931b1935ff8e62f38882c1d96b57da3b7c
|
4
|
+
data.tar.gz: 179ab7c934c385bc0123cf73db42159876b48646a52cff6de92499f2b22b1507
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5162f5f9dc5e00e51e3f20b1f6b61a55d1a145d46d6fde61c55712925a1468d046ece579f74c0a099b75e08583f5bf8a8d0cf76e687fc521a6d637b9977e1cd2
|
7
|
+
data.tar.gz: 3b8eaa1770fcf581cf4cbe4018d81f9ef6f10499b67bf8fd3f20560e29c8036dff44da9e4c43f16a76f3b7826b6c79ab9ae3ab771d1a47a046f5fa74b1c6377c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.10.0
|
@@ -445,8 +445,10 @@ module Aws::MainframeModernization
|
|
445
445
|
# The unique identifier of the application.
|
446
446
|
#
|
447
447
|
# @option params [String] :role_arn
|
448
|
-
# The Amazon Resource Name (ARN)
|
449
|
-
# application
|
448
|
+
# The Amazon Resource Name (ARN) that identifies a role that the
|
449
|
+
# application uses to access Amazon Web Services resources that are not
|
450
|
+
# part of the application or are in a different Amazon Web Services
|
451
|
+
# account.
|
450
452
|
#
|
451
453
|
# @option params [Hash<String,String>] :tags
|
452
454
|
# A list of tags to apply to the application.
|
@@ -1209,7 +1211,7 @@ module Aws::MainframeModernization
|
|
1209
1211
|
# resp.publicly_accessible #=> Boolean
|
1210
1212
|
# resp.security_group_ids #=> Array
|
1211
1213
|
# resp.security_group_ids[0] #=> String
|
1212
|
-
# resp.status #=> String, one of "Creating", "Available", "
|
1214
|
+
# resp.status #=> String, one of "Creating", "Available", "Updating", "Deleting", "Failed"
|
1213
1215
|
# resp.status_reason #=> String
|
1214
1216
|
# resp.storage_configurations #=> Array
|
1215
1217
|
# resp.storage_configurations[0].efs.file_system_id #=> String
|
@@ -1231,6 +1233,26 @@ module Aws::MainframeModernization
|
|
1231
1233
|
req.send_request(options)
|
1232
1234
|
end
|
1233
1235
|
|
1236
|
+
# Gets a single sign-on URL that can be used to connect to AWS Blu
|
1237
|
+
# Insights.
|
1238
|
+
#
|
1239
|
+
# @return [Types::GetSignedBluinsightsUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1240
|
+
#
|
1241
|
+
# * {Types::GetSignedBluinsightsUrlResponse#signed_bi_url #signed_bi_url} => String
|
1242
|
+
#
|
1243
|
+
# @example Response structure
|
1244
|
+
#
|
1245
|
+
# resp.signed_bi_url #=> String
|
1246
|
+
#
|
1247
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/GetSignedBluinsightsUrl AWS API Documentation
|
1248
|
+
#
|
1249
|
+
# @overload get_signed_bluinsights_url(params = {})
|
1250
|
+
# @param [Hash] params ({})
|
1251
|
+
def get_signed_bluinsights_url(params = {}, options = {})
|
1252
|
+
req = build_request(:get_signed_bluinsights_url, params)
|
1253
|
+
req.send_request(options)
|
1254
|
+
end
|
1255
|
+
|
1234
1256
|
# Returns a list of the application versions for a specific application.
|
1235
1257
|
#
|
1236
1258
|
# @option params [required, String] :application_id
|
@@ -1715,7 +1737,7 @@ module Aws::MainframeModernization
|
|
1715
1737
|
# resp.environments[0].environment_id #=> String
|
1716
1738
|
# resp.environments[0].instance_type #=> String
|
1717
1739
|
# resp.environments[0].name #=> String
|
1718
|
-
# resp.environments[0].status #=> String, one of "Creating", "Available", "
|
1740
|
+
# resp.environments[0].status #=> String, one of "Creating", "Available", "Updating", "Deleting", "Failed"
|
1719
1741
|
# resp.next_token #=> String
|
1720
1742
|
#
|
1721
1743
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/ListEnvironments AWS API Documentation
|
@@ -1970,7 +1992,8 @@ module Aws::MainframeModernization
|
|
1970
1992
|
# will fail if `applyDuringMaintenanceWindow` is set to true.
|
1971
1993
|
#
|
1972
1994
|
# @option params [Integer] :desired_capacity
|
1973
|
-
# The desired capacity for the runtime environment to update.
|
1995
|
+
# The desired capacity for the runtime environment to update. The
|
1996
|
+
# minimum possible value is 0 and the maximum is 100.
|
1974
1997
|
#
|
1975
1998
|
# @option params [String] :engine_version
|
1976
1999
|
# The version of the runtime engine for the runtime environment.
|
@@ -2028,7 +2051,7 @@ module Aws::MainframeModernization
|
|
2028
2051
|
params: params,
|
2029
2052
|
config: config)
|
2030
2053
|
context[:gem_name] = 'aws-sdk-mainframemodernization'
|
2031
|
-
context[:gem_version] = '1.
|
2054
|
+
context[:gem_version] = '1.10.0'
|
2032
2055
|
Seahorse::Client::Request.new(handlers, context)
|
2033
2056
|
end
|
2034
2057
|
|
@@ -102,6 +102,7 @@ module Aws::MainframeModernization
|
|
102
102
|
GetDeploymentResponse = Shapes::StructureShape.new(name: 'GetDeploymentResponse')
|
103
103
|
GetEnvironmentRequest = Shapes::StructureShape.new(name: 'GetEnvironmentRequest')
|
104
104
|
GetEnvironmentResponse = Shapes::StructureShape.new(name: 'GetEnvironmentResponse')
|
105
|
+
GetSignedBluinsightsUrlResponse = Shapes::StructureShape.new(name: 'GetSignedBluinsightsUrlResponse')
|
105
106
|
HighAvailabilityConfig = Shapes::StructureShape.new(name: 'HighAvailabilityConfig')
|
106
107
|
Identifier = Shapes::StringShape.new(name: 'Identifier')
|
107
108
|
IdentifierList = Shapes::ListShape.new(name: 'IdentifierList')
|
@@ -597,6 +598,9 @@ module Aws::MainframeModernization
|
|
597
598
|
GetEnvironmentResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String50, required: true, location_name: "vpcId"))
|
598
599
|
GetEnvironmentResponse.struct_class = Types::GetEnvironmentResponse
|
599
600
|
|
601
|
+
GetSignedBluinsightsUrlResponse.add_member(:signed_bi_url, Shapes::ShapeRef.new(shape: String, required: true, location_name: "signedBiUrl"))
|
602
|
+
GetSignedBluinsightsUrlResponse.struct_class = Types::GetSignedBluinsightsUrlResponse
|
603
|
+
|
600
604
|
HighAvailabilityConfig.add_member(:desired_capacity, Shapes::ShapeRef.new(shape: CapacityValue, required: true, location_name: "desiredCapacity"))
|
601
605
|
HighAvailabilityConfig.struct_class = Types::HighAvailabilityConfig
|
602
606
|
|
@@ -888,12 +892,12 @@ module Aws::MainframeModernization
|
|
888
892
|
o.http_request_uri = "/applications/{applicationId}/batch-job-executions/{executionId}/cancel"
|
889
893
|
o.input = Shapes::ShapeRef.new(shape: CancelBatchJobExecutionRequest)
|
890
894
|
o.output = Shapes::ShapeRef.new(shape: CancelBatchJobExecutionResponse)
|
891
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
895
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
896
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
897
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
892
898
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
899
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
893
900
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
894
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
895
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
896
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
897
901
|
end)
|
898
902
|
|
899
903
|
api.add_operation(:create_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -902,12 +906,12 @@ module Aws::MainframeModernization
|
|
902
906
|
o.http_request_uri = "/applications"
|
903
907
|
o.input = Shapes::ShapeRef.new(shape: CreateApplicationRequest)
|
904
908
|
o.output = Shapes::ShapeRef.new(shape: CreateApplicationResponse)
|
905
|
-
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
906
909
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
910
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
911
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
907
912
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
913
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
908
914
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
909
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
910
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
911
915
|
end)
|
912
916
|
|
913
917
|
api.add_operation(:create_data_set_import_task, Seahorse::Model::Operation.new.tap do |o|
|
@@ -916,13 +920,13 @@ module Aws::MainframeModernization
|
|
916
920
|
o.http_request_uri = "/applications/{applicationId}/dataset-import-task"
|
917
921
|
o.input = Shapes::ShapeRef.new(shape: CreateDataSetImportTaskRequest)
|
918
922
|
o.output = Shapes::ShapeRef.new(shape: CreateDataSetImportTaskResponse)
|
919
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
923
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
920
924
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
925
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
926
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
921
927
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
928
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
922
929
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
923
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
924
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
925
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
926
930
|
end)
|
927
931
|
|
928
932
|
api.add_operation(:create_deployment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -931,13 +935,13 @@ module Aws::MainframeModernization
|
|
931
935
|
o.http_request_uri = "/applications/{applicationId}/deployments"
|
932
936
|
o.input = Shapes::ShapeRef.new(shape: CreateDeploymentRequest)
|
933
937
|
o.output = Shapes::ShapeRef.new(shape: CreateDeploymentResponse)
|
934
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
938
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
935
939
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
940
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
941
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
936
942
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
943
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
937
944
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
938
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
939
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
940
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
941
945
|
end)
|
942
946
|
|
943
947
|
api.add_operation(:create_environment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -946,12 +950,12 @@ module Aws::MainframeModernization
|
|
946
950
|
o.http_request_uri = "/environments"
|
947
951
|
o.input = Shapes::ShapeRef.new(shape: CreateEnvironmentRequest)
|
948
952
|
o.output = Shapes::ShapeRef.new(shape: CreateEnvironmentResponse)
|
949
|
-
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
950
953
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
954
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
955
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
951
956
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
957
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
952
958
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
953
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
954
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
955
959
|
end)
|
956
960
|
|
957
961
|
api.add_operation(:delete_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -960,11 +964,11 @@ module Aws::MainframeModernization
|
|
960
964
|
o.http_request_uri = "/applications/{applicationId}"
|
961
965
|
o.input = Shapes::ShapeRef.new(shape: DeleteApplicationRequest)
|
962
966
|
o.output = Shapes::ShapeRef.new(shape: DeleteApplicationResponse)
|
963
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
967
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
968
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
964
969
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
970
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
965
971
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
966
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
967
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
968
972
|
end)
|
969
973
|
|
970
974
|
api.add_operation(:delete_application_from_environment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -973,12 +977,12 @@ module Aws::MainframeModernization
|
|
973
977
|
o.http_request_uri = "/applications/{applicationId}/environment/{environmentId}"
|
974
978
|
o.input = Shapes::ShapeRef.new(shape: DeleteApplicationFromEnvironmentRequest)
|
975
979
|
o.output = Shapes::ShapeRef.new(shape: DeleteApplicationFromEnvironmentResponse)
|
976
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
980
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
981
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
982
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
977
983
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
984
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
978
985
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
979
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
980
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
981
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
982
986
|
end)
|
983
987
|
|
984
988
|
api.add_operation(:delete_environment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -987,11 +991,11 @@ module Aws::MainframeModernization
|
|
987
991
|
o.http_request_uri = "/environments/{environmentId}"
|
988
992
|
o.input = Shapes::ShapeRef.new(shape: DeleteEnvironmentRequest)
|
989
993
|
o.output = Shapes::ShapeRef.new(shape: DeleteEnvironmentResponse)
|
990
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
994
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
995
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
991
996
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
997
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
992
998
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
993
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
994
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
995
999
|
end)
|
996
1000
|
|
997
1001
|
api.add_operation(:get_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1000,11 +1004,11 @@ module Aws::MainframeModernization
|
|
1000
1004
|
o.http_request_uri = "/applications/{applicationId}"
|
1001
1005
|
o.input = Shapes::ShapeRef.new(shape: GetApplicationRequest)
|
1002
1006
|
o.output = Shapes::ShapeRef.new(shape: GetApplicationResponse)
|
1007
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1008
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1009
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1003
1010
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1004
1011
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1005
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1006
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1007
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1008
1012
|
end)
|
1009
1013
|
|
1010
1014
|
api.add_operation(:get_application_version, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1013,11 +1017,11 @@ module Aws::MainframeModernization
|
|
1013
1017
|
o.http_request_uri = "/applications/{applicationId}/versions/{applicationVersion}"
|
1014
1018
|
o.input = Shapes::ShapeRef.new(shape: GetApplicationVersionRequest)
|
1015
1019
|
o.output = Shapes::ShapeRef.new(shape: GetApplicationVersionResponse)
|
1020
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1021
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1022
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1016
1023
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1017
1024
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1018
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1019
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1020
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1021
1025
|
end)
|
1022
1026
|
|
1023
1027
|
api.add_operation(:get_batch_job_execution, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1026,11 +1030,11 @@ module Aws::MainframeModernization
|
|
1026
1030
|
o.http_request_uri = "/applications/{applicationId}/batch-job-executions/{executionId}"
|
1027
1031
|
o.input = Shapes::ShapeRef.new(shape: GetBatchJobExecutionRequest)
|
1028
1032
|
o.output = Shapes::ShapeRef.new(shape: GetBatchJobExecutionResponse)
|
1033
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1034
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1035
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1029
1036
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1030
1037
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1031
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1032
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1033
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1034
1038
|
end)
|
1035
1039
|
|
1036
1040
|
api.add_operation(:get_data_set_details, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1039,11 +1043,11 @@ module Aws::MainframeModernization
|
|
1039
1043
|
o.http_request_uri = "/applications/{applicationId}/datasets/{dataSetName}"
|
1040
1044
|
o.input = Shapes::ShapeRef.new(shape: GetDataSetDetailsRequest)
|
1041
1045
|
o.output = Shapes::ShapeRef.new(shape: GetDataSetDetailsResponse)
|
1046
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1047
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1048
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1042
1049
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1043
1050
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1044
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1045
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1046
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1047
1051
|
end)
|
1048
1052
|
|
1049
1053
|
api.add_operation(:get_data_set_import_task, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1052,11 +1056,11 @@ module Aws::MainframeModernization
|
|
1052
1056
|
o.http_request_uri = "/applications/{applicationId}/dataset-import-tasks/{taskId}"
|
1053
1057
|
o.input = Shapes::ShapeRef.new(shape: GetDataSetImportTaskRequest)
|
1054
1058
|
o.output = Shapes::ShapeRef.new(shape: GetDataSetImportTaskResponse)
|
1059
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1060
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1061
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1055
1062
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1056
1063
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1057
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1058
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1059
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1060
1064
|
end)
|
1061
1065
|
|
1062
1066
|
api.add_operation(:get_deployment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1065,11 +1069,11 @@ module Aws::MainframeModernization
|
|
1065
1069
|
o.http_request_uri = "/applications/{applicationId}/deployments/{deploymentId}"
|
1066
1070
|
o.input = Shapes::ShapeRef.new(shape: GetDeploymentRequest)
|
1067
1071
|
o.output = Shapes::ShapeRef.new(shape: GetDeploymentResponse)
|
1072
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1073
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1074
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1068
1075
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1069
1076
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1070
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1071
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1072
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1073
1077
|
end)
|
1074
1078
|
|
1075
1079
|
api.add_operation(:get_environment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1078,11 +1082,22 @@ module Aws::MainframeModernization
|
|
1078
1082
|
o.http_request_uri = "/environments/{environmentId}"
|
1079
1083
|
o.input = Shapes::ShapeRef.new(shape: GetEnvironmentRequest)
|
1080
1084
|
o.output = Shapes::ShapeRef.new(shape: GetEnvironmentResponse)
|
1085
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1086
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1087
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1081
1088
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1082
1089
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1083
|
-
|
1090
|
+
end)
|
1091
|
+
|
1092
|
+
api.add_operation(:get_signed_bluinsights_url, Seahorse::Model::Operation.new.tap do |o|
|
1093
|
+
o.name = "GetSignedBluinsightsUrl"
|
1094
|
+
o.http_method = "GET"
|
1095
|
+
o.http_request_uri = "/signed-bi-url"
|
1096
|
+
o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1097
|
+
o.output = Shapes::ShapeRef.new(shape: GetSignedBluinsightsUrlResponse)
|
1084
1098
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1085
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
1099
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1100
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1086
1101
|
end)
|
1087
1102
|
|
1088
1103
|
api.add_operation(:list_application_versions, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1091,11 +1106,11 @@ module Aws::MainframeModernization
|
|
1091
1106
|
o.http_request_uri = "/applications/{applicationId}/versions"
|
1092
1107
|
o.input = Shapes::ShapeRef.new(shape: ListApplicationVersionsRequest)
|
1093
1108
|
o.output = Shapes::ShapeRef.new(shape: ListApplicationVersionsResponse)
|
1109
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1110
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1111
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1094
1112
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1095
1113
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1096
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1097
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1098
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1099
1114
|
o[:pager] = Aws::Pager.new(
|
1100
1115
|
limit_key: "max_results",
|
1101
1116
|
tokens: {
|
@@ -1110,10 +1125,10 @@ module Aws::MainframeModernization
|
|
1110
1125
|
o.http_request_uri = "/applications"
|
1111
1126
|
o.input = Shapes::ShapeRef.new(shape: ListApplicationsRequest)
|
1112
1127
|
o.output = Shapes::ShapeRef.new(shape: ListApplicationsResponse)
|
1128
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1129
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1113
1130
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1114
1131
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1115
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1116
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1117
1132
|
o[:pager] = Aws::Pager.new(
|
1118
1133
|
limit_key: "max_results",
|
1119
1134
|
tokens: {
|
@@ -1128,11 +1143,11 @@ module Aws::MainframeModernization
|
|
1128
1143
|
o.http_request_uri = "/applications/{applicationId}/batch-job-definitions"
|
1129
1144
|
o.input = Shapes::ShapeRef.new(shape: ListBatchJobDefinitionsRequest)
|
1130
1145
|
o.output = Shapes::ShapeRef.new(shape: ListBatchJobDefinitionsResponse)
|
1146
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1147
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1148
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1131
1149
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1132
1150
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1133
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1134
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1135
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1136
1151
|
o[:pager] = Aws::Pager.new(
|
1137
1152
|
limit_key: "max_results",
|
1138
1153
|
tokens: {
|
@@ -1147,11 +1162,11 @@ module Aws::MainframeModernization
|
|
1147
1162
|
o.http_request_uri = "/applications/{applicationId}/batch-job-executions"
|
1148
1163
|
o.input = Shapes::ShapeRef.new(shape: ListBatchJobExecutionsRequest)
|
1149
1164
|
o.output = Shapes::ShapeRef.new(shape: ListBatchJobExecutionsResponse)
|
1165
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1166
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1167
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1150
1168
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1151
1169
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1152
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1153
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1154
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1155
1170
|
o[:pager] = Aws::Pager.new(
|
1156
1171
|
limit_key: "max_results",
|
1157
1172
|
tokens: {
|
@@ -1166,11 +1181,11 @@ module Aws::MainframeModernization
|
|
1166
1181
|
o.http_request_uri = "/applications/{applicationId}/dataset-import-tasks"
|
1167
1182
|
o.input = Shapes::ShapeRef.new(shape: ListDataSetImportHistoryRequest)
|
1168
1183
|
o.output = Shapes::ShapeRef.new(shape: ListDataSetImportHistoryResponse)
|
1184
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1185
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1186
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1169
1187
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1170
1188
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1171
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1172
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1173
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1174
1189
|
o[:pager] = Aws::Pager.new(
|
1175
1190
|
limit_key: "max_results",
|
1176
1191
|
tokens: {
|
@@ -1185,11 +1200,11 @@ module Aws::MainframeModernization
|
|
1185
1200
|
o.http_request_uri = "/applications/{applicationId}/datasets"
|
1186
1201
|
o.input = Shapes::ShapeRef.new(shape: ListDataSetsRequest)
|
1187
1202
|
o.output = Shapes::ShapeRef.new(shape: ListDataSetsResponse)
|
1203
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1204
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1205
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1188
1206
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1189
1207
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1190
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1191
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1192
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1193
1208
|
o[:pager] = Aws::Pager.new(
|
1194
1209
|
limit_key: "max_results",
|
1195
1210
|
tokens: {
|
@@ -1204,11 +1219,11 @@ module Aws::MainframeModernization
|
|
1204
1219
|
o.http_request_uri = "/applications/{applicationId}/deployments"
|
1205
1220
|
o.input = Shapes::ShapeRef.new(shape: ListDeploymentsRequest)
|
1206
1221
|
o.output = Shapes::ShapeRef.new(shape: ListDeploymentsResponse)
|
1222
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1223
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1224
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1207
1225
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1208
1226
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1209
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1210
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1211
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1212
1227
|
o[:pager] = Aws::Pager.new(
|
1213
1228
|
limit_key: "max_results",
|
1214
1229
|
tokens: {
|
@@ -1223,10 +1238,10 @@ module Aws::MainframeModernization
|
|
1223
1238
|
o.http_request_uri = "/engine-versions"
|
1224
1239
|
o.input = Shapes::ShapeRef.new(shape: ListEngineVersionsRequest)
|
1225
1240
|
o.output = Shapes::ShapeRef.new(shape: ListEngineVersionsResponse)
|
1241
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1242
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1226
1243
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1227
1244
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1228
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1229
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1230
1245
|
o[:pager] = Aws::Pager.new(
|
1231
1246
|
limit_key: "max_results",
|
1232
1247
|
tokens: {
|
@@ -1241,10 +1256,10 @@ module Aws::MainframeModernization
|
|
1241
1256
|
o.http_request_uri = "/environments"
|
1242
1257
|
o.input = Shapes::ShapeRef.new(shape: ListEnvironmentsRequest)
|
1243
1258
|
o.output = Shapes::ShapeRef.new(shape: ListEnvironmentsResponse)
|
1259
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1260
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1244
1261
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1245
1262
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1246
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1247
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1248
1263
|
o[:pager] = Aws::Pager.new(
|
1249
1264
|
limit_key: "max_results",
|
1250
1265
|
tokens: {
|
@@ -1259,11 +1274,11 @@ module Aws::MainframeModernization
|
|
1259
1274
|
o.http_request_uri = "/tags/{resourceArn}"
|
1260
1275
|
o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
|
1261
1276
|
o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
|
1277
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1278
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1279
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1262
1280
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1263
1281
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1264
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1265
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1266
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1267
1282
|
end)
|
1268
1283
|
|
1269
1284
|
api.add_operation(:start_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1272,12 +1287,12 @@ module Aws::MainframeModernization
|
|
1272
1287
|
o.http_request_uri = "/applications/{applicationId}/start"
|
1273
1288
|
o.input = Shapes::ShapeRef.new(shape: StartApplicationRequest)
|
1274
1289
|
o.output = Shapes::ShapeRef.new(shape: StartApplicationResponse)
|
1275
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
1290
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1291
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1292
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1276
1293
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1294
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1277
1295
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1278
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1279
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1280
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1281
1296
|
end)
|
1282
1297
|
|
1283
1298
|
api.add_operation(:start_batch_job, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1286,12 +1301,12 @@ module Aws::MainframeModernization
|
|
1286
1301
|
o.http_request_uri = "/applications/{applicationId}/batch-job"
|
1287
1302
|
o.input = Shapes::ShapeRef.new(shape: StartBatchJobRequest)
|
1288
1303
|
o.output = Shapes::ShapeRef.new(shape: StartBatchJobResponse)
|
1289
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
1304
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1305
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1306
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1290
1307
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1308
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1291
1309
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1292
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1293
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1294
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1295
1310
|
end)
|
1296
1311
|
|
1297
1312
|
api.add_operation(:stop_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1300,12 +1315,12 @@ module Aws::MainframeModernization
|
|
1300
1315
|
o.http_request_uri = "/applications/{applicationId}/stop"
|
1301
1316
|
o.input = Shapes::ShapeRef.new(shape: StopApplicationRequest)
|
1302
1317
|
o.output = Shapes::ShapeRef.new(shape: StopApplicationResponse)
|
1303
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
1318
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1319
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1320
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1304
1321
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1322
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1305
1323
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1306
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1307
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1308
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1309
1324
|
end)
|
1310
1325
|
|
1311
1326
|
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1314,12 +1329,12 @@ module Aws::MainframeModernization
|
|
1314
1329
|
o.http_request_uri = "/tags/{resourceArn}"
|
1315
1330
|
o.input = Shapes::ShapeRef.new(shape: TagResourceRequest)
|
1316
1331
|
o.output = Shapes::ShapeRef.new(shape: TagResourceResponse)
|
1317
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
1332
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1318
1333
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1319
|
-
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1320
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1321
1334
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1322
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
1335
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1336
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1337
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1323
1338
|
end)
|
1324
1339
|
|
1325
1340
|
api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1328,11 +1343,11 @@ module Aws::MainframeModernization
|
|
1328
1343
|
o.http_request_uri = "/tags/{resourceArn}"
|
1329
1344
|
o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
|
1330
1345
|
o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
|
1346
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1347
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1348
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1331
1349
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1332
1350
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1333
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1334
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1335
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1336
1351
|
end)
|
1337
1352
|
|
1338
1353
|
api.add_operation(:update_application, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1341,12 +1356,12 @@ module Aws::MainframeModernization
|
|
1341
1356
|
o.http_request_uri = "/applications/{applicationId}"
|
1342
1357
|
o.input = Shapes::ShapeRef.new(shape: UpdateApplicationRequest)
|
1343
1358
|
o.output = Shapes::ShapeRef.new(shape: UpdateApplicationResponse)
|
1344
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
1359
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1360
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1361
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1345
1362
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1363
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1346
1364
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1347
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1348
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1349
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1350
1365
|
end)
|
1351
1366
|
|
1352
1367
|
api.add_operation(:update_environment, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1355,13 +1370,13 @@ module Aws::MainframeModernization
|
|
1355
1370
|
o.http_request_uri = "/environments/{environmentId}"
|
1356
1371
|
o.input = Shapes::ShapeRef.new(shape: UpdateEnvironmentRequest)
|
1357
1372
|
o.output = Shapes::ShapeRef.new(shape: UpdateEnvironmentResponse)
|
1358
|
-
o.errors << Shapes::ShapeRef.new(shape:
|
1373
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1359
1374
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1375
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1376
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1360
1377
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
1378
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
1361
1379
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
1362
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
1363
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1364
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1365
1380
|
end)
|
1366
1381
|
end
|
1367
1382
|
|
@@ -222,6 +222,20 @@ module Aws::MainframeModernization
|
|
222
222
|
end
|
223
223
|
end
|
224
224
|
|
225
|
+
class GetSignedBluinsightsUrl
|
226
|
+
def self.build(context)
|
227
|
+
unless context.config.regional_endpoint
|
228
|
+
endpoint = context.config.endpoint.to_s
|
229
|
+
end
|
230
|
+
Aws::MainframeModernization::EndpointParameters.new(
|
231
|
+
region: context.config.region,
|
232
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
233
|
+
use_fips: context.config.use_fips_endpoint,
|
234
|
+
endpoint: endpoint,
|
235
|
+
)
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
225
239
|
class ListApplicationVersions
|
226
240
|
def self.build(context)
|
227
241
|
unless context.config.regional_endpoint
|
@@ -86,6 +86,8 @@ module Aws::MainframeModernization
|
|
86
86
|
Aws::MainframeModernization::Endpoints::GetDeployment.build(context)
|
87
87
|
when :get_environment
|
88
88
|
Aws::MainframeModernization::Endpoints::GetEnvironment.build(context)
|
89
|
+
when :get_signed_bluinsights_url
|
90
|
+
Aws::MainframeModernization::Endpoints::GetSignedBluinsightsUrl.build(context)
|
89
91
|
when :list_application_versions
|
90
92
|
Aws::MainframeModernization::Endpoints::ListApplicationVersions.build(context)
|
91
93
|
when :list_applications
|
@@ -369,8 +369,10 @@ module Aws::MainframeModernization
|
|
369
369
|
# @return [String]
|
370
370
|
#
|
371
371
|
# @!attribute [rw] role_arn
|
372
|
-
# The Amazon Resource Name (ARN)
|
373
|
-
# application
|
372
|
+
# The Amazon Resource Name (ARN) that identifies a role that the
|
373
|
+
# application uses to access Amazon Web Services resources that are
|
374
|
+
# not part of the application or are in a different Amazon Web
|
375
|
+
# Services account.
|
374
376
|
# @return [String]
|
375
377
|
#
|
376
378
|
# @!attribute [rw] tags
|
@@ -1835,10 +1837,23 @@ module Aws::MainframeModernization
|
|
1835
1837
|
include Aws::Structure
|
1836
1838
|
end
|
1837
1839
|
|
1840
|
+
# @!attribute [rw] signed_bi_url
|
1841
|
+
# Single sign-on AWS Blu Insights URL.
|
1842
|
+
# @return [String]
|
1843
|
+
#
|
1844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/GetSignedBluinsightsUrlResponse AWS API Documentation
|
1845
|
+
#
|
1846
|
+
class GetSignedBluinsightsUrlResponse < Struct.new(
|
1847
|
+
:signed_bi_url)
|
1848
|
+
SENSITIVE = []
|
1849
|
+
include Aws::Structure
|
1850
|
+
end
|
1851
|
+
|
1838
1852
|
# Defines the details of a high availability configuration.
|
1839
1853
|
#
|
1840
1854
|
# @!attribute [rw] desired_capacity
|
1841
|
-
# The number of instances in a high availability configuration.
|
1855
|
+
# The number of instances in a high availability configuration. The
|
1856
|
+
# minimum possible value is 1 and the maximum is 100.
|
1842
1857
|
# @return [Integer]
|
1843
1858
|
#
|
1844
1859
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/HighAvailabilityConfig AWS API Documentation
|
@@ -2833,7 +2848,8 @@ module Aws::MainframeModernization
|
|
2833
2848
|
# @return [Boolean]
|
2834
2849
|
#
|
2835
2850
|
# @!attribute [rw] desired_capacity
|
2836
|
-
# The desired capacity for the runtime environment to update.
|
2851
|
+
# The desired capacity for the runtime environment to update. The
|
2852
|
+
# minimum possible value is 0 and the maximum is 100.
|
2837
2853
|
# @return [Integer]
|
2838
2854
|
#
|
2839
2855
|
# @!attribute [rw] engine_version
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mainframemodernization
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
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: 2023-07-
|
11
|
+
date: 2023-07-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|