aws-sdk-mainframemodernization 1.29.0 → 1.30.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mainframemodernization/client.rb +31 -15
- data/lib/aws-sdk-mainframemodernization/client_api.rb +11 -4
- data/lib/aws-sdk-mainframemodernization/types.rb +42 -19
- data/lib/aws-sdk-mainframemodernization.rb +1 -1
- data/sig/client.rbs +4 -1
- data/sig/types.rbs +5 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e2c58a96bcbc9f19675935de20bc5d70212e457c2be4e9bfaa554ea6264b3b6
|
4
|
+
data.tar.gz: 10111b5313e1dd2d04b3dbdadda900d0f59e236b60420a585c5f79c15ece5237
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9c8aac9b8312f37ddb6085a43bd6415ab81ceceab13a2a14ff9ef329af87fe863607fb1e059af7c1d70559e20ac16797f41388e411797d054b1633d8d0d6844
|
7
|
+
data.tar.gz: 95e66496cd52e174cfd070e72eb3627580fce2fbf2dce27df88073817d43ec3c59b5e21e758ad85531613a9ce9280bfcde08dd531fba4fbfbd8c8cc26688fae2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.30.0 (2024-10-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Add AuthSecretsManagerArn optional parameter to batch job APIs, expand batch parameter limits, and introduce clientToken constraints.
|
8
|
+
|
4
9
|
1.29.0 (2024-10-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.30.0
|
@@ -452,6 +452,11 @@ module Aws::MainframeModernization
|
|
452
452
|
# @option params [required, String] :application_id
|
453
453
|
# The unique identifier of the application.
|
454
454
|
#
|
455
|
+
# @option params [String] :auth_secrets_manager_arn
|
456
|
+
# The Amazon Web Services Secrets Manager containing user's credentials
|
457
|
+
# for authentication and authorization for Cancel Batch Job Execution
|
458
|
+
# operation.
|
459
|
+
#
|
455
460
|
# @option params [required, String] :execution_id
|
456
461
|
# The unique identifier of the batch job execution.
|
457
462
|
#
|
@@ -461,6 +466,7 @@ module Aws::MainframeModernization
|
|
461
466
|
#
|
462
467
|
# resp = client.cancel_batch_job_execution({
|
463
468
|
# application_id: "Identifier", # required
|
469
|
+
# auth_secrets_manager_arn: "AuthSecretsManagerArn",
|
464
470
|
# execution_id: "Identifier", # required
|
465
471
|
# })
|
466
472
|
#
|
@@ -477,12 +483,10 @@ module Aws::MainframeModernization
|
|
477
483
|
# runtime environment and application definition file.
|
478
484
|
#
|
479
485
|
# @option params [String] :client_token
|
480
|
-
#
|
481
|
-
#
|
482
|
-
#
|
483
|
-
#
|
484
|
-
# with the same clientToken, you will get the same response. The service
|
485
|
-
# also handles deleting the clientToken after it expires.
|
486
|
+
# A client token is a unique, case-sensitive string of up to 128 ASCII
|
487
|
+
# characters with ASCII values of 33-126 inclusive. It's generated by
|
488
|
+
# the client to ensure idempotent operations, allowing for safe retries
|
489
|
+
# without unintended side effects.
|
486
490
|
#
|
487
491
|
# **A suitable default value is auto-generated.** You should normally
|
488
492
|
# not need to pass this option.**
|
@@ -521,7 +525,7 @@ module Aws::MainframeModernization
|
|
521
525
|
# @example Request syntax with placeholder values
|
522
526
|
#
|
523
527
|
# resp = client.create_application({
|
524
|
-
# client_token: "
|
528
|
+
# client_token: "ClientToken",
|
525
529
|
# definition: { # required
|
526
530
|
# content: "StringFree65000",
|
527
531
|
# s3_location: "String2000",
|
@@ -579,7 +583,7 @@ module Aws::MainframeModernization
|
|
579
583
|
#
|
580
584
|
# resp = client.create_data_set_import_task({
|
581
585
|
# application_id: "Identifier", # required
|
582
|
-
# client_token: "
|
586
|
+
# client_token: "ClientToken",
|
583
587
|
# import_config: { # required
|
584
588
|
# data_sets: [
|
585
589
|
# {
|
@@ -680,7 +684,7 @@ module Aws::MainframeModernization
|
|
680
684
|
# resp = client.create_deployment({
|
681
685
|
# application_id: "Identifier", # required
|
682
686
|
# application_version: 1, # required
|
683
|
-
# client_token: "
|
687
|
+
# client_token: "ClientToken",
|
684
688
|
# environment_id: "Identifier", # required
|
685
689
|
# })
|
686
690
|
#
|
@@ -767,7 +771,7 @@ module Aws::MainframeModernization
|
|
767
771
|
# @example Request syntax with placeholder values
|
768
772
|
#
|
769
773
|
# resp = client.create_environment({
|
770
|
-
# client_token: "
|
774
|
+
# client_token: "ClientToken",
|
771
775
|
# description: "EntityDescription",
|
772
776
|
# engine_type: "microfocus", # required, accepts microfocus, bluage
|
773
777
|
# engine_version: "EngineVersion",
|
@@ -1291,7 +1295,7 @@ module Aws::MainframeModernization
|
|
1291
1295
|
# resp.publicly_accessible #=> Boolean
|
1292
1296
|
# resp.security_group_ids #=> Array
|
1293
1297
|
# resp.security_group_ids[0] #=> String
|
1294
|
-
# resp.status #=> String, one of "Creating", "Available", "Updating", "Deleting", "Failed"
|
1298
|
+
# resp.status #=> String, one of "Creating", "Available", "Updating", "Deleting", "Failed", "UnHealthy"
|
1295
1299
|
# resp.status_reason #=> String
|
1296
1300
|
# resp.storage_configurations #=> Array
|
1297
1301
|
# resp.storage_configurations[0].efs.file_system_id #=> String
|
@@ -1576,14 +1580,19 @@ module Aws::MainframeModernization
|
|
1576
1580
|
req.send_request(options)
|
1577
1581
|
end
|
1578
1582
|
|
1579
|
-
# Lists all the job steps for JCL
|
1583
|
+
# Lists all the job steps for a JCL file to restart a batch job. This is
|
1580
1584
|
# only applicable for Micro Focus engine with versions 8.0.6 and above.
|
1581
1585
|
#
|
1582
1586
|
# @option params [required, String] :application_id
|
1583
1587
|
# The unique identifier of the application.
|
1584
1588
|
#
|
1589
|
+
# @option params [String] :auth_secrets_manager_arn
|
1590
|
+
# The Amazon Web Services Secrets Manager containing user's credentials
|
1591
|
+
# for authentication and authorization for List Batch Job Restart Points
|
1592
|
+
# operation.
|
1593
|
+
#
|
1585
1594
|
# @option params [required, String] :execution_id
|
1586
|
-
# The unique identifier of
|
1595
|
+
# The unique identifier of the batch job execution.
|
1587
1596
|
#
|
1588
1597
|
# @return [Types::ListBatchJobRestartPointsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1589
1598
|
#
|
@@ -1593,6 +1602,7 @@ module Aws::MainframeModernization
|
|
1593
1602
|
#
|
1594
1603
|
# resp = client.list_batch_job_restart_points({
|
1595
1604
|
# application_id: "Identifier", # required
|
1605
|
+
# auth_secrets_manager_arn: "AuthSecretsManagerArn",
|
1596
1606
|
# execution_id: "Identifier", # required
|
1597
1607
|
# })
|
1598
1608
|
#
|
@@ -1871,7 +1881,7 @@ module Aws::MainframeModernization
|
|
1871
1881
|
# resp.environments[0].environment_id #=> String
|
1872
1882
|
# resp.environments[0].instance_type #=> String
|
1873
1883
|
# resp.environments[0].name #=> String
|
1874
|
-
# resp.environments[0].status #=> String, one of "Creating", "Available", "Updating", "Deleting", "Failed"
|
1884
|
+
# resp.environments[0].status #=> String, one of "Creating", "Available", "Updating", "Deleting", "Failed", "UnHealthy"
|
1875
1885
|
# resp.next_token #=> String
|
1876
1886
|
#
|
1877
1887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/ListEnvironments AWS API Documentation
|
@@ -1942,6 +1952,11 @@ module Aws::MainframeModernization
|
|
1942
1952
|
# The unique identifier of the application associated with this batch
|
1943
1953
|
# job.
|
1944
1954
|
#
|
1955
|
+
# @option params [String] :auth_secrets_manager_arn
|
1956
|
+
# The Amazon Web Services Secrets Manager containing user's credentials
|
1957
|
+
# for authentication and authorization for Start Batch Job execution
|
1958
|
+
# operation.
|
1959
|
+
#
|
1945
1960
|
# @option params [required, Types::BatchJobIdentifier] :batch_job_identifier
|
1946
1961
|
# The unique identifier of the batch job.
|
1947
1962
|
#
|
@@ -1961,6 +1976,7 @@ module Aws::MainframeModernization
|
|
1961
1976
|
#
|
1962
1977
|
# resp = client.start_batch_job({
|
1963
1978
|
# application_id: "Identifier", # required
|
1979
|
+
# auth_secrets_manager_arn: "AuthSecretsManagerArn",
|
1964
1980
|
# batch_job_identifier: { # required
|
1965
1981
|
# file_batch_job_identifier: {
|
1966
1982
|
# file_name: "String", # required
|
@@ -2225,7 +2241,7 @@ module Aws::MainframeModernization
|
|
2225
2241
|
tracer: tracer
|
2226
2242
|
)
|
2227
2243
|
context[:gem_name] = 'aws-sdk-mainframemodernization'
|
2228
|
-
context[:gem_version] = '1.
|
2244
|
+
context[:gem_version] = '1.30.0'
|
2229
2245
|
Seahorse::Client::Request.new(handlers, context)
|
2230
2246
|
end
|
2231
2247
|
|
@@ -26,6 +26,7 @@ module Aws::MainframeModernization
|
|
26
26
|
ApplicationVersionSummaryList = Shapes::ListShape.new(name: 'ApplicationVersionSummaryList')
|
27
27
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
28
28
|
ArnList = Shapes::ListShape.new(name: 'ArnList')
|
29
|
+
AuthSecretsManagerArn = Shapes::StringShape.new(name: 'AuthSecretsManagerArn')
|
29
30
|
BatchJobDefinition = Shapes::UnionShape.new(name: 'BatchJobDefinition')
|
30
31
|
BatchJobDefinitions = Shapes::ListShape.new(name: 'BatchJobDefinitions')
|
31
32
|
BatchJobExecutionStatus = Shapes::StringShape.new(name: 'BatchJobExecutionStatus')
|
@@ -41,6 +42,7 @@ module Aws::MainframeModernization
|
|
41
42
|
CancelBatchJobExecutionRequest = Shapes::StructureShape.new(name: 'CancelBatchJobExecutionRequest')
|
42
43
|
CancelBatchJobExecutionResponse = Shapes::StructureShape.new(name: 'CancelBatchJobExecutionResponse')
|
43
44
|
CapacityValue = Shapes::IntegerShape.new(name: 'CapacityValue')
|
45
|
+
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
44
46
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
45
47
|
CreateApplicationRequest = Shapes::StructureShape.new(name: 'CreateApplicationRequest')
|
46
48
|
CreateApplicationResponse = Shapes::StructureShape.new(name: 'CreateApplicationResponse')
|
@@ -277,6 +279,7 @@ module Aws::MainframeModernization
|
|
277
279
|
BatchJobStepList.member = Shapes::ShapeRef.new(shape: JobStep)
|
278
280
|
|
279
281
|
CancelBatchJobExecutionRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "applicationId"))
|
282
|
+
CancelBatchJobExecutionRequest.add_member(:auth_secrets_manager_arn, Shapes::ShapeRef.new(shape: AuthSecretsManagerArn, location_name: "authSecretsManagerArn"))
|
280
283
|
CancelBatchJobExecutionRequest.add_member(:execution_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "executionId"))
|
281
284
|
CancelBatchJobExecutionRequest.struct_class = Types::CancelBatchJobExecutionRequest
|
282
285
|
|
@@ -287,7 +290,7 @@ module Aws::MainframeModernization
|
|
287
290
|
ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, location_name: "resourceType"))
|
288
291
|
ConflictException.struct_class = Types::ConflictException
|
289
292
|
|
290
|
-
CreateApplicationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
293
|
+
CreateApplicationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
291
294
|
CreateApplicationRequest.add_member(:definition, Shapes::ShapeRef.new(shape: Definition, required: true, location_name: "definition"))
|
292
295
|
CreateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "description"))
|
293
296
|
CreateApplicationRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
@@ -303,7 +306,7 @@ module Aws::MainframeModernization
|
|
303
306
|
CreateApplicationResponse.struct_class = Types::CreateApplicationResponse
|
304
307
|
|
305
308
|
CreateDataSetImportTaskRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "applicationId"))
|
306
|
-
CreateDataSetImportTaskRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
309
|
+
CreateDataSetImportTaskRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
307
310
|
CreateDataSetImportTaskRequest.add_member(:import_config, Shapes::ShapeRef.new(shape: DataSetImportConfig, required: true, location_name: "importConfig"))
|
308
311
|
CreateDataSetImportTaskRequest.struct_class = Types::CreateDataSetImportTaskRequest
|
309
312
|
|
@@ -312,14 +315,14 @@ module Aws::MainframeModernization
|
|
312
315
|
|
313
316
|
CreateDeploymentRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "applicationId"))
|
314
317
|
CreateDeploymentRequest.add_member(:application_version, Shapes::ShapeRef.new(shape: Version, required: true, location_name: "applicationVersion"))
|
315
|
-
CreateDeploymentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
318
|
+
CreateDeploymentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
316
319
|
CreateDeploymentRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "environmentId"))
|
317
320
|
CreateDeploymentRequest.struct_class = Types::CreateDeploymentRequest
|
318
321
|
|
319
322
|
CreateDeploymentResponse.add_member(:deployment_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "deploymentId"))
|
320
323
|
CreateDeploymentResponse.struct_class = Types::CreateDeploymentResponse
|
321
324
|
|
322
|
-
CreateEnvironmentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape:
|
325
|
+
CreateEnvironmentRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
323
326
|
CreateEnvironmentRequest.add_member(:description, Shapes::ShapeRef.new(shape: EntityDescription, location_name: "description"))
|
324
327
|
CreateEnvironmentRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
325
328
|
CreateEnvironmentRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: EngineVersion, location_name: "engineVersion"))
|
@@ -700,6 +703,7 @@ module Aws::MainframeModernization
|
|
700
703
|
ListBatchJobExecutionsResponse.struct_class = Types::ListBatchJobExecutionsResponse
|
701
704
|
|
702
705
|
ListBatchJobRestartPointsRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "applicationId"))
|
706
|
+
ListBatchJobRestartPointsRequest.add_member(:auth_secrets_manager_arn, Shapes::ShapeRef.new(shape: AuthSecretsManagerArn, location: "querystring", location_name: "authSecretsManagerArn"))
|
703
707
|
ListBatchJobRestartPointsRequest.add_member(:execution_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "executionId"))
|
704
708
|
ListBatchJobRestartPointsRequest.struct_class = Types::ListBatchJobRestartPointsRequest
|
705
709
|
|
@@ -838,6 +842,7 @@ module Aws::MainframeModernization
|
|
838
842
|
StartApplicationResponse.struct_class = Types::StartApplicationResponse
|
839
843
|
|
840
844
|
StartBatchJobRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location: "uri", location_name: "applicationId"))
|
845
|
+
StartBatchJobRequest.add_member(:auth_secrets_manager_arn, Shapes::ShapeRef.new(shape: AuthSecretsManagerArn, location_name: "authSecretsManagerArn"))
|
841
846
|
StartBatchJobRequest.add_member(:batch_job_identifier, Shapes::ShapeRef.new(shape: BatchJobIdentifier, required: true, location_name: "batchJobIdentifier"))
|
842
847
|
StartBatchJobRequest.add_member(:job_params, Shapes::ShapeRef.new(shape: BatchJobParametersMap, location_name: "jobParams"))
|
843
848
|
StartBatchJobRequest.struct_class = Types::StartBatchJobRequest
|
@@ -943,9 +948,11 @@ module Aws::MainframeModernization
|
|
943
948
|
|
944
949
|
api.metadata = {
|
945
950
|
"apiVersion" => "2021-04-28",
|
951
|
+
"auth" => ["aws.auth#sigv4"],
|
946
952
|
"endpointPrefix" => "m2",
|
947
953
|
"jsonVersion" => "1.1",
|
948
954
|
"protocol" => "rest-json",
|
955
|
+
"protocols" => ["rest-json"],
|
949
956
|
"serviceFullName" => "AWSMainframeModernization",
|
950
957
|
"serviceId" => "m2",
|
951
958
|
"signatureVersion" => "v4",
|
@@ -271,8 +271,8 @@ module Aws::MainframeModernization
|
|
271
271
|
# @return [Types::FileBatchJobIdentifier]
|
272
272
|
#
|
273
273
|
# @!attribute [rw] restart_batch_job_identifier
|
274
|
-
# Specifies the required information for restart, including
|
275
|
-
#
|
274
|
+
# Specifies the required information for restart, including
|
275
|
+
# `executionId` and `JobStepRestartMarker`.
|
276
276
|
# @return [Types::RestartBatchJobIdentifier]
|
277
277
|
#
|
278
278
|
# @!attribute [rw] s3_batch_job_identifier
|
@@ -308,6 +308,12 @@ module Aws::MainframeModernization
|
|
308
308
|
# The unique identifier of the application.
|
309
309
|
# @return [String]
|
310
310
|
#
|
311
|
+
# @!attribute [rw] auth_secrets_manager_arn
|
312
|
+
# The Amazon Web Services Secrets Manager containing user's
|
313
|
+
# credentials for authentication and authorization for Cancel Batch
|
314
|
+
# Job Execution operation.
|
315
|
+
# @return [String]
|
316
|
+
#
|
311
317
|
# @!attribute [rw] execution_id
|
312
318
|
# The unique identifier of the batch job execution.
|
313
319
|
# @return [String]
|
@@ -316,6 +322,7 @@ module Aws::MainframeModernization
|
|
316
322
|
#
|
317
323
|
class CancelBatchJobExecutionRequest < Struct.new(
|
318
324
|
:application_id,
|
325
|
+
:auth_secrets_manager_arn,
|
319
326
|
:execution_id)
|
320
327
|
SENSITIVE = []
|
321
328
|
include Aws::Structure
|
@@ -350,12 +357,10 @@ module Aws::MainframeModernization
|
|
350
357
|
end
|
351
358
|
|
352
359
|
# @!attribute [rw] client_token
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
# timeframe with the same clientToken, you will get the same response.
|
358
|
-
# The service also handles deleting the clientToken after it expires.
|
360
|
+
# A client token is a unique, case-sensitive string of up to 128 ASCII
|
361
|
+
# characters with ASCII values of 33-126 inclusive. It's generated by
|
362
|
+
# the client to ensure idempotent operations, allowing for safe
|
363
|
+
# retries without unintended side effects.
|
359
364
|
#
|
360
365
|
# **A suitable default value is auto-generated.** You should normally
|
361
366
|
# not need to pass this option.
|
@@ -1522,7 +1527,8 @@ module Aws::MainframeModernization
|
|
1522
1527
|
# @return [String]
|
1523
1528
|
#
|
1524
1529
|
# @!attribute [rw] job_step_restart_marker
|
1525
|
-
# The
|
1530
|
+
# The step/procedure step information for the restart batch job
|
1531
|
+
# operation.
|
1526
1532
|
# @return [Types::JobStepRestartMarker]
|
1527
1533
|
#
|
1528
1534
|
# @!attribute [rw] job_type
|
@@ -1831,7 +1837,9 @@ module Aws::MainframeModernization
|
|
1831
1837
|
# @return [Array<String>]
|
1832
1838
|
#
|
1833
1839
|
# @!attribute [rw] status
|
1834
|
-
# The status of the runtime environment.
|
1840
|
+
# The status of the runtime environment. If the Amazon Web Services
|
1841
|
+
# Mainframe Modernization environment is missing a connection to the
|
1842
|
+
# customer owned dependent resource, the status will be `Unhealthy`.
|
1835
1843
|
# @return [String]
|
1836
1844
|
#
|
1837
1845
|
# @!attribute [rw] status_reason
|
@@ -1998,15 +2006,15 @@ module Aws::MainframeModernization
|
|
1998
2006
|
include Aws::Structure
|
1999
2007
|
end
|
2000
2008
|
|
2001
|
-
# Provides
|
2009
|
+
# Provides step/procedure step information for a restart batch job
|
2002
2010
|
# operation.
|
2003
2011
|
#
|
2004
2012
|
# @!attribute [rw] from_proc_step
|
2005
|
-
# The procedure step name that a job was restarted from.
|
2013
|
+
# The procedure step name that a batch job was restarted from.
|
2006
2014
|
# @return [String]
|
2007
2015
|
#
|
2008
2016
|
# @!attribute [rw] from_step
|
2009
|
-
# The step name that a batch job
|
2017
|
+
# The step name that a batch job was restarted from.
|
2010
2018
|
# @return [String]
|
2011
2019
|
#
|
2012
2020
|
# @!attribute [rw] to_proc_step
|
@@ -2014,7 +2022,7 @@ module Aws::MainframeModernization
|
|
2014
2022
|
# @return [String]
|
2015
2023
|
#
|
2016
2024
|
# @!attribute [rw] to_step
|
2017
|
-
# The step name that a job was restarted to.
|
2025
|
+
# The step name that a batch job was restarted to.
|
2018
2026
|
# @return [String]
|
2019
2027
|
#
|
2020
2028
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/JobStepRestartMarker AWS API Documentation
|
@@ -2238,14 +2246,21 @@ module Aws::MainframeModernization
|
|
2238
2246
|
# The unique identifier of the application.
|
2239
2247
|
# @return [String]
|
2240
2248
|
#
|
2249
|
+
# @!attribute [rw] auth_secrets_manager_arn
|
2250
|
+
# The Amazon Web Services Secrets Manager containing user's
|
2251
|
+
# credentials for authentication and authorization for List Batch Job
|
2252
|
+
# Restart Points operation.
|
2253
|
+
# @return [String]
|
2254
|
+
#
|
2241
2255
|
# @!attribute [rw] execution_id
|
2242
|
-
# The unique identifier of
|
2256
|
+
# The unique identifier of the batch job execution.
|
2243
2257
|
# @return [String]
|
2244
2258
|
#
|
2245
2259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/ListBatchJobRestartPointsRequest AWS API Documentation
|
2246
2260
|
#
|
2247
2261
|
class ListBatchJobRestartPointsRequest < Struct.new(
|
2248
2262
|
:application_id,
|
2263
|
+
:auth_secrets_manager_arn,
|
2249
2264
|
:execution_id)
|
2250
2265
|
SENSITIVE = []
|
2251
2266
|
include Aws::Structure
|
@@ -2734,16 +2749,17 @@ module Aws::MainframeModernization
|
|
2734
2749
|
include Aws::Structure
|
2735
2750
|
end
|
2736
2751
|
|
2737
|
-
# An identifier for the StartBatchJob API to show that it is a restart
|
2752
|
+
# An identifier for the `StartBatchJob` API to show that it is a restart
|
2738
2753
|
# operation.
|
2739
2754
|
#
|
2740
2755
|
# @!attribute [rw] execution_id
|
2741
|
-
# The executionId from the StartBatchJob response when the job ran
|
2742
|
-
# the first time.
|
2756
|
+
# The `executionId` from the `StartBatchJob` response when the job ran
|
2757
|
+
# for the first time.
|
2743
2758
|
# @return [String]
|
2744
2759
|
#
|
2745
2760
|
# @!attribute [rw] job_step_restart_marker
|
2746
|
-
# The
|
2761
|
+
# The step/procedure step information for a restart batch job
|
2762
|
+
# operation.
|
2747
2763
|
# @return [Types::JobStepRestartMarker]
|
2748
2764
|
#
|
2749
2765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/RestartBatchJobIdentifier AWS API Documentation
|
@@ -2883,6 +2899,12 @@ module Aws::MainframeModernization
|
|
2883
2899
|
# job.
|
2884
2900
|
# @return [String]
|
2885
2901
|
#
|
2902
|
+
# @!attribute [rw] auth_secrets_manager_arn
|
2903
|
+
# The Amazon Web Services Secrets Manager containing user's
|
2904
|
+
# credentials for authentication and authorization for Start Batch Job
|
2905
|
+
# execution operation.
|
2906
|
+
# @return [String]
|
2907
|
+
#
|
2886
2908
|
# @!attribute [rw] batch_job_identifier
|
2887
2909
|
# The unique identifier of the batch job.
|
2888
2910
|
# @return [Types::BatchJobIdentifier]
|
@@ -2900,6 +2922,7 @@ module Aws::MainframeModernization
|
|
2900
2922
|
#
|
2901
2923
|
class StartBatchJobRequest < Struct.new(
|
2902
2924
|
:application_id,
|
2925
|
+
:auth_secrets_manager_arn,
|
2903
2926
|
:batch_job_identifier,
|
2904
2927
|
:job_params)
|
2905
2928
|
SENSITIVE = []
|
data/sig/client.rbs
CHANGED
@@ -81,6 +81,7 @@ module Aws
|
|
81
81
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#cancel_batch_job_execution-instance_method
|
82
82
|
def cancel_batch_job_execution: (
|
83
83
|
application_id: ::String,
|
84
|
+
?auth_secrets_manager_arn: ::String,
|
84
85
|
execution_id: ::String
|
85
86
|
) -> _CancelBatchJobExecutionResponseSuccess
|
86
87
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelBatchJobExecutionResponseSuccess
|
@@ -383,7 +384,7 @@ module Aws
|
|
383
384
|
def preferred_maintenance_window: () -> ::String
|
384
385
|
def publicly_accessible: () -> bool
|
385
386
|
def security_group_ids: () -> ::Array[::String]
|
386
|
-
def status: () -> ("Creating" | "Available" | "Updating" | "Deleting" | "Failed")
|
387
|
+
def status: () -> ("Creating" | "Available" | "Updating" | "Deleting" | "Failed" | "UnHealthy")
|
387
388
|
def status_reason: () -> ::String
|
388
389
|
def storage_configurations: () -> ::Array[Types::StorageConfiguration]
|
389
390
|
def subnet_ids: () -> ::Array[::String]
|
@@ -470,6 +471,7 @@ module Aws
|
|
470
471
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#list_batch_job_restart_points-instance_method
|
471
472
|
def list_batch_job_restart_points: (
|
472
473
|
application_id: ::String,
|
474
|
+
?auth_secrets_manager_arn: ::String,
|
473
475
|
execution_id: ::String
|
474
476
|
) -> _ListBatchJobRestartPointsResponseSuccess
|
475
477
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBatchJobRestartPointsResponseSuccess
|
@@ -568,6 +570,7 @@ module Aws
|
|
568
570
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MainframeModernization/Client.html#start_batch_job-instance_method
|
569
571
|
def start_batch_job: (
|
570
572
|
application_id: ::String,
|
573
|
+
?auth_secrets_manager_arn: ::String,
|
571
574
|
batch_job_identifier: {
|
572
575
|
file_batch_job_identifier: {
|
573
576
|
file_name: ::String,
|
data/sig/types.rbs
CHANGED
@@ -96,6 +96,7 @@ module Aws::MainframeModernization
|
|
96
96
|
|
97
97
|
class CancelBatchJobExecutionRequest
|
98
98
|
attr_accessor application_id: ::String
|
99
|
+
attr_accessor auth_secrets_manager_arn: ::String
|
99
100
|
attr_accessor execution_id: ::String
|
100
101
|
SENSITIVE: []
|
101
102
|
end
|
@@ -350,7 +351,7 @@ module Aws::MainframeModernization
|
|
350
351
|
attr_accessor environment_id: ::String
|
351
352
|
attr_accessor instance_type: ::String
|
352
353
|
attr_accessor name: ::String
|
353
|
-
attr_accessor status: ("Creating" | "Available" | "Updating" | "Deleting" | "Failed")
|
354
|
+
attr_accessor status: ("Creating" | "Available" | "Updating" | "Deleting" | "Failed" | "UnHealthy")
|
354
355
|
SENSITIVE: []
|
355
356
|
end
|
356
357
|
|
@@ -540,7 +541,7 @@ module Aws::MainframeModernization
|
|
540
541
|
attr_accessor preferred_maintenance_window: ::String
|
541
542
|
attr_accessor publicly_accessible: bool
|
542
543
|
attr_accessor security_group_ids: ::Array[::String]
|
543
|
-
attr_accessor status: ("Creating" | "Available" | "Updating" | "Deleting" | "Failed")
|
544
|
+
attr_accessor status: ("Creating" | "Available" | "Updating" | "Deleting" | "Failed" | "UnHealthy")
|
544
545
|
attr_accessor status_reason: ::String
|
545
546
|
attr_accessor storage_configurations: ::Array[Types::StorageConfiguration]
|
546
547
|
attr_accessor subnet_ids: ::Array[::String]
|
@@ -658,6 +659,7 @@ module Aws::MainframeModernization
|
|
658
659
|
|
659
660
|
class ListBatchJobRestartPointsRequest
|
660
661
|
attr_accessor application_id: ::String
|
662
|
+
attr_accessor auth_secrets_manager_arn: ::String
|
661
663
|
attr_accessor execution_id: ::String
|
662
664
|
SENSITIVE: []
|
663
665
|
end
|
@@ -855,6 +857,7 @@ module Aws::MainframeModernization
|
|
855
857
|
|
856
858
|
class StartBatchJobRequest
|
857
859
|
attr_accessor application_id: ::String
|
860
|
+
attr_accessor auth_secrets_manager_arn: ::String
|
858
861
|
attr_accessor batch_job_identifier: Types::BatchJobIdentifier
|
859
862
|
attr_accessor job_params: ::Hash[::String, ::String]
|
860
863
|
SENSITIVE: []
|
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.30.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-10-
|
11
|
+
date: 2024-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWSMainframeModernization. This gem is part
|
48
48
|
of the AWS SDK for Ruby.
|
49
49
|
email:
|