aws-sdk-ssmsap 1.2.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ssmsap/client.rb +125 -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 +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01dc42baf067d852387c6c8412c96c9f2bf8437d0fa78de1ad0a4d5d3a08fea8
|
4
|
+
data.tar.gz: 3651e1063ef142eeaa30da2a1c6a78a76581e8555224504c3a42c098c5535fc5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4811196b1de4f93f4f5f3e4b3d485bbf3dbc40f7e679afa00a4e9c4c8ca15a926239bc49a8547c8b59fa42af8c186fbd00ce8f1c86a575f6c38335e36b74a11
|
7
|
+
data.tar.gz: 472e454609ce9f381a264b047f1a4246cf0eea9244980089bc5cb113fa0132af4f98f3c91d283fdc8c399dc237ba9a9cf99ee16a0d846ba3c551d6720e585577
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.4.0 (2023-05-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.3.0 (2023-01-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release provides updates to documentation and support for listing operations performed by AWS Systems Manager for SAP.
|
13
|
+
|
4
14
|
1.2.0 (2023-01-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
@@ -275,6 +275,11 @@ module Aws::SsmSap
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -371,10 +376,13 @@ module Aws::SsmSap
|
|
371
376
|
# Removes permissions associated with the target database.
|
372
377
|
#
|
373
378
|
# @option params [String] :action_type
|
379
|
+
# Delete or restore the permissions on the target database.
|
374
380
|
#
|
375
381
|
# @option params [String] :source_resource_arn
|
382
|
+
# The Amazon Resource Name (ARN) of the source resource.
|
376
383
|
#
|
377
384
|
# @option params [required, String] :resource_arn
|
385
|
+
# The Amazon Resource Name (ARN) of the resource.
|
378
386
|
#
|
379
387
|
# @return [Types::DeleteResourcePermissionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
380
388
|
#
|
@@ -406,6 +414,7 @@ module Aws::SsmSap
|
|
406
414
|
# Amazon EC2.
|
407
415
|
#
|
408
416
|
# @option params [required, String] :application_id
|
417
|
+
# The ID of the application.
|
409
418
|
#
|
410
419
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
411
420
|
#
|
@@ -428,8 +437,13 @@ module Aws::SsmSap
|
|
428
437
|
# also returns the components of the application.
|
429
438
|
#
|
430
439
|
# @option params [String] :application_id
|
440
|
+
# The ID of the application.
|
431
441
|
#
|
432
442
|
# @option params [String] :application_arn
|
443
|
+
# The Amazon Resource Name (ARN) of the application.
|
444
|
+
#
|
445
|
+
# @option params [String] :app_registry_arn
|
446
|
+
# The Amazon Resource Name (ARN) of the application registry.
|
433
447
|
#
|
434
448
|
# @return [Types::GetApplicationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
435
449
|
#
|
@@ -441,6 +455,7 @@ module Aws::SsmSap
|
|
441
455
|
# resp = client.get_application({
|
442
456
|
# application_id: "ApplicationId",
|
443
457
|
# application_arn: "SsmSapArn",
|
458
|
+
# app_registry_arn: "AppRegistryArn",
|
444
459
|
# })
|
445
460
|
#
|
446
461
|
# @example Response structure
|
@@ -470,8 +485,10 @@ module Aws::SsmSap
|
|
470
485
|
# Manager for SAP.
|
471
486
|
#
|
472
487
|
# @option params [required, String] :application_id
|
488
|
+
# The ID of the application.
|
473
489
|
#
|
474
490
|
# @option params [required, String] :component_id
|
491
|
+
# The ID of the component.
|
475
492
|
#
|
476
493
|
# @return [Types::GetComponentOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
477
494
|
#
|
@@ -513,12 +530,16 @@ module Aws::SsmSap
|
|
513
530
|
# Systems Manager for SAP.
|
514
531
|
#
|
515
532
|
# @option params [String] :application_id
|
533
|
+
# The ID of the application.
|
516
534
|
#
|
517
535
|
# @option params [String] :component_id
|
536
|
+
# The ID of the component.
|
518
537
|
#
|
519
538
|
# @option params [String] :database_id
|
539
|
+
# The ID of the database.
|
520
540
|
#
|
521
541
|
# @option params [String] :database_arn
|
542
|
+
# The Amazon Resource Name (ARN) of the database.
|
522
543
|
#
|
523
544
|
# @return [Types::GetDatabaseOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
524
545
|
#
|
@@ -565,6 +586,7 @@ module Aws::SsmSap
|
|
565
586
|
# Gets the details of an operation by specifying the operation ID.
|
566
587
|
#
|
567
588
|
# @option params [required, String] :operation_id
|
589
|
+
# The ID of the operation.
|
568
590
|
#
|
569
591
|
# @return [Types::GetOperationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
570
592
|
#
|
@@ -605,6 +627,7 @@ module Aws::SsmSap
|
|
605
627
|
# @option params [String] :action_type
|
606
628
|
#
|
607
629
|
# @option params [required, String] :resource_arn
|
630
|
+
# The Amazon Resource Name (ARN) of the resource.
|
608
631
|
#
|
609
632
|
# @return [Types::GetResourcePermissionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
610
633
|
#
|
@@ -634,8 +657,12 @@ module Aws::SsmSap
|
|
634
657
|
# SAP.
|
635
658
|
#
|
636
659
|
# @option params [String] :next_token
|
660
|
+
# The token for the next page of results.
|
637
661
|
#
|
638
662
|
# @option params [Integer] :max_results
|
663
|
+
# The maximum number of results to return with a single call. To
|
664
|
+
# retrieve the remaining results, make another call with the returned
|
665
|
+
# nextToken value.
|
639
666
|
#
|
640
667
|
# @return [Types::ListApplicationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
641
668
|
#
|
@@ -673,10 +700,18 @@ module Aws::SsmSap
|
|
673
700
|
# Lists all the components registered with AWS Systems Manager for SAP.
|
674
701
|
#
|
675
702
|
# @option params [String] :application_id
|
703
|
+
# The ID of the application.
|
676
704
|
#
|
677
705
|
# @option params [String] :next_token
|
706
|
+
# The token for the next page of results.
|
678
707
|
#
|
679
708
|
# @option params [Integer] :max_results
|
709
|
+
# The maximum number of results to return with a single call. To
|
710
|
+
# retrieve the remaining results, make another call with the returned
|
711
|
+
# nextToken value.
|
712
|
+
#
|
713
|
+
# If you do not specify a value for MaxResults, the request returns 50
|
714
|
+
# items per page by default.
|
680
715
|
#
|
681
716
|
# @return [Types::ListComponentsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
682
717
|
#
|
@@ -716,12 +751,19 @@ module Aws::SsmSap
|
|
716
751
|
# Systems Manager for SAP.
|
717
752
|
#
|
718
753
|
# @option params [String] :application_id
|
754
|
+
# The ID of the application.
|
719
755
|
#
|
720
756
|
# @option params [String] :component_id
|
757
|
+
# The ID of the component.
|
721
758
|
#
|
722
759
|
# @option params [String] :next_token
|
760
|
+
# The token for the next page of results.
|
723
761
|
#
|
724
762
|
# @option params [Integer] :max_results
|
763
|
+
# The maximum number of results to return with a single call. To
|
764
|
+
# retrieve the remaining results, make another call with the returned
|
765
|
+
# nextToken value. If you do not specify a value for MaxResults, the
|
766
|
+
# request returns 50 items per page by default.
|
725
767
|
#
|
726
768
|
# @return [Types::ListDatabasesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
727
769
|
#
|
@@ -760,10 +802,76 @@ module Aws::SsmSap
|
|
760
802
|
req.send_request(options)
|
761
803
|
end
|
762
804
|
|
805
|
+
# Lists the operations performed by AWS Systems Manager for SAP.
|
806
|
+
#
|
807
|
+
# @option params [required, String] :application_id
|
808
|
+
# The ID of the application.
|
809
|
+
#
|
810
|
+
# @option params [Integer] :max_results
|
811
|
+
# The maximum number of results to return with a single call. To
|
812
|
+
# retrieve the remaining results, make another call with the returned
|
813
|
+
# nextToken value. If you do not specify a value for MaxResults, the
|
814
|
+
# request returns 50 items per page by default.
|
815
|
+
#
|
816
|
+
# @option params [String] :next_token
|
817
|
+
# The token for the next page of results.
|
818
|
+
#
|
819
|
+
# @option params [Array<Types::Filter>] :filters
|
820
|
+
# The filters of an operation.
|
821
|
+
#
|
822
|
+
# @return [Types::ListOperationsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
823
|
+
#
|
824
|
+
# * {Types::ListOperationsOutput#operations #operations} => Array<Types::Operation>
|
825
|
+
# * {Types::ListOperationsOutput#next_token #next_token} => String
|
826
|
+
#
|
827
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
828
|
+
#
|
829
|
+
# @example Request syntax with placeholder values
|
830
|
+
#
|
831
|
+
# resp = client.list_operations({
|
832
|
+
# application_id: "ApplicationId", # required
|
833
|
+
# max_results: 1,
|
834
|
+
# next_token: "NextToken",
|
835
|
+
# filters: [
|
836
|
+
# {
|
837
|
+
# name: "FilterName", # required
|
838
|
+
# value: "FilterValue", # required
|
839
|
+
# operator: "Equals", # required, accepts Equals, GreaterThanOrEquals, LessThanOrEquals
|
840
|
+
# },
|
841
|
+
# ],
|
842
|
+
# })
|
843
|
+
#
|
844
|
+
# @example Response structure
|
845
|
+
#
|
846
|
+
# resp.operations #=> Array
|
847
|
+
# resp.operations[0].id #=> String
|
848
|
+
# resp.operations[0].type #=> String
|
849
|
+
# resp.operations[0].status #=> String, one of "INPROGRESS", "SUCCESS", "ERROR"
|
850
|
+
# resp.operations[0].status_message #=> String
|
851
|
+
# resp.operations[0].properties #=> Hash
|
852
|
+
# resp.operations[0].properties["String"] #=> String
|
853
|
+
# resp.operations[0].resource_type #=> String
|
854
|
+
# resp.operations[0].resource_id #=> String
|
855
|
+
# resp.operations[0].resource_arn #=> String
|
856
|
+
# resp.operations[0].start_time #=> Time
|
857
|
+
# resp.operations[0].end_time #=> Time
|
858
|
+
# resp.operations[0].last_updated_time #=> Time
|
859
|
+
# resp.next_token #=> String
|
860
|
+
#
|
861
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListOperations AWS API Documentation
|
862
|
+
#
|
863
|
+
# @overload list_operations(params = {})
|
864
|
+
# @param [Hash] params ({})
|
865
|
+
def list_operations(params = {}, options = {})
|
866
|
+
req = build_request(:list_operations, params)
|
867
|
+
req.send_request(options)
|
868
|
+
end
|
869
|
+
|
763
870
|
# Lists all tags on an SAP HANA application and/or database registered
|
764
871
|
# with AWS Systems Manager for SAP.
|
765
872
|
#
|
766
873
|
# @option params [required, String] :resource_arn
|
874
|
+
# The Amazon Resource Name (ARN) of the resource.
|
767
875
|
#
|
768
876
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
769
877
|
#
|
@@ -835,18 +943,25 @@ module Aws::SsmSap
|
|
835
943
|
# Secrets Manager to manage SAP applications and components.
|
836
944
|
#
|
837
945
|
# @option params [required, String] :application_id
|
946
|
+
# The ID of the application.
|
838
947
|
#
|
839
948
|
# @option params [required, String] :application_type
|
949
|
+
# The type of the application.
|
840
950
|
#
|
841
951
|
# @option params [required, Array<String>] :instances
|
952
|
+
# The Amazon EC2 instances on which your SAP application is running.
|
842
953
|
#
|
843
954
|
# @option params [String] :sap_instance_number
|
955
|
+
# The SAP instance number of the application.
|
844
956
|
#
|
845
957
|
# @option params [String] :sid
|
958
|
+
# The System ID of the application.
|
846
959
|
#
|
847
960
|
# @option params [Hash<String,String>] :tags
|
961
|
+
# The tags to be attached to the SAP application.
|
848
962
|
#
|
849
963
|
# @option params [required, Array<Types::ApplicationCredential>] :credentials
|
964
|
+
# The credentials of the SAP application.
|
850
965
|
#
|
851
966
|
# @return [Types::RegisterApplicationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
852
967
|
#
|
@@ -898,8 +1013,10 @@ module Aws::SsmSap
|
|
898
1013
|
# Creates tag for a resource by specifying the ARN.
|
899
1014
|
#
|
900
1015
|
# @option params [required, String] :resource_arn
|
1016
|
+
# The Amazon Resource Name (ARN) of the resource.
|
901
1017
|
#
|
902
1018
|
# @option params [required, Hash<String,String>] :tags
|
1019
|
+
# The tags on a resource.
|
903
1020
|
#
|
904
1021
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
905
1022
|
#
|
@@ -924,6 +1041,7 @@ module Aws::SsmSap
|
|
924
1041
|
# Delete the tags for a resource.
|
925
1042
|
#
|
926
1043
|
# @option params [required, String] :resource_arn
|
1044
|
+
# The Amazon Resource Name (ARN) of the resource.
|
927
1045
|
#
|
928
1046
|
# @option params [required, Array<String>] :tag_keys
|
929
1047
|
# Adds/updates or removes credentials for applications registered with
|
@@ -947,11 +1065,17 @@ module Aws::SsmSap
|
|
947
1065
|
req.send_request(options)
|
948
1066
|
end
|
949
1067
|
|
1068
|
+
# Updates the settings of an application registered with AWS Systems
|
1069
|
+
# Manager for SAP.
|
1070
|
+
#
|
950
1071
|
# @option params [required, String] :application_id
|
1072
|
+
# The ID of the application.
|
951
1073
|
#
|
952
1074
|
# @option params [Array<Types::ApplicationCredential>] :credentials_to_add_or_update
|
1075
|
+
# The credentials to be added or updated.
|
953
1076
|
#
|
954
1077
|
# @option params [Array<Types::ApplicationCredential>] :credentials_to_remove
|
1078
|
+
# The credentials to be removed.
|
955
1079
|
#
|
956
1080
|
# @return [Types::UpdateApplicationSettingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
957
1081
|
#
|
@@ -1006,7 +1130,7 @@ module Aws::SsmSap
|
|
1006
1130
|
params: params,
|
1007
1131
|
config: config)
|
1008
1132
|
context[:gem_name] = 'aws-sdk-ssmsap'
|
1009
|
-
context[:gem_version] = '1.
|
1133
|
+
context[:gem_version] = '1.4.0'
|
1010
1134
|
Seahorse::Client::Request.new(handlers, context)
|
1011
1135
|
end
|
1012
1136
|
|
@@ -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.4.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-
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.174.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|