@depup/aws-sdk__client-secrets-manager 3.1010.0-depup.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (159) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +39 -0
  3. package/changes.json +42 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  5. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  6. package/dist-cjs/endpoint/ruleset.js +7 -0
  7. package/dist-cjs/index.js +511 -0
  8. package/dist-cjs/models/SecretsManagerServiceException.js +12 -0
  9. package/dist-cjs/models/errors.js +184 -0
  10. package/dist-cjs/runtimeConfig.browser.js +38 -0
  11. package/dist-cjs/runtimeConfig.js +53 -0
  12. package/dist-cjs/runtimeConfig.native.js +15 -0
  13. package/dist-cjs/runtimeConfig.shared.js +43 -0
  14. package/dist-cjs/schemas/schemas_0.js +665 -0
  15. package/dist-es/SecretsManager.js +61 -0
  16. package/dist-es/SecretsManagerClient.js +50 -0
  17. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  18. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  19. package/dist-es/commands/BatchGetSecretValueCommand.js +16 -0
  20. package/dist-es/commands/CancelRotateSecretCommand.js +16 -0
  21. package/dist-es/commands/CreateSecretCommand.js +16 -0
  22. package/dist-es/commands/DeleteResourcePolicyCommand.js +16 -0
  23. package/dist-es/commands/DeleteSecretCommand.js +16 -0
  24. package/dist-es/commands/DescribeSecretCommand.js +16 -0
  25. package/dist-es/commands/GetRandomPasswordCommand.js +16 -0
  26. package/dist-es/commands/GetResourcePolicyCommand.js +16 -0
  27. package/dist-es/commands/GetSecretValueCommand.js +16 -0
  28. package/dist-es/commands/ListSecretVersionIdsCommand.js +16 -0
  29. package/dist-es/commands/ListSecretsCommand.js +16 -0
  30. package/dist-es/commands/PutResourcePolicyCommand.js +16 -0
  31. package/dist-es/commands/PutSecretValueCommand.js +16 -0
  32. package/dist-es/commands/RemoveRegionsFromReplicationCommand.js +16 -0
  33. package/dist-es/commands/ReplicateSecretToRegionsCommand.js +16 -0
  34. package/dist-es/commands/RestoreSecretCommand.js +16 -0
  35. package/dist-es/commands/RotateSecretCommand.js +16 -0
  36. package/dist-es/commands/StopReplicationToReplicaCommand.js +16 -0
  37. package/dist-es/commands/TagResourceCommand.js +16 -0
  38. package/dist-es/commands/UntagResourceCommand.js +16 -0
  39. package/dist-es/commands/UpdateSecretCommand.js +16 -0
  40. package/dist-es/commands/UpdateSecretVersionStageCommand.js +16 -0
  41. package/dist-es/commands/ValidateResourcePolicyCommand.js +16 -0
  42. package/dist-es/commands/index.js +23 -0
  43. package/dist-es/endpoint/EndpointParameters.js +13 -0
  44. package/dist-es/endpoint/endpointResolver.js +14 -0
  45. package/dist-es/endpoint/ruleset.js +4 -0
  46. package/dist-es/extensionConfiguration.js +1 -0
  47. package/dist-es/index.js +9 -0
  48. package/dist-es/models/SecretsManagerServiceException.js +8 -0
  49. package/dist-es/models/enums.js +24 -0
  50. package/dist-es/models/errors.js +169 -0
  51. package/dist-es/models/models_0.js +1 -0
  52. package/dist-es/pagination/BatchGetSecretValuePaginator.js +4 -0
  53. package/dist-es/pagination/Interfaces.js +1 -0
  54. package/dist-es/pagination/ListSecretVersionIdsPaginator.js +4 -0
  55. package/dist-es/pagination/ListSecretsPaginator.js +4 -0
  56. package/dist-es/pagination/index.js +4 -0
  57. package/dist-es/runtimeConfig.browser.js +33 -0
  58. package/dist-es/runtimeConfig.js +48 -0
  59. package/dist-es/runtimeConfig.native.js +11 -0
  60. package/dist-es/runtimeConfig.shared.js +39 -0
  61. package/dist-es/runtimeExtensions.js +9 -0
  62. package/dist-es/schemas/schemas_0.js +661 -0
  63. package/dist-types/SecretsManager.d.ts +220 -0
  64. package/dist-types/SecretsManagerClient.d.ts +235 -0
  65. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  66. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  67. package/dist-types/commands/BatchGetSecretValueCommand.d.ts +210 -0
  68. package/dist-types/commands/CancelRotateSecretCommand.d.ts +135 -0
  69. package/dist-types/commands/CreateSecretCommand.d.ts +218 -0
  70. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +126 -0
  71. package/dist-types/commands/DeleteSecretCommand.d.ts +135 -0
  72. package/dist-types/commands/DescribeSecretCommand.d.ts +137 -0
  73. package/dist-types/commands/GetRandomPasswordCommand.d.ts +135 -0
  74. package/dist-types/commands/GetResourcePolicyCommand.d.ts +138 -0
  75. package/dist-types/commands/GetSecretValueCommand.d.ts +157 -0
  76. package/dist-types/commands/ListSecretVersionIdsCommand.d.ts +151 -0
  77. package/dist-types/commands/ListSecretsCommand.d.ts +208 -0
  78. package/dist-types/commands/PutResourcePolicyCommand.d.ts +147 -0
  79. package/dist-types/commands/PutSecretValueCommand.d.ts +183 -0
  80. package/dist-types/commands/RemoveRegionsFromReplicationCommand.d.ts +122 -0
  81. package/dist-types/commands/ReplicateSecretToRegionsCommand.d.ts +157 -0
  82. package/dist-types/commands/RestoreSecretCommand.d.ts +126 -0
  83. package/dist-types/commands/RotateSecretCommand.d.ts +180 -0
  84. package/dist-types/commands/StopReplicationToReplicaCommand.d.ts +111 -0
  85. package/dist-types/commands/TagResourceCommand.d.ts +145 -0
  86. package/dist-types/commands/UntagResourceCommand.d.ts +134 -0
  87. package/dist-types/commands/UpdateSecretCommand.d.ts +221 -0
  88. package/dist-types/commands/UpdateSecretVersionStageCommand.d.ts +187 -0
  89. package/dist-types/commands/ValidateResourcePolicyCommand.d.ts +161 -0
  90. package/dist-types/commands/index.d.ts +23 -0
  91. package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
  92. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  93. package/dist-types/endpoint/ruleset.d.ts +2 -0
  94. package/dist-types/extensionConfiguration.d.ts +9 -0
  95. package/dist-types/index.d.ts +42 -0
  96. package/dist-types/models/SecretsManagerServiceException.d.ts +14 -0
  97. package/dist-types/models/enums.d.ts +56 -0
  98. package/dist-types/models/errors.d.ts +175 -0
  99. package/dist-types/models/models_0.d.ts +1957 -0
  100. package/dist-types/pagination/BatchGetSecretValuePaginator.d.ts +7 -0
  101. package/dist-types/pagination/Interfaces.d.ts +8 -0
  102. package/dist-types/pagination/ListSecretVersionIdsPaginator.d.ts +7 -0
  103. package/dist-types/pagination/ListSecretsPaginator.d.ts +7 -0
  104. package/dist-types/pagination/index.d.ts +4 -0
  105. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  106. package/dist-types/runtimeConfig.d.ts +55 -0
  107. package/dist-types/runtimeConfig.native.d.ts +54 -0
  108. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  109. package/dist-types/runtimeExtensions.d.ts +17 -0
  110. package/dist-types/schemas/schemas_0.d.ts +99 -0
  111. package/dist-types/ts3.4/SecretsManager.d.ts +426 -0
  112. package/dist-types/ts3.4/SecretsManagerClient.d.ts +258 -0
  113. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  114. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  115. package/dist-types/ts3.4/commands/BatchGetSecretValueCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/CancelRotateSecretCommand.d.ts +51 -0
  117. package/dist-types/ts3.4/commands/CreateSecretCommand.d.ts +47 -0
  118. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
  119. package/dist-types/ts3.4/commands/DeleteSecretCommand.d.ts +47 -0
  120. package/dist-types/ts3.4/commands/DescribeSecretCommand.d.ts +50 -0
  121. package/dist-types/ts3.4/commands/GetRandomPasswordCommand.d.ts +51 -0
  122. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
  123. package/dist-types/ts3.4/commands/GetSecretValueCommand.d.ts +50 -0
  124. package/dist-types/ts3.4/commands/ListSecretVersionIdsCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/ListSecretsCommand.d.ts +47 -0
  126. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/PutSecretValueCommand.d.ts +50 -0
  128. package/dist-types/ts3.4/commands/RemoveRegionsFromReplicationCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/ReplicateSecretToRegionsCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/RestoreSecretCommand.d.ts +50 -0
  131. package/dist-types/ts3.4/commands/RotateSecretCommand.d.ts +47 -0
  132. package/dist-types/ts3.4/commands/StopReplicationToReplicaCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
  134. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
  135. package/dist-types/ts3.4/commands/UpdateSecretCommand.d.ts +47 -0
  136. package/dist-types/ts3.4/commands/UpdateSecretVersionStageCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/ValidateResourcePolicyCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/index.d.ts +23 -0
  139. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  140. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  141. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  142. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  143. package/dist-types/ts3.4/index.d.ts +12 -0
  144. package/dist-types/ts3.4/models/SecretsManagerServiceException.d.ts +9 -0
  145. package/dist-types/ts3.4/models/enums.d.ts +29 -0
  146. package/dist-types/ts3.4/models/errors.d.ts +97 -0
  147. package/dist-types/ts3.4/models/models_0.d.ts +333 -0
  148. package/dist-types/ts3.4/pagination/BatchGetSecretValuePaginator.d.ts +11 -0
  149. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  150. package/dist-types/ts3.4/pagination/ListSecretVersionIdsPaginator.d.ts +11 -0
  151. package/dist-types/ts3.4/pagination/ListSecretsPaginator.d.ts +11 -0
  152. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  153. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +100 -0
  154. package/dist-types/ts3.4/runtimeConfig.d.ts +95 -0
  155. package/dist-types/ts3.4/runtimeConfig.native.d.ts +104 -0
  156. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  157. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  158. package/dist-types/ts3.4/schemas/schemas_0.d.ts +98 -0
  159. package/package.json +159 -0
