aws-sdk-mainframemodernization 1.0.0 → 1.2.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mainframemodernization/client.rb +89 -53
- data/lib/aws-sdk-mainframemodernization/client_api.rb +15 -11
- data/lib/aws-sdk-mainframemodernization/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-mainframemodernization/endpoint_provider.rb +110 -0
- data/lib/aws-sdk-mainframemodernization/endpoints.rb +463 -0
- data/lib/aws-sdk-mainframemodernization/plugins/endpoints.rb +132 -0
- data/lib/aws-sdk-mainframemodernization/types.rb +101 -624
- data/lib/aws-sdk-mainframemodernization.rb +5 -1
- metadata +8 -4
@@ -29,16 +29,6 @@ module Aws::MainframeModernization
|
|
29
29
|
# definitions exist, provide them, as some applications will make use of
|
30
30
|
# them.
|
31
31
|
#
|
32
|
-
# @note When making an API call, you may pass AlternateKey
|
33
|
-
# data as a hash:
|
34
|
-
#
|
35
|
-
# {
|
36
|
-
# allow_duplicates: false,
|
37
|
-
# length: 1, # required
|
38
|
-
# name: "String",
|
39
|
-
# offset: 1, # required
|
40
|
-
# }
|
41
|
-
#
|
42
32
|
# @!attribute [rw] allow_duplicates
|
43
33
|
# Indicates whether the alternate key values are supposed to be unique
|
44
34
|
# for the given data set.
|
@@ -89,8 +79,8 @@ module Aws::MainframeModernization
|
|
89
79
|
# @return [Time]
|
90
80
|
#
|
91
81
|
# @!attribute [rw] deployment_status
|
92
|
-
# Indicates
|
93
|
-
#
|
82
|
+
# Indicates either an ongoing deployment or if the application has
|
83
|
+
# ever deployed successfully.
|
94
84
|
# @return [String]
|
95
85
|
#
|
96
86
|
# @!attribute [rw] description
|
@@ -107,8 +97,8 @@ module Aws::MainframeModernization
|
|
107
97
|
# @return [String]
|
108
98
|
#
|
109
99
|
# @!attribute [rw] last_start_time
|
110
|
-
# The timestamp when
|
111
|
-
# application
|
100
|
+
# The timestamp when you last started the application. Null until the
|
101
|
+
# application runs for the first time.
|
112
102
|
# @return [Time]
|
113
103
|
#
|
114
104
|
# @!attribute [rw] name
|
@@ -276,14 +266,6 @@ module Aws::MainframeModernization
|
|
276
266
|
class Unknown < BatchJobIdentifier; end
|
277
267
|
end
|
278
268
|
|
279
|
-
# @note When making an API call, you may pass CancelBatchJobExecutionRequest
|
280
|
-
# data as a hash:
|
281
|
-
#
|
282
|
-
# {
|
283
|
-
# application_id: "Identifier", # required
|
284
|
-
# execution_id: "Identifier", # required
|
285
|
-
# }
|
286
|
-
#
|
287
269
|
# @!attribute [rw] application_id
|
288
270
|
# The unique identifier of the application.
|
289
271
|
# @return [String]
|
@@ -329,23 +311,6 @@ module Aws::MainframeModernization
|
|
329
311
|
include Aws::Structure
|
330
312
|
end
|
331
313
|
|
332
|
-
# @note When making an API call, you may pass CreateApplicationRequest
|
333
|
-
# data as a hash:
|
334
|
-
#
|
335
|
-
# {
|
336
|
-
# client_token: "String",
|
337
|
-
# definition: { # required
|
338
|
-
# content: "StringFree65000",
|
339
|
-
# s3_location: "String2000",
|
340
|
-
# },
|
341
|
-
# description: "EntityDescription",
|
342
|
-
# engine_type: "microfocus", # required, accepts microfocus, bluage
|
343
|
-
# name: "EntityName", # required
|
344
|
-
# tags: {
|
345
|
-
# "TagKey" => "TagValue",
|
346
|
-
# },
|
347
|
-
# }
|
348
|
-
#
|
349
314
|
# @!attribute [rw] client_token
|
350
315
|
# Unique, case-sensitive identifier the service generates to ensure
|
351
316
|
# the idempotency of the request to create an application. The service
|
@@ -371,6 +336,10 @@ module Aws::MainframeModernization
|
|
371
336
|
# The type of the target platform for this application.
|
372
337
|
# @return [String]
|
373
338
|
#
|
339
|
+
# @!attribute [rw] kms_key_id
|
340
|
+
# The identifier of a customer managed key.
|
341
|
+
# @return [String]
|
342
|
+
#
|
374
343
|
# @!attribute [rw] name
|
375
344
|
# The unique identifier of the application.
|
376
345
|
# @return [String]
|
@@ -386,6 +355,7 @@ module Aws::MainframeModernization
|
|
386
355
|
:definition,
|
387
356
|
:description,
|
388
357
|
:engine_type,
|
358
|
+
:kms_key_id,
|
389
359
|
:name,
|
390
360
|
:tags)
|
391
361
|
SENSITIVE = []
|
@@ -414,57 +384,6 @@ module Aws::MainframeModernization
|
|
414
384
|
include Aws::Structure
|
415
385
|
end
|
416
386
|
|
417
|
-
# @note When making an API call, you may pass CreateDataSetImportTaskRequest
|
418
|
-
# data as a hash:
|
419
|
-
#
|
420
|
-
# {
|
421
|
-
# application_id: "Identifier", # required
|
422
|
-
# client_token: "String",
|
423
|
-
# import_config: { # required
|
424
|
-
# data_sets: [
|
425
|
-
# {
|
426
|
-
# data_set: { # required
|
427
|
-
# dataset_name: "String", # required
|
428
|
-
# dataset_org: { # required
|
429
|
-
# gdg: {
|
430
|
-
# limit: 1,
|
431
|
-
# roll_disposition: "String",
|
432
|
-
# },
|
433
|
-
# vsam: {
|
434
|
-
# alternate_keys: [
|
435
|
-
# {
|
436
|
-
# allow_duplicates: false,
|
437
|
-
# length: 1, # required
|
438
|
-
# name: "String",
|
439
|
-
# offset: 1, # required
|
440
|
-
# },
|
441
|
-
# ],
|
442
|
-
# compressed: false,
|
443
|
-
# encoding: "String",
|
444
|
-
# format: "String", # required
|
445
|
-
# primary_key: {
|
446
|
-
# length: 1, # required
|
447
|
-
# name: "String",
|
448
|
-
# offset: 1, # required
|
449
|
-
# },
|
450
|
-
# },
|
451
|
-
# },
|
452
|
-
# record_length: { # required
|
453
|
-
# max: 1, # required
|
454
|
-
# min: 1, # required
|
455
|
-
# },
|
456
|
-
# relative_path: "String",
|
457
|
-
# storage_type: "String",
|
458
|
-
# },
|
459
|
-
# external_location: { # required
|
460
|
-
# s3_location: "String2000",
|
461
|
-
# },
|
462
|
-
# },
|
463
|
-
# ],
|
464
|
-
# s3_location: "String2000",
|
465
|
-
# },
|
466
|
-
# }
|
467
|
-
#
|
468
387
|
# @!attribute [rw] application_id
|
469
388
|
# The unique identifier of the application for which you want to
|
470
389
|
# import data sets.
|
@@ -510,16 +429,6 @@ module Aws::MainframeModernization
|
|
510
429
|
include Aws::Structure
|
511
430
|
end
|
512
431
|
|
513
|
-
# @note When making an API call, you may pass CreateDeploymentRequest
|
514
|
-
# data as a hash:
|
515
|
-
#
|
516
|
-
# {
|
517
|
-
# application_id: "Identifier", # required
|
518
|
-
# application_version: 1, # required
|
519
|
-
# client_token: "String",
|
520
|
-
# environment_id: "Identifier", # required
|
521
|
-
# }
|
522
|
-
#
|
523
432
|
# @!attribute [rw] application_id
|
524
433
|
# The application identifier.
|
525
434
|
# @return [String]
|
@@ -541,8 +450,8 @@ module Aws::MainframeModernization
|
|
541
450
|
# @return [String]
|
542
451
|
#
|
543
452
|
# @!attribute [rw] environment_id
|
544
|
-
# The identifier of the environment where
|
545
|
-
#
|
453
|
+
# The identifier of the runtime environment where you want to deploy
|
454
|
+
# this application.
|
546
455
|
# @return [String]
|
547
456
|
#
|
548
457
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/CreateDeploymentRequest AWS API Documentation
|
@@ -568,40 +477,6 @@ module Aws::MainframeModernization
|
|
568
477
|
include Aws::Structure
|
569
478
|
end
|
570
479
|
|
571
|
-
# @note When making an API call, you may pass CreateEnvironmentRequest
|
572
|
-
# data as a hash:
|
573
|
-
#
|
574
|
-
# {
|
575
|
-
# client_token: "String",
|
576
|
-
# description: "EntityDescription",
|
577
|
-
# engine_type: "microfocus", # required, accepts microfocus, bluage
|
578
|
-
# engine_version: "EngineVersion",
|
579
|
-
# high_availability_config: {
|
580
|
-
# desired_capacity: 1, # required
|
581
|
-
# },
|
582
|
-
# instance_type: "String20", # required
|
583
|
-
# name: "EntityName", # required
|
584
|
-
# preferred_maintenance_window: "String50",
|
585
|
-
# publicly_accessible: false,
|
586
|
-
# security_group_ids: ["String50"],
|
587
|
-
# storage_configurations: [
|
588
|
-
# {
|
589
|
-
# efs: {
|
590
|
-
# file_system_id: "String200", # required
|
591
|
-
# mount_point: "String200", # required
|
592
|
-
# },
|
593
|
-
# fsx: {
|
594
|
-
# file_system_id: "String200", # required
|
595
|
-
# mount_point: "String200", # required
|
596
|
-
# },
|
597
|
-
# },
|
598
|
-
# ],
|
599
|
-
# subnet_ids: ["String50"],
|
600
|
-
# tags: {
|
601
|
-
# "TagKey" => "TagValue",
|
602
|
-
# },
|
603
|
-
# }
|
604
|
-
#
|
605
480
|
# @!attribute [rw] client_token
|
606
481
|
# Unique, case-sensitive identifier you provide to ensure the
|
607
482
|
# idempotency of the request to create an environment. The service
|
@@ -615,15 +490,15 @@ module Aws::MainframeModernization
|
|
615
490
|
# @return [String]
|
616
491
|
#
|
617
492
|
# @!attribute [rw] description
|
618
|
-
# The description of the environment.
|
493
|
+
# The description of the runtime environment.
|
619
494
|
# @return [String]
|
620
495
|
#
|
621
496
|
# @!attribute [rw] engine_type
|
622
|
-
# The engine type for the environment.
|
497
|
+
# The engine type for the runtime environment.
|
623
498
|
# @return [String]
|
624
499
|
#
|
625
500
|
# @!attribute [rw] engine_version
|
626
|
-
# The version of the engine type for the environment.
|
501
|
+
# The version of the engine type for the runtime environment.
|
627
502
|
# @return [String]
|
628
503
|
#
|
629
504
|
# @!attribute [rw] high_availability_config
|
@@ -632,38 +507,44 @@ module Aws::MainframeModernization
|
|
632
507
|
# @return [Types::HighAvailabilityConfig]
|
633
508
|
#
|
634
509
|
# @!attribute [rw] instance_type
|
635
|
-
# The type of instance for the environment.
|
510
|
+
# The type of instance for the runtime environment.
|
511
|
+
# @return [String]
|
512
|
+
#
|
513
|
+
# @!attribute [rw] kms_key_id
|
514
|
+
# The identifier of a customer managed key.
|
636
515
|
# @return [String]
|
637
516
|
#
|
638
517
|
# @!attribute [rw] name
|
639
|
-
# The
|
518
|
+
# The name of the runtime environment. Must be unique within the
|
519
|
+
# account.
|
640
520
|
# @return [String]
|
641
521
|
#
|
642
522
|
# @!attribute [rw] preferred_maintenance_window
|
643
|
-
# Configures
|
644
|
-
# do not provide a value, a random
|
645
|
-
# assigned.
|
523
|
+
# Configures the maintenance window you want for the runtime
|
524
|
+
# environment. If you do not provide a value, a random
|
525
|
+
# system-generated value will be assigned.
|
646
526
|
# @return [String]
|
647
527
|
#
|
648
528
|
# @!attribute [rw] publicly_accessible
|
649
|
-
# Specifies whether the environment is publicly accessible.
|
529
|
+
# Specifies whether the runtime environment is publicly accessible.
|
650
530
|
# @return [Boolean]
|
651
531
|
#
|
652
532
|
# @!attribute [rw] security_group_ids
|
653
|
-
# The list of security groups for the VPC associated with this
|
533
|
+
# The list of security groups for the VPC associated with this runtime
|
654
534
|
# environment.
|
655
535
|
# @return [Array<String>]
|
656
536
|
#
|
657
537
|
# @!attribute [rw] storage_configurations
|
658
|
-
# Optional. The storage configurations for this environment.
|
538
|
+
# Optional. The storage configurations for this runtime environment.
|
659
539
|
# @return [Array<Types::StorageConfiguration>]
|
660
540
|
#
|
661
541
|
# @!attribute [rw] subnet_ids
|
662
|
-
# The list of subnets associated with the VPC for this
|
542
|
+
# The list of subnets associated with the VPC for this runtime
|
543
|
+
# environment.
|
663
544
|
# @return [Array<String>]
|
664
545
|
#
|
665
546
|
# @!attribute [rw] tags
|
666
|
-
# The tags for the environment.
|
547
|
+
# The tags for the runtime environment.
|
667
548
|
# @return [Hash<String,String>]
|
668
549
|
#
|
669
550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/CreateEnvironmentRequest AWS API Documentation
|
@@ -675,6 +556,7 @@ module Aws::MainframeModernization
|
|
675
556
|
:engine_version,
|
676
557
|
:high_availability_config,
|
677
558
|
:instance_type,
|
559
|
+
:kms_key_id,
|
678
560
|
:name,
|
679
561
|
:preferred_maintenance_window,
|
680
562
|
:publicly_accessible,
|
@@ -687,7 +569,7 @@ module Aws::MainframeModernization
|
|
687
569
|
end
|
688
570
|
|
689
571
|
# @!attribute [rw] environment_id
|
690
|
-
# The identifier of
|
572
|
+
# The unique identifier of the runtime environment.
|
691
573
|
# @return [String]
|
692
574
|
#
|
693
575
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/CreateEnvironmentResponse AWS API Documentation
|
@@ -700,51 +582,13 @@ module Aws::MainframeModernization
|
|
700
582
|
|
701
583
|
# Defines a data set.
|
702
584
|
#
|
703
|
-
# @note When making an API call, you may pass DataSet
|
704
|
-
# data as a hash:
|
705
|
-
#
|
706
|
-
# {
|
707
|
-
# dataset_name: "String", # required
|
708
|
-
# dataset_org: { # required
|
709
|
-
# gdg: {
|
710
|
-
# limit: 1,
|
711
|
-
# roll_disposition: "String",
|
712
|
-
# },
|
713
|
-
# vsam: {
|
714
|
-
# alternate_keys: [
|
715
|
-
# {
|
716
|
-
# allow_duplicates: false,
|
717
|
-
# length: 1, # required
|
718
|
-
# name: "String",
|
719
|
-
# offset: 1, # required
|
720
|
-
# },
|
721
|
-
# ],
|
722
|
-
# compressed: false,
|
723
|
-
# encoding: "String",
|
724
|
-
# format: "String", # required
|
725
|
-
# primary_key: {
|
726
|
-
# length: 1, # required
|
727
|
-
# name: "String",
|
728
|
-
# offset: 1, # required
|
729
|
-
# },
|
730
|
-
# },
|
731
|
-
# },
|
732
|
-
# record_length: { # required
|
733
|
-
# max: 1, # required
|
734
|
-
# min: 1, # required
|
735
|
-
# },
|
736
|
-
# relative_path: "String",
|
737
|
-
# storage_type: "String",
|
738
|
-
# }
|
739
|
-
#
|
740
585
|
# @!attribute [rw] dataset_name
|
741
586
|
# The logical identifier for a specific data set (in mainframe
|
742
587
|
# format).
|
743
588
|
# @return [String]
|
744
589
|
#
|
745
590
|
# @!attribute [rw] dataset_org
|
746
|
-
# The type of dataset.
|
747
|
-
# PS, UNKNOWN etc.
|
591
|
+
# The type of dataset. The only supported value is VSAM.
|
748
592
|
# @return [Types::DatasetOrgAttributes]
|
749
593
|
#
|
750
594
|
# @!attribute [rw] record_length
|
@@ -805,48 +649,6 @@ module Aws::MainframeModernization
|
|
805
649
|
|
806
650
|
# Identifies a specific data set to import from an external location.
|
807
651
|
#
|
808
|
-
# @note When making an API call, you may pass DataSetImportItem
|
809
|
-
# data as a hash:
|
810
|
-
#
|
811
|
-
# {
|
812
|
-
# data_set: { # required
|
813
|
-
# dataset_name: "String", # required
|
814
|
-
# dataset_org: { # required
|
815
|
-
# gdg: {
|
816
|
-
# limit: 1,
|
817
|
-
# roll_disposition: "String",
|
818
|
-
# },
|
819
|
-
# vsam: {
|
820
|
-
# alternate_keys: [
|
821
|
-
# {
|
822
|
-
# allow_duplicates: false,
|
823
|
-
# length: 1, # required
|
824
|
-
# name: "String",
|
825
|
-
# offset: 1, # required
|
826
|
-
# },
|
827
|
-
# ],
|
828
|
-
# compressed: false,
|
829
|
-
# encoding: "String",
|
830
|
-
# format: "String", # required
|
831
|
-
# primary_key: {
|
832
|
-
# length: 1, # required
|
833
|
-
# name: "String",
|
834
|
-
# offset: 1, # required
|
835
|
-
# },
|
836
|
-
# },
|
837
|
-
# },
|
838
|
-
# record_length: { # required
|
839
|
-
# max: 1, # required
|
840
|
-
# min: 1, # required
|
841
|
-
# },
|
842
|
-
# relative_path: "String",
|
843
|
-
# storage_type: "String",
|
844
|
-
# },
|
845
|
-
# external_location: { # required
|
846
|
-
# s3_location: "String2000",
|
847
|
-
# },
|
848
|
-
# }
|
849
|
-
#
|
850
652
|
# @!attribute [rw] data_set
|
851
653
|
# The data set.
|
852
654
|
# @return [Types::DataSet]
|
@@ -933,8 +735,7 @@ module Aws::MainframeModernization
|
|
933
735
|
# @return [String]
|
934
736
|
#
|
935
737
|
# @!attribute [rw] data_set_org
|
936
|
-
# The type of data set.
|
937
|
-
# PS, or unknown.
|
738
|
+
# The type of data set. The only supported value is VSAM.
|
938
739
|
# @return [String]
|
939
740
|
#
|
940
741
|
# @!attribute [rw] format
|
@@ -1049,14 +850,6 @@ module Aws::MainframeModernization
|
|
1049
850
|
class Unknown < Definition; end
|
1050
851
|
end
|
1051
852
|
|
1052
|
-
# @note When making an API call, you may pass DeleteApplicationFromEnvironmentRequest
|
1053
|
-
# data as a hash:
|
1054
|
-
#
|
1055
|
-
# {
|
1056
|
-
# application_id: "Identifier", # required
|
1057
|
-
# environment_id: "Identifier", # required
|
1058
|
-
# }
|
1059
|
-
#
|
1060
853
|
# @!attribute [rw] application_id
|
1061
854
|
# The unique identifier of the application you want to delete.
|
1062
855
|
# @return [String]
|
@@ -1079,13 +872,6 @@ module Aws::MainframeModernization
|
|
1079
872
|
#
|
1080
873
|
class DeleteApplicationFromEnvironmentResponse < Aws::EmptyStructure; end
|
1081
874
|
|
1082
|
-
# @note When making an API call, you may pass DeleteApplicationRequest
|
1083
|
-
# data as a hash:
|
1084
|
-
#
|
1085
|
-
# {
|
1086
|
-
# application_id: "Identifier", # required
|
1087
|
-
# }
|
1088
|
-
#
|
1089
875
|
# @!attribute [rw] application_id
|
1090
876
|
# The unique identifier of the application you want to delete.
|
1091
877
|
# @return [String]
|
@@ -1102,13 +888,6 @@ module Aws::MainframeModernization
|
|
1102
888
|
#
|
1103
889
|
class DeleteApplicationResponse < Aws::EmptyStructure; end
|
1104
890
|
|
1105
|
-
# @note When making an API call, you may pass DeleteEnvironmentRequest
|
1106
|
-
# data as a hash:
|
1107
|
-
#
|
1108
|
-
# {
|
1109
|
-
# environment_id: "Identifier", # required
|
1110
|
-
# }
|
1111
|
-
#
|
1112
891
|
# @!attribute [rw] environment_id
|
1113
892
|
# The unique identifier of the runtime environment you want to delete.
|
1114
893
|
# @return [String]
|
@@ -1168,7 +947,7 @@ module Aws::MainframeModernization
|
|
1168
947
|
# @return [String]
|
1169
948
|
#
|
1170
949
|
# @!attribute [rw] environment_id
|
1171
|
-
# The unique identifier of the environment.
|
950
|
+
# The unique identifier of the runtime environment.
|
1172
951
|
# @return [String]
|
1173
952
|
#
|
1174
953
|
# @!attribute [rw] status
|
@@ -1195,14 +974,6 @@ module Aws::MainframeModernization
|
|
1195
974
|
|
1196
975
|
# Defines the storage configuration for an Amazon EFS file system.
|
1197
976
|
#
|
1198
|
-
# @note When making an API call, you may pass EfsStorageConfiguration
|
1199
|
-
# data as a hash:
|
1200
|
-
#
|
1201
|
-
# {
|
1202
|
-
# file_system_id: "String200", # required
|
1203
|
-
# mount_point: "String200", # required
|
1204
|
-
# }
|
1205
|
-
#
|
1206
977
|
# @!attribute [rw] file_system_id
|
1207
978
|
# The file system identifier.
|
1208
979
|
# @return [String]
|
@@ -1240,15 +1011,15 @@ module Aws::MainframeModernization
|
|
1240
1011
|
include Aws::Structure
|
1241
1012
|
end
|
1242
1013
|
|
1243
|
-
# Contains a subset of the possible environment attributes. Used
|
1244
|
-
# environment list.
|
1014
|
+
# Contains a subset of the possible runtime environment attributes. Used
|
1015
|
+
# in the environment list.
|
1245
1016
|
#
|
1246
1017
|
# @!attribute [rw] creation_time
|
1247
|
-
# The timestamp when the environment was created.
|
1018
|
+
# The timestamp when the runtime environment was created.
|
1248
1019
|
# @return [Time]
|
1249
1020
|
#
|
1250
1021
|
# @!attribute [rw] engine_type
|
1251
|
-
# The target platform for the environment.
|
1022
|
+
# The target platform for the runtime environment.
|
1252
1023
|
# @return [String]
|
1253
1024
|
#
|
1254
1025
|
# @!attribute [rw] engine_version
|
@@ -1264,15 +1035,15 @@ module Aws::MainframeModernization
|
|
1264
1035
|
# @return [String]
|
1265
1036
|
#
|
1266
1037
|
# @!attribute [rw] instance_type
|
1267
|
-
# The instance type of the environment.
|
1038
|
+
# The instance type of the runtime environment.
|
1268
1039
|
# @return [String]
|
1269
1040
|
#
|
1270
1041
|
# @!attribute [rw] name
|
1271
|
-
# The name of the environment.
|
1042
|
+
# The name of the runtime environment.
|
1272
1043
|
# @return [String]
|
1273
1044
|
#
|
1274
1045
|
# @!attribute [rw] status
|
1275
|
-
# The status of the environment
|
1046
|
+
# The status of the runtime environment
|
1276
1047
|
# @return [String]
|
1277
1048
|
#
|
1278
1049
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/EnvironmentSummary AWS API Documentation
|
@@ -1333,14 +1104,6 @@ module Aws::MainframeModernization
|
|
1333
1104
|
# A batch job identifier in which the batch job to run is identified by
|
1334
1105
|
# the file name and the relative path to the file name.
|
1335
1106
|
#
|
1336
|
-
# @note When making an API call, you may pass FileBatchJobIdentifier
|
1337
|
-
# data as a hash:
|
1338
|
-
#
|
1339
|
-
# {
|
1340
|
-
# file_name: "String", # required
|
1341
|
-
# folder_path: "String",
|
1342
|
-
# }
|
1343
|
-
#
|
1344
1107
|
# @!attribute [rw] file_name
|
1345
1108
|
# The file name for the batch job identifier.
|
1346
1109
|
# @return [String]
|
@@ -1360,14 +1123,6 @@ module Aws::MainframeModernization
|
|
1360
1123
|
|
1361
1124
|
# Defines the storage configuration for an Amazon FSx file system.
|
1362
1125
|
#
|
1363
|
-
# @note When making an API call, you may pass FsxStorageConfiguration
|
1364
|
-
# data as a hash:
|
1365
|
-
#
|
1366
|
-
# {
|
1367
|
-
# file_system_id: "String200", # required
|
1368
|
-
# mount_point: "String200", # required
|
1369
|
-
# }
|
1370
|
-
#
|
1371
1126
|
# @!attribute [rw] file_system_id
|
1372
1127
|
# The file system identifier.
|
1373
1128
|
# @return [String]
|
@@ -1395,14 +1150,6 @@ module Aws::MainframeModernization
|
|
1395
1150
|
#
|
1396
1151
|
# [1]: https://www.ibm.com/docs/en/zos/2.3.0?topic=guide-generation-data-sets
|
1397
1152
|
#
|
1398
|
-
# @note When making an API call, you may pass GdgAttributes
|
1399
|
-
# data as a hash:
|
1400
|
-
#
|
1401
|
-
# {
|
1402
|
-
# limit: 1,
|
1403
|
-
# roll_disposition: "String",
|
1404
|
-
# }
|
1405
|
-
#
|
1406
1153
|
# @!attribute [rw] limit
|
1407
1154
|
# The maximum number of generation data sets, up to 255, in a GDG.
|
1408
1155
|
# @return [Integer]
|
@@ -1447,13 +1194,6 @@ module Aws::MainframeModernization
|
|
1447
1194
|
include Aws::Structure
|
1448
1195
|
end
|
1449
1196
|
|
1450
|
-
# @note When making an API call, you may pass GetApplicationRequest
|
1451
|
-
# data as a hash:
|
1452
|
-
#
|
1453
|
-
# {
|
1454
|
-
# application_id: "Identifier", # required
|
1455
|
-
# }
|
1456
|
-
#
|
1457
1197
|
# @!attribute [rw] application_id
|
1458
1198
|
# The identifier of the application.
|
1459
1199
|
# @return [String]
|
@@ -1491,13 +1231,17 @@ module Aws::MainframeModernization
|
|
1491
1231
|
# @return [String]
|
1492
1232
|
#
|
1493
1233
|
# @!attribute [rw] environment_id
|
1494
|
-
# The identifier of the environment where
|
1495
|
-
#
|
1234
|
+
# The identifier of the runtime environment where you want to deploy
|
1235
|
+
# the application.
|
1236
|
+
# @return [String]
|
1237
|
+
#
|
1238
|
+
# @!attribute [rw] kms_key_id
|
1239
|
+
# The identifier of a customer managed key.
|
1496
1240
|
# @return [String]
|
1497
1241
|
#
|
1498
1242
|
# @!attribute [rw] last_start_time
|
1499
|
-
# The timestamp when
|
1500
|
-
# application
|
1243
|
+
# The timestamp when you last started the application. Null until the
|
1244
|
+
# application runs for the first time.
|
1501
1245
|
# @return [Time]
|
1502
1246
|
#
|
1503
1247
|
# @!attribute [rw] latest_version
|
@@ -1507,8 +1251,8 @@ module Aws::MainframeModernization
|
|
1507
1251
|
# @!attribute [rw] listener_arns
|
1508
1252
|
# The Amazon Resource Name (ARN) for the network load balancer
|
1509
1253
|
# listener created in your Amazon Web Services account. Amazon Web
|
1510
|
-
# Services Mainframe Modernization creates this listener
|
1511
|
-
#
|
1254
|
+
# Services Mainframe Modernization creates this listener for you the
|
1255
|
+
# first time you deploy an application.
|
1512
1256
|
# @return [Array<String>]
|
1513
1257
|
#
|
1514
1258
|
# @!attribute [rw] listener_ports
|
@@ -1523,9 +1267,9 @@ module Aws::MainframeModernization
|
|
1523
1267
|
#
|
1524
1268
|
# @!attribute [rw] log_groups
|
1525
1269
|
# The list of log summaries. Each log summary includes the log type as
|
1526
|
-
# well as the log group identifier. These are CloudWatch logs.
|
1527
|
-
#
|
1528
|
-
#
|
1270
|
+
# well as the log group identifier. These are CloudWatch logs. Amazon
|
1271
|
+
# Web Services Mainframe Modernization pushes the application log to
|
1272
|
+
# CloudWatch under the customer's account.
|
1529
1273
|
# @return [Array<Types::LogGroupSummary>]
|
1530
1274
|
#
|
1531
1275
|
# @!attribute [rw] name
|
@@ -1559,6 +1303,7 @@ module Aws::MainframeModernization
|
|
1559
1303
|
:description,
|
1560
1304
|
:engine_type,
|
1561
1305
|
:environment_id,
|
1306
|
+
:kms_key_id,
|
1562
1307
|
:last_start_time,
|
1563
1308
|
:latest_version,
|
1564
1309
|
:listener_arns,
|
@@ -1574,14 +1319,6 @@ module Aws::MainframeModernization
|
|
1574
1319
|
include Aws::Structure
|
1575
1320
|
end
|
1576
1321
|
|
1577
|
-
# @note When making an API call, you may pass GetApplicationVersionRequest
|
1578
|
-
# data as a hash:
|
1579
|
-
#
|
1580
|
-
# {
|
1581
|
-
# application_id: "Identifier", # required
|
1582
|
-
# application_version: 1, # required
|
1583
|
-
# }
|
1584
|
-
#
|
1585
1322
|
# @!attribute [rw] application_id
|
1586
1323
|
# The unique identifier of the application.
|
1587
1324
|
# @return [String]
|
@@ -1609,8 +1346,8 @@ module Aws::MainframeModernization
|
|
1609
1346
|
#
|
1610
1347
|
# @!attribute [rw] definition_content
|
1611
1348
|
# The content of the application definition. This is a JSON object
|
1612
|
-
# that contains the resource configuration
|
1613
|
-
# an application.
|
1349
|
+
# that contains the resource configuration and definitions that
|
1350
|
+
# identify an application.
|
1614
1351
|
# @return [String]
|
1615
1352
|
#
|
1616
1353
|
# @!attribute [rw] description
|
@@ -1643,14 +1380,6 @@ module Aws::MainframeModernization
|
|
1643
1380
|
include Aws::Structure
|
1644
1381
|
end
|
1645
1382
|
|
1646
|
-
# @note When making an API call, you may pass GetBatchJobExecutionRequest
|
1647
|
-
# data as a hash:
|
1648
|
-
#
|
1649
|
-
# {
|
1650
|
-
# application_id: "Identifier", # required
|
1651
|
-
# execution_id: "Identifier", # required
|
1652
|
-
# }
|
1653
|
-
#
|
1654
1383
|
# @!attribute [rw] application_id
|
1655
1384
|
# The identifier of the application.
|
1656
1385
|
# @return [String]
|
@@ -1725,14 +1454,6 @@ module Aws::MainframeModernization
|
|
1725
1454
|
include Aws::Structure
|
1726
1455
|
end
|
1727
1456
|
|
1728
|
-
# @note When making an API call, you may pass GetDataSetDetailsRequest
|
1729
|
-
# data as a hash:
|
1730
|
-
#
|
1731
|
-
# {
|
1732
|
-
# application_id: "Identifier", # required
|
1733
|
-
# data_set_name: "String200", # required
|
1734
|
-
# }
|
1735
|
-
#
|
1736
1457
|
# @!attribute [rw] application_id
|
1737
1458
|
# The unique identifier of the application that this data set is
|
1738
1459
|
# associated with.
|
@@ -1764,8 +1485,7 @@ module Aws::MainframeModernization
|
|
1764
1485
|
# @return [String]
|
1765
1486
|
#
|
1766
1487
|
# @!attribute [rw] data_set_org
|
1767
|
-
# The type of data set.
|
1768
|
-
# PS, or unknown.
|
1488
|
+
# The type of data set. The only supported value is VSAM.
|
1769
1489
|
# @return [Types::DatasetDetailOrgAttributes]
|
1770
1490
|
#
|
1771
1491
|
# @!attribute [rw] last_referenced_time
|
@@ -1777,7 +1497,7 @@ module Aws::MainframeModernization
|
|
1777
1497
|
# @return [Time]
|
1778
1498
|
#
|
1779
1499
|
# @!attribute [rw] location
|
1780
|
-
# The
|
1500
|
+
# The location where the data set is stored.
|
1781
1501
|
# @return [String]
|
1782
1502
|
#
|
1783
1503
|
# @!attribute [rw] record_length
|
@@ -1799,14 +1519,6 @@ module Aws::MainframeModernization
|
|
1799
1519
|
include Aws::Structure
|
1800
1520
|
end
|
1801
1521
|
|
1802
|
-
# @note When making an API call, you may pass GetDataSetImportTaskRequest
|
1803
|
-
# data as a hash:
|
1804
|
-
#
|
1805
|
-
# {
|
1806
|
-
# application_id: "Identifier", # required
|
1807
|
-
# task_id: "Identifier", # required
|
1808
|
-
# }
|
1809
|
-
#
|
1810
1522
|
# @!attribute [rw] application_id
|
1811
1523
|
# The application identifier.
|
1812
1524
|
# @return [String]
|
@@ -1847,14 +1559,6 @@ module Aws::MainframeModernization
|
|
1847
1559
|
include Aws::Structure
|
1848
1560
|
end
|
1849
1561
|
|
1850
|
-
# @note When making an API call, you may pass GetDeploymentRequest
|
1851
|
-
# data as a hash:
|
1852
|
-
#
|
1853
|
-
# {
|
1854
|
-
# application_id: "Identifier", # required
|
1855
|
-
# deployment_id: "Identifier", # required
|
1856
|
-
# }
|
1857
|
-
#
|
1858
1562
|
# @!attribute [rw] application_id
|
1859
1563
|
# The unique identifier of the application.
|
1860
1564
|
# @return [String]
|
@@ -1914,13 +1618,6 @@ module Aws::MainframeModernization
|
|
1914
1618
|
include Aws::Structure
|
1915
1619
|
end
|
1916
1620
|
|
1917
|
-
# @note When making an API call, you may pass GetEnvironmentRequest
|
1918
|
-
# data as a hash:
|
1919
|
-
#
|
1920
|
-
# {
|
1921
|
-
# environment_id: "Identifier", # required
|
1922
|
-
# }
|
1923
|
-
#
|
1924
1621
|
# @!attribute [rw] environment_id
|
1925
1622
|
# The unique identifier of the runtime environment.
|
1926
1623
|
# @return [String]
|
@@ -1973,13 +1670,18 @@ module Aws::MainframeModernization
|
|
1973
1670
|
# The type of instance underlying the runtime environment.
|
1974
1671
|
# @return [String]
|
1975
1672
|
#
|
1673
|
+
# @!attribute [rw] kms_key_id
|
1674
|
+
# The identifier of a customer managed key.
|
1675
|
+
# @return [String]
|
1676
|
+
#
|
1976
1677
|
# @!attribute [rw] load_balancer_arn
|
1977
1678
|
# The Amazon Resource Name (ARN) for the load balancer used with the
|
1978
1679
|
# runtime environment.
|
1979
1680
|
# @return [String]
|
1980
1681
|
#
|
1981
1682
|
# @!attribute [rw] name
|
1982
|
-
# The name of the runtime environment.
|
1683
|
+
# The name of the runtime environment. Must be unique within the
|
1684
|
+
# account.
|
1983
1685
|
# @return [String]
|
1984
1686
|
#
|
1985
1687
|
# @!attribute [rw] pending_maintenance
|
@@ -1987,9 +1689,9 @@ module Aws::MainframeModernization
|
|
1987
1689
|
# @return [Types::PendingMaintenance]
|
1988
1690
|
#
|
1989
1691
|
# @!attribute [rw] preferred_maintenance_window
|
1990
|
-
# Configures
|
1991
|
-
# do not provide a value, a random
|
1992
|
-
# assigned.
|
1692
|
+
# Configures the maintenance window you want for the runtime
|
1693
|
+
# environment. If you do not provide a value, a random
|
1694
|
+
# system-generated value will be assigned.
|
1993
1695
|
# @return [String]
|
1994
1696
|
#
|
1995
1697
|
# @!attribute [rw] publicly_accessible
|
@@ -2040,6 +1742,7 @@ module Aws::MainframeModernization
|
|
2040
1742
|
:environment_id,
|
2041
1743
|
:high_availability_config,
|
2042
1744
|
:instance_type,
|
1745
|
+
:kms_key_id,
|
2043
1746
|
:load_balancer_arn,
|
2044
1747
|
:name,
|
2045
1748
|
:pending_maintenance,
|
@@ -2058,13 +1761,6 @@ module Aws::MainframeModernization
|
|
2058
1761
|
|
2059
1762
|
# Defines the details of a high availability configuration.
|
2060
1763
|
#
|
2061
|
-
# @note When making an API call, you may pass HighAvailabilityConfig
|
2062
|
-
# data as a hash:
|
2063
|
-
#
|
2064
|
-
# {
|
2065
|
-
# desired_capacity: 1, # required
|
2066
|
-
# }
|
2067
|
-
#
|
2068
1764
|
# @!attribute [rw] desired_capacity
|
2069
1765
|
# The number of instances in a high availability configuration.
|
2070
1766
|
# @return [Integer]
|
@@ -2095,15 +1791,6 @@ module Aws::MainframeModernization
|
|
2095
1791
|
include Aws::Structure
|
2096
1792
|
end
|
2097
1793
|
|
2098
|
-
# @note When making an API call, you may pass ListApplicationVersionsRequest
|
2099
|
-
# data as a hash:
|
2100
|
-
#
|
2101
|
-
# {
|
2102
|
-
# application_id: "Identifier", # required
|
2103
|
-
# max_results: 1,
|
2104
|
-
# next_token: "NextToken",
|
2105
|
-
# }
|
2106
|
-
#
|
2107
1794
|
# @!attribute [rw] application_id
|
2108
1795
|
# The unique identifier of the application.
|
2109
1796
|
# @return [String]
|
@@ -2147,16 +1834,6 @@ module Aws::MainframeModernization
|
|
2147
1834
|
include Aws::Structure
|
2148
1835
|
end
|
2149
1836
|
|
2150
|
-
# @note When making an API call, you may pass ListApplicationsRequest
|
2151
|
-
# data as a hash:
|
2152
|
-
#
|
2153
|
-
# {
|
2154
|
-
# environment_id: "Identifier",
|
2155
|
-
# max_results: 1,
|
2156
|
-
# names: ["EntityName"],
|
2157
|
-
# next_token: "NextToken",
|
2158
|
-
# }
|
2159
|
-
#
|
2160
1837
|
# @!attribute [rw] environment_id
|
2161
1838
|
# The unique identifier of the runtime environment where the
|
2162
1839
|
# applications are deployed.
|
@@ -2187,8 +1864,8 @@ module Aws::MainframeModernization
|
|
2187
1864
|
end
|
2188
1865
|
|
2189
1866
|
# @!attribute [rw] applications
|
2190
|
-
# Returns a list of summary details for all the applications in
|
2191
|
-
# environment.
|
1867
|
+
# Returns a list of summary details for all the applications in a
|
1868
|
+
# runtime environment.
|
2192
1869
|
# @return [Array<Types::ApplicationSummary>]
|
2193
1870
|
#
|
2194
1871
|
# @!attribute [rw] next_token
|
@@ -2205,16 +1882,6 @@ module Aws::MainframeModernization
|
|
2205
1882
|
include Aws::Structure
|
2206
1883
|
end
|
2207
1884
|
|
2208
|
-
# @note When making an API call, you may pass ListBatchJobDefinitionsRequest
|
2209
|
-
# data as a hash:
|
2210
|
-
#
|
2211
|
-
# {
|
2212
|
-
# application_id: "Identifier", # required
|
2213
|
-
# max_results: 1,
|
2214
|
-
# next_token: "NextToken",
|
2215
|
-
# prefix: "String",
|
2216
|
-
# }
|
2217
|
-
#
|
2218
1885
|
# @!attribute [rw] application_id
|
2219
1886
|
# The identifier of the application.
|
2220
1887
|
# @return [String]
|
@@ -2264,20 +1931,6 @@ module Aws::MainframeModernization
|
|
2264
1931
|
include Aws::Structure
|
2265
1932
|
end
|
2266
1933
|
|
2267
|
-
# @note When making an API call, you may pass ListBatchJobExecutionsRequest
|
2268
|
-
# data as a hash:
|
2269
|
-
#
|
2270
|
-
# {
|
2271
|
-
# application_id: "Identifier", # required
|
2272
|
-
# execution_ids: ["Identifier"],
|
2273
|
-
# job_name: "String100",
|
2274
|
-
# max_results: 1,
|
2275
|
-
# next_token: "NextToken",
|
2276
|
-
# started_after: Time.now,
|
2277
|
-
# started_before: Time.now,
|
2278
|
-
# status: "Submitting", # accepts Submitting, Holding, Dispatching, Running, Cancelling, Cancelled, Succeeded, Failed, Succeeded With Warning
|
2279
|
-
# }
|
2280
|
-
#
|
2281
1934
|
# @!attribute [rw] application_id
|
2282
1935
|
# The unique identifier of the application.
|
2283
1936
|
# @return [String]
|
@@ -2344,15 +1997,6 @@ module Aws::MainframeModernization
|
|
2344
1997
|
include Aws::Structure
|
2345
1998
|
end
|
2346
1999
|
|
2347
|
-
# @note When making an API call, you may pass ListDataSetImportHistoryRequest
|
2348
|
-
# data as a hash:
|
2349
|
-
#
|
2350
|
-
# {
|
2351
|
-
# application_id: "Identifier", # required
|
2352
|
-
# max_results: 1,
|
2353
|
-
# next_token: "NextToken",
|
2354
|
-
# }
|
2355
|
-
#
|
2356
2000
|
# @!attribute [rw] application_id
|
2357
2001
|
# The unique identifier of the application.
|
2358
2002
|
# @return [String]
|
@@ -2396,16 +2040,6 @@ module Aws::MainframeModernization
|
|
2396
2040
|
include Aws::Structure
|
2397
2041
|
end
|
2398
2042
|
|
2399
|
-
# @note When making an API call, you may pass ListDataSetsRequest
|
2400
|
-
# data as a hash:
|
2401
|
-
#
|
2402
|
-
# {
|
2403
|
-
# application_id: "Identifier", # required
|
2404
|
-
# max_results: 1,
|
2405
|
-
# next_token: "NextToken",
|
2406
|
-
# prefix: "String200",
|
2407
|
-
# }
|
2408
|
-
#
|
2409
2043
|
# @!attribute [rw] application_id
|
2410
2044
|
# The unique identifier of the application for which you want to list
|
2411
2045
|
# the associated data sets.
|
@@ -2438,10 +2072,9 @@ module Aws::MainframeModernization
|
|
2438
2072
|
end
|
2439
2073
|
|
2440
2074
|
# @!attribute [rw] data_sets
|
2441
|
-
# The list of data sets, containing
|
2442
|
-
#
|
2443
|
-
#
|
2444
|
-
# updated.
|
2075
|
+
# The list of data sets, containing information including the creation
|
2076
|
+
# time, the data set name, the data set organization, the data set
|
2077
|
+
# format, and the last time the data set was referenced or updated.
|
2445
2078
|
# @return [Array<Types::DataSetSummary>]
|
2446
2079
|
#
|
2447
2080
|
# @!attribute [rw] next_token
|
@@ -2459,15 +2092,6 @@ module Aws::MainframeModernization
|
|
2459
2092
|
include Aws::Structure
|
2460
2093
|
end
|
2461
2094
|
|
2462
|
-
# @note When making an API call, you may pass ListDeploymentsRequest
|
2463
|
-
# data as a hash:
|
2464
|
-
#
|
2465
|
-
# {
|
2466
|
-
# application_id: "Identifier", # required
|
2467
|
-
# max_results: 1,
|
2468
|
-
# next_token: "NextToken",
|
2469
|
-
# }
|
2470
|
-
#
|
2471
2095
|
# @!attribute [rw] application_id
|
2472
2096
|
# The application identifier.
|
2473
2097
|
# @return [String]
|
@@ -2511,15 +2135,6 @@ module Aws::MainframeModernization
|
|
2511
2135
|
include Aws::Structure
|
2512
2136
|
end
|
2513
2137
|
|
2514
|
-
# @note When making an API call, you may pass ListEngineVersionsRequest
|
2515
|
-
# data as a hash:
|
2516
|
-
#
|
2517
|
-
# {
|
2518
|
-
# engine_type: "microfocus", # accepts microfocus, bluage
|
2519
|
-
# max_results: 1,
|
2520
|
-
# next_token: "NextToken",
|
2521
|
-
# }
|
2522
|
-
#
|
2523
2138
|
# @!attribute [rw] engine_type
|
2524
2139
|
# The type of target platform.
|
2525
2140
|
# @return [String]
|
@@ -2563,31 +2178,22 @@ module Aws::MainframeModernization
|
|
2563
2178
|
include Aws::Structure
|
2564
2179
|
end
|
2565
2180
|
|
2566
|
-
# @note When making an API call, you may pass ListEnvironmentsRequest
|
2567
|
-
# data as a hash:
|
2568
|
-
#
|
2569
|
-
# {
|
2570
|
-
# engine_type: "microfocus", # accepts microfocus, bluage
|
2571
|
-
# max_results: 1,
|
2572
|
-
# names: ["EntityName"],
|
2573
|
-
# next_token: "NextToken",
|
2574
|
-
# }
|
2575
|
-
#
|
2576
2181
|
# @!attribute [rw] engine_type
|
2577
|
-
# The engine type for the environment.
|
2182
|
+
# The engine type for the runtime environment.
|
2578
2183
|
# @return [String]
|
2579
2184
|
#
|
2580
2185
|
# @!attribute [rw] max_results
|
2581
|
-
# The maximum number of environments to return.
|
2186
|
+
# The maximum number of runtime environments to return.
|
2582
2187
|
# @return [Integer]
|
2583
2188
|
#
|
2584
2189
|
# @!attribute [rw] names
|
2585
|
-
# The
|
2190
|
+
# The names of the runtime environments. Must be unique within the
|
2191
|
+
# account.
|
2586
2192
|
# @return [Array<String>]
|
2587
2193
|
#
|
2588
2194
|
# @!attribute [rw] next_token
|
2589
|
-
# A pagination token to control the number of environments
|
2590
|
-
# in the list.
|
2195
|
+
# A pagination token to control the number of runtime environments
|
2196
|
+
# displayed in the list.
|
2591
2197
|
# @return [String]
|
2592
2198
|
#
|
2593
2199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/ListEnvironmentsRequest AWS API Documentation
|
@@ -2602,13 +2208,13 @@ module Aws::MainframeModernization
|
|
2602
2208
|
end
|
2603
2209
|
|
2604
2210
|
# @!attribute [rw] environments
|
2605
|
-
# Returns a list of summary details for all the environments
|
2606
|
-
# account.
|
2211
|
+
# Returns a list of summary details for all the runtime environments
|
2212
|
+
# in your account.
|
2607
2213
|
# @return [Array<Types::EnvironmentSummary>]
|
2608
2214
|
#
|
2609
2215
|
# @!attribute [rw] next_token
|
2610
2216
|
# A pagination token that's returned when the response doesn't
|
2611
|
-
# contain all the environments.
|
2217
|
+
# contain all the runtime environments.
|
2612
2218
|
# @return [String]
|
2613
2219
|
#
|
2614
2220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/ListEnvironmentsResponse AWS API Documentation
|
@@ -2620,13 +2226,6 @@ module Aws::MainframeModernization
|
|
2620
2226
|
include Aws::Structure
|
2621
2227
|
end
|
2622
2228
|
|
2623
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
2624
|
-
# data as a hash:
|
2625
|
-
#
|
2626
|
-
# {
|
2627
|
-
# resource_arn: "Arn", # required
|
2628
|
-
# }
|
2629
|
-
#
|
2630
2229
|
# @!attribute [rw] resource_arn
|
2631
2230
|
# The Amazon Resource Name (ARN) of the resource.
|
2632
2231
|
# @return [String]
|
@@ -2651,8 +2250,8 @@ module Aws::MainframeModernization
|
|
2651
2250
|
include Aws::Structure
|
2652
2251
|
end
|
2653
2252
|
|
2654
|
-
# A subset of the attributes
|
2655
|
-
# group is a group of log streams that share the same retention,
|
2253
|
+
# A subset of the attributes that describe a log group. In CloudWatch a
|
2254
|
+
# log group is a group of log streams that share the same retention,
|
2656
2255
|
# monitoring, and access control settings.
|
2657
2256
|
#
|
2658
2257
|
# @!attribute [rw] log_group_name
|
@@ -2699,7 +2298,7 @@ module Aws::MainframeModernization
|
|
2699
2298
|
# @return [String]
|
2700
2299
|
#
|
2701
2300
|
# @!attribute [rw] schedule
|
2702
|
-
# The maintenance schedule for the engine version.
|
2301
|
+
# The maintenance schedule for the runtime engine version.
|
2703
2302
|
# @return [Types::MaintenanceSchedule]
|
2704
2303
|
#
|
2705
2304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/PendingMaintenance AWS API Documentation
|
@@ -2713,15 +2312,6 @@ module Aws::MainframeModernization
|
|
2713
2312
|
|
2714
2313
|
# The primary key for a KSDS data set.
|
2715
2314
|
#
|
2716
|
-
# @note When making an API call, you may pass PrimaryKey
|
2717
|
-
# data as a hash:
|
2718
|
-
#
|
2719
|
-
# {
|
2720
|
-
# length: 1, # required
|
2721
|
-
# name: "String",
|
2722
|
-
# offset: 1, # required
|
2723
|
-
# }
|
2724
|
-
#
|
2725
2315
|
# @!attribute [rw] length
|
2726
2316
|
# A strictly positive integer value representing the length of the
|
2727
2317
|
# primary key.
|
@@ -2748,14 +2338,6 @@ module Aws::MainframeModernization
|
|
2748
2338
|
|
2749
2339
|
# The length of the records in the data set.
|
2750
2340
|
#
|
2751
|
-
# @note When making an API call, you may pass RecordLength
|
2752
|
-
# data as a hash:
|
2753
|
-
#
|
2754
|
-
# {
|
2755
|
-
# max: 1, # required
|
2756
|
-
# min: 1, # required
|
2757
|
-
# }
|
2758
|
-
#
|
2759
2341
|
# @!attribute [rw] max
|
2760
2342
|
# The maximum record length. In case of fixed, both minimum and
|
2761
2343
|
# maximum are the same.
|
@@ -2814,13 +2396,6 @@ module Aws::MainframeModernization
|
|
2814
2396
|
# A batch job identifier in which the batch job to run is identified by
|
2815
2397
|
# the script name.
|
2816
2398
|
#
|
2817
|
-
# @note When making an API call, you may pass ScriptBatchJobIdentifier
|
2818
|
-
# data as a hash:
|
2819
|
-
#
|
2820
|
-
# {
|
2821
|
-
# script_name: "String", # required
|
2822
|
-
# }
|
2823
|
-
#
|
2824
2399
|
# @!attribute [rw] script_name
|
2825
2400
|
# The name of the script containing the batch job definition.
|
2826
2401
|
# @return [String]
|
@@ -2869,13 +2444,6 @@ module Aws::MainframeModernization
|
|
2869
2444
|
include Aws::Structure
|
2870
2445
|
end
|
2871
2446
|
|
2872
|
-
# @note When making an API call, you may pass StartApplicationRequest
|
2873
|
-
# data as a hash:
|
2874
|
-
#
|
2875
|
-
# {
|
2876
|
-
# application_id: "Identifier", # required
|
2877
|
-
# }
|
2878
|
-
#
|
2879
2447
|
# @!attribute [rw] application_id
|
2880
2448
|
# The unique identifier of the application you want to start.
|
2881
2449
|
# @return [String]
|
@@ -2892,25 +2460,6 @@ module Aws::MainframeModernization
|
|
2892
2460
|
#
|
2893
2461
|
class StartApplicationResponse < Aws::EmptyStructure; end
|
2894
2462
|
|
2895
|
-
# @note When making an API call, you may pass StartBatchJobRequest
|
2896
|
-
# data as a hash:
|
2897
|
-
#
|
2898
|
-
# {
|
2899
|
-
# application_id: "Identifier", # required
|
2900
|
-
# batch_job_identifier: { # required
|
2901
|
-
# file_batch_job_identifier: {
|
2902
|
-
# file_name: "String", # required
|
2903
|
-
# folder_path: "String",
|
2904
|
-
# },
|
2905
|
-
# script_batch_job_identifier: {
|
2906
|
-
# script_name: "String", # required
|
2907
|
-
# },
|
2908
|
-
# },
|
2909
|
-
# job_params: {
|
2910
|
-
# "BatchParamKey" => "BatchParamValue",
|
2911
|
-
# },
|
2912
|
-
# }
|
2913
|
-
#
|
2914
2463
|
# @!attribute [rw] application_id
|
2915
2464
|
# The unique identifier of the application associated with this batch
|
2916
2465
|
# job.
|
@@ -2951,14 +2500,6 @@ module Aws::MainframeModernization
|
|
2951
2500
|
include Aws::Structure
|
2952
2501
|
end
|
2953
2502
|
|
2954
|
-
# @note When making an API call, you may pass StopApplicationRequest
|
2955
|
-
# data as a hash:
|
2956
|
-
#
|
2957
|
-
# {
|
2958
|
-
# application_id: "Identifier", # required
|
2959
|
-
# force_stop: false,
|
2960
|
-
# }
|
2961
|
-
#
|
2962
2503
|
# @!attribute [rw] application_id
|
2963
2504
|
# The unique identifier of the application you want to stop.
|
2964
2505
|
# @return [String]
|
@@ -2983,7 +2524,7 @@ module Aws::MainframeModernization
|
|
2983
2524
|
#
|
2984
2525
|
class StopApplicationResponse < Aws::EmptyStructure; end
|
2985
2526
|
|
2986
|
-
# Defines the storage configuration for
|
2527
|
+
# Defines the storage configuration for a runtime environment.
|
2987
2528
|
#
|
2988
2529
|
# @note StorageConfiguration is a union - when making an API calls you must set exactly one of the members.
|
2989
2530
|
#
|
@@ -3012,16 +2553,6 @@ module Aws::MainframeModernization
|
|
3012
2553
|
class Unknown < StorageConfiguration; end
|
3013
2554
|
end
|
3014
2555
|
|
3015
|
-
# @note When making an API call, you may pass TagResourceRequest
|
3016
|
-
# data as a hash:
|
3017
|
-
#
|
3018
|
-
# {
|
3019
|
-
# resource_arn: "Arn", # required
|
3020
|
-
# tags: { # required
|
3021
|
-
# "TagKey" => "TagValue",
|
3022
|
-
# },
|
3023
|
-
# }
|
3024
|
-
#
|
3025
2556
|
# @!attribute [rw] resource_arn
|
3026
2557
|
# The Amazon Resource Name (ARN) of the resource.
|
3027
2558
|
# @return [String]
|
@@ -3072,14 +2603,6 @@ module Aws::MainframeModernization
|
|
3072
2603
|
include Aws::Structure
|
3073
2604
|
end
|
3074
2605
|
|
3075
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
3076
|
-
# data as a hash:
|
3077
|
-
#
|
3078
|
-
# {
|
3079
|
-
# resource_arn: "Arn", # required
|
3080
|
-
# tag_keys: ["TagKey"], # required
|
3081
|
-
# }
|
3082
|
-
#
|
3083
2606
|
# @!attribute [rw] resource_arn
|
3084
2607
|
# The Amazon Resource Name (ARN) of the resource.
|
3085
2608
|
# @return [String]
|
@@ -3101,19 +2624,6 @@ module Aws::MainframeModernization
|
|
3101
2624
|
#
|
3102
2625
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
3103
2626
|
|
3104
|
-
# @note When making an API call, you may pass UpdateApplicationRequest
|
3105
|
-
# data as a hash:
|
3106
|
-
#
|
3107
|
-
# {
|
3108
|
-
# application_id: "Identifier", # required
|
3109
|
-
# current_application_version: 1, # required
|
3110
|
-
# definition: {
|
3111
|
-
# content: "StringFree65000",
|
3112
|
-
# s3_location: "String2000",
|
3113
|
-
# },
|
3114
|
-
# description: "EntityDescription",
|
3115
|
-
# }
|
3116
|
-
#
|
3117
2627
|
# @!attribute [rw] application_id
|
3118
2628
|
# The unique identifier of the application you want to update.
|
3119
2629
|
# @return [String]
|
@@ -3154,33 +2664,22 @@ module Aws::MainframeModernization
|
|
3154
2664
|
include Aws::Structure
|
3155
2665
|
end
|
3156
2666
|
|
3157
|
-
# @note When making an API call, you may pass UpdateEnvironmentRequest
|
3158
|
-
# data as a hash:
|
3159
|
-
#
|
3160
|
-
# {
|
3161
|
-
# apply_during_maintenance_window: false,
|
3162
|
-
# desired_capacity: 1,
|
3163
|
-
# engine_version: "EngineVersion",
|
3164
|
-
# environment_id: "Identifier", # required
|
3165
|
-
# instance_type: "String20",
|
3166
|
-
# preferred_maintenance_window: "String",
|
3167
|
-
# }
|
3168
|
-
#
|
3169
2667
|
# @!attribute [rw] apply_during_maintenance_window
|
3170
|
-
# Indicates whether to update the environment during the
|
3171
|
-
# window. The default is false. Currently, Amazon Web
|
3172
|
-
# Mainframe Modernization accepts the `engineVersion`
|
3173
|
-
# if `applyDuringMaintenanceWindow` is true. If any
|
3174
|
-
# than `engineVersion` is provided in
|
3175
|
-
# will fail if
|
2668
|
+
# Indicates whether to update the runtime environment during the
|
2669
|
+
# maintenance window. The default is false. Currently, Amazon Web
|
2670
|
+
# Services Mainframe Modernization accepts the `engineVersion`
|
2671
|
+
# parameter only if `applyDuringMaintenanceWindow` is true. If any
|
2672
|
+
# parameter other than `engineVersion` is provided in
|
2673
|
+
# `UpdateEnvironmentRequest`, it will fail if
|
2674
|
+
# `applyDuringMaintenanceWindow` is set to true.
|
3176
2675
|
# @return [Boolean]
|
3177
2676
|
#
|
3178
2677
|
# @!attribute [rw] desired_capacity
|
3179
|
-
# The desired capacity for the environment to update.
|
2678
|
+
# The desired capacity for the runtime environment to update.
|
3180
2679
|
# @return [Integer]
|
3181
2680
|
#
|
3182
2681
|
# @!attribute [rw] engine_version
|
3183
|
-
# The version of the runtime engine for the environment.
|
2682
|
+
# The version of the runtime engine for the runtime environment.
|
3184
2683
|
# @return [String]
|
3185
2684
|
#
|
3186
2685
|
# @!attribute [rw] environment_id
|
@@ -3189,13 +2688,13 @@ module Aws::MainframeModernization
|
|
3189
2688
|
# @return [String]
|
3190
2689
|
#
|
3191
2690
|
# @!attribute [rw] instance_type
|
3192
|
-
# The instance type for the environment to update.
|
2691
|
+
# The instance type for the runtime environment to update.
|
3193
2692
|
# @return [String]
|
3194
2693
|
#
|
3195
2694
|
# @!attribute [rw] preferred_maintenance_window
|
3196
|
-
# Configures
|
3197
|
-
# do not provide a value, a random
|
3198
|
-
# assigned.
|
2695
|
+
# Configures the maintenance window you want for the runtime
|
2696
|
+
# environment. If you do not provide a value, a random
|
2697
|
+
# system-generated value will be assigned.
|
3199
2698
|
# @return [String]
|
3200
2699
|
#
|
3201
2700
|
# @see http://docs.aws.amazon.com/goto/WebAPI/m2-2021-04-28/UpdateEnvironmentRequest AWS API Documentation
|
@@ -3267,28 +2766,6 @@ module Aws::MainframeModernization
|
|
3267
2766
|
|
3268
2767
|
# The attributes of a VSAM type data set.
|
3269
2768
|
#
|
3270
|
-
# @note When making an API call, you may pass VsamAttributes
|
3271
|
-
# data as a hash:
|
3272
|
-
#
|
3273
|
-
# {
|
3274
|
-
# alternate_keys: [
|
3275
|
-
# {
|
3276
|
-
# allow_duplicates: false,
|
3277
|
-
# length: 1, # required
|
3278
|
-
# name: "String",
|
3279
|
-
# offset: 1, # required
|
3280
|
-
# },
|
3281
|
-
# ],
|
3282
|
-
# compressed: false,
|
3283
|
-
# encoding: "String",
|
3284
|
-
# format: "String", # required
|
3285
|
-
# primary_key: {
|
3286
|
-
# length: 1, # required
|
3287
|
-
# name: "String",
|
3288
|
-
# offset: 1, # required
|
3289
|
-
# },
|
3290
|
-
# }
|
3291
|
-
#
|
3292
2769
|
# @!attribute [rw] alternate_keys
|
3293
2770
|
# The alternate key definitions, if any. A legacy dataset might not
|
3294
2771
|
# have any alternate key defined, but if those alternate keys
|