aws-sdk-ssmsap 1.1.0 → 1.3.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 +12 -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 +35 -94
- 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 +236 -165
- data/lib/aws-sdk-ssmsap.rb +1 -1
- metadata +2 -2
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,22 +59,19 @@ module Aws::SsmSap
|
|
49
59
|
include Aws::Structure
|
50
60
|
end
|
51
61
|
|
52
|
-
#
|
53
|
-
# data as a hash:
|
54
|
-
#
|
55
|
-
# {
|
56
|
-
# database_name: "DatabaseName", # required
|
57
|
-
# credential_type: "ADMIN", # required, accepts ADMIN
|
58
|
-
# secret_id: "SecretId", # required
|
59
|
-
# }
|
62
|
+
# The credentials of your SAP application.
|
60
63
|
#
|
61
64
|
# @!attribute [rw] database_name
|
65
|
+
# The name of the SAP HANA database.
|
62
66
|
# @return [String]
|
63
67
|
#
|
64
68
|
# @!attribute [rw] credential_type
|
69
|
+
# The type of the application credentials.
|
65
70
|
# @return [String]
|
66
71
|
#
|
67
72
|
# @!attribute [rw] secret_id
|
73
|
+
# The secret ID created in AWS Secrets Manager to store the
|
74
|
+
# credentials of the SAP application.
|
68
75
|
# @return [String]
|
69
76
|
#
|
70
77
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ApplicationCredential AWS API Documentation
|
@@ -77,16 +84,23 @@ module Aws::SsmSap
|
|
77
84
|
include Aws::Structure
|
78
85
|
end
|
79
86
|
|
87
|
+
# The summary of the SAP application registered with AWS Systems Manager
|
88
|
+
# for SAP.
|
89
|
+
#
|
80
90
|
# @!attribute [rw] id
|
91
|
+
# The ID of the application.
|
81
92
|
# @return [String]
|
82
93
|
#
|
83
94
|
# @!attribute [rw] type
|
95
|
+
# The type of the application.
|
84
96
|
# @return [String]
|
85
97
|
#
|
86
98
|
# @!attribute [rw] arn
|
99
|
+
# The Amazon Resource Name (ARN) of the application.
|
87
100
|
# @return [String]
|
88
101
|
#
|
89
102
|
# @!attribute [rw] tags
|
103
|
+
# The tags on the application.
|
90
104
|
# @return [Hash<String,String>]
|
91
105
|
#
|
92
106
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ApplicationSummary AWS API Documentation
|
@@ -100,28 +114,38 @@ module Aws::SsmSap
|
|
100
114
|
include Aws::Structure
|
101
115
|
end
|
102
116
|
|
117
|
+
# The SAP component of your application.
|
118
|
+
#
|
103
119
|
# @!attribute [rw] component_id
|
120
|
+
# The ID of the component.
|
104
121
|
# @return [String]
|
105
122
|
#
|
106
123
|
# @!attribute [rw] application_id
|
124
|
+
# The ID of the application.
|
107
125
|
# @return [String]
|
108
126
|
#
|
109
127
|
# @!attribute [rw] component_type
|
128
|
+
# The type of the component.
|
110
129
|
# @return [String]
|
111
130
|
#
|
112
131
|
# @!attribute [rw] status
|
132
|
+
# The status of the component.
|
113
133
|
# @return [String]
|
114
134
|
#
|
115
135
|
# @!attribute [rw] databases
|
136
|
+
# The SAP HANA databases of the component.
|
116
137
|
# @return [Array<String>]
|
117
138
|
#
|
118
139
|
# @!attribute [rw] hosts
|
140
|
+
# The hosts of the component.
|
119
141
|
# @return [Array<Types::Host>]
|
120
142
|
#
|
121
143
|
# @!attribute [rw] primary_host
|
144
|
+
# The primary host of the component.
|
122
145
|
# @return [String]
|
123
146
|
#
|
124
147
|
# @!attribute [rw] last_updated
|
148
|
+
# The time at which the component was last updated.
|
125
149
|
# @return [Time]
|
126
150
|
#
|
127
151
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Component AWS API Documentation
|
@@ -139,16 +163,22 @@ module Aws::SsmSap
|
|
139
163
|
include Aws::Structure
|
140
164
|
end
|
141
165
|
|
166
|
+
# The summary of the component.
|
167
|
+
#
|
142
168
|
# @!attribute [rw] application_id
|
169
|
+
# The ID of the application.
|
143
170
|
# @return [String]
|
144
171
|
#
|
145
172
|
# @!attribute [rw] component_id
|
173
|
+
# The ID of the component.
|
146
174
|
# @return [String]
|
147
175
|
#
|
148
176
|
# @!attribute [rw] component_type
|
177
|
+
# The type of the component.
|
149
178
|
# @return [String]
|
150
179
|
#
|
151
180
|
# @!attribute [rw] tags
|
181
|
+
# The tags of the component.
|
152
182
|
# @return [Hash<String,String>]
|
153
183
|
#
|
154
184
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ComponentSummary AWS API Documentation
|
@@ -162,6 +192,8 @@ module Aws::SsmSap
|
|
162
192
|
include Aws::Structure
|
163
193
|
end
|
164
194
|
|
195
|
+
# A conflict has occurred.
|
196
|
+
#
|
165
197
|
# @!attribute [rw] message
|
166
198
|
# @return [String]
|
167
199
|
#
|
@@ -173,37 +205,51 @@ module Aws::SsmSap
|
|
173
205
|
include Aws::Structure
|
174
206
|
end
|
175
207
|
|
208
|
+
# The SAP HANA database of the application registered with AWS Systems
|
209
|
+
# Manager for SAP.
|
210
|
+
#
|
176
211
|
# @!attribute [rw] application_id
|
212
|
+
# The ID of the application.
|
177
213
|
# @return [String]
|
178
214
|
#
|
179
215
|
# @!attribute [rw] component_id
|
216
|
+
# The ID of the component.
|
180
217
|
# @return [String]
|
181
218
|
#
|
182
219
|
# @!attribute [rw] credentials
|
220
|
+
# The credentials of the database.
|
183
221
|
# @return [Array<Types::ApplicationCredential>]
|
184
222
|
#
|
185
223
|
# @!attribute [rw] database_id
|
224
|
+
# The ID of the SAP HANA database.
|
186
225
|
# @return [String]
|
187
226
|
#
|
188
227
|
# @!attribute [rw] database_name
|
228
|
+
# The name of the database.
|
189
229
|
# @return [String]
|
190
230
|
#
|
191
231
|
# @!attribute [rw] database_type
|
232
|
+
# The type of the database.
|
192
233
|
# @return [String]
|
193
234
|
#
|
194
235
|
# @!attribute [rw] arn
|
236
|
+
# The Amazon Resource Name (ARN) of the database.
|
195
237
|
# @return [String]
|
196
238
|
#
|
197
239
|
# @!attribute [rw] status
|
240
|
+
# The status of the database.
|
198
241
|
# @return [String]
|
199
242
|
#
|
200
243
|
# @!attribute [rw] primary_host
|
244
|
+
# The primary host of the database.
|
201
245
|
# @return [String]
|
202
246
|
#
|
203
247
|
# @!attribute [rw] sql_port
|
248
|
+
# The SQL port of the database.
|
204
249
|
# @return [Integer]
|
205
250
|
#
|
206
251
|
# @!attribute [rw] last_updated
|
252
|
+
# The time at which the database was last updated.
|
207
253
|
# @return [Time]
|
208
254
|
#
|
209
255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Database AWS API Documentation
|
@@ -224,22 +270,30 @@ module Aws::SsmSap
|
|
224
270
|
include Aws::Structure
|
225
271
|
end
|
226
272
|
|
273
|
+
# The summary of the database.
|
274
|
+
#
|
227
275
|
# @!attribute [rw] application_id
|
276
|
+
# The ID of the application.
|
228
277
|
# @return [String]
|
229
278
|
#
|
230
279
|
# @!attribute [rw] component_id
|
280
|
+
# The ID of the component.
|
231
281
|
# @return [String]
|
232
282
|
#
|
233
283
|
# @!attribute [rw] database_id
|
284
|
+
# The ID of the database.
|
234
285
|
# @return [String]
|
235
286
|
#
|
236
287
|
# @!attribute [rw] database_type
|
288
|
+
# The type of the database.
|
237
289
|
# @return [String]
|
238
290
|
#
|
239
291
|
# @!attribute [rw] arn
|
292
|
+
# The Amazon Resource Name (ARN) of the database.
|
240
293
|
# @return [String]
|
241
294
|
#
|
242
295
|
# @!attribute [rw] tags
|
296
|
+
# The tags of the database.
|
243
297
|
# @return [Hash<String,String>]
|
244
298
|
#
|
245
299
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/DatabaseSummary AWS API Documentation
|
@@ -255,22 +309,16 @@ module Aws::SsmSap
|
|
255
309
|
include Aws::Structure
|
256
310
|
end
|
257
311
|
|
258
|
-
# @note When making an API call, you may pass DeleteResourcePermissionInput
|
259
|
-
# data as a hash:
|
260
|
-
#
|
261
|
-
# {
|
262
|
-
# action_type: "RESTORE", # accepts RESTORE
|
263
|
-
# source_resource_arn: "Arn",
|
264
|
-
# resource_arn: "Arn", # required
|
265
|
-
# }
|
266
|
-
#
|
267
312
|
# @!attribute [rw] action_type
|
313
|
+
# Delete or restore the permissions on the target database.
|
268
314
|
# @return [String]
|
269
315
|
#
|
270
316
|
# @!attribute [rw] source_resource_arn
|
317
|
+
# The Amazon Resource Name (ARN) of the source resource.
|
271
318
|
# @return [String]
|
272
319
|
#
|
273
320
|
# @!attribute [rw] resource_arn
|
321
|
+
# The Amazon Resource Name (ARN) of the resource.
|
274
322
|
# @return [String]
|
275
323
|
#
|
276
324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/DeleteResourcePermissionInput AWS API Documentation
|
@@ -284,6 +332,7 @@ module Aws::SsmSap
|
|
284
332
|
end
|
285
333
|
|
286
334
|
# @!attribute [rw] policy
|
335
|
+
# The policy that removes permissions on the target database.
|
287
336
|
# @return [String]
|
288
337
|
#
|
289
338
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/DeleteResourcePermissionOutput AWS API Documentation
|
@@ -294,14 +343,8 @@ module Aws::SsmSap
|
|
294
343
|
include Aws::Structure
|
295
344
|
end
|
296
345
|
|
297
|
-
# @note When making an API call, you may pass DeregisterApplicationInput
|
298
|
-
# data as a hash:
|
299
|
-
#
|
300
|
-
# {
|
301
|
-
# application_id: "ApplicationId", # required
|
302
|
-
# }
|
303
|
-
#
|
304
346
|
# @!attribute [rw] application_id
|
347
|
+
# The ID of the application.
|
305
348
|
# @return [String]
|
306
349
|
#
|
307
350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/DeregisterApplicationInput AWS API Documentation
|
@@ -316,33 +359,63 @@ module Aws::SsmSap
|
|
316
359
|
#
|
317
360
|
class DeregisterApplicationOutput < Aws::EmptyStructure; end
|
318
361
|
|
319
|
-
#
|
320
|
-
#
|
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]
|
321
379
|
#
|
322
|
-
#
|
323
|
-
# application_id: "ApplicationId",
|
324
|
-
# application_arn: "SsmSapArn",
|
325
|
-
# }
|
380
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Filter AWS API Documentation
|
326
381
|
#
|
382
|
+
class Filter < Struct.new(
|
383
|
+
:name,
|
384
|
+
:value,
|
385
|
+
:operator)
|
386
|
+
SENSITIVE = []
|
387
|
+
include Aws::Structure
|
388
|
+
end
|
389
|
+
|
327
390
|
# @!attribute [rw] application_id
|
391
|
+
# The ID of the application.
|
328
392
|
# @return [String]
|
329
393
|
#
|
330
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.
|
331
400
|
# @return [String]
|
332
401
|
#
|
333
402
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetApplicationInput AWS API Documentation
|
334
403
|
#
|
335
404
|
class GetApplicationInput < Struct.new(
|
336
405
|
:application_id,
|
337
|
-
:application_arn
|
406
|
+
:application_arn,
|
407
|
+
:app_registry_arn)
|
338
408
|
SENSITIVE = []
|
339
409
|
include Aws::Structure
|
340
410
|
end
|
341
411
|
|
342
412
|
# @!attribute [rw] application
|
413
|
+
# Returns all of the metadata of an application registered with AWS
|
414
|
+
# Systems Manager for SAP.
|
343
415
|
# @return [Types::Application]
|
344
416
|
#
|
345
417
|
# @!attribute [rw] tags
|
418
|
+
# The tags of a registered application.
|
346
419
|
# @return [Hash<String,String>]
|
347
420
|
#
|
348
421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetApplicationOutput AWS API Documentation
|
@@ -354,18 +427,12 @@ module Aws::SsmSap
|
|
354
427
|
include Aws::Structure
|
355
428
|
end
|
356
429
|
|
357
|
-
# @note When making an API call, you may pass GetComponentInput
|
358
|
-
# data as a hash:
|
359
|
-
#
|
360
|
-
# {
|
361
|
-
# application_id: "ApplicationId", # required
|
362
|
-
# component_id: "ComponentId", # required
|
363
|
-
# }
|
364
|
-
#
|
365
430
|
# @!attribute [rw] application_id
|
431
|
+
# The ID of the application.
|
366
432
|
# @return [String]
|
367
433
|
#
|
368
434
|
# @!attribute [rw] component_id
|
435
|
+
# The ID of the component.
|
369
436
|
# @return [String]
|
370
437
|
#
|
371
438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetComponentInput AWS API Documentation
|
@@ -378,6 +445,8 @@ module Aws::SsmSap
|
|
378
445
|
end
|
379
446
|
|
380
447
|
# @!attribute [rw] component
|
448
|
+
# The component of an application registered with AWS Systems Manager
|
449
|
+
# for SAP.
|
381
450
|
# @return [Types::Component]
|
382
451
|
#
|
383
452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetComponentOutput AWS API Documentation
|
@@ -388,26 +457,20 @@ module Aws::SsmSap
|
|
388
457
|
include Aws::Structure
|
389
458
|
end
|
390
459
|
|
391
|
-
# @note When making an API call, you may pass GetDatabaseInput
|
392
|
-
# data as a hash:
|
393
|
-
#
|
394
|
-
# {
|
395
|
-
# application_id: "ApplicationId",
|
396
|
-
# component_id: "ComponentId",
|
397
|
-
# database_id: "DatabaseId",
|
398
|
-
# database_arn: "SsmSapArn",
|
399
|
-
# }
|
400
|
-
#
|
401
460
|
# @!attribute [rw] application_id
|
461
|
+
# The ID of the application.
|
402
462
|
# @return [String]
|
403
463
|
#
|
404
464
|
# @!attribute [rw] component_id
|
465
|
+
# The ID of the component.
|
405
466
|
# @return [String]
|
406
467
|
#
|
407
468
|
# @!attribute [rw] database_id
|
469
|
+
# The ID of the database.
|
408
470
|
# @return [String]
|
409
471
|
#
|
410
472
|
# @!attribute [rw] database_arn
|
473
|
+
# The Amazon Resource Name (ARN) of the database.
|
411
474
|
# @return [String]
|
412
475
|
#
|
413
476
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetDatabaseInput AWS API Documentation
|
@@ -422,9 +485,12 @@ module Aws::SsmSap
|
|
422
485
|
end
|
423
486
|
|
424
487
|
# @!attribute [rw] database
|
488
|
+
# The SAP HANA database of an application registered with AWS Systems
|
489
|
+
# Manager for SAP.
|
425
490
|
# @return [Types::Database]
|
426
491
|
#
|
427
492
|
# @!attribute [rw] tags
|
493
|
+
# The tags of a database.
|
428
494
|
# @return [Hash<String,String>]
|
429
495
|
#
|
430
496
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetDatabaseOutput AWS API Documentation
|
@@ -436,14 +502,8 @@ module Aws::SsmSap
|
|
436
502
|
include Aws::Structure
|
437
503
|
end
|
438
504
|
|
439
|
-
# @note When making an API call, you may pass GetOperationInput
|
440
|
-
# data as a hash:
|
441
|
-
#
|
442
|
-
# {
|
443
|
-
# operation_id: "OperationId", # required
|
444
|
-
# }
|
445
|
-
#
|
446
505
|
# @!attribute [rw] operation_id
|
506
|
+
# The ID of the operation.
|
447
507
|
# @return [String]
|
448
508
|
#
|
449
509
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetOperationInput AWS API Documentation
|
@@ -455,6 +515,7 @@ module Aws::SsmSap
|
|
455
515
|
end
|
456
516
|
|
457
517
|
# @!attribute [rw] operation
|
518
|
+
# Returns the details of an operation.
|
458
519
|
# @return [Types::Operation]
|
459
520
|
#
|
460
521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetOperationOutput AWS API Documentation
|
@@ -465,18 +526,11 @@ module Aws::SsmSap
|
|
465
526
|
include Aws::Structure
|
466
527
|
end
|
467
528
|
|
468
|
-
# @note When making an API call, you may pass GetResourcePermissionInput
|
469
|
-
# data as a hash:
|
470
|
-
#
|
471
|
-
# {
|
472
|
-
# action_type: "RESTORE", # accepts RESTORE
|
473
|
-
# resource_arn: "Arn", # required
|
474
|
-
# }
|
475
|
-
#
|
476
529
|
# @!attribute [rw] action_type
|
477
530
|
# @return [String]
|
478
531
|
#
|
479
532
|
# @!attribute [rw] resource_arn
|
533
|
+
# The Amazon Resource Name (ARN) of the resource.
|
480
534
|
# @return [String]
|
481
535
|
#
|
482
536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/GetResourcePermissionInput AWS API Documentation
|
@@ -499,16 +553,22 @@ module Aws::SsmSap
|
|
499
553
|
include Aws::Structure
|
500
554
|
end
|
501
555
|
|
556
|
+
# Describes the properties of the Dedicated Host.
|
557
|
+
#
|
502
558
|
# @!attribute [rw] host_name
|
559
|
+
# The name of the Dedicated Host.
|
503
560
|
# @return [String]
|
504
561
|
#
|
505
562
|
# @!attribute [rw] host_role
|
563
|
+
# The role of the Dedicated Host.
|
506
564
|
# @return [String]
|
507
565
|
#
|
508
566
|
# @!attribute [rw] host_ip
|
567
|
+
# The IP address of the Dedicated Host.
|
509
568
|
# @return [String]
|
510
569
|
#
|
511
570
|
# @!attribute [rw] instance_id
|
571
|
+
# The instance ID of the instance on the Dedicated Host.
|
512
572
|
# @return [String]
|
513
573
|
#
|
514
574
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Host AWS API Documentation
|
@@ -522,6 +582,8 @@ module Aws::SsmSap
|
|
522
582
|
include Aws::Structure
|
523
583
|
end
|
524
584
|
|
585
|
+
# An internal error has occurred.
|
586
|
+
#
|
525
587
|
# @!attribute [rw] message
|
526
588
|
# @return [String]
|
527
589
|
#
|
@@ -533,18 +595,14 @@ module Aws::SsmSap
|
|
533
595
|
include Aws::Structure
|
534
596
|
end
|
535
597
|
|
536
|
-
# @note When making an API call, you may pass ListApplicationsInput
|
537
|
-
# data as a hash:
|
538
|
-
#
|
539
|
-
# {
|
540
|
-
# next_token: "NextToken",
|
541
|
-
# max_results: 1,
|
542
|
-
# }
|
543
|
-
#
|
544
598
|
# @!attribute [rw] next_token
|
599
|
+
# The token for the next page of results.
|
545
600
|
# @return [String]
|
546
601
|
#
|
547
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.
|
548
606
|
# @return [Integer]
|
549
607
|
#
|
550
608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListApplicationsInput AWS API Documentation
|
@@ -557,9 +615,12 @@ module Aws::SsmSap
|
|
557
615
|
end
|
558
616
|
|
559
617
|
# @!attribute [rw] applications
|
618
|
+
# The applications registered with AWS Systems Manager for SAP.
|
560
619
|
# @return [Array<Types::ApplicationSummary>]
|
561
620
|
#
|
562
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.
|
563
624
|
# @return [String]
|
564
625
|
#
|
565
626
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListApplicationsOutput AWS API Documentation
|
@@ -571,22 +632,21 @@ module Aws::SsmSap
|
|
571
632
|
include Aws::Structure
|
572
633
|
end
|
573
634
|
|
574
|
-
# @note When making an API call, you may pass ListComponentsInput
|
575
|
-
# data as a hash:
|
576
|
-
#
|
577
|
-
# {
|
578
|
-
# application_id: "ApplicationId",
|
579
|
-
# next_token: "NextToken",
|
580
|
-
# max_results: 1,
|
581
|
-
# }
|
582
|
-
#
|
583
635
|
# @!attribute [rw] application_id
|
636
|
+
# The ID of the application.
|
584
637
|
# @return [String]
|
585
638
|
#
|
586
639
|
# @!attribute [rw] next_token
|
640
|
+
# The token for the next page of results.
|
587
641
|
# @return [String]
|
588
642
|
#
|
589
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.
|
590
650
|
# @return [Integer]
|
591
651
|
#
|
592
652
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListComponentsInput AWS API Documentation
|
@@ -600,9 +660,12 @@ module Aws::SsmSap
|
|
600
660
|
end
|
601
661
|
|
602
662
|
# @!attribute [rw] components
|
663
|
+
# List of components registered with AWS System Manager for SAP.
|
603
664
|
# @return [Array<Types::ComponentSummary>]
|
604
665
|
#
|
605
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.
|
606
669
|
# @return [String]
|
607
670
|
#
|
608
671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListComponentsOutput AWS API Documentation
|
@@ -614,26 +677,23 @@ module Aws::SsmSap
|
|
614
677
|
include Aws::Structure
|
615
678
|
end
|
616
679
|
|
617
|
-
# @note When making an API call, you may pass ListDatabasesInput
|
618
|
-
# data as a hash:
|
619
|
-
#
|
620
|
-
# {
|
621
|
-
# application_id: "ApplicationId",
|
622
|
-
# component_id: "ComponentId",
|
623
|
-
# next_token: "NextToken",
|
624
|
-
# max_results: 1,
|
625
|
-
# }
|
626
|
-
#
|
627
680
|
# @!attribute [rw] application_id
|
681
|
+
# The ID of the application.
|
628
682
|
# @return [String]
|
629
683
|
#
|
630
684
|
# @!attribute [rw] component_id
|
685
|
+
# The ID of the component.
|
631
686
|
# @return [String]
|
632
687
|
#
|
633
688
|
# @!attribute [rw] next_token
|
689
|
+
# The token for the next page of results.
|
634
690
|
# @return [String]
|
635
691
|
#
|
636
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.
|
637
697
|
# @return [Integer]
|
638
698
|
#
|
639
699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListDatabasesInput AWS API Documentation
|
@@ -648,9 +708,12 @@ module Aws::SsmSap
|
|
648
708
|
end
|
649
709
|
|
650
710
|
# @!attribute [rw] databases
|
711
|
+
# The SAP HANA databases of an application.
|
651
712
|
# @return [Array<Types::DatabaseSummary>]
|
652
713
|
#
|
653
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.
|
654
717
|
# @return [String]
|
655
718
|
#
|
656
719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListDatabasesOutput AWS API Documentation
|
@@ -662,14 +725,56 @@ module Aws::SsmSap
|
|
662
725
|
include Aws::Structure
|
663
726
|
end
|
664
727
|
|
665
|
-
#
|
666
|
-
#
|
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]
|
667
742
|
#
|
668
|
-
#
|
669
|
-
#
|
670
|
-
#
|
743
|
+
# @!attribute [rw] filters
|
744
|
+
# The filters of an operation.
|
745
|
+
# @return [Array<Types::Filter>]
|
671
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
|
+
|
672
776
|
# @!attribute [rw] resource_arn
|
777
|
+
# The Amazon Resource Name (ARN) of the resource.
|
673
778
|
# @return [String]
|
674
779
|
#
|
675
780
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/ListTagsForResourceRequest AWS API Documentation
|
@@ -691,37 +796,50 @@ module Aws::SsmSap
|
|
691
796
|
include Aws::Structure
|
692
797
|
end
|
693
798
|
|
799
|
+
# The operations performed by AWS Systems Manager for SAP.
|
800
|
+
#
|
694
801
|
# @!attribute [rw] id
|
802
|
+
# The ID of the operation.
|
695
803
|
# @return [String]
|
696
804
|
#
|
697
805
|
# @!attribute [rw] type
|
806
|
+
# The type of the operation.
|
698
807
|
# @return [String]
|
699
808
|
#
|
700
809
|
# @!attribute [rw] status
|
810
|
+
# The status of the operation.
|
701
811
|
# @return [String]
|
702
812
|
#
|
703
813
|
# @!attribute [rw] status_message
|
814
|
+
# The status message of the operation.
|
704
815
|
# @return [String]
|
705
816
|
#
|
706
817
|
# @!attribute [rw] properties
|
818
|
+
# The properties of the operation.
|
707
819
|
# @return [Hash<String,String>]
|
708
820
|
#
|
709
821
|
# @!attribute [rw] resource_type
|
822
|
+
# The resource type of the operation.
|
710
823
|
# @return [String]
|
711
824
|
#
|
712
825
|
# @!attribute [rw] resource_id
|
826
|
+
# The resource ID of the operation.
|
713
827
|
# @return [String]
|
714
828
|
#
|
715
829
|
# @!attribute [rw] resource_arn
|
830
|
+
# The Amazon Resource Name (ARN) of the operation.
|
716
831
|
# @return [String]
|
717
832
|
#
|
718
833
|
# @!attribute [rw] start_time
|
834
|
+
# The start time of the operation.
|
719
835
|
# @return [Time]
|
720
836
|
#
|
721
837
|
# @!attribute [rw] end_time
|
838
|
+
# The end time of the operation.
|
722
839
|
# @return [Time]
|
723
840
|
#
|
724
841
|
# @!attribute [rw] last_updated_time
|
842
|
+
# The time at which the operation was last updated.
|
725
843
|
# @return [Time]
|
726
844
|
#
|
727
845
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/Operation AWS API Documentation
|
@@ -742,15 +860,6 @@ module Aws::SsmSap
|
|
742
860
|
include Aws::Structure
|
743
861
|
end
|
744
862
|
|
745
|
-
# @note When making an API call, you may pass PutResourcePermissionInput
|
746
|
-
# data as a hash:
|
747
|
-
#
|
748
|
-
# {
|
749
|
-
# action_type: "RESTORE", # required, accepts RESTORE
|
750
|
-
# source_resource_arn: "Arn", # required
|
751
|
-
# resource_arn: "Arn", # required
|
752
|
-
# }
|
753
|
-
#
|
754
863
|
# @!attribute [rw] action_type
|
755
864
|
# @return [String]
|
756
865
|
#
|
@@ -781,46 +890,32 @@ module Aws::SsmSap
|
|
781
890
|
include Aws::Structure
|
782
891
|
end
|
783
892
|
|
784
|
-
# @note When making an API call, you may pass RegisterApplicationInput
|
785
|
-
# data as a hash:
|
786
|
-
#
|
787
|
-
# {
|
788
|
-
# application_id: "ApplicationId", # required
|
789
|
-
# application_type: "HANA", # required, accepts HANA
|
790
|
-
# instances: ["InstanceId"], # required
|
791
|
-
# sap_instance_number: "SAPInstanceNumber",
|
792
|
-
# sid: "SID",
|
793
|
-
# tags: {
|
794
|
-
# "TagKey" => "TagValue",
|
795
|
-
# },
|
796
|
-
# credentials: [ # required
|
797
|
-
# {
|
798
|
-
# database_name: "DatabaseName", # required
|
799
|
-
# credential_type: "ADMIN", # required, accepts ADMIN
|
800
|
-
# secret_id: "SecretId", # required
|
801
|
-
# },
|
802
|
-
# ],
|
803
|
-
# }
|
804
|
-
#
|
805
893
|
# @!attribute [rw] application_id
|
894
|
+
# The ID of the application.
|
806
895
|
# @return [String]
|
807
896
|
#
|
808
897
|
# @!attribute [rw] application_type
|
898
|
+
# The type of the application.
|
809
899
|
# @return [String]
|
810
900
|
#
|
811
901
|
# @!attribute [rw] instances
|
902
|
+
# The Amazon EC2 instances on which your SAP application is running.
|
812
903
|
# @return [Array<String>]
|
813
904
|
#
|
814
905
|
# @!attribute [rw] sap_instance_number
|
906
|
+
# The SAP instance number of the application.
|
815
907
|
# @return [String]
|
816
908
|
#
|
817
909
|
# @!attribute [rw] sid
|
910
|
+
# The System ID of the application.
|
818
911
|
# @return [String]
|
819
912
|
#
|
820
913
|
# @!attribute [rw] tags
|
914
|
+
# The tags to be attached to the SAP application.
|
821
915
|
# @return [Hash<String,String>]
|
822
916
|
#
|
823
917
|
# @!attribute [rw] credentials
|
918
|
+
# The credentials of the SAP application.
|
824
919
|
# @return [Array<Types::ApplicationCredential>]
|
825
920
|
#
|
826
921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RegisterApplicationInput AWS API Documentation
|
@@ -838,9 +933,11 @@ module Aws::SsmSap
|
|
838
933
|
end
|
839
934
|
|
840
935
|
# @!attribute [rw] application
|
936
|
+
# The application registered with AWS Systems Manager for SAP.
|
841
937
|
# @return [Types::Application]
|
842
938
|
#
|
843
939
|
# @!attribute [rw] operation_id
|
940
|
+
# The ID of the operation.
|
844
941
|
# @return [String]
|
845
942
|
#
|
846
943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/RegisterApplicationOutput AWS API Documentation
|
@@ -852,6 +949,8 @@ module Aws::SsmSap
|
|
852
949
|
include Aws::Structure
|
853
950
|
end
|
854
951
|
|
952
|
+
# The resource is not available.
|
953
|
+
#
|
855
954
|
# @!attribute [rw] message
|
856
955
|
# @return [String]
|
857
956
|
#
|
@@ -863,20 +962,12 @@ module Aws::SsmSap
|
|
863
962
|
include Aws::Structure
|
864
963
|
end
|
865
964
|
|
866
|
-
# @note When making an API call, you may pass TagResourceRequest
|
867
|
-
# data as a hash:
|
868
|
-
#
|
869
|
-
# {
|
870
|
-
# resource_arn: "SsmSapArn", # required
|
871
|
-
# tags: { # required
|
872
|
-
# "TagKey" => "TagValue",
|
873
|
-
# },
|
874
|
-
# }
|
875
|
-
#
|
876
965
|
# @!attribute [rw] resource_arn
|
966
|
+
# The Amazon Resource Name (ARN) of the resource.
|
877
967
|
# @return [String]
|
878
968
|
#
|
879
969
|
# @!attribute [rw] tags
|
970
|
+
# The tags on a resource.
|
880
971
|
# @return [Hash<String,String>]
|
881
972
|
#
|
882
973
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/TagResourceRequest AWS API Documentation
|
@@ -892,15 +983,8 @@ module Aws::SsmSap
|
|
892
983
|
#
|
893
984
|
class TagResourceResponse < Aws::EmptyStructure; end
|
894
985
|
|
895
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
896
|
-
# data as a hash:
|
897
|
-
#
|
898
|
-
# {
|
899
|
-
# resource_arn: "SsmSapArn", # required
|
900
|
-
# tag_keys: ["TagKey"], # required
|
901
|
-
# }
|
902
|
-
#
|
903
986
|
# @!attribute [rw] resource_arn
|
987
|
+
# The Amazon Resource Name (ARN) of the resource.
|
904
988
|
# @return [String]
|
905
989
|
#
|
906
990
|
# @!attribute [rw] tag_keys
|
@@ -921,34 +1005,16 @@ module Aws::SsmSap
|
|
921
1005
|
#
|
922
1006
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
923
1007
|
|
924
|
-
# @note When making an API call, you may pass UpdateApplicationSettingsInput
|
925
|
-
# data as a hash:
|
926
|
-
#
|
927
|
-
# {
|
928
|
-
# application_id: "ApplicationId", # required
|
929
|
-
# credentials_to_add_or_update: [
|
930
|
-
# {
|
931
|
-
# database_name: "DatabaseName", # required
|
932
|
-
# credential_type: "ADMIN", # required, accepts ADMIN
|
933
|
-
# secret_id: "SecretId", # required
|
934
|
-
# },
|
935
|
-
# ],
|
936
|
-
# credentials_to_remove: [
|
937
|
-
# {
|
938
|
-
# database_name: "DatabaseName", # required
|
939
|
-
# credential_type: "ADMIN", # required, accepts ADMIN
|
940
|
-
# secret_id: "SecretId", # required
|
941
|
-
# },
|
942
|
-
# ],
|
943
|
-
# }
|
944
|
-
#
|
945
1008
|
# @!attribute [rw] application_id
|
1009
|
+
# The ID of the application.
|
946
1010
|
# @return [String]
|
947
1011
|
#
|
948
1012
|
# @!attribute [rw] credentials_to_add_or_update
|
1013
|
+
# The credentials to be added or updated.
|
949
1014
|
# @return [Array<Types::ApplicationCredential>]
|
950
1015
|
#
|
951
1016
|
# @!attribute [rw] credentials_to_remove
|
1017
|
+
# The credentials to be removed.
|
952
1018
|
# @return [Array<Types::ApplicationCredential>]
|
953
1019
|
#
|
954
1020
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/UpdateApplicationSettingsInput AWS API Documentation
|
@@ -962,9 +1028,11 @@ module Aws::SsmSap
|
|
962
1028
|
end
|
963
1029
|
|
964
1030
|
# @!attribute [rw] message
|
1031
|
+
# The update message.
|
965
1032
|
# @return [String]
|
966
1033
|
#
|
967
1034
|
# @!attribute [rw] operation_ids
|
1035
|
+
# The IDs of the operations.
|
968
1036
|
# @return [Array<String>]
|
969
1037
|
#
|
970
1038
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ssm-sap-2018-05-10/UpdateApplicationSettingsOutput AWS API Documentation
|
@@ -976,6 +1044,9 @@ module Aws::SsmSap
|
|
976
1044
|
include Aws::Structure
|
977
1045
|
end
|
978
1046
|
|
1047
|
+
# The input fails to satisfy the constraints specified by an AWS
|
1048
|
+
# service.
|
1049
|
+
#
|
979
1050
|
# @!attribute [rw] message
|
980
1051
|
# @return [String]
|
981
1052
|
#
|