@@ -0,0 +1,665 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RestoreSecretRequest$ = exports.ReplicationStatusType$ = exports.ReplicateSecretToRegionsResponse$ = exports.ReplicateSecretToRegionsRequest$ = exports.ReplicaRegionType$ = exports.RemoveRegionsFromReplicationResponse$ = exports.RemoveRegionsFromReplicationRequest$ = exports.PutSecretValueResponse$ = exports.PutSecretValueRequest$ = exports.PutResourcePolicyResponse$ = exports.PutResourcePolicyRequest$ = exports.ListSecretVersionIdsResponse$ = exports.ListSecretVersionIdsRequest$ = exports.ListSecretsResponse$ = exports.ListSecretsRequest$ = exports.GetSecretValueResponse$ = exports.GetSecretValueRequest$ = exports.GetResourcePolicyResponse$ = exports.GetResourcePolicyRequest$ = exports.GetRandomPasswordResponse$ = exports.GetRandomPasswordRequest$ = exports.Filter$ = exports.ExternalSecretRotationMetadataItem$ = exports.DescribeSecretResponse$ = exports.DescribeSecretRequest$ = exports.DeleteSecretResponse$ = exports.DeleteSecretRequest$ = exports.DeleteResourcePolicyResponse$ = exports.DeleteResourcePolicyRequest$ = exports.CreateSecretResponse$ = exports.CreateSecretRequest$ = exports.CancelRotateSecretResponse$ = exports.CancelRotateSecretRequest$ = exports.BatchGetSecretValueResponse$ = exports.BatchGetSecretValueRequest$ = exports.APIErrorType$ = exports.errorTypeRegistries = exports.ResourceNotFoundException$ = exports.ResourceExistsException$ = exports.PublicPolicyException$ = exports.PreconditionNotMetException$ = exports.MalformedPolicyDocumentException$ = exports.LimitExceededException$ = exports.InvalidRequestException$ = exports.InvalidParameterException$ = exports.InvalidNextTokenException$ = exports.InternalServiceError$ = exports.EncryptionFailure$ = exports.DecryptionFailure$ = exports.SecretsManagerServiceException$ = void 0;
4
+ exports.ValidateResourcePolicy$ = exports.UpdateSecretVersionStage$ = exports.UpdateSecret$ = exports.UntagResource$ = exports.TagResource$ = exports.StopReplicationToReplica$ = exports.RotateSecret$ = exports.RestoreSecret$ = exports.ReplicateSecretToRegions$ = exports.RemoveRegionsFromReplication$ = exports.PutSecretValue$ = exports.PutResourcePolicy$ = exports.ListSecretVersionIds$ = exports.ListSecrets$ = exports.GetSecretValue$ = exports.GetResourcePolicy$ = exports.GetRandomPassword$ = exports.DescribeSecret$ = exports.DeleteSecret$ = exports.DeleteResourcePolicy$ = exports.CreateSecret$ = exports.CancelRotateSecret$ = exports.BatchGetSecretValue$ = exports.ValidationErrorsEntry$ = exports.ValidateResourcePolicyResponse$ = exports.ValidateResourcePolicyRequest$ = exports.UpdateSecretVersionStageResponse$ = exports.UpdateSecretVersionStageRequest$ = exports.UpdateSecretResponse$ = exports.UpdateSecretRequest$ = exports.UntagResourceRequest$ = exports.TagResourceRequest$ = exports.Tag$ = exports.StopReplicationToReplicaResponse$ = exports.StopReplicationToReplicaRequest$ = exports.SecretVersionsListEntry$ = exports.SecretValueEntry$ = exports.SecretListEntry$ = exports.RotationRulesType$ = exports.RotateSecretResponse$ = exports.RotateSecretRequest$ = exports.RestoreSecretResponse$ = void 0;
5
+ const _AAD = "AutomaticallyAfterDays";
6
+ const _APIELT = "APIErrorListType";
7
+ const _APIET = "APIErrorType";
8
+ const _ARN = "ARN";
9
+ const _ARR = "AddReplicaRegions";
10
+ const _ARRLT = "AddReplicaRegionListType";
11
+ const _BGSV = "BatchGetSecretValue";
12
+ const _BGSVR = "BatchGetSecretValueRequest";
13
+ const _BGSVRa = "BatchGetSecretValueResponse";
14
+ const _BPP = "BlockPublicPolicy";
15
+ const _CD = "CreatedDate";
16
+ const _CN = "CheckName";
17
+ const _CRS = "CancelRotateSecret";
18
+ const _CRSR = "CancelRotateSecretRequest";
19
+ const _CRSRa = "CancelRotateSecretResponse";
20
+ const _CRT = "ClientRequestToken";
21
+ const _CS = "CreateSecret";
22
+ const _CSR = "CreateSecretRequest";
23
+ const _CSRr = "CreateSecretResponse";
24
+ const _D = "Description";
25
+ const _DD = "DeletionDate";
26
+ const _DDe = "DeletedDate";
27
+ const _DF = "DecryptionFailure";
28
+ const _DRP = "DeleteResourcePolicy";
29
+ const _DRPR = "DeleteResourcePolicyRequest";
30
+ const _DRPRe = "DeleteResourcePolicyResponse";
31
+ const _DS = "DeleteSecret";
32
+ const _DSR = "DeleteSecretRequest";
33
+ const _DSRe = "DeleteSecretResponse";
34
+ const _DSRes = "DescribeSecretRequest";
35
+ const _DSResc = "DescribeSecretResponse";
36
+ const _DSe = "DescribeSecret";
37
+ const _Du = "Duration";
38
+ const _E = "Errors";
39
+ const _EC = "ErrorCode";
40
+ const _ECx = "ExcludeCharacters";
41
+ const _EF = "EncryptionFailure";
42
+ const _EL = "ExcludeLowercase";
43
+ const _EM = "ErrorMessage";
44
+ const _EN = "ExcludeNumbers";
45
+ const _EP = "ExcludePunctuation";
46
+ const _ESRM = "ExternalSecretRotationMetadata";
47
+ const _ESRMI = "ExternalSecretRotationMetadataItem";
48
+ const _ESRMT = "ExternalSecretRotationMetadataType";
49
+ const _ESRRA = "ExternalSecretRotationRoleArn";
50
+ const _EU = "ExcludeUppercase";
51
+ const _F = "Filters";
52
+ const _FDWR = "ForceDeleteWithoutRecovery";
53
+ const _FLT = "FiltersListType";
54
+ const _FORS = "ForceOverwriteReplicaSecret";
55
+ const _Fi = "Filter";
56
+ const _GRP = "GetRandomPassword";
57
+ const _GRPR = "GetRandomPasswordRequest";
58
+ const _GRPRe = "GetRandomPasswordResponse";
59
+ const _GRPRet = "GetResourcePolicyRequest";
60
+ const _GRPRete = "GetResourcePolicyResponse";
61
+ const _GRPe = "GetResourcePolicy";
62
+ const _GSV = "GetSecretValue";
63
+ const _GSVR = "GetSecretValueRequest";
64
+ const _GSVRe = "GetSecretValueResponse";
65
+ const _ID = "IncludeDeprecated";
66
+ const _INTE = "InvalidNextTokenException";
67
+ const _IPD = "IncludePlannedDeletion";
68
+ const _IPE = "InvalidParameterException";
69
+ const _IRE = "InvalidRequestException";
70
+ const _IS = "IncludeSpace";
71
+ const _ISE = "InternalServiceError";
72
+ const _K = "Key";
73
+ const _KKI = "KmsKeyId";
74
+ const _KKIm = "KmsKeyIds";
75
+ const _LAD = "LastAccessedDate";
76
+ const _LCD = "LastChangedDate";
77
+ const _LEE = "LimitExceededException";
78
+ const _LRD = "LastRotatedDate";
79
+ const _LS = "ListSecrets";
80
+ const _LSR = "ListSecretsRequest";
81
+ const _LSRi = "ListSecretsResponse";
82
+ const _LSVI = "ListSecretVersionIds";
83
+ const _LSVIR = "ListSecretVersionIdsRequest";
84
+ const _LSVIRi = "ListSecretVersionIdsResponse";
85
+ const _M = "Message";
86
+ const _MPDE = "MalformedPolicyDocumentException";
87
+ const _MR = "MaxResults";
88
+ const _MTVI = "MoveToVersionId";
89
+ const _N = "Name";
90
+ const _NRD = "NextRotationDate";
91
+ const _NT = "NextToken";
92
+ const _OS = "OwningService";
93
+ const _PL = "PasswordLength";
94
+ const _PNME = "PreconditionNotMetException";
95
+ const _PPE = "PublicPolicyException";
96
+ const _PR = "PrimaryRegion";
97
+ const _PRP = "PutResourcePolicy";
98
+ const _PRPR = "PutResourcePolicyRequest";
99
+ const _PRPRu = "PutResourcePolicyResponse";
100
+ const _PSV = "PutSecretValue";
101
+ const _PSVR = "PutSecretValueRequest";
102
+ const _PSVRu = "PutSecretValueResponse";
103
+ const _PVP = "PolicyValidationPassed";
104
+ const _R = "Region";
105
+ const _RE = "RotationEnabled";
106
+ const _REE = "ResourceExistsException";
107
+ const _REIT = "RequireEachIncludedType";
108
+ const _RFVI = "RemoveFromVersionId";
109
+ const _RI = "RotateImmediately";
110
+ const _RLARN = "RotationLambdaARN";
111
+ const _RNFE = "ResourceNotFoundException";
112
+ const _RP = "RandomPassword";
113
+ const _RPT = "RandomPasswordType";
114
+ const _RPe = "ResourcePolicy";
115
+ const _RR = "RotationRules";
116
+ const _RRFR = "RemoveRegionsFromReplication";
117
+ const _RRFRR = "RemoveRegionsFromReplicationRequest";
118
+ const _RRFRRe = "RemoveRegionsFromReplicationResponse";
119
+ const _RRR = "RemoveReplicaRegions";
120
+ const _RRT = "ReplicaRegionType";
121
+ const _RRTo = "RotationRulesType";
122
+ const _RS = "ReplicationStatus";
123
+ const _RSLT = "ReplicationStatusListType";
124
+ const _RSR = "RestoreSecretRequest";
125
+ const _RSRe = "RestoreSecretResponse";
126
+ const _RSRo = "RotateSecretRequest";
127
+ const _RSRot = "RotateSecretResponse";
128
+ const _RST = "ReplicationStatusType";
129
+ const _RSTR = "ReplicateSecretToRegions";
130
+ const _RSTRR = "ReplicateSecretToRegionsRequest";
131
+ const _RSTRRe = "ReplicateSecretToRegionsResponse";
132
+ const _RSe = "RestoreSecret";
133
+ const _RSo = "RotateSecret";
134
+ const _RT = "RotationToken";
135
+ const _RTT = "RotationTokenType";
136
+ const _RWID = "RecoveryWindowInDays";
137
+ const _S = "Status";
138
+ const _SB = "SecretBinary";
139
+ const _SBT = "SecretBinaryType";
140
+ const _SBo = "SortBy";
141
+ const _SE = "ScheduleExpression";
142
+ const _SI = "SecretId";
143
+ const _SIL = "SecretIdList";
144
+ const _SL = "SecretList";
145
+ const _SLE = "SecretListEntry";
146
+ const _SLT = "SecretListType";
147
+ const _SM = "StatusMessage";
148
+ const _SO = "SortOrder";
149
+ const _SRTR = "StopReplicationToReplica";
150
+ const _SRTRR = "StopReplicationToReplicaRequest";
151
+ const _SRTRRt = "StopReplicationToReplicaResponse";
152
+ const _SS = "SecretString";
153
+ const _SST = "SecretStringType";
154
+ const _SV = "SecretValues";
155
+ const _SVE = "SecretValueEntry";
156
+ const _SVLE = "SecretVersionsListEntry";
157
+ const _SVLT = "SecretVersionsListType";
158
+ const _SVT = "SecretValuesType";
159
+ const _SVTS = "SecretVersionsToStages";
160
+ const _SVTSMT = "SecretVersionsToStagesMapType";
161
+ const _T = "Tags";
162
+ const _TK = "TagKeys";
163
+ const _TLT = "TagListType";
164
+ const _TR = "TagResource";
165
+ const _TRR = "TagResourceRequest";
166
+ const _Ta = "Tag";
167
+ const _Ty = "Type";
168
+ const _UR = "UntagResource";
169
+ const _URR = "UntagResourceRequest";
170
+ const _US = "UpdateSecret";
171
+ const _USR = "UpdateSecretRequest";
172
+ const _USRp = "UpdateSecretResponse";
173
+ const _USVS = "UpdateSecretVersionStage";
174
+ const _USVSR = "UpdateSecretVersionStageRequest";
175
+ const _USVSRp = "UpdateSecretVersionStageResponse";
176
+ const _V = "Value";
177
+ const _VE = "ValidationErrors";
178
+ const _VEE = "ValidationErrorsEntry";
179
+ const _VET = "ValidationErrorsType";
180
+ const _VI = "VersionId";
181
+ const _VITS = "VersionIdsToStages";
182
+ const _VRP = "ValidateResourcePolicy";
183
+ const _VRPR = "ValidateResourcePolicyRequest";
184
+ const _VRPRa = "ValidateResourcePolicyResponse";
185
+ const _VS = "VersionStage";
186
+ const _VSe = "VersionStages";
187
+ const _Va = "Values";
188
+ const _Ve = "Versions";
189
+ const _c = "client";
190
+ const _e = "error";
191
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.secretsmanager";
192
+ const _se = "server";
193
+ const n0 = "com.amazonaws.secretsmanager";
194
+ const schema_1 = require("@smithy/core/schema");
195
+ const errors_1 = require("../models/errors");
196
+ const SecretsManagerServiceException_1 = require("../models/SecretsManagerServiceException");
197
+ const _s_registry = schema_1.TypeRegistry.for(_s);
198
+ exports.SecretsManagerServiceException$ = [-3, _s, "SecretsManagerServiceException", 0, [], []];
199
+ _s_registry.registerError(exports.SecretsManagerServiceException$, SecretsManagerServiceException_1.SecretsManagerServiceException);
200
+ const n0_registry = schema_1.TypeRegistry.for(n0);
201
+ exports.DecryptionFailure$ = [-3, n0, _DF,
202
+ { [_e]: _c },
203
+ [_M],
204
+ [0]
205
+ ];
206
+ n0_registry.registerError(exports.DecryptionFailure$, errors_1.DecryptionFailure);
207
+ exports.EncryptionFailure$ = [-3, n0, _EF,
208
+ { [_e]: _c },
209
+ [_M],
210
+ [0]
211
+ ];
212
+ n0_registry.registerError(exports.EncryptionFailure$, errors_1.EncryptionFailure);
213
+ exports.InternalServiceError$ = [-3, n0, _ISE,
214
+ { [_e]: _se },
215
+ [_M],
216
+ [0]
217
+ ];
218
+ n0_registry.registerError(exports.InternalServiceError$, errors_1.InternalServiceError);
219
+ exports.InvalidNextTokenException$ = [-3, n0, _INTE,
220
+ { [_e]: _c },
221
+ [_M],
222
+ [0]
223
+ ];
224
+ n0_registry.registerError(exports.InvalidNextTokenException$, errors_1.InvalidNextTokenException);
225
+ exports.InvalidParameterException$ = [-3, n0, _IPE,
226
+ { [_e]: _c },
227
+ [_M],
228
+ [0]
229
+ ];
230
+ n0_registry.registerError(exports.InvalidParameterException$, errors_1.InvalidParameterException);
231
+ exports.InvalidRequestException$ = [-3, n0, _IRE,
232
+ { [_e]: _c },
233
+ [_M],
234
+ [0]
235
+ ];
236
+ n0_registry.registerError(exports.InvalidRequestException$, errors_1.InvalidRequestException);
237
+ exports.LimitExceededException$ = [-3, n0, _LEE,
238
+ { [_e]: _c },
239
+ [_M],
240
+ [0]
241
+ ];
242
+ n0_registry.registerError(exports.LimitExceededException$, errors_1.LimitExceededException);
243
+ exports.MalformedPolicyDocumentException$ = [-3, n0, _MPDE,
244
+ { [_e]: _c },
245
+ [_M],
246
+ [0]
247
+ ];
248
+ n0_registry.registerError(exports.MalformedPolicyDocumentException$, errors_1.MalformedPolicyDocumentException);
249
+ exports.PreconditionNotMetException$ = [-3, n0, _PNME,
250
+ { [_e]: _c },
251
+ [_M],
252
+ [0]
253
+ ];
254
+ n0_registry.registerError(exports.PreconditionNotMetException$, errors_1.PreconditionNotMetException);
255
+ exports.PublicPolicyException$ = [-3, n0, _PPE,
256
+ { [_e]: _c },
257
+ [_M],
258
+ [0]
259
+ ];
260
+ n0_registry.registerError(exports.PublicPolicyException$, errors_1.PublicPolicyException);
261
+ exports.ResourceExistsException$ = [-3, n0, _REE,
262
+ { [_e]: _c },
263
+ [_M],
264
+ [0]
265
+ ];
266
+ n0_registry.registerError(exports.ResourceExistsException$, errors_1.ResourceExistsException);
267
+ exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
268
+ { [_e]: _c },
269
+ [_M],
270
+ [0]
271
+ ];
272
+ n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
273
+ exports.errorTypeRegistries = [
274
+ _s_registry,
275
+ n0_registry,
276
+ ];
277
+ var RandomPasswordType = [0, n0, _RPT, 8, 0];
278
+ var RotationTokenType = [0, n0, _RTT, 8, 0];
279
+ var SecretBinaryType = [0, n0, _SBT, 8, 21];
280
+ var SecretStringType = [0, n0, _SST, 8, 0];
281
+ exports.APIErrorType$ = [3, n0, _APIET,
282
+ 0,
283
+ [_SI, _EC, _M],
284
+ [0, 0, 0]
285
+ ];
286
+ exports.BatchGetSecretValueRequest$ = [3, n0, _BGSVR,
287
+ 0,
288
+ [_SIL, _F, _MR, _NT],
289
+ [64 | 0, () => FiltersListType, 1, 0]
290
+ ];
291
+ exports.BatchGetSecretValueResponse$ = [3, n0, _BGSVRa,
292
+ 0,
293
+ [_SV, _NT, _E],
294
+ [[() => SecretValuesType, 0], 0, () => APIErrorListType]
295
+ ];
296
+ exports.CancelRotateSecretRequest$ = [3, n0, _CRSR,
297
+ 0,
298
+ [_SI],
299
+ [0], 1
300
+ ];
301
+ exports.CancelRotateSecretResponse$ = [3, n0, _CRSRa,
302
+ 0,
303
+ [_ARN, _N, _VI],
304
+ [0, 0, 0]
305
+ ];
306
+ exports.CreateSecretRequest$ = [3, n0, _CSR,
307
+ 0,
308
+ [_N, _CRT, _D, _KKI, _SB, _SS, _T, _ARR, _FORS, _Ty],
309
+ [0, [0, 4], 0, 0, [() => SecretBinaryType, 0], [() => SecretStringType, 0], () => TagListType, () => AddReplicaRegionListType, 2, 0], 1
310
+ ];
311
+ exports.CreateSecretResponse$ = [3, n0, _CSRr,
312
+ 0,
313
+ [_ARN, _N, _VI, _RS],
314
+ [0, 0, 0, () => ReplicationStatusListType]
315
+ ];
316
+ exports.DeleteResourcePolicyRequest$ = [3, n0, _DRPR,
317
+ 0,
318
+ [_SI],
319
+ [0], 1
320
+ ];
321
+ exports.DeleteResourcePolicyResponse$ = [3, n0, _DRPRe,
322
+ 0,
323
+ [_ARN, _N],
324
+ [0, 0]
325
+ ];
326
+ exports.DeleteSecretRequest$ = [3, n0, _DSR,
327
+ 0,
328
+ [_SI, _RWID, _FDWR],
329
+ [0, 1, 2], 1
330
+ ];
331
+ exports.DeleteSecretResponse$ = [3, n0, _DSRe,
332
+ 0,
333
+ [_ARN, _N, _DD],
334
+ [0, 0, 4]
335
+ ];
336
+ exports.DescribeSecretRequest$ = [3, n0, _DSRes,
337
+ 0,
338
+ [_SI],
339
+ [0], 1
340
+ ];
341
+ exports.DescribeSecretResponse$ = [3, n0, _DSResc,
342
+ 0,
343
+ [_ARN, _N, _Ty, _D, _KKI, _RE, _RLARN, _RR, _ESRM, _ESRRA, _LRD, _LCD, _LAD, _DDe, _NRD, _T, _VITS, _OS, _CD, _PR, _RS],
344
+ [0, 0, 0, 0, 0, 2, 0, () => exports.RotationRulesType$, () => ExternalSecretRotationMetadataType, 0, 4, 4, 4, 4, 4, () => TagListType, [2, n0, _SVTSMT, 0, 0, 64 | 0], 0, 4, 0, () => ReplicationStatusListType]
345
+ ];
346
+ exports.ExternalSecretRotationMetadataItem$ = [3, n0, _ESRMI,
347
+ 0,
348
+ [_K, _V],
349
+ [0, 0]
350
+ ];
351
+ exports.Filter$ = [3, n0, _Fi,
352
+ 0,
353
+ [_K, _Va],
354
+ [0, 64 | 0]
355
+ ];
356
+ exports.GetRandomPasswordRequest$ = [3, n0, _GRPR,
357
+ 0,
358
+ [_PL, _ECx, _EN, _EP, _EU, _EL, _IS, _REIT],
359
+ [1, 0, 2, 2, 2, 2, 2, 2]
360
+ ];
361
+ exports.GetRandomPasswordResponse$ = [3, n0, _GRPRe,
362
+ 0,
363
+ [_RP],
364
+ [[() => RandomPasswordType, 0]]
365
+ ];
366
+ exports.GetResourcePolicyRequest$ = [3, n0, _GRPRet,
367
+ 0,
368
+ [_SI],
369
+ [0], 1
370
+ ];
371
+ exports.GetResourcePolicyResponse$ = [3, n0, _GRPRete,
372
+ 0,
373
+ [_ARN, _N, _RPe],
374
+ [0, 0, 0]
375
+ ];
376
+ exports.GetSecretValueRequest$ = [3, n0, _GSVR,
377
+ 0,
378
+ [_SI, _VI, _VS],
379
+ [0, 0, 0], 1
380
+ ];
381
+ exports.GetSecretValueResponse$ = [3, n0, _GSVRe,
382
+ 0,
383
+ [_ARN, _N, _VI, _SB, _SS, _VSe, _CD],
384
+ [0, 0, 0, [() => SecretBinaryType, 0], [() => SecretStringType, 0], 64 | 0, 4]
385
+ ];
386
+ exports.ListSecretsRequest$ = [3, n0, _LSR,
387
+ 0,
388
+ [_IPD, _MR, _NT, _F, _SO, _SBo],
389
+ [2, 1, 0, () => FiltersListType, 0, 0]
390
+ ];
391
+ exports.ListSecretsResponse$ = [3, n0, _LSRi,
392
+ 0,
393
+ [_SL, _NT],
394
+ [() => SecretListType, 0]
395
+ ];
396
+ exports.ListSecretVersionIdsRequest$ = [3, n0, _LSVIR,
397
+ 0,
398
+ [_SI, _MR, _NT, _ID],
399
+ [0, 1, 0, 2], 1
400
+ ];
401
+ exports.ListSecretVersionIdsResponse$ = [3, n0, _LSVIRi,
402
+ 0,
403
+ [_Ve, _NT, _ARN, _N],
404
+ [() => SecretVersionsListType, 0, 0, 0]
405
+ ];
406
+ exports.PutResourcePolicyRequest$ = [3, n0, _PRPR,
407
+ 0,
408
+ [_SI, _RPe, _BPP],
409
+ [0, 0, 2], 2
410
+ ];
411
+ exports.PutResourcePolicyResponse$ = [3, n0, _PRPRu,
412
+ 0,
413
+ [_ARN, _N],
414
+ [0, 0]
415
+ ];
416
+ exports.PutSecretValueRequest$ = [3, n0, _PSVR,
417
+ 0,
418
+ [_SI, _CRT, _SB, _SS, _VSe, _RT],
419
+ [0, [0, 4], [() => SecretBinaryType, 0], [() => SecretStringType, 0], 64 | 0, [() => RotationTokenType, 0]], 1
420
+ ];
421
+ exports.PutSecretValueResponse$ = [3, n0, _PSVRu,
422
+ 0,
423
+ [_ARN, _N, _VI, _VSe],
424
+ [0, 0, 0, 64 | 0]
425
+ ];
426
+ exports.RemoveRegionsFromReplicationRequest$ = [3, n0, _RRFRR,
427
+ 0,
428
+ [_SI, _RRR],
429
+ [0, 64 | 0], 2
430
+ ];
431
+ exports.RemoveRegionsFromReplicationResponse$ = [3, n0, _RRFRRe,
432
+ 0,
433
+ [_ARN, _RS],
434
+ [0, () => ReplicationStatusListType]
435
+ ];
436
+ exports.ReplicaRegionType$ = [3, n0, _RRT,
437
+ 0,
438
+ [_R, _KKI],
439
+ [0, 0]
440
+ ];
441
+ exports.ReplicateSecretToRegionsRequest$ = [3, n0, _RSTRR,
442
+ 0,
443
+ [_SI, _ARR, _FORS],
444
+ [0, () => AddReplicaRegionListType, 2], 2
445
+ ];
446
+ exports.ReplicateSecretToRegionsResponse$ = [3, n0, _RSTRRe,
447
+ 0,
448
+ [_ARN, _RS],
449
+ [0, () => ReplicationStatusListType]
450
+ ];
451
+ exports.ReplicationStatusType$ = [3, n0, _RST,
452
+ 0,
453
+ [_R, _KKI, _S, _SM, _LAD],
454
+ [0, 0, 0, 0, 4]
455
+ ];
456
+ exports.RestoreSecretRequest$ = [3, n0, _RSR,
457
+ 0,
458
+ [_SI],
459
+ [0], 1
460
+ ];
461
+ exports.RestoreSecretResponse$ = [3, n0, _RSRe,
462
+ 0,
463
+ [_ARN, _N],
464
+ [0, 0]
465
+ ];
466
+ exports.RotateSecretRequest$ = [3, n0, _RSRo,
467
+ 0,
468
+ [_SI, _CRT, _RLARN, _RR, _ESRM, _ESRRA, _RI],
469
+ [0, [0, 4], 0, () => exports.RotationRulesType$, () => ExternalSecretRotationMetadataType, 0, 2], 1
470
+ ];
471
+ exports.RotateSecretResponse$ = [3, n0, _RSRot,
472
+ 0,
473
+ [_ARN, _N, _VI],
474
+ [0, 0, 0]
475
+ ];
476
+ exports.RotationRulesType$ = [3, n0, _RRTo,
477
+ 0,
478
+ [_AAD, _Du, _SE],
479
+ [1, 0, 0]
480
+ ];
481
+ exports.SecretListEntry$ = [3, n0, _SLE,
482
+ 0,
483
+ [_ARN, _N, _Ty, _D, _KKI, _RE, _RLARN, _RR, _ESRM, _ESRRA, _LRD, _LCD, _LAD, _DDe, _NRD, _T, _SVTS, _OS, _CD, _PR],
484
+ [0, 0, 0, 0, 0, 2, 0, () => exports.RotationRulesType$, () => ExternalSecretRotationMetadataType, 0, 4, 4, 4, 4, 4, () => TagListType, [2, n0, _SVTSMT, 0, 0, 64 | 0], 0, 4, 0]
485
+ ];
486
+ exports.SecretValueEntry$ = [3, n0, _SVE,
487
+ 0,
488
+ [_ARN, _N, _VI, _SB, _SS, _VSe, _CD],
489
+ [0, 0, 0, [() => SecretBinaryType, 0], [() => SecretStringType, 0], 64 | 0, 4]
490
+ ];
491
+ exports.SecretVersionsListEntry$ = [3, n0, _SVLE,
492
+ 0,
493
+ [_VI, _VSe, _LAD, _CD, _KKIm],
494
+ [0, 64 | 0, 4, 4, 64 | 0]
495
+ ];
496
+ exports.StopReplicationToReplicaRequest$ = [3, n0, _SRTRR,
497
+ 0,
498
+ [_SI],
499
+ [0], 1
500
+ ];
501
+ exports.StopReplicationToReplicaResponse$ = [3, n0, _SRTRRt,
502
+ 0,
503
+ [_ARN],
504
+ [0]
505
+ ];
506
+ exports.Tag$ = [3, n0, _Ta,
507
+ 0,
508
+ [_K, _V],
509
+ [0, 0]
510
+ ];
511
+ exports.TagResourceRequest$ = [3, n0, _TRR,
512
+ 0,
513
+ [_SI, _T],
514
+ [0, () => TagListType], 2
515
+ ];
516
+ exports.UntagResourceRequest$ = [3, n0, _URR,
517
+ 0,
518
+ [_SI, _TK],
519
+ [0, 64 | 0], 2
520
+ ];
521
+ exports.UpdateSecretRequest$ = [3, n0, _USR,
522
+ 0,
523
+ [_SI, _CRT, _D, _KKI, _SB, _SS, _Ty],
524
+ [0, [0, 4], 0, 0, [() => SecretBinaryType, 0], [() => SecretStringType, 0], 0], 1
525
+ ];
526
+ exports.UpdateSecretResponse$ = [3, n0, _USRp,
527
+ 0,
528
+ [_ARN, _N, _VI],
529
+ [0, 0, 0]
530
+ ];
531
+ exports.UpdateSecretVersionStageRequest$ = [3, n0, _USVSR,
532
+ 0,
533
+ [_SI, _VS, _RFVI, _MTVI],
534
+ [0, 0, 0, 0], 2
535
+ ];
536
+ exports.UpdateSecretVersionStageResponse$ = [3, n0, _USVSRp,
537
+ 0,
538
+ [_ARN, _N],
539
+ [0, 0]
540
+ ];
541
+ exports.ValidateResourcePolicyRequest$ = [3, n0, _VRPR,
542
+ 0,
543
+ [_RPe, _SI],
544
+ [0, 0], 1
545
+ ];
546
+ exports.ValidateResourcePolicyResponse$ = [3, n0, _VRPRa,
547
+ 0,
548
+ [_PVP, _VE],
549
+ [2, () => ValidationErrorsType]
550
+ ];
551
+ exports.ValidationErrorsEntry$ = [3, n0, _VEE,
552
+ 0,
553
+ [_CN, _EM],
554
+ [0, 0]
555
+ ];
556
+ var __Unit = "unit";
557
+ var AddReplicaRegionListType = [1, n0, _ARRLT,
558
+ 0, () => exports.ReplicaRegionType$
559
+ ];
560
+ var APIErrorListType = [1, n0, _APIELT,
561
+ 0, () => exports.APIErrorType$
562
+ ];
563
+ var ExternalSecretRotationMetadataType = [1, n0, _ESRMT,
564
+ 0, () => exports.ExternalSecretRotationMetadataItem$
565
+ ];
566
+ var FiltersListType = [1, n0, _FLT,
567
+ 0, () => exports.Filter$
568
+ ];
569
+ var FilterValuesStringList = 64 | 0;
570
+ var KmsKeyIdListType = 64 | 0;
571
+ var RemoveReplicaRegionListType = 64 | 0;
572
+ var ReplicationStatusListType = [1, n0, _RSLT,
573
+ 0, () => exports.ReplicationStatusType$
574
+ ];
575
+ var SecretIdListType = 64 | 0;
576
+ var SecretListType = [1, n0, _SLT,
577
+ 0, () => exports.SecretListEntry$
578
+ ];
579
+ var SecretValuesType = [1, n0, _SVT,
580
+ 0, [() => exports.SecretValueEntry$,
581
+ 0]
582
+ ];
583
+ var SecretVersionsListType = [1, n0, _SVLT,
584
+ 0, () => exports.SecretVersionsListEntry$
585
+ ];
586
+ var SecretVersionStagesType = 64 | 0;
587
+ var TagKeyListType = 64 | 0;
588
+ var TagListType = [1, n0, _TLT,
589
+ 0, () => exports.Tag$
590
+ ];
591
+ var ValidationErrorsType = [1, n0, _VET,
592
+ 0, () => exports.ValidationErrorsEntry$
593
+ ];
594
+ var SecretVersionsToStagesMapType = [2, n0, _SVTSMT,
595
+ 0, 0, 64 | 0
596
+ ];
597
+ exports.BatchGetSecretValue$ = [9, n0, _BGSV,
598
+ 0, () => exports.BatchGetSecretValueRequest$, () => exports.BatchGetSecretValueResponse$
599
+ ];
600
+ exports.CancelRotateSecret$ = [9, n0, _CRS,
601
+ 0, () => exports.CancelRotateSecretRequest$, () => exports.CancelRotateSecretResponse$
602
+ ];
603
+ exports.CreateSecret$ = [9, n0, _CS,
604
+ 0, () => exports.CreateSecretRequest$, () => exports.CreateSecretResponse$
605
+ ];
606
+ exports.DeleteResourcePolicy$ = [9, n0, _DRP,
607
+ 0, () => exports.DeleteResourcePolicyRequest$, () => exports.DeleteResourcePolicyResponse$
608
+ ];
609
+ exports.DeleteSecret$ = [9, n0, _DS,
610
+ 0, () => exports.DeleteSecretRequest$, () => exports.DeleteSecretResponse$
611
+ ];
612
+ exports.DescribeSecret$ = [9, n0, _DSe,
613
+ 0, () => exports.DescribeSecretRequest$, () => exports.DescribeSecretResponse$
614
+ ];
615
+ exports.GetRandomPassword$ = [9, n0, _GRP,
616
+ 0, () => exports.GetRandomPasswordRequest$, () => exports.GetRandomPasswordResponse$
617
+ ];
618
+ exports.GetResourcePolicy$ = [9, n0, _GRPe,
619
+ 0, () => exports.GetResourcePolicyRequest$, () => exports.GetResourcePolicyResponse$
620
+ ];
621
+ exports.GetSecretValue$ = [9, n0, _GSV,
622
+ 0, () => exports.GetSecretValueRequest$, () => exports.GetSecretValueResponse$
623
+ ];
624
+ exports.ListSecrets$ = [9, n0, _LS,
625
+ 0, () => exports.ListSecretsRequest$, () => exports.ListSecretsResponse$
626
+ ];
627
+ exports.ListSecretVersionIds$ = [9, n0, _LSVI,
628
+ 0, () => exports.ListSecretVersionIdsRequest$, () => exports.ListSecretVersionIdsResponse$
629
+ ];
630
+ exports.PutResourcePolicy$ = [9, n0, _PRP,
631
+ 0, () => exports.PutResourcePolicyRequest$, () => exports.PutResourcePolicyResponse$
632
+ ];
633
+ exports.PutSecretValue$ = [9, n0, _PSV,
634
+ 0, () => exports.PutSecretValueRequest$, () => exports.PutSecretValueResponse$
635
+ ];
636
+ exports.RemoveRegionsFromReplication$ = [9, n0, _RRFR,
637
+ 0, () => exports.RemoveRegionsFromReplicationRequest$, () => exports.RemoveRegionsFromReplicationResponse$
638
+ ];
639
+ exports.ReplicateSecretToRegions$ = [9, n0, _RSTR,
640
+ 0, () => exports.ReplicateSecretToRegionsRequest$, () => exports.ReplicateSecretToRegionsResponse$
641
+ ];
642
+ exports.RestoreSecret$ = [9, n0, _RSe,
643
+ 0, () => exports.RestoreSecretRequest$, () => exports.RestoreSecretResponse$
644
+ ];
645
+ exports.RotateSecret$ = [9, n0, _RSo,
646
+ 0, () => exports.RotateSecretRequest$, () => exports.RotateSecretResponse$
647
+ ];
648
+ exports.StopReplicationToReplica$ = [9, n0, _SRTR,
649
+ 0, () => exports.StopReplicationToReplicaRequest$, () => exports.StopReplicationToReplicaResponse$
650
+ ];
651
+ exports.TagResource$ = [9, n0, _TR,
652
+ 0, () => exports.TagResourceRequest$, () => __Unit
653
+ ];
654
+ exports.UntagResource$ = [9, n0, _UR,
655
+ 0, () => exports.UntagResourceRequest$, () => __Unit
656
+ ];
657
+ exports.UpdateSecret$ = [9, n0, _US,
658
+ 0, () => exports.UpdateSecretRequest$, () => exports.UpdateSecretResponse$
659
+ ];
660
+ exports.UpdateSecretVersionStage$ = [9, n0, _USVS,
661
+ 0, () => exports.UpdateSecretVersionStageRequest$, () => exports.UpdateSecretVersionStageResponse$
662
+ ];
663
+ exports.ValidateResourcePolicy$ = [9, n0, _VRP,
664
+ 0, () => exports.ValidateResourcePolicyRequest$, () => exports.ValidateResourcePolicyResponse$
665
+ ];