aws-sdk-ssmsap 1.2.0 → 1.3.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-ssmsap/client.rb +120 -1
- data/lib/aws-sdk-ssmsap/client_api.rb +44 -0
- data/lib/aws-sdk-ssmsap/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-ssmsap/endpoints.rb +14 -0
- data/lib/aws-sdk-ssmsap/plugins/endpoints.rb +2 -0
- data/lib/aws-sdk-ssmsap/types.rb +241 -1
- data/lib/aws-sdk-ssmsap.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: 00e8dba0dc7672388a9ad568fdb85cd123089156c6e359bc551a67d1c8245407
|
|
4
|
+
data.tar.gz: 63e85cb9c2e04b79025fd105ac1256a180b7da4947ebec6b8c6bdef104276987
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07340af43a664e5eaa8afbe3f1fbdc10c8c25a9c6f49fa20a0783eb333eabf8c1fff6c0404d7689df940f1089ccd267ab9e1c5070086147641df5c2126625ef9
|
|
7
|
+
data.tar.gz: 199cc1afaaa51e0a0744f778879a8e8d3cf9c7bf4435a77008b69eb7b7c43a9e9557ae8757ecc0fc270e9083bbc2b883e74fc2eae6209e9e8610303fa42db54d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.3.0 (2023-01-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release provides updates to documentation and support for listing operations performed by AWS Systems Manager for SAP.
|
|
8
|
+
|
|
4
9
|
1.2.0 (2023-01-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.3.0
|
|
@@ -371,10 +371,13 @@ module Aws::SsmSap
|
|
|
371
371
|
# Removes permissions associated with the target database.
|
|
372
372
|
#
|
|
373
373
|
# @option params [String] :action_type
|
|
374
|
+
# Delete or restore the permissions on the target database.
|
|
374
375
|
#
|
|
375
376
|
# @option params [String] :source_resource_arn
|
|
377
|
+
# The Amazon Resource Name (ARN) of the source resource.
|
|
376
378
|
#
|
|
377
379
|
# @option params [required, String] :resource_arn
|
|
380
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
378
381
|
#
|
|
379
382
|
# @return [Types::DeleteResourcePermissionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
380
383
|
#
|
|
@@ -406,6 +409,7 @@ module Aws::SsmSap
|
|
|
406
409
|
# Amazon EC2.
|
|
407
410
|
#
|
|
408
411
|
# @option params [required, String] :application_id
|
|
412
|
+
# The ID of the application.
|
|
409
413
|
#
|
|
410
414
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
411
415
|
#
|
|
@@ -428,8 +432,13 @@ module Aws::SsmSap
|
|
|
428
432
|
# also returns the components of the application.
|
|
429
433
|
#
|
|
430
434
|
# @option params [String] :application_id
|
|
435
|
+
# The ID of the application.
|
|
431
436
|
#
|
|
432
437
|
# @option params [String] :application_arn
|
|
438
|
+
# The Amazon Resource Name (ARN) of the application.
|
|
439
|
+
#
|
|
440
|
+
# @option params [String] :app_registry_arn
|
|
441
|
+
# The Amazon Resource Name (ARN) of the application registry.
|
|
433
442
|
#
|
|
434
443
|
# @return [Types::GetApplicationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
435
444
|
#
|
|
@@ -441,6 +450,7 @@ module Aws::SsmSap
|
|
|
441
450
|
# resp = client.get_application({
|
|
442
451
|
# application_id: "ApplicationId",
|
|
443
452
|
# application_arn: "SsmSapArn",
|
|
453
|
+
# app_registry_arn: "AppRegistryArn",
|
|
444
454
|
# })
|
|
445
455
|
#
|
|
446
456
|
# @example Response structure
|
|
@@ -470,8 +480,10 @@ module Aws::SsmSap
|
|
|
470
480
|
# Manager for SAP.
|
|
471
481
|
#
|
|
472
482
|
# @option params [required, String] :application_id
|
|
483
|
+
# The ID of the application.
|
|
473
484
|
#
|
|
474
485
|
# @option params [required, String] :component_id
|
|
486
|
+
# The ID of the component.
|
|
475
487
|
#
|
|
476
488
|
# @return [Types::GetComponentOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
477
489
|
#
|
|
@@ -513,12 +525,16 @@ module Aws::SsmSap
|
|
|
513
525
|
# Systems Manager for SAP.
|
|
514
526
|
#
|
|
515
527
|
# @option params [String] :application_id
|
|
528
|
+
# The ID of the application.
|
|
516
529
|
#
|
|
517
530
|
# @option params [String] :component_id
|
|
531
|
+
# The ID of the component.
|
|
518
532
|
#
|
|
519
533
|
# @option params [String] :database_id
|
|
534
|
+
# The ID of the database.
|
|
520
535
|
#
|
|
521
536
|
# @option params [String] :database_arn
|
|
537
|
+
# The Amazon Resource Name (ARN) of the database.
|
|
522
538
|
#
|
|
523
539
|
# @return [Types::GetDatabaseOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
524
540
|
#
|
|
@@ -565,6 +581,7 @@ module Aws::SsmSap
|
|
|
565
581
|
# Gets the details of an operation by specifying the operation ID.
|
|
566
582
|
#
|
|
567
583
|
# @option params [required, String] :operation_id
|
|
584
|
+
# The ID of the operation.
|
|
568
585
|
#
|
|
569
586
|
# @return [Types::GetOperationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
570
587
|
#
|
|
@@ -605,6 +622,7 @@ module Aws::SsmSap
|
|
|
605
622
|
# @option params [String] :action_type
|
|
606
623
|
#
|
|
607
624
|
# @option params [required, String] :resource_arn
|
|
625
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
608
626
|
#
|
|
609
627
|
# @return [Types::GetResourcePermissionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
610
628
|
#
|
|
@@ -634,8 +652,12 @@ module Aws::SsmSap
|
|
|
634
652
|
# SAP.
|
|
635
653
|
#
|
|
636
654
|
# @option params [String] :next_token
|
|
655
|
+
# The token for the next page of results.
|
|
637
656
|
#
|
|
638
657
|
# @option params [Integer] :max_results
|
|
658
|
+
# The maximum number of results to return with a single call. To
|
|
659
|
+
# retrieve the remaining results, make another call with the returned
|
|
660
|
+
# nextToken value.
|
|
639
661
|
#
|
|
640
662
|
# @return [Types::ListApplicationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
641
663
|
#
|
|
@@ -673,10 +695,18 @@ module Aws::SsmSap
|
|
|
673
695
|
# Lists all the components registered with AWS Systems Manager for SAP.
|
|
674
696
|
#
|
|
675
697
|
# @option params [String] :application_id
|
|
698
|
+
# The ID of the application.
|
|
676
699
|
#
|
|
677
700
|
# @option params [String] :next_token
|
|
701
|
+
# The token for the next page of results.
|
|
678
702
|
#
|
|
679
703
|
# @option params [Integer] :max_results
|
|
704
|
+
# The maximum number of results to return with a single call. To
|
|
705
|
+
# retrieve the remaining results, make another call with the returned
|
|
706
|
+
# nextToken value.
|
|
707
|
+
#
|
|
708
|
+
# If you do not specify a value for MaxResults, the request returns 50
|
|
709
|
+
# items per page by default.
|
|
680
710
|
#
|
|
681
711
|
# @return [Types::ListComponentsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
682
712
|
#
|
|
@@ -716,12 +746,19 @@ module Aws::SsmSap
|
|
|
716
746
|
# Systems Manager for SAP.
|
|
717
747
|
#
|
|
718
748
|
# @option params [String] :application_id
|
|
749
|
+
# The ID of the application.
|
|
719
750
|
#
|
|
720
751
|
# @option params [String] :component_id
|
|
752
|
+
# The ID of the component.
|
|
721
753
|
#
|
|
722
754
|
# @option params [String] :next_token
|
|
755
|
+
# The token for the next page of results.
|
|
723
756
|
#
|
|
724
757
|
# @option params [Integer] :max_results
|
|
758
|
+
# The maximum number of results to return with a single call. To
|
|
759
|
+
# retrieve the remaining results, make another call with the returned
|
|
760
|
+
# nextToken value. If you do not specify a value for MaxResults, the
|
|
761
|
+
# request returns 50 items per page by default.
|
|
725
762
|
#
|
|
726
763
|
# @return [Types::ListDatabasesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
727
764
|
#
|
|
@@ -760,10 +797,76 @@ module Aws::SsmSap
|
|
|
760
797
|
req.send_request(options)
|
|
761
798
|
end
|
|
762
799
|
|
|
800
|
+
# Lists the operations performed by AWS Systems Manager for SAP.
|
|
801
|
+
#
|
|
802
|
+
# @option params [required, String] :application_id
|
|
803
|
+
# The ID of the application.
|
|
804
|
+
#
|
|
805
|
+
# @option params [Integer] :max_results
|
|
806
|
+
# The maximum number of results to return with a single call. To
|
|
807
|
+
# retrieve the remaining results, make another call with the returned
|
|
808
|
+
# nextToken value. If you do not specify a value for MaxResults, the
|
|
809
|
+
# request returns 50 items per page by default.
|
|
810
|
+
#
|
|
811
|
+
# @option params [String] :next_token
|
|
812
|
+
# The token for the next page of results.
|
|
813
|
+
#
|
|
814
|
+
# @option params [Array<Types::Filter>] :filters
|
|
815
|
+
# The filters of an operation.
|
|
816
|
+
#
|
|
817
|
+
# @return [Types::ListOperationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
818
|
+
#
|
|
819
|
+
# * {Types::ListOperationsOutput#operations #operations} => Array<Types::Operation>
|
|
820
|
+
# * {Types::ListOperationsOutput#next_token #next_token} => String
|
|
821
|
+
#
|
|
822
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
823
|
+
#
|
|
824
|
+
# @example Request syntax with placeholder values
|
|
825
|
+
#
|
|
826
|
+
# resp = client.list_operations({
|
|
827
|
+
# application_id: "ApplicationId", # required
|
|
828
|
+
# max_results: 1,
|
|
829
|
+
# next_token: "NextToken",
|
|
830
|
+
# filters: [
|
|
831
|
+
# {
|
|
832
|
+
# name: "FilterName", # required
|
|
833
|
+
# value: "FilterValue", # required
|
|
834
|
+
# operator: "Equals", # required, accepts Equals, GreaterThanOrEquals, LessThanOrEquals
|
|
835
|
+
# },
|
|
836
|
+
# ],
|
|
837
|
+
# })
|
|
838
|
+
#
|
|
839
|
+
# @example Response structure
|
|
840
|
+
#
|
|
841
|
+
# resp.operations #=> Array
|
|
842
|
+
# resp.operations[0].id #=> String
|
|
843
|
+
# resp.operations[0].type #=> String
|
|
844
|
+
# resp.operations[0].status #=> String, one of "INPROGRESS", "SUCCESS", "ERROR"
|
|
845
|
+
# resp.operations[0].status_message #=> String
|
|
846
|
+
# resp.operations[0].properties #=> Hash
|
|
847
|
+
# resp.operations[0].properties["String"] #=> String
|
|
848
|
+
# resp.operations[0].resource_type #=> String
|
|
849
|
+
# resp.operations[0].resource_id #=> String
|
|
850
|
+
# resp.operations[0].resource_arn #=> String
|
|
851
|
+
# resp.operations[0].start_time #=> Time
|
|
852
|
+
# resp.operations[0].end_time #=> Time
|
|
853
|
+
# resp.operations[0].last_updated_time #=> Time
|
|
854
|
+
# resp.next_token #=> String
|
|
855
|
+
#
|
|
856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListOperations AWS API Documentation
|
|
857
|
+
#
|
|
858
|
+
# @overload list_operations(params = {})
|
|
859
|
+
# @param [Hash] params ({})
|
|
860
|
+
def list_operations(params = {}, options = {})
|
|
861
|
+
req = build_request(:list_operations, params)
|
|
862
|
+
req.send_request(options)
|
|
863
|
+
end
|
|
864
|
+
|
|
763
865
|
# Lists all tags on an SAP HANA application and/or database registered
|
|
764
866
|
# with AWS Systems Manager for SAP.
|
|
765
867
|
#
|
|
766
868
|
# @option params [required, String] :resource_arn
|
|
869
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
767
870
|
#
|
|
768
871
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
769
872
|
#
|
|
@@ -835,18 +938,25 @@ module Aws::SsmSap
|
|
|
835
938
|
# Secrets Manager to manage SAP applications and components.
|
|
836
939
|
#
|
|
837
940
|
# @option params [required, String] :application_id
|
|
941
|
+
# The ID of the application.
|
|
838
942
|
#
|
|
839
943
|
# @option params [required, String] :application_type
|
|
944
|
+
# The type of the application.
|
|
840
945
|
#
|
|
841
946
|
# @option params [required, Array<String>] :instances
|
|
947
|
+
# The Amazon EC2 instances on which your SAP application is running.
|
|
842
948
|
#
|
|
843
949
|
# @option params [String] :sap_instance_number
|
|
950
|
+
# The SAP instance number of the application.
|
|
844
951
|
#
|
|
845
952
|
# @option params [String] :sid
|
|
953
|
+
# The System ID of the application.
|
|
846
954
|
#
|
|
847
955
|
# @option params [Hash<String,String>] :tags
|
|
956
|
+
# The tags to be attached to the SAP application.
|
|
848
957
|
#
|
|
849
958
|
# @option params [required, Array<Types::ApplicationCredential>] :credentials
|
|
959
|
+
# The credentials of the SAP application.
|
|
850
960
|
#
|
|
851
961
|
# @return [Types::RegisterApplicationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
852
962
|
#
|
|
@@ -898,8 +1008,10 @@ module Aws::SsmSap
|
|
|
898
1008
|
# Creates tag for a resource by specifying the ARN.
|
|
899
1009
|
#
|
|
900
1010
|
# @option params [required, String] :resource_arn
|
|
1011
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
901
1012
|
#
|
|
902
1013
|
# @option params [required, Hash<String,String>] :tags
|
|
1014
|
+
# The tags on a resource.
|
|
903
1015
|
#
|
|
904
1016
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
905
1017
|
#
|
|
@@ -924,6 +1036,7 @@ module Aws::SsmSap
|
|
|
924
1036
|
# Delete the tags for a resource.
|
|
925
1037
|
#
|
|
926
1038
|
# @option params [required, String] :resource_arn
|
|
1039
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
927
1040
|
#
|
|
928
1041
|
# @option params [required, Array<String>] :tag_keys
|
|
929
1042
|
# Adds/updates or removes credentials for applications registered with
|
|
@@ -947,11 +1060,17 @@ module Aws::SsmSap
|
|
|
947
1060
|
req.send_request(options)
|
|
948
1061
|
end
|
|
949
1062
|
|
|
1063
|
+
# Updates the settings of an application registered with AWS Systems
|
|
1064
|
+
# Manager for SAP.
|
|
1065
|
+
#
|
|
950
1066
|
# @option params [required, String] :application_id
|
|
1067
|
+
# The ID of the application.
|
|
951
1068
|
#
|
|
952
1069
|
# @option params [Array<Types::ApplicationCredential>] :credentials_to_add_or_update
|
|
1070
|
+
# The credentials to be added or updated.
|
|
953
1071
|
#
|
|
954
1072
|
# @option params [Array<Types::ApplicationCredential>] :credentials_to_remove
|
|
1073
|
+
# The credentials to be removed.
|
|
955
1074
|
#
|
|
956
1075
|
# @return [Types::UpdateApplicationSettingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
957
1076
|
#
|
|
@@ -1006,7 +1125,7 @@ module Aws::SsmSap
|
|
|
1006
1125
|
params: params,
|
|
1007
1126
|
config: config)
|
|
1008
1127
|
context[:gem_name] = 'aws-sdk-ssmsap'
|
|
1009
|
-
context[:gem_version] = '1.
|
|
1128
|
+
context[:gem_version] = '1.3.0'
|
|
1010
1129
|
Seahorse::Client::Request.new(handlers, context)
|
|
1011
1130
|
end
|
|
1012
1131
|
|
|
@@ -44,6 +44,11 @@ module Aws::SsmSap
|
|
|
44
44
|
DeleteResourcePermissionOutput = Shapes::StructureShape.new(name: 'DeleteResourcePermissionOutput')
|
|
45
45
|
DeregisterApplicationInput = Shapes::StructureShape.new(name: 'DeregisterApplicationInput')
|
|
46
46
|
DeregisterApplicationOutput = Shapes::StructureShape.new(name: 'DeregisterApplicationOutput')
|
|
47
|
+
Filter = Shapes::StructureShape.new(name: 'Filter')
|
|
48
|
+
FilterList = Shapes::ListShape.new(name: 'FilterList')
|
|
49
|
+
FilterName = Shapes::StringShape.new(name: 'FilterName')
|
|
50
|
+
FilterOperator = Shapes::StringShape.new(name: 'FilterOperator')
|
|
51
|
+
FilterValue = Shapes::StringShape.new(name: 'FilterValue')
|
|
47
52
|
GetApplicationInput = Shapes::StructureShape.new(name: 'GetApplicationInput')
|
|
48
53
|
GetApplicationOutput = Shapes::StructureShape.new(name: 'GetApplicationOutput')
|
|
49
54
|
GetComponentInput = Shapes::StructureShape.new(name: 'GetComponentInput')
|
|
@@ -67,6 +72,8 @@ module Aws::SsmSap
|
|
|
67
72
|
ListComponentsOutput = Shapes::StructureShape.new(name: 'ListComponentsOutput')
|
|
68
73
|
ListDatabasesInput = Shapes::StructureShape.new(name: 'ListDatabasesInput')
|
|
69
74
|
ListDatabasesOutput = Shapes::StructureShape.new(name: 'ListDatabasesOutput')
|
|
75
|
+
ListOperationsInput = Shapes::StructureShape.new(name: 'ListOperationsInput')
|
|
76
|
+
ListOperationsOutput = Shapes::StructureShape.new(name: 'ListOperationsOutput')
|
|
70
77
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
|
71
78
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
72
79
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
@@ -74,6 +81,7 @@ module Aws::SsmSap
|
|
|
74
81
|
Operation = Shapes::StructureShape.new(name: 'Operation')
|
|
75
82
|
OperationId = Shapes::StringShape.new(name: 'OperationId')
|
|
76
83
|
OperationIdList = Shapes::ListShape.new(name: 'OperationIdList')
|
|
84
|
+
OperationList = Shapes::ListShape.new(name: 'OperationList')
|
|
77
85
|
OperationProperties = Shapes::MapShape.new(name: 'OperationProperties')
|
|
78
86
|
OperationStatus = Shapes::StringShape.new(name: 'OperationStatus')
|
|
79
87
|
OperationType = Shapes::StringShape.new(name: 'OperationType')
|
|
@@ -189,8 +197,16 @@ module Aws::SsmSap
|
|
|
189
197
|
|
|
190
198
|
DeregisterApplicationOutput.struct_class = Types::DeregisterApplicationOutput
|
|
191
199
|
|
|
200
|
+
Filter.add_member(:name, Shapes::ShapeRef.new(shape: FilterName, required: true, location_name: "Name"))
|
|
201
|
+
Filter.add_member(:value, Shapes::ShapeRef.new(shape: FilterValue, required: true, location_name: "Value"))
|
|
202
|
+
Filter.add_member(:operator, Shapes::ShapeRef.new(shape: FilterOperator, required: true, location_name: "Operator"))
|
|
203
|
+
Filter.struct_class = Types::Filter
|
|
204
|
+
|
|
205
|
+
FilterList.member = Shapes::ShapeRef.new(shape: Filter)
|
|
206
|
+
|
|
192
207
|
GetApplicationInput.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "ApplicationId"))
|
|
193
208
|
GetApplicationInput.add_member(:application_arn, Shapes::ShapeRef.new(shape: SsmSapArn, location_name: "ApplicationArn"))
|
|
209
|
+
GetApplicationInput.add_member(:app_registry_arn, Shapes::ShapeRef.new(shape: AppRegistryArn, location_name: "AppRegistryArn"))
|
|
194
210
|
GetApplicationInput.struct_class = Types::GetApplicationInput
|
|
195
211
|
|
|
196
212
|
GetApplicationOutput.add_member(:application, Shapes::ShapeRef.new(shape: Application, location_name: "Application"))
|
|
@@ -267,6 +283,16 @@ module Aws::SsmSap
|
|
|
267
283
|
ListDatabasesOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
268
284
|
ListDatabasesOutput.struct_class = Types::ListDatabasesOutput
|
|
269
285
|
|
|
286
|
+
ListOperationsInput.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location_name: "ApplicationId"))
|
|
287
|
+
ListOperationsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults", metadata: {"box"=>true}))
|
|
288
|
+
ListOperationsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
289
|
+
ListOperationsInput.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
|
290
|
+
ListOperationsInput.struct_class = Types::ListOperationsInput
|
|
291
|
+
|
|
292
|
+
ListOperationsOutput.add_member(:operations, Shapes::ShapeRef.new(shape: OperationList, location_name: "Operations"))
|
|
293
|
+
ListOperationsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
294
|
+
ListOperationsOutput.struct_class = Types::ListOperationsOutput
|
|
295
|
+
|
|
270
296
|
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: SsmSapArn, required: true, location: "uri", location_name: "resourceArn"))
|
|
271
297
|
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
|
272
298
|
|
|
@@ -288,6 +314,8 @@ module Aws::SsmSap
|
|
|
288
314
|
|
|
289
315
|
OperationIdList.member = Shapes::ShapeRef.new(shape: OperationId)
|
|
290
316
|
|
|
317
|
+
OperationList.member = Shapes::ShapeRef.new(shape: Operation)
|
|
318
|
+
|
|
291
319
|
OperationProperties.key = Shapes::ShapeRef.new(shape: String)
|
|
292
320
|
OperationProperties.value = Shapes::ShapeRef.new(shape: String)
|
|
293
321
|
|
|
@@ -486,6 +514,22 @@ module Aws::SsmSap
|
|
|
486
514
|
)
|
|
487
515
|
end)
|
|
488
516
|
|
|
517
|
+
api.add_operation(:list_operations, Seahorse::Model::Operation.new.tap do |o|
|
|
518
|
+
o.name = "ListOperations"
|
|
519
|
+
o.http_method = "POST"
|
|
520
|
+
o.http_request_uri = "/list-operations"
|
|
521
|
+
o.input = Shapes::ShapeRef.new(shape: ListOperationsInput)
|
|
522
|
+
o.output = Shapes::ShapeRef.new(shape: ListOperationsOutput)
|
|
523
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
524
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
525
|
+
o[:pager] = Aws::Pager.new(
|
|
526
|
+
limit_key: "max_results",
|
|
527
|
+
tokens: {
|
|
528
|
+
"next_token" => "next_token"
|
|
529
|
+
}
|
|
530
|
+
)
|
|
531
|
+
end)
|
|
532
|
+
|
|
489
533
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
490
534
|
o.name = "ListTagsForResource"
|
|
491
535
|
o.http_method = "GET"
|
|
@@ -15,7 +15,7 @@ module Aws::SsmSap
|
|
|
15
15
|
use_fips = parameters.use_fips
|
|
16
16
|
endpoint = parameters.endpoint
|
|
17
17
|
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
18
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
19
19
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
20
20
|
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
21
|
end
|
|
@@ -151,6 +151,20 @@ module Aws::SsmSap
|
|
|
151
151
|
end
|
|
152
152
|
end
|
|
153
153
|
|
|
154
|
+
class ListOperations
|
|
155
|
+
def self.build(context)
|
|
156
|
+
unless context.config.regional_endpoint
|
|
157
|
+
endpoint = context.config.endpoint.to_s
|
|
158
|
+
end
|
|
159
|
+
Aws::SsmSap::EndpointParameters.new(
|
|
160
|
+
region: context.config.region,
|
|
161
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
162
|
+
use_fips: context.config.use_fips_endpoint,
|
|
163
|
+
endpoint: endpoint,
|
|
164
|
+
)
|
|
165
|
+
end
|
|
166
|
+
end
|
|
167
|
+
|
|
154
168
|
class ListTagsForResource
|
|
155
169
|
def self.build(context)
|
|
156
170
|
unless context.config.regional_endpoint
|
|
@@ -76,6 +76,8 @@ module Aws::SsmSap
|
|
|
76
76
|
Aws::SsmSap::Endpoints::ListComponents.build(context)
|
|
77
77
|
when :list_databases
|
|
78
78
|
Aws::SsmSap::Endpoints::ListDatabases.build(context)
|
|
79
|
+
when :list_operations
|
|
80
|
+
Aws::SsmSap::Endpoints::ListOperations.build(context)
|
|
79
81
|
when :list_tags_for_resource
|
|
80
82
|
Aws::SsmSap::Endpoints::ListTagsForResource.build(context)
|
|
81
83
|
when :put_resource_permission
|
data/lib/aws-sdk-ssmsap/types.rb
CHANGED
|
@@ -10,28 +10,38 @@
|
|
|
10
10
|
module Aws::SsmSap
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
+
# An SAP application registered with AWS Systems Manager for SAP.
|
|
14
|
+
#
|
|
13
15
|
# @!attribute [rw] id
|
|
16
|
+
# The ID of the application.
|
|
14
17
|
# @return [String]
|
|
15
18
|
#
|
|
16
19
|
# @!attribute [rw] type
|
|
20
|
+
# The type of the application.
|
|
17
21
|
# @return [String]
|
|
18
22
|
#
|
|
19
23
|
# @!attribute [rw] arn
|
|
24
|
+
# The Amazon Resource Name (ARN) of the application.
|
|
20
25
|
# @return [String]
|
|
21
26
|
#
|
|
22
27
|
# @!attribute [rw] app_registry_arn
|
|
28
|
+
# The Amazon Resource Name (ARN) of the Application Registry.
|
|
23
29
|
# @return [String]
|
|
24
30
|
#
|
|
25
31
|
# @!attribute [rw] status
|
|
32
|
+
# The status of the application.
|
|
26
33
|
# @return [String]
|
|
27
34
|
#
|
|
28
35
|
# @!attribute [rw] components
|
|
36
|
+
# The components of the application.
|
|
29
37
|
# @return [Array<String>]
|
|
30
38
|
#
|
|
31
39
|
# @!attribute [rw] last_updated
|
|
40
|
+
# The time at which the application was last updated.
|
|
32
41
|
# @return [Time]
|
|
33
42
|
#
|
|
34
43
|
# @!attribute [rw] status_message
|
|
44
|
+
# The status message.
|
|
35
45
|
# @return [String]
|
|
36
46
|
#
|
|
37
47
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Application AWS API Documentation
|
|
@@ -49,13 +59,19 @@ module Aws::SsmSap
|
|
|
49
59
|
include Aws::Structure
|
|
50
60
|
end
|
|
51
61
|
|
|
62
|
+
# The credentials of your SAP application.
|
|
63
|
+
#
|
|
52
64
|
# @!attribute [rw] database_name
|
|
65
|
+
# The name of the SAP HANA database.
|
|
53
66
|
# @return [String]
|
|
54
67
|
#
|
|
55
68
|
# @!attribute [rw] credential_type
|
|
69
|
+
# The type of the application credentials.
|
|
56
70
|
# @return [String]
|
|
57
71
|
#
|
|
58
72
|
# @!attribute [rw] secret_id
|
|
73
|
+
# The secret ID created in AWS Secrets Manager to store the
|
|
74
|
+
# credentials of the SAP application.
|
|
59
75
|
# @return [String]
|
|
60
76
|
#
|
|
61
77
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ApplicationCredential AWS API Documentation
|
|
@@ -68,16 +84,23 @@ module Aws::SsmSap
|
|
|
68
84
|
include Aws::Structure
|
|
69
85
|
end
|
|
70
86
|
|
|
87
|
+
# The summary of the SAP application registered with AWS Systems Manager
|
|
88
|
+
# for SAP.
|
|
89
|
+
#
|
|
71
90
|
# @!attribute [rw] id
|
|
91
|
+
# The ID of the application.
|
|
72
92
|
# @return [String]
|
|
73
93
|
#
|
|
74
94
|
# @!attribute [rw] type
|
|
95
|
+
# The type of the application.
|
|
75
96
|
# @return [String]
|
|
76
97
|
#
|
|
77
98
|
# @!attribute [rw] arn
|
|
99
|
+
# The Amazon Resource Name (ARN) of the application.
|
|
78
100
|
# @return [String]
|
|
79
101
|
#
|
|
80
102
|
# @!attribute [rw] tags
|
|
103
|
+
# The tags on the application.
|
|
81
104
|
# @return [Hash<String,String>]
|
|
82
105
|
#
|
|
83
106
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ApplicationSummary AWS API Documentation
|
|
@@ -91,28 +114,38 @@ module Aws::SsmSap
|
|
|
91
114
|
include Aws::Structure
|
|
92
115
|
end
|
|
93
116
|
|
|
117
|
+
# The SAP component of your application.
|
|
118
|
+
#
|
|
94
119
|
# @!attribute [rw] component_id
|
|
120
|
+
# The ID of the component.
|
|
95
121
|
# @return [String]
|
|
96
122
|
#
|
|
97
123
|
# @!attribute [rw] application_id
|
|
124
|
+
# The ID of the application.
|
|
98
125
|
# @return [String]
|
|
99
126
|
#
|
|
100
127
|
# @!attribute [rw] component_type
|
|
128
|
+
# The type of the component.
|
|
101
129
|
# @return [String]
|
|
102
130
|
#
|
|
103
131
|
# @!attribute [rw] status
|
|
132
|
+
# The status of the component.
|
|
104
133
|
# @return [String]
|
|
105
134
|
#
|
|
106
135
|
# @!attribute [rw] databases
|
|
136
|
+
# The SAP HANA databases of the component.
|
|
107
137
|
# @return [Array<String>]
|
|
108
138
|
#
|
|
109
139
|
# @!attribute [rw] hosts
|
|
140
|
+
# The hosts of the component.
|
|
110
141
|
# @return [Array<Types::Host>]
|
|
111
142
|
#
|
|
112
143
|
# @!attribute [rw] primary_host
|
|
144
|
+
# The primary host of the component.
|
|
113
145
|
# @return [String]
|
|
114
146
|
#
|
|
115
147
|
# @!attribute [rw] last_updated
|
|
148
|
+
# The time at which the component was last updated.
|
|
116
149
|
# @return [Time]
|
|
117
150
|
#
|
|
118
151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Component AWS API Documentation
|
|
@@ -130,16 +163,22 @@ module Aws::SsmSap
|
|
|
130
163
|
include Aws::Structure
|
|
131
164
|
end
|
|
132
165
|
|
|
166
|
+
# The summary of the component.
|
|
167
|
+
#
|
|
133
168
|
# @!attribute [rw] application_id
|
|
169
|
+
# The ID of the application.
|
|
134
170
|
# @return [String]
|
|
135
171
|
#
|
|
136
172
|
# @!attribute [rw] component_id
|
|
173
|
+
# The ID of the component.
|
|
137
174
|
# @return [String]
|
|
138
175
|
#
|
|
139
176
|
# @!attribute [rw] component_type
|
|
177
|
+
# The type of the component.
|
|
140
178
|
# @return [String]
|
|
141
179
|
#
|
|
142
180
|
# @!attribute [rw] tags
|
|
181
|
+
# The tags of the component.
|
|
143
182
|
# @return [Hash<String,String>]
|
|
144
183
|
#
|
|
145
184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ComponentSummary AWS API Documentation
|
|
@@ -153,6 +192,8 @@ module Aws::SsmSap
|
|
|
153
192
|
include Aws::Structure
|
|
154
193
|
end
|
|
155
194
|
|
|
195
|
+
# A conflict has occurred.
|
|
196
|
+
#
|
|
156
197
|
# @!attribute [rw] message
|
|
157
198
|
# @return [String]
|
|
158
199
|
#
|
|
@@ -164,37 +205,51 @@ module Aws::SsmSap
|
|
|
164
205
|
include Aws::Structure
|
|
165
206
|
end
|
|
166
207
|
|
|
208
|
+
# The SAP HANA database of the application registered with AWS Systems
|
|
209
|
+
# Manager for SAP.
|
|
210
|
+
#
|
|
167
211
|
# @!attribute [rw] application_id
|
|
212
|
+
# The ID of the application.
|
|
168
213
|
# @return [String]
|
|
169
214
|
#
|
|
170
215
|
# @!attribute [rw] component_id
|
|
216
|
+
# The ID of the component.
|
|
171
217
|
# @return [String]
|
|
172
218
|
#
|
|
173
219
|
# @!attribute [rw] credentials
|
|
220
|
+
# The credentials of the database.
|
|
174
221
|
# @return [Array<Types::ApplicationCredential>]
|
|
175
222
|
#
|
|
176
223
|
# @!attribute [rw] database_id
|
|
224
|
+
# The ID of the SAP HANA database.
|
|
177
225
|
# @return [String]
|
|
178
226
|
#
|
|
179
227
|
# @!attribute [rw] database_name
|
|
228
|
+
# The name of the database.
|
|
180
229
|
# @return [String]
|
|
181
230
|
#
|
|
182
231
|
# @!attribute [rw] database_type
|
|
232
|
+
# The type of the database.
|
|
183
233
|
# @return [String]
|
|
184
234
|
#
|
|
185
235
|
# @!attribute [rw] arn
|
|
236
|
+
# The Amazon Resource Name (ARN) of the database.
|
|
186
237
|
# @return [String]
|
|
187
238
|
#
|
|
188
239
|
# @!attribute [rw] status
|
|
240
|
+
# The status of the database.
|
|
189
241
|
# @return [String]
|
|
190
242
|
#
|
|
191
243
|
# @!attribute [rw] primary_host
|
|
244
|
+
# The primary host of the database.
|
|
192
245
|
# @return [String]
|
|
193
246
|
#
|
|
194
247
|
# @!attribute [rw] sql_port
|
|
248
|
+
# The SQL port of the database.
|
|
195
249
|
# @return [Integer]
|
|
196
250
|
#
|
|
197
251
|
# @!attribute [rw] last_updated
|
|
252
|
+
# The time at which the database was last updated.
|
|
198
253
|
# @return [Time]
|
|
199
254
|
#
|
|
200
255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Database AWS API Documentation
|
|
@@ -215,22 +270,30 @@ module Aws::SsmSap
|
|
|
215
270
|
include Aws::Structure
|
|
216
271
|
end
|
|
217
272
|
|
|
273
|
+
# The summary of the database.
|
|
274
|
+
#
|
|
218
275
|
# @!attribute [rw] application_id
|
|
276
|
+
# The ID of the application.
|
|
219
277
|
# @return [String]
|
|
220
278
|
#
|
|
221
279
|
# @!attribute [rw] component_id
|
|
280
|
+
# The ID of the component.
|
|
222
281
|
# @return [String]
|
|
223
282
|
#
|
|
224
283
|
# @!attribute [rw] database_id
|
|
284
|
+
# The ID of the database.
|
|
225
285
|
# @return [String]
|
|
226
286
|
#
|
|
227
287
|
# @!attribute [rw] database_type
|
|
288
|
+
# The type of the database.
|
|
228
289
|
# @return [String]
|
|
229
290
|
#
|
|
230
291
|
# @!attribute [rw] arn
|
|
292
|
+
# The Amazon Resource Name (ARN) of the database.
|
|
231
293
|
# @return [String]
|
|
232
294
|
#
|
|
233
295
|
# @!attribute [rw] tags
|
|
296
|
+
# The tags of the database.
|
|
234
297
|
# @return [Hash<String,String>]
|
|
235
298
|
#
|
|
236
299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/DatabaseSummary AWS API Documentation
|
|
@@ -247,12 +310,15 @@ module Aws::SsmSap
|
|
|
247
310
|
end
|
|
248
311
|
|
|
249
312
|
# @!attribute [rw] action_type
|
|
313
|
+
# Delete or restore the permissions on the target database.
|
|
250
314
|
# @return [String]
|
|
251
315
|
#
|
|
252
316
|
# @!attribute [rw] source_resource_arn
|
|
317
|
+
# The Amazon Resource Name (ARN) of the source resource.
|
|
253
318
|
# @return [String]
|
|
254
319
|
#
|
|
255
320
|
# @!attribute [rw] resource_arn
|
|
321
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
256
322
|
# @return [String]
|
|
257
323
|
#
|
|
258
324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/DeleteResourcePermissionInput AWS API Documentation
|
|
@@ -266,6 +332,7 @@ module Aws::SsmSap
|
|
|
266
332
|
end
|
|
267
333
|
|
|
268
334
|
# @!attribute [rw] policy
|
|
335
|
+
# The policy that removes permissions on the target database.
|
|
269
336
|
# @return [String]
|
|
270
337
|
#
|
|
271
338
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/DeleteResourcePermissionOutput AWS API Documentation
|
|
@@ -277,6 +344,7 @@ module Aws::SsmSap
|
|
|
277
344
|
end
|
|
278
345
|
|
|
279
346
|
# @!attribute [rw] application_id
|
|
347
|
+
# The ID of the application.
|
|
280
348
|
# @return [String]
|
|
281
349
|
#
|
|
282
350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/DeregisterApplicationInput AWS API Documentation
|
|
@@ -291,25 +359,63 @@ module Aws::SsmSap
|
|
|
291
359
|
#
|
|
292
360
|
class DeregisterApplicationOutput < Aws::EmptyStructure; end
|
|
293
361
|
|
|
362
|
+
# A specific result obtained by specifying the name, value, and
|
|
363
|
+
# operator.
|
|
364
|
+
#
|
|
365
|
+
# @!attribute [rw] name
|
|
366
|
+
# The name of the filter. Filter names are case-sensitive.
|
|
367
|
+
# @return [String]
|
|
368
|
+
#
|
|
369
|
+
# @!attribute [rw] value
|
|
370
|
+
# The filter values. Filter values are case-sensitive. If you specify
|
|
371
|
+
# multiple values for a filter, the values are joined with an OR, and
|
|
372
|
+
# the request returns all results that match any of the specified
|
|
373
|
+
# values
|
|
374
|
+
# @return [String]
|
|
375
|
+
#
|
|
376
|
+
# @!attribute [rw] operator
|
|
377
|
+
# The operator for the filter.
|
|
378
|
+
# @return [String]
|
|
379
|
+
#
|
|
380
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Filter AWS API Documentation
|
|
381
|
+
#
|
|
382
|
+
class Filter < Struct.new(
|
|
383
|
+
:name,
|
|
384
|
+
:value,
|
|
385
|
+
:operator)
|
|
386
|
+
SENSITIVE = []
|
|
387
|
+
include Aws::Structure
|
|
388
|
+
end
|
|
389
|
+
|
|
294
390
|
# @!attribute [rw] application_id
|
|
391
|
+
# The ID of the application.
|
|
295
392
|
# @return [String]
|
|
296
393
|
#
|
|
297
394
|
# @!attribute [rw] application_arn
|
|
395
|
+
# The Amazon Resource Name (ARN) of the application.
|
|
396
|
+
# @return [String]
|
|
397
|
+
#
|
|
398
|
+
# @!attribute [rw] app_registry_arn
|
|
399
|
+
# The Amazon Resource Name (ARN) of the application registry.
|
|
298
400
|
# @return [String]
|
|
299
401
|
#
|
|
300
402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetApplicationInput AWS API Documentation
|
|
301
403
|
#
|
|
302
404
|
class GetApplicationInput < Struct.new(
|
|
303
405
|
:application_id,
|
|
304
|
-
:application_arn
|
|
406
|
+
:application_arn,
|
|
407
|
+
:app_registry_arn)
|
|
305
408
|
SENSITIVE = []
|
|
306
409
|
include Aws::Structure
|
|
307
410
|
end
|
|
308
411
|
|
|
309
412
|
# @!attribute [rw] application
|
|
413
|
+
# Returns all of the metadata of an application registered with AWS
|
|
414
|
+
# Systems Manager for SAP.
|
|
310
415
|
# @return [Types::Application]
|
|
311
416
|
#
|
|
312
417
|
# @!attribute [rw] tags
|
|
418
|
+
# The tags of a registered application.
|
|
313
419
|
# @return [Hash<String,String>]
|
|
314
420
|
#
|
|
315
421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetApplicationOutput AWS API Documentation
|
|
@@ -322,9 +428,11 @@ module Aws::SsmSap
|
|
|
322
428
|
end
|
|
323
429
|
|
|
324
430
|
# @!attribute [rw] application_id
|
|
431
|
+
# The ID of the application.
|
|
325
432
|
# @return [String]
|
|
326
433
|
#
|
|
327
434
|
# @!attribute [rw] component_id
|
|
435
|
+
# The ID of the component.
|
|
328
436
|
# @return [String]
|
|
329
437
|
#
|
|
330
438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetComponentInput AWS API Documentation
|
|
@@ -337,6 +445,8 @@ module Aws::SsmSap
|
|
|
337
445
|
end
|
|
338
446
|
|
|
339
447
|
# @!attribute [rw] component
|
|
448
|
+
# The component of an application registered with AWS Systems Manager
|
|
449
|
+
# for SAP.
|
|
340
450
|
# @return [Types::Component]
|
|
341
451
|
#
|
|
342
452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetComponentOutput AWS API Documentation
|
|
@@ -348,15 +458,19 @@ module Aws::SsmSap
|
|
|
348
458
|
end
|
|
349
459
|
|
|
350
460
|
# @!attribute [rw] application_id
|
|
461
|
+
# The ID of the application.
|
|
351
462
|
# @return [String]
|
|
352
463
|
#
|
|
353
464
|
# @!attribute [rw] component_id
|
|
465
|
+
# The ID of the component.
|
|
354
466
|
# @return [String]
|
|
355
467
|
#
|
|
356
468
|
# @!attribute [rw] database_id
|
|
469
|
+
# The ID of the database.
|
|
357
470
|
# @return [String]
|
|
358
471
|
#
|
|
359
472
|
# @!attribute [rw] database_arn
|
|
473
|
+
# The Amazon Resource Name (ARN) of the database.
|
|
360
474
|
# @return [String]
|
|
361
475
|
#
|
|
362
476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetDatabaseInput AWS API Documentation
|
|
@@ -371,9 +485,12 @@ module Aws::SsmSap
|
|
|
371
485
|
end
|
|
372
486
|
|
|
373
487
|
# @!attribute [rw] database
|
|
488
|
+
# The SAP HANA database of an application registered with AWS Systems
|
|
489
|
+
# Manager for SAP.
|
|
374
490
|
# @return [Types::Database]
|
|
375
491
|
#
|
|
376
492
|
# @!attribute [rw] tags
|
|
493
|
+
# The tags of a database.
|
|
377
494
|
# @return [Hash<String,String>]
|
|
378
495
|
#
|
|
379
496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetDatabaseOutput AWS API Documentation
|
|
@@ -386,6 +503,7 @@ module Aws::SsmSap
|
|
|
386
503
|
end
|
|
387
504
|
|
|
388
505
|
# @!attribute [rw] operation_id
|
|
506
|
+
# The ID of the operation.
|
|
389
507
|
# @return [String]
|
|
390
508
|
#
|
|
391
509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetOperationInput AWS API Documentation
|
|
@@ -397,6 +515,7 @@ module Aws::SsmSap
|
|
|
397
515
|
end
|
|
398
516
|
|
|
399
517
|
# @!attribute [rw] operation
|
|
518
|
+
# Returns the details of an operation.
|
|
400
519
|
# @return [Types::Operation]
|
|
401
520
|
#
|
|
402
521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetOperationOutput AWS API Documentation
|
|
@@ -411,6 +530,7 @@ module Aws::SsmSap
|
|
|
411
530
|
# @return [String]
|
|
412
531
|
#
|
|
413
532
|
# @!attribute [rw] resource_arn
|
|
533
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
414
534
|
# @return [String]
|
|
415
535
|
#
|
|
416
536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetResourcePermissionInput AWS API Documentation
|
|
@@ -433,16 +553,22 @@ module Aws::SsmSap
|
|
|
433
553
|
include Aws::Structure
|
|
434
554
|
end
|
|
435
555
|
|
|
556
|
+
# Describes the properties of the Dedicated Host.
|
|
557
|
+
#
|
|
436
558
|
# @!attribute [rw] host_name
|
|
559
|
+
# The name of the Dedicated Host.
|
|
437
560
|
# @return [String]
|
|
438
561
|
#
|
|
439
562
|
# @!attribute [rw] host_role
|
|
563
|
+
# The role of the Dedicated Host.
|
|
440
564
|
# @return [String]
|
|
441
565
|
#
|
|
442
566
|
# @!attribute [rw] host_ip
|
|
567
|
+
# The IP address of the Dedicated Host.
|
|
443
568
|
# @return [String]
|
|
444
569
|
#
|
|
445
570
|
# @!attribute [rw] instance_id
|
|
571
|
+
# The instance ID of the instance on the Dedicated Host.
|
|
446
572
|
# @return [String]
|
|
447
573
|
#
|
|
448
574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Host AWS API Documentation
|
|
@@ -456,6 +582,8 @@ module Aws::SsmSap
|
|
|
456
582
|
include Aws::Structure
|
|
457
583
|
end
|
|
458
584
|
|
|
585
|
+
# An internal error has occurred.
|
|
586
|
+
#
|
|
459
587
|
# @!attribute [rw] message
|
|
460
588
|
# @return [String]
|
|
461
589
|
#
|
|
@@ -468,9 +596,13 @@ module Aws::SsmSap
|
|
|
468
596
|
end
|
|
469
597
|
|
|
470
598
|
# @!attribute [rw] next_token
|
|
599
|
+
# The token for the next page of results.
|
|
471
600
|
# @return [String]
|
|
472
601
|
#
|
|
473
602
|
# @!attribute [rw] max_results
|
|
603
|
+
# The maximum number of results to return with a single call. To
|
|
604
|
+
# retrieve the remaining results, make another call with the returned
|
|
605
|
+
# nextToken value.
|
|
474
606
|
# @return [Integer]
|
|
475
607
|
#
|
|
476
608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListApplicationsInput AWS API Documentation
|
|
@@ -483,9 +615,12 @@ module Aws::SsmSap
|
|
|
483
615
|
end
|
|
484
616
|
|
|
485
617
|
# @!attribute [rw] applications
|
|
618
|
+
# The applications registered with AWS Systems Manager for SAP.
|
|
486
619
|
# @return [Array<Types::ApplicationSummary>]
|
|
487
620
|
#
|
|
488
621
|
# @!attribute [rw] next_token
|
|
622
|
+
# The token to use to retrieve the next page of results. This value is
|
|
623
|
+
# null when there are no more results to return.
|
|
489
624
|
# @return [String]
|
|
490
625
|
#
|
|
491
626
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListApplicationsOutput AWS API Documentation
|
|
@@ -498,12 +633,20 @@ module Aws::SsmSap
|
|
|
498
633
|
end
|
|
499
634
|
|
|
500
635
|
# @!attribute [rw] application_id
|
|
636
|
+
# The ID of the application.
|
|
501
637
|
# @return [String]
|
|
502
638
|
#
|
|
503
639
|
# @!attribute [rw] next_token
|
|
640
|
+
# The token for the next page of results.
|
|
504
641
|
# @return [String]
|
|
505
642
|
#
|
|
506
643
|
# @!attribute [rw] max_results
|
|
644
|
+
# The maximum number of results to return with a single call. To
|
|
645
|
+
# retrieve the remaining results, make another call with the returned
|
|
646
|
+
# nextToken value.
|
|
647
|
+
#
|
|
648
|
+
# If you do not specify a value for MaxResults, the request returns 50
|
|
649
|
+
# items per page by default.
|
|
507
650
|
# @return [Integer]
|
|
508
651
|
#
|
|
509
652
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListComponentsInput AWS API Documentation
|
|
@@ -517,9 +660,12 @@ module Aws::SsmSap
|
|
|
517
660
|
end
|
|
518
661
|
|
|
519
662
|
# @!attribute [rw] components
|
|
663
|
+
# List of components registered with AWS System Manager for SAP.
|
|
520
664
|
# @return [Array<Types::ComponentSummary>]
|
|
521
665
|
#
|
|
522
666
|
# @!attribute [rw] next_token
|
|
667
|
+
# The token to use to retrieve the next page of results. This value is
|
|
668
|
+
# null when there are no more results to return.
|
|
523
669
|
# @return [String]
|
|
524
670
|
#
|
|
525
671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListComponentsOutput AWS API Documentation
|
|
@@ -532,15 +678,22 @@ module Aws::SsmSap
|
|
|
532
678
|
end
|
|
533
679
|
|
|
534
680
|
# @!attribute [rw] application_id
|
|
681
|
+
# The ID of the application.
|
|
535
682
|
# @return [String]
|
|
536
683
|
#
|
|
537
684
|
# @!attribute [rw] component_id
|
|
685
|
+
# The ID of the component.
|
|
538
686
|
# @return [String]
|
|
539
687
|
#
|
|
540
688
|
# @!attribute [rw] next_token
|
|
689
|
+
# The token for the next page of results.
|
|
541
690
|
# @return [String]
|
|
542
691
|
#
|
|
543
692
|
# @!attribute [rw] max_results
|
|
693
|
+
# The maximum number of results to return with a single call. To
|
|
694
|
+
# retrieve the remaining results, make another call with the returned
|
|
695
|
+
# nextToken value. If you do not specify a value for MaxResults, the
|
|
696
|
+
# request returns 50 items per page by default.
|
|
544
697
|
# @return [Integer]
|
|
545
698
|
#
|
|
546
699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListDatabasesInput AWS API Documentation
|
|
@@ -555,9 +708,12 @@ module Aws::SsmSap
|
|
|
555
708
|
end
|
|
556
709
|
|
|
557
710
|
# @!attribute [rw] databases
|
|
711
|
+
# The SAP HANA databases of an application.
|
|
558
712
|
# @return [Array<Types::DatabaseSummary>]
|
|
559
713
|
#
|
|
560
714
|
# @!attribute [rw] next_token
|
|
715
|
+
# The token to use to retrieve the next page of results. This value is
|
|
716
|
+
# null when there are no more results to return.
|
|
561
717
|
# @return [String]
|
|
562
718
|
#
|
|
563
719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListDatabasesOutput AWS API Documentation
|
|
@@ -569,7 +725,56 @@ module Aws::SsmSap
|
|
|
569
725
|
include Aws::Structure
|
|
570
726
|
end
|
|
571
727
|
|
|
728
|
+
# @!attribute [rw] application_id
|
|
729
|
+
# The ID of the application.
|
|
730
|
+
# @return [String]
|
|
731
|
+
#
|
|
732
|
+
# @!attribute [rw] max_results
|
|
733
|
+
# The maximum number of results to return with a single call. To
|
|
734
|
+
# retrieve the remaining results, make another call with the returned
|
|
735
|
+
# nextToken value. If you do not specify a value for MaxResults, the
|
|
736
|
+
# request returns 50 items per page by default.
|
|
737
|
+
# @return [Integer]
|
|
738
|
+
#
|
|
739
|
+
# @!attribute [rw] next_token
|
|
740
|
+
# The token for the next page of results.
|
|
741
|
+
# @return [String]
|
|
742
|
+
#
|
|
743
|
+
# @!attribute [rw] filters
|
|
744
|
+
# The filters of an operation.
|
|
745
|
+
# @return [Array<Types::Filter>]
|
|
746
|
+
#
|
|
747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListOperationsInput AWS API Documentation
|
|
748
|
+
#
|
|
749
|
+
class ListOperationsInput < Struct.new(
|
|
750
|
+
:application_id,
|
|
751
|
+
:max_results,
|
|
752
|
+
:next_token,
|
|
753
|
+
:filters)
|
|
754
|
+
SENSITIVE = []
|
|
755
|
+
include Aws::Structure
|
|
756
|
+
end
|
|
757
|
+
|
|
758
|
+
# @!attribute [rw] operations
|
|
759
|
+
# List of operations performed by AWS Systems Manager for SAP.
|
|
760
|
+
# @return [Array<Types::Operation>]
|
|
761
|
+
#
|
|
762
|
+
# @!attribute [rw] next_token
|
|
763
|
+
# The token to use to retrieve the next page of results. This value is
|
|
764
|
+
# null when there are no more results to return.
|
|
765
|
+
# @return [String]
|
|
766
|
+
#
|
|
767
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListOperationsOutput AWS API Documentation
|
|
768
|
+
#
|
|
769
|
+
class ListOperationsOutput < Struct.new(
|
|
770
|
+
:operations,
|
|
771
|
+
:next_token)
|
|
772
|
+
SENSITIVE = []
|
|
773
|
+
include Aws::Structure
|
|
774
|
+
end
|
|
775
|
+
|
|
572
776
|
# @!attribute [rw] resource_arn
|
|
777
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
573
778
|
# @return [String]
|
|
574
779
|
#
|
|
575
780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListTagsForResourceRequest AWS API Documentation
|
|
@@ -591,37 +796,50 @@ module Aws::SsmSap
|
|
|
591
796
|
include Aws::Structure
|
|
592
797
|
end
|
|
593
798
|
|
|
799
|
+
# The operations performed by AWS Systems Manager for SAP.
|
|
800
|
+
#
|
|
594
801
|
# @!attribute [rw] id
|
|
802
|
+
# The ID of the operation.
|
|
595
803
|
# @return [String]
|
|
596
804
|
#
|
|
597
805
|
# @!attribute [rw] type
|
|
806
|
+
# The type of the operation.
|
|
598
807
|
# @return [String]
|
|
599
808
|
#
|
|
600
809
|
# @!attribute [rw] status
|
|
810
|
+
# The status of the operation.
|
|
601
811
|
# @return [String]
|
|
602
812
|
#
|
|
603
813
|
# @!attribute [rw] status_message
|
|
814
|
+
# The status message of the operation.
|
|
604
815
|
# @return [String]
|
|
605
816
|
#
|
|
606
817
|
# @!attribute [rw] properties
|
|
818
|
+
# The properties of the operation.
|
|
607
819
|
# @return [Hash<String,String>]
|
|
608
820
|
#
|
|
609
821
|
# @!attribute [rw] resource_type
|
|
822
|
+
# The resource type of the operation.
|
|
610
823
|
# @return [String]
|
|
611
824
|
#
|
|
612
825
|
# @!attribute [rw] resource_id
|
|
826
|
+
# The resource ID of the operation.
|
|
613
827
|
# @return [String]
|
|
614
828
|
#
|
|
615
829
|
# @!attribute [rw] resource_arn
|
|
830
|
+
# The Amazon Resource Name (ARN) of the operation.
|
|
616
831
|
# @return [String]
|
|
617
832
|
#
|
|
618
833
|
# @!attribute [rw] start_time
|
|
834
|
+
# The start time of the operation.
|
|
619
835
|
# @return [Time]
|
|
620
836
|
#
|
|
621
837
|
# @!attribute [rw] end_time
|
|
838
|
+
# The end time of the operation.
|
|
622
839
|
# @return [Time]
|
|
623
840
|
#
|
|
624
841
|
# @!attribute [rw] last_updated_time
|
|
842
|
+
# The time at which the operation was last updated.
|
|
625
843
|
# @return [Time]
|
|
626
844
|
#
|
|
627
845
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Operation AWS API Documentation
|
|
@@ -673,24 +891,31 @@ module Aws::SsmSap
|
|
|
673
891
|
end
|
|
674
892
|
|
|
675
893
|
# @!attribute [rw] application_id
|
|
894
|
+
# The ID of the application.
|
|
676
895
|
# @return [String]
|
|
677
896
|
#
|
|
678
897
|
# @!attribute [rw] application_type
|
|
898
|
+
# The type of the application.
|
|
679
899
|
# @return [String]
|
|
680
900
|
#
|
|
681
901
|
# @!attribute [rw] instances
|
|
902
|
+
# The Amazon EC2 instances on which your SAP application is running.
|
|
682
903
|
# @return [Array<String>]
|
|
683
904
|
#
|
|
684
905
|
# @!attribute [rw] sap_instance_number
|
|
906
|
+
# The SAP instance number of the application.
|
|
685
907
|
# @return [String]
|
|
686
908
|
#
|
|
687
909
|
# @!attribute [rw] sid
|
|
910
|
+
# The System ID of the application.
|
|
688
911
|
# @return [String]
|
|
689
912
|
#
|
|
690
913
|
# @!attribute [rw] tags
|
|
914
|
+
# The tags to be attached to the SAP application.
|
|
691
915
|
# @return [Hash<String,String>]
|
|
692
916
|
#
|
|
693
917
|
# @!attribute [rw] credentials
|
|
918
|
+
# The credentials of the SAP application.
|
|
694
919
|
# @return [Array<Types::ApplicationCredential>]
|
|
695
920
|
#
|
|
696
921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RegisterApplicationInput AWS API Documentation
|
|
@@ -708,9 +933,11 @@ module Aws::SsmSap
|
|
|
708
933
|
end
|
|
709
934
|
|
|
710
935
|
# @!attribute [rw] application
|
|
936
|
+
# The application registered with AWS Systems Manager for SAP.
|
|
711
937
|
# @return [Types::Application]
|
|
712
938
|
#
|
|
713
939
|
# @!attribute [rw] operation_id
|
|
940
|
+
# The ID of the operation.
|
|
714
941
|
# @return [String]
|
|
715
942
|
#
|
|
716
943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RegisterApplicationOutput AWS API Documentation
|
|
@@ -722,6 +949,8 @@ module Aws::SsmSap
|
|
|
722
949
|
include Aws::Structure
|
|
723
950
|
end
|
|
724
951
|
|
|
952
|
+
# The resource is not available.
|
|
953
|
+
#
|
|
725
954
|
# @!attribute [rw] message
|
|
726
955
|
# @return [String]
|
|
727
956
|
#
|
|
@@ -734,9 +963,11 @@ module Aws::SsmSap
|
|
|
734
963
|
end
|
|
735
964
|
|
|
736
965
|
# @!attribute [rw] resource_arn
|
|
966
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
737
967
|
# @return [String]
|
|
738
968
|
#
|
|
739
969
|
# @!attribute [rw] tags
|
|
970
|
+
# The tags on a resource.
|
|
740
971
|
# @return [Hash<String,String>]
|
|
741
972
|
#
|
|
742
973
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/TagResourceRequest AWS API Documentation
|
|
@@ -753,6 +984,7 @@ module Aws::SsmSap
|
|
|
753
984
|
class TagResourceResponse < Aws::EmptyStructure; end
|
|
754
985
|
|
|
755
986
|
# @!attribute [rw] resource_arn
|
|
987
|
+
# The Amazon Resource Name (ARN) of the resource.
|
|
756
988
|
# @return [String]
|
|
757
989
|
#
|
|
758
990
|
# @!attribute [rw] tag_keys
|
|
@@ -774,12 +1006,15 @@ module Aws::SsmSap
|
|
|
774
1006
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
|
775
1007
|
|
|
776
1008
|
# @!attribute [rw] application_id
|
|
1009
|
+
# The ID of the application.
|
|
777
1010
|
# @return [String]
|
|
778
1011
|
#
|
|
779
1012
|
# @!attribute [rw] credentials_to_add_or_update
|
|
1013
|
+
# The credentials to be added or updated.
|
|
780
1014
|
# @return [Array<Types::ApplicationCredential>]
|
|
781
1015
|
#
|
|
782
1016
|
# @!attribute [rw] credentials_to_remove
|
|
1017
|
+
# The credentials to be removed.
|
|
783
1018
|
# @return [Array<Types::ApplicationCredential>]
|
|
784
1019
|
#
|
|
785
1020
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/UpdateApplicationSettingsInput AWS API Documentation
|
|
@@ -793,9 +1028,11 @@ module Aws::SsmSap
|
|
|
793
1028
|
end
|
|
794
1029
|
|
|
795
1030
|
# @!attribute [rw] message
|
|
1031
|
+
# The update message.
|
|
796
1032
|
# @return [String]
|
|
797
1033
|
#
|
|
798
1034
|
# @!attribute [rw] operation_ids
|
|
1035
|
+
# The IDs of the operations.
|
|
799
1036
|
# @return [Array<String>]
|
|
800
1037
|
#
|
|
801
1038
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/UpdateApplicationSettingsOutput AWS API Documentation
|
|
@@ -807,6 +1044,9 @@ module Aws::SsmSap
|
|
|
807
1044
|
include Aws::Structure
|
|
808
1045
|
end
|
|
809
1046
|
|
|
1047
|
+
# The input fails to satisfy the constraints specified by an AWS
|
|
1048
|
+
# service.
|
|
1049
|
+
#
|
|
810
1050
|
# @!attribute [rw] message
|
|
811
1051
|
# @return [String]
|
|
812
1052
|
#
|
data/lib/aws-sdk-ssmsap.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ssmsap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.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-01-
|
|
11
|
+
date: 2023-01-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|