aws-sdk-core 2.0.48 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/autoscaling/2011-01-01/api-2.json +636 -33
- data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
- data/apis/ec2/2014-10-01/api-2.json +10267 -0
- data/apis/ec2/2014-10-01/paginators-1.json +125 -0
- data/apis/ec2/2014-10-01/resources-1.json +2289 -0
- data/apis/ec2/2014-10-01/waiters-2.json +453 -0
- data/apis/ec2/2015-03-01/api-2.json +11245 -0
- data/apis/ec2/2015-03-01/paginators-1.json +125 -0
- data/apis/ec2/2015-03-01/resources-1.json +2479 -0
- data/apis/ec2/2015-03-01/waiters-2.json +458 -0
- data/apis/ec2/2015-04-15/api-2.json +182 -2
- data/apis/ecs/2014-11-13/api-2.json +316 -7
- data/apis/ecs/2014-11-13/paginators-1.json +40 -0
- data/apis/ecs/2014-11-13/waiters-2.json +93 -0
- data/apis/redshift/2012-12-01/waiters-2.json +19 -0
- data/apis/s3/2006-03-01/api-2.json +1 -2
- data/apis/sqs/2012-11-05/api-2.json +5 -6
- data/ca-bundle.crt +3554 -0
- data/lib/aws-sdk-core.rb +127 -44
- data/lib/aws-sdk-core/api/builder.rb +95 -0
- data/lib/aws-sdk-core/api/customizations.rb +152 -0
- data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
- data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
- data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
- data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
- data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
- data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
- data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
- data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
- data/lib/aws-sdk-core/api/shape_map.rb +140 -0
- data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
- data/lib/aws-sdk-core/client.rb +9 -6
- data/lib/aws-sdk-core/client_stubs.rb +127 -133
- data/lib/aws-sdk-core/client_waiters.rb +1 -1
- data/lib/aws-sdk-core/credential_provider.rb +44 -0
- data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
- data/lib/aws-sdk-core/credentials.rb +5 -0
- data/lib/aws-sdk-core/deprecations.rb +69 -0
- data/lib/aws-sdk-core/dynamodb.rb +12 -0
- data/lib/aws-sdk-core/eager_loader.rb +31 -0
- data/lib/aws-sdk-core/ecs.rb +2 -0
- data/lib/aws-sdk-core/empty_structure.rb +1 -82
- data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
- data/lib/aws-sdk-core/json.rb +56 -0
- data/lib/aws-sdk-core/json/builder.rb +33 -34
- data/lib/aws-sdk-core/json/error_handler.rb +2 -2
- data/lib/aws-sdk-core/json/handler.rb +67 -0
- data/lib/aws-sdk-core/json/json_engine.rb +15 -0
- data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
- data/lib/aws-sdk-core/json/parser.rb +30 -38
- data/lib/aws-sdk-core/pageable_response.rb +9 -12
- data/lib/aws-sdk-core/pager.rb +69 -0
- data/lib/aws-sdk-core/param_converter.rb +203 -0
- data/lib/aws-sdk-core/param_validator.rb +148 -0
- data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
- data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
- data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
- data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
- data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
- data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
- data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
- data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
- data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
- data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
- data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
- data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
- data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
- data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
- data/lib/aws-sdk-core/query/handler.rb +32 -18
- data/lib/aws-sdk-core/query/param_builder.rb +45 -53
- data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
- data/lib/aws-sdk-core/rest/handler.rb +22 -0
- data/lib/aws-sdk-core/rest/request/body.rb +58 -0
- data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
- data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
- data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
- data/lib/aws-sdk-core/rest/response/body.rb +43 -0
- data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
- data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
- data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
- data/lib/aws-sdk-core/shared_credentials.rb +11 -6
- data/lib/aws-sdk-core/signers/base.rb +1 -1
- data/lib/aws-sdk-core/signers/s3.rb +2 -3
- data/lib/aws-sdk-core/signers/v2.rb +7 -4
- data/lib/aws-sdk-core/signers/v4.rb +11 -22
- data/lib/aws-sdk-core/structure.rb +26 -145
- data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
- data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
- data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
- data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
- data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
- data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
- data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/lib/aws-sdk-core/xml/builder.rb +58 -52
- data/lib/aws-sdk-core/xml/default_map.rb +10 -0
- data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
- data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
- data/lib/aws-sdk-core/xml/parser.rb +4 -4
- data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
- data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
- data/lib/seahorse.rb +0 -11
- data/lib/seahorse/client/base.rb +3 -12
- data/lib/seahorse/client/http/request.rb +9 -5
- data/lib/seahorse/client/plugins/endpoint.rb +5 -56
- data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
- data/lib/seahorse/client/request_context.rb +2 -2
- data/lib/seahorse/client/response.rb +6 -5
- data/lib/seahorse/model/api.rb +18 -61
- data/lib/seahorse/model/operation.rb +24 -54
- data/lib/seahorse/model/shapes.rb +120 -364
- data/lib/seahorse/util.rb +2 -6
- metadata +56 -109
- data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
- data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
- data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
- data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
- data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
- data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
- data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
- data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
- data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
- data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
- data/apis/config/2014-10-17/docs-2.json +0 -513
- data/apis/config/2014-11-12/docs-2.json +0 -514
- data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
- data/apis/directconnect/2012-10-25/docs-2.json +0 -494
- data/apis/ds/2015-04-16/docs-2.json +0 -753
- data/apis/dynamodb/2011-12-05/api-2.json +0 -949
- data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
- data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
- data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
- data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
- data/apis/ec2/2015-04-15/docs-2.json +0 -5368
- data/apis/ecs/2014-11-13/docs-2.json +0 -791
- data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
- data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
- data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
- data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
- data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
- data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
- data/apis/email/2010-12-01/docs-2.json +0 -441
- data/apis/glacier/2012-06-01/docs-2.json +0 -575
- data/apis/iam/2010-05-08/docs-2.json +0 -2138
- data/apis/importexport/2010-06-01/docs-2.json +0 -432
- data/apis/kinesis/2013-12-02/docs-2.json +0 -424
- data/apis/kms/2014-11-01/docs-2.json +0 -628
- data/apis/lambda/2014-11-11/docs-2.json +0 -303
- data/apis/lambda/2015-03-31/docs-2.json +0 -490
- data/apis/logs/2014-03-28/docs-2.json +0 -599
- data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
- data/apis/monitoring/2010-08-01/docs-2.json +0 -514
- data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
- data/apis/rds/2014-10-31/docs-2.json +0 -2074
- data/apis/redshift/2012-12-01/docs-2.json +0 -1890
- data/apis/route53/2013-04-01/docs-2.json +0 -1159
- data/apis/route53domains/2014-05-15/docs-2.json +0 -620
- data/apis/s3/2006-03-01/docs-2.json +0 -2213
- data/apis/sdb/2009-04-15/docs-2.json +0 -339
- data/apis/sns/2010-03-31/docs-2.json +0 -564
- data/apis/sqs/2012-11-05/docs-2.json +0 -503
- data/apis/ssm/2014-11-06/docs-2.json +0 -440
- data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
- data/apis/sts/2011-06-15/docs-2.json +0 -351
- data/apis/support/2013-04-15/docs-2.json +0 -680
- data/apis/swf/2012-01-25/docs-2.json +0 -1569
- data/apis/workspaces/2015-04-08/docs-2.json +0 -457
- data/lib/aws-sdk-core/api/customizer.rb +0 -75
- data/lib/aws-sdk-core/api/docstrings.rb +0 -38
- data/lib/aws-sdk-core/api/documenter.rb +0 -241
- data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
- data/lib/aws-sdk-core/api/operation_example.rb +0 -133
- data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
- data/lib/aws-sdk-core/client_paging.rb +0 -31
- data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
- data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
- data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
- data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
- data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
- data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
- data/lib/aws-sdk-core/paging/pager.rb +0 -70
- data/lib/aws-sdk-core/paging/provider.rb +0 -22
- data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
- data/lib/aws-sdk-core/signers/handler.rb +0 -18
- data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
- data/lib/seahorse/client/param_converter.rb +0 -207
- data/lib/seahorse/client/param_validator.rb +0 -139
- data/lib/seahorse/client/plugins/json_simple.rb +0 -33
- data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
- data/lib/seahorse/client/plugins/param_validation.rb +0 -30
- data/lib/seahorse/client/xml/builder.rb +0 -91
- data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,472 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"operations": {
|
3
|
-
"CreateHapg": "<p>Creates a high-availability partition group. A high-availability partition group is a group of partitions that spans multiple physical HSMs.</p>",
|
4
|
-
"CreateHsm": "<p>Creates an uninitialized HSM instance. Running this command provisions an HSM appliance and will result in charges to your AWS account for the HSM.</p>",
|
5
|
-
"CreateLunaClient": "<p>Creates an HSM client.</p>",
|
6
|
-
"DeleteHapg": "<p>Deletes a high-availability partition group.</p>",
|
7
|
-
"DeleteHsm": "<p>Deletes an HSM. Once complete, this operation cannot be undone and your key material cannot be recovered.</p>",
|
8
|
-
"DeleteLunaClient": "<p>Deletes a client.</p>",
|
9
|
-
"DescribeHapg": "<p>Retrieves information about a high-availability partition group.</p>",
|
10
|
-
"DescribeHsm": "<p>Retrieves information about an HSM. You can identify the HSM by its ARN or its serial number.</p>",
|
11
|
-
"DescribeLunaClient": "<p>Retrieves information about an HSM client.</p>",
|
12
|
-
"GetConfig": "<p>Gets the configuration files necessary to connect to all high availability partition groups the client is associated with.</p>",
|
13
|
-
"ListAvailableZones": "<p>Lists the Availability Zones that have available AWS CloudHSM capacity.</p>",
|
14
|
-
"ListHapgs": "<p>Lists the high-availability partition groups for the account.</p> <p>This operation supports pagination with the use of the <i>NextToken</i> member. If more results are available, the <i>NextToken</i> member of the response contains a token that you pass in the next call to <a>ListHapgs</a> to retrieve the next set of items.</p>",
|
15
|
-
"ListHsms": "<p>Retrieves the identifiers of all of the HSMs provisioned for the current customer.</p> <p>This operation supports pagination with the use of the <i>NextToken</i> member. If more results are available, the <i>NextToken</i> member of the response contains a token that you pass in the next call to <a>ListHsms</a> to retrieve the next set of items.</p>",
|
16
|
-
"ListLunaClients": "<p>Lists all of the clients.</p> <p>This operation supports pagination with the use of the <i>NextToken</i> member. If more results are available, the <i>NextToken</i> member of the response contains a token that you pass in the next call to <a>ListLunaClients</a> to retrieve the next set of items.</p>",
|
17
|
-
"ModifyHapg": "<p>Modifies an existing high-availability partition group.</p>",
|
18
|
-
"ModifyHsm": "<p>Modifies an HSM.</p>",
|
19
|
-
"ModifyLunaClient": "<p>Modifies the certificate used by the client.</p> <p>This action can potentially start a workflow to install the new certificate on the client's HSMs.</p>"
|
20
|
-
},
|
21
|
-
"service": "<fullname>AWS CloudHSM Service</fullname>",
|
22
|
-
"shapes": {
|
23
|
-
"AZ": {
|
24
|
-
"base": null,
|
25
|
-
"refs": {
|
26
|
-
"AZList$member": null,
|
27
|
-
"DescribeHsmResponse$AvailabilityZone": "<p>The Availability Zone that the HSM is in.</p>"
|
28
|
-
}
|
29
|
-
},
|
30
|
-
"AZList": {
|
31
|
-
"base": null,
|
32
|
-
"refs": {
|
33
|
-
"ListAvailableZonesResponse$AZList": "<p>The list of Availability Zones that have available AWS CloudHSM capacity.</p>"
|
34
|
-
}
|
35
|
-
},
|
36
|
-
"Boolean": {
|
37
|
-
"base": null,
|
38
|
-
"refs": {
|
39
|
-
"CloudHsmServiceException$retryable": "<p>Indicates if the action can be retried.</p>"
|
40
|
-
}
|
41
|
-
},
|
42
|
-
"Certificate": {
|
43
|
-
"base": null,
|
44
|
-
"refs": {
|
45
|
-
"CreateLunaClientRequest$Certificate": "<p>The contents of a Base64-Encoded X.509 v3 certificate to be installed on the HSMs used by this client.</p>",
|
46
|
-
"DescribeLunaClientResponse$Certificate": "<p>The certificate installed on the HSMs used by this client.</p>",
|
47
|
-
"ModifyLunaClientRequest$Certificate": "<p>The new certificate for the client. </p>"
|
48
|
-
}
|
49
|
-
},
|
50
|
-
"CertificateFingerprint": {
|
51
|
-
"base": null,
|
52
|
-
"refs": {
|
53
|
-
"DescribeLunaClientRequest$CertificateFingerprint": "<p>The certificate fingerprint.</p>",
|
54
|
-
"DescribeLunaClientResponse$CertificateFingerprint": "<p>The certificate fingerprint.</p>"
|
55
|
-
}
|
56
|
-
},
|
57
|
-
"ClientArn": {
|
58
|
-
"base": null,
|
59
|
-
"refs": {
|
60
|
-
"ClientList$member": null,
|
61
|
-
"CreateLunaClientResponse$ClientArn": "<p>The ARN of the client.</p>",
|
62
|
-
"DeleteLunaClientRequest$ClientArn": "<p>The ARN of the client to delete.</p>",
|
63
|
-
"DescribeLunaClientRequest$ClientArn": "<p>The ARN of the client.</p>",
|
64
|
-
"DescribeLunaClientResponse$ClientArn": "<p>The ARN of the client.</p>",
|
65
|
-
"GetConfigRequest$ClientArn": "<p>The ARN of the client.</p>",
|
66
|
-
"ModifyLunaClientRequest$ClientArn": "<p>The ARN of the client.</p>",
|
67
|
-
"ModifyLunaClientResponse$ClientArn": "<p>The ARN of the client.</p>"
|
68
|
-
}
|
69
|
-
},
|
70
|
-
"ClientLabel": {
|
71
|
-
"base": null,
|
72
|
-
"refs": {
|
73
|
-
"CreateLunaClientRequest$Label": "<p>The label for the client.</p>"
|
74
|
-
}
|
75
|
-
},
|
76
|
-
"ClientList": {
|
77
|
-
"base": null,
|
78
|
-
"refs": {
|
79
|
-
"ListLunaClientsResponse$ClientList": "<p>The list of clients.</p>"
|
80
|
-
}
|
81
|
-
},
|
82
|
-
"ClientToken": {
|
83
|
-
"base": null,
|
84
|
-
"refs": {
|
85
|
-
"CreateHsmRequest$ClientToken": "<p>A user-defined token to ensure idempotence. Subsequent calls to this action with the same token will be ignored.</p>"
|
86
|
-
}
|
87
|
-
},
|
88
|
-
"ClientVersion": {
|
89
|
-
"base": null,
|
90
|
-
"refs": {
|
91
|
-
"GetConfigRequest$ClientVersion": "<p>The client version.</p>"
|
92
|
-
}
|
93
|
-
},
|
94
|
-
"CloudHsmInternalException": {
|
95
|
-
"base": "<p>Indicates that an internal error occurred.</p>",
|
96
|
-
"refs": {
|
97
|
-
}
|
98
|
-
},
|
99
|
-
"CloudHsmObjectState": {
|
100
|
-
"base": null,
|
101
|
-
"refs": {
|
102
|
-
"DescribeHapgResponse$State": "<p>The state of the high-availability partition group.</p>"
|
103
|
-
}
|
104
|
-
},
|
105
|
-
"CloudHsmServiceException": {
|
106
|
-
"base": "<p>Indicates that an exception occurred in the AWS CloudHSM service.</p>",
|
107
|
-
"refs": {
|
108
|
-
}
|
109
|
-
},
|
110
|
-
"CreateHapgRequest": {
|
111
|
-
"base": "<p>Contains the inputs for the <a>CreateHapgRequest</a> action.</p>",
|
112
|
-
"refs": {
|
113
|
-
}
|
114
|
-
},
|
115
|
-
"CreateHapgResponse": {
|
116
|
-
"base": "<p>Contains the output of the <a>CreateHAPartitionGroup</a> action.</p>",
|
117
|
-
"refs": {
|
118
|
-
}
|
119
|
-
},
|
120
|
-
"CreateHsmRequest": {
|
121
|
-
"base": "<p>Contains the inputs for the <a>CreateHsm</a> action. </p>",
|
122
|
-
"refs": {
|
123
|
-
}
|
124
|
-
},
|
125
|
-
"CreateHsmResponse": {
|
126
|
-
"base": "<p>Contains the output of the <a>CreateHsm</a> action.</p>",
|
127
|
-
"refs": {
|
128
|
-
}
|
129
|
-
},
|
130
|
-
"CreateLunaClientRequest": {
|
131
|
-
"base": "<p>Contains the inputs for the <a>CreateLunaClient</a> action.</p>",
|
132
|
-
"refs": {
|
133
|
-
}
|
134
|
-
},
|
135
|
-
"CreateLunaClientResponse": {
|
136
|
-
"base": "<p>Contains the output of the <a>CreateLunaClient</a> action.</p>",
|
137
|
-
"refs": {
|
138
|
-
}
|
139
|
-
},
|
140
|
-
"DeleteHapgRequest": {
|
141
|
-
"base": "<p>Contains the inputs for the <a>DeleteHapg</a> action.</p>",
|
142
|
-
"refs": {
|
143
|
-
}
|
144
|
-
},
|
145
|
-
"DeleteHapgResponse": {
|
146
|
-
"base": "<p>Contains the output of the <a>DeleteHapg</a> action.</p>",
|
147
|
-
"refs": {
|
148
|
-
}
|
149
|
-
},
|
150
|
-
"DeleteHsmRequest": {
|
151
|
-
"base": "<p>Contains the inputs for the <a>DeleteHsm</a> action. </p>",
|
152
|
-
"refs": {
|
153
|
-
}
|
154
|
-
},
|
155
|
-
"DeleteHsmResponse": {
|
156
|
-
"base": "<p>Contains the output of the <a>DeleteHsm</a> action.</p>",
|
157
|
-
"refs": {
|
158
|
-
}
|
159
|
-
},
|
160
|
-
"DeleteLunaClientRequest": {
|
161
|
-
"base": null,
|
162
|
-
"refs": {
|
163
|
-
}
|
164
|
-
},
|
165
|
-
"DeleteLunaClientResponse": {
|
166
|
-
"base": null,
|
167
|
-
"refs": {
|
168
|
-
}
|
169
|
-
},
|
170
|
-
"DescribeHapgRequest": {
|
171
|
-
"base": "<p>Contains the inputs for the <a>DescribeHapg</a> action.</p>",
|
172
|
-
"refs": {
|
173
|
-
}
|
174
|
-
},
|
175
|
-
"DescribeHapgResponse": {
|
176
|
-
"base": "<p>Contains the output of the <a>DescribeHapg</a> action.</p>",
|
177
|
-
"refs": {
|
178
|
-
}
|
179
|
-
},
|
180
|
-
"DescribeHsmRequest": {
|
181
|
-
"base": "<p>Contains the inputs for the <a>DescribeHsm</a> action. </p>",
|
182
|
-
"refs": {
|
183
|
-
}
|
184
|
-
},
|
185
|
-
"DescribeHsmResponse": {
|
186
|
-
"base": "<p>Contains the output of the <a>DescribeHsm</a> action.</p>",
|
187
|
-
"refs": {
|
188
|
-
}
|
189
|
-
},
|
190
|
-
"DescribeLunaClientRequest": {
|
191
|
-
"base": null,
|
192
|
-
"refs": {
|
193
|
-
}
|
194
|
-
},
|
195
|
-
"DescribeLunaClientResponse": {
|
196
|
-
"base": null,
|
197
|
-
"refs": {
|
198
|
-
}
|
199
|
-
},
|
200
|
-
"EniId": {
|
201
|
-
"base": null,
|
202
|
-
"refs": {
|
203
|
-
"DescribeHsmResponse$EniId": "<p>The identifier of the elastic network interface (ENI) attached to the HSM.</p>"
|
204
|
-
}
|
205
|
-
},
|
206
|
-
"ExternalId": {
|
207
|
-
"base": null,
|
208
|
-
"refs": {
|
209
|
-
"CreateHsmRequest$ExternalId": "<p>The external ID from <b>IamRoleArn</b>, if present.</p>",
|
210
|
-
"ModifyHsmRequest$ExternalId": "<p>The new external ID.</p>"
|
211
|
-
}
|
212
|
-
},
|
213
|
-
"GetConfigRequest": {
|
214
|
-
"base": null,
|
215
|
-
"refs": {
|
216
|
-
}
|
217
|
-
},
|
218
|
-
"GetConfigResponse": {
|
219
|
-
"base": null,
|
220
|
-
"refs": {
|
221
|
-
}
|
222
|
-
},
|
223
|
-
"HapgArn": {
|
224
|
-
"base": null,
|
225
|
-
"refs": {
|
226
|
-
"CreateHapgResponse$HapgArn": "<p>The ARN of the high-availability partition group.</p>",
|
227
|
-
"DeleteHapgRequest$HapgArn": "<p>The ARN of the high-availability partition group to delete.</p>",
|
228
|
-
"DescribeHapgRequest$HapgArn": "<p>The ARN of the high-availability partition group to describe.</p>",
|
229
|
-
"DescribeHapgResponse$HapgArn": "<p>The ARN of the high-availability partition group.</p>",
|
230
|
-
"HapgList$member": null,
|
231
|
-
"ModifyHapgRequest$HapgArn": "<p>The ARN of the high-availability partition group to modify.</p>",
|
232
|
-
"ModifyHapgResponse$HapgArn": "<p>The ARN of the high-availability partition group.</p>"
|
233
|
-
}
|
234
|
-
},
|
235
|
-
"HapgList": {
|
236
|
-
"base": null,
|
237
|
-
"refs": {
|
238
|
-
"GetConfigRequest$HapgList": "<p>A list of ARNs that identify the high-availability partition groups that are associated with the client.</p>",
|
239
|
-
"ListHapgsResponse$HapgList": "<p>The list of high-availability partition groups.</p>"
|
240
|
-
}
|
241
|
-
},
|
242
|
-
"HsmArn": {
|
243
|
-
"base": "<p>An ARN that identifies an HSM.</p>",
|
244
|
-
"refs": {
|
245
|
-
"CreateHsmResponse$HsmArn": "<p>The ARN of the HSM.</p>",
|
246
|
-
"DeleteHsmRequest$HsmArn": "<p>The ARN of the HSM to delete.</p>",
|
247
|
-
"DescribeHsmRequest$HsmArn": "<p>The ARN of the HSM. Either the <i>HsmArn</i> or the <i>SerialNumber</i> parameter must be specified.</p>",
|
248
|
-
"DescribeHsmResponse$HsmArn": "<p>The ARN of the HSM.</p>",
|
249
|
-
"HsmList$member": null,
|
250
|
-
"ModifyHsmRequest$HsmArn": "<p>The ARN of the HSM to modify.</p>",
|
251
|
-
"ModifyHsmResponse$HsmArn": "<p>The ARN of the HSM.</p>"
|
252
|
-
}
|
253
|
-
},
|
254
|
-
"HsmList": {
|
255
|
-
"base": "<p>Contains a list of ARNs that identify the HSMs.</p>",
|
256
|
-
"refs": {
|
257
|
-
"DescribeHapgResponse$HsmsLastActionFailed": null,
|
258
|
-
"DescribeHapgResponse$HsmsPendingDeletion": null,
|
259
|
-
"DescribeHapgResponse$HsmsPendingRegistration": null,
|
260
|
-
"ListHsmsResponse$HsmList": "<p>The list of ARNs that identify the HSMs.</p>"
|
261
|
-
}
|
262
|
-
},
|
263
|
-
"HsmSerialNumber": {
|
264
|
-
"base": null,
|
265
|
-
"refs": {
|
266
|
-
"DescribeHsmRequest$HsmSerialNumber": "<p>The serial number of the HSM. Either the <i>HsmArn</i> or the <i>HsmSerialNumber</i> parameter must be specified.</p>",
|
267
|
-
"DescribeHsmResponse$SerialNumber": "<p>The serial number of the HSM.</p>"
|
268
|
-
}
|
269
|
-
},
|
270
|
-
"HsmStatus": {
|
271
|
-
"base": null,
|
272
|
-
"refs": {
|
273
|
-
"DescribeHsmResponse$Status": "<p>The status of the HSM.</p>"
|
274
|
-
}
|
275
|
-
},
|
276
|
-
"IamRoleArn": {
|
277
|
-
"base": null,
|
278
|
-
"refs": {
|
279
|
-
"CreateHsmRequest$IamRoleArn": "<p>The ARN of an IAM role to enable the AWS CloudHSM service to allocate an ENI on your behalf.</p>",
|
280
|
-
"DescribeHsmResponse$IamRoleArn": "<p>The ARN of the IAM role assigned to the HSM.</p>",
|
281
|
-
"ModifyHsmRequest$IamRoleArn": "<p>The new IAM role ARN.</p>"
|
282
|
-
}
|
283
|
-
},
|
284
|
-
"InvalidRequestException": {
|
285
|
-
"base": "<p>Indicates that one or more of the request parameters are not valid.</p>",
|
286
|
-
"refs": {
|
287
|
-
}
|
288
|
-
},
|
289
|
-
"IpAddress": {
|
290
|
-
"base": null,
|
291
|
-
"refs": {
|
292
|
-
"CreateHsmRequest$EniIp": "<p>The IP address to assign to the HSM's ENI.</p>",
|
293
|
-
"CreateHsmRequest$SyslogIp": "<p>The IP address for the syslog monitoring server.</p>",
|
294
|
-
"DescribeHsmResponse$EniIp": "<p>The IP address assigned to the HSM's ENI.</p>",
|
295
|
-
"ModifyHsmRequest$EniIp": "<p>The new IP address for the elastic network interface attached to the HSM.</p>",
|
296
|
-
"ModifyHsmRequest$SyslogIp": "<p>The new IP address for the syslog monitoring server.</p>"
|
297
|
-
}
|
298
|
-
},
|
299
|
-
"Label": {
|
300
|
-
"base": null,
|
301
|
-
"refs": {
|
302
|
-
"CreateHapgRequest$Label": "<p>The label of the new high-availability partition group.</p>",
|
303
|
-
"DescribeHapgResponse$Label": "<p>The label for the high-availability partition group.</p>",
|
304
|
-
"DescribeLunaClientResponse$Label": "<p>The label of the client.</p>",
|
305
|
-
"ModifyHapgRequest$Label": "<p>The new label for the high-availability partition group.</p>"
|
306
|
-
}
|
307
|
-
},
|
308
|
-
"ListAvailableZonesRequest": {
|
309
|
-
"base": "<p>Contains the inputs for the <a>ListAvailableZones</a> action. </p>",
|
310
|
-
"refs": {
|
311
|
-
}
|
312
|
-
},
|
313
|
-
"ListAvailableZonesResponse": {
|
314
|
-
"base": null,
|
315
|
-
"refs": {
|
316
|
-
}
|
317
|
-
},
|
318
|
-
"ListHapgsRequest": {
|
319
|
-
"base": null,
|
320
|
-
"refs": {
|
321
|
-
}
|
322
|
-
},
|
323
|
-
"ListHapgsResponse": {
|
324
|
-
"base": null,
|
325
|
-
"refs": {
|
326
|
-
}
|
327
|
-
},
|
328
|
-
"ListHsmsRequest": {
|
329
|
-
"base": null,
|
330
|
-
"refs": {
|
331
|
-
}
|
332
|
-
},
|
333
|
-
"ListHsmsResponse": {
|
334
|
-
"base": "<p>Contains the output of the <a>ListHsms</a> action.</p>",
|
335
|
-
"refs": {
|
336
|
-
}
|
337
|
-
},
|
338
|
-
"ListLunaClientsRequest": {
|
339
|
-
"base": null,
|
340
|
-
"refs": {
|
341
|
-
}
|
342
|
-
},
|
343
|
-
"ListLunaClientsResponse": {
|
344
|
-
"base": null,
|
345
|
-
"refs": {
|
346
|
-
}
|
347
|
-
},
|
348
|
-
"ModifyHapgRequest": {
|
349
|
-
"base": null,
|
350
|
-
"refs": {
|
351
|
-
}
|
352
|
-
},
|
353
|
-
"ModifyHapgResponse": {
|
354
|
-
"base": null,
|
355
|
-
"refs": {
|
356
|
-
}
|
357
|
-
},
|
358
|
-
"ModifyHsmRequest": {
|
359
|
-
"base": "<p>Contains the inputs for the <a>ModifyHsm</a> action. </p>",
|
360
|
-
"refs": {
|
361
|
-
}
|
362
|
-
},
|
363
|
-
"ModifyHsmResponse": {
|
364
|
-
"base": "<p>Contains the output of the <a>ModifyHsm</a> action.</p>",
|
365
|
-
"refs": {
|
366
|
-
}
|
367
|
-
},
|
368
|
-
"ModifyLunaClientRequest": {
|
369
|
-
"base": null,
|
370
|
-
"refs": {
|
371
|
-
}
|
372
|
-
},
|
373
|
-
"ModifyLunaClientResponse": {
|
374
|
-
"base": null,
|
375
|
-
"refs": {
|
376
|
-
}
|
377
|
-
},
|
378
|
-
"PaginationToken": {
|
379
|
-
"base": null,
|
380
|
-
"refs": {
|
381
|
-
"ListHapgsRequest$NextToken": "<p>The <i>NextToken</i> value from a previous call to <a>ListHapgs</a>. Pass null if this is the first call.</p>",
|
382
|
-
"ListHapgsResponse$NextToken": "<p>If not null, more results are available. Pass this value to <a>ListHapgs</a> to retrieve the next set of items.</p>",
|
383
|
-
"ListHsmsRequest$NextToken": "<p>The <i>NextToken</i> value from a previous call to <a>ListHsms</a>. Pass null if this is the first call.</p>",
|
384
|
-
"ListHsmsResponse$NextToken": "<p>If not null, more results are available. Pass this value to <a>ListHsms</a> to retrieve the next set of items.</p>",
|
385
|
-
"ListLunaClientsRequest$NextToken": "<p>The <i>NextToken</i> value from a previous call to <a>ListLunaClients</a>. Pass null if this is the first call.</p>",
|
386
|
-
"ListLunaClientsResponse$NextToken": "<p>If not null, more results are available. Pass this to <a>ListLunaClients</a> to retrieve the next set of items.</p>"
|
387
|
-
}
|
388
|
-
},
|
389
|
-
"PartitionArn": {
|
390
|
-
"base": null,
|
391
|
-
"refs": {
|
392
|
-
"PartitionList$member": null
|
393
|
-
}
|
394
|
-
},
|
395
|
-
"PartitionList": {
|
396
|
-
"base": null,
|
397
|
-
"refs": {
|
398
|
-
"DescribeHsmResponse$Partitions": "<p>The list of partitions on the HSM.</p>"
|
399
|
-
}
|
400
|
-
},
|
401
|
-
"PartitionSerial": {
|
402
|
-
"base": null,
|
403
|
-
"refs": {
|
404
|
-
"PartitionSerialList$member": null
|
405
|
-
}
|
406
|
-
},
|
407
|
-
"PartitionSerialList": {
|
408
|
-
"base": null,
|
409
|
-
"refs": {
|
410
|
-
"DescribeHapgResponse$PartitionSerialList": "<p>The list of partition serial numbers that belong to the high-availability partition group.</p>",
|
411
|
-
"ModifyHapgRequest$PartitionSerialList": "<p>The list of partition serial numbers to make members of the high-availability partition group.</p>"
|
412
|
-
}
|
413
|
-
},
|
414
|
-
"SshKey": {
|
415
|
-
"base": null,
|
416
|
-
"refs": {
|
417
|
-
"CreateHsmRequest$SshKey": "<p>The SSH public key to install on the HSM.</p>",
|
418
|
-
"DescribeHsmResponse$SshPublicKey": "<p>The public SSH key.</p>"
|
419
|
-
}
|
420
|
-
},
|
421
|
-
"String": {
|
422
|
-
"base": null,
|
423
|
-
"refs": {
|
424
|
-
"CloudHsmServiceException$message": "<p>Additional information about the error.</p>",
|
425
|
-
"DeleteHapgResponse$Status": "<p>The status of the action.</p>",
|
426
|
-
"DeleteHsmResponse$Status": "<p>The status of the action.</p>",
|
427
|
-
"DeleteLunaClientResponse$Status": "<p>The status of the action.</p>",
|
428
|
-
"DescribeHapgResponse$HapgSerial": "<p>The serial number of the high-availability partition group.</p>",
|
429
|
-
"DescribeHsmResponse$StatusDetails": "<p>Contains additional information about the status of the HSM.</p>",
|
430
|
-
"DescribeHsmResponse$VendorName": "<p>The name of the HSM vendor.</p>",
|
431
|
-
"DescribeHsmResponse$HsmType": "<p>The HSM model type.</p>",
|
432
|
-
"DescribeHsmResponse$SoftwareVersion": "<p>The HSM software version.</p>",
|
433
|
-
"DescribeHsmResponse$ServerCertUri": "<p>The URI of the certificate server.</p>",
|
434
|
-
"GetConfigResponse$ConfigType": "<p>The type of credentials.</p>",
|
435
|
-
"GetConfigResponse$ConfigFile": "<p>The chrystoki.conf configuration file.</p>",
|
436
|
-
"GetConfigResponse$ConfigCred": "<p>The certificate file containing the server.pem files of the HSMs.</p>"
|
437
|
-
}
|
438
|
-
},
|
439
|
-
"SubnetId": {
|
440
|
-
"base": null,
|
441
|
-
"refs": {
|
442
|
-
"CreateHsmRequest$SubnetId": "<p>The identifier of the subnet in your VPC in which to place the HSM.</p>",
|
443
|
-
"DescribeHsmResponse$SubnetId": "<p>The identifier of the subnet the HSM is in.</p>",
|
444
|
-
"ModifyHsmRequest$SubnetId": "<p>The new identifier of the subnet that the HSM is in.</p>"
|
445
|
-
}
|
446
|
-
},
|
447
|
-
"SubscriptionType": {
|
448
|
-
"base": null,
|
449
|
-
"refs": {
|
450
|
-
"CreateHsmRequest$SubscriptionType": "<p>The subscription type.</p>",
|
451
|
-
"DescribeHsmResponse$SubscriptionType": "<p>The subscription type.</p>"
|
452
|
-
}
|
453
|
-
},
|
454
|
-
"Timestamp": {
|
455
|
-
"base": null,
|
456
|
-
"refs": {
|
457
|
-
"DescribeHapgResponse$LastModifiedTimestamp": "<p>The date and time the high-availability partition group was last modified.</p>",
|
458
|
-
"DescribeHsmResponse$SubscriptionStartDate": "<p>The subscription start date.</p>",
|
459
|
-
"DescribeHsmResponse$SubscriptionEndDate": "<p>The subscription end date.</p>",
|
460
|
-
"DescribeHsmResponse$SshKeyLastUpdated": "<p>The date and time the SSH key was last updated.</p>",
|
461
|
-
"DescribeHsmResponse$ServerCertLastUpdated": "<p>The date and time the server certificate was last updated.</p>",
|
462
|
-
"DescribeLunaClientResponse$LastModifiedTimestamp": "<p>The date and time the client was last modified.</p>"
|
463
|
-
}
|
464
|
-
},
|
465
|
-
"VpcId": {
|
466
|
-
"base": null,
|
467
|
-
"refs": {
|
468
|
-
"DescribeHsmResponse$VpcId": "<p>The identifier of the VPC that the HSM is in.</p>"
|
469
|
-
}
|
470
|
-
}
|
471
|
-
}
|
472
|
-
}
|