@@ -93,14 +93,14 @@ class SecretsManagerClient extends AbstractApi
9393 *
9494 * @param array{
9595 * Name: string,
96- * ClientRequestToken?: null| string,
97- * Description?: null| string,
98- * KmsKeyId?: null| string,
99- * SecretBinary?: null| string,
100- * SecretString?: null| string,
101- * Tags?: null| array<Tag|array>,
102- * AddReplicaRegions?: null| array<ReplicaRegionType|array>,
103- * ForceOverwriteReplicaSecret?: null| bool,
96+ * ClientRequestToken?: string|null ,
97+ * Description?: string|null ,
98+ * KmsKeyId?: string|null ,
99+ * SecretBinary?: string|null ,
100+ * SecretString?: string|null ,
101+ * Tags?: array<Tag|array>|null ,
102+ * AddReplicaRegions?: array<ReplicaRegionType|array>|null ,
103+ * ForceOverwriteReplicaSecret?: bool|null ,
104104 * '@region'?: string|null,
105105 * }|CreateSecretRequest $input
106106 *
@@ -178,8 +178,8 @@ public function createSecret($input): CreateSecretResponse
178178 *
179179 * @param array{
180180 * SecretId: string,
181- * RecoveryWindowInDays?: null| int,
182- * ForceDeleteWithoutRecovery?: null| bool,
181+ * RecoveryWindowInDays?: int|null ,
182+ * ForceDeleteWithoutRecovery?: bool|null ,
183183 * '@region'?: string|null,
184184 * }|DeleteSecretRequest $input
185185 *
@@ -233,8 +233,8 @@ public function deleteSecret($input): DeleteSecretResponse
233233 *
234234 * @param array{
235235 * SecretId: string,
236- * VersionId?: null| string,
237- * VersionStage?: null| string,
236+ * VersionId?: string|null ,
237+ * VersionStage?: string|null ,
238238 * '@region'?: string|null,
239239 * }|GetSecretValueRequest $input
240240 *
@@ -287,11 +287,11 @@ public function getSecretValue($input): GetSecretValueResponse
287287 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-secretsmanager-2017-10-17.html#listsecrets
288288 *
289289 * @param array{
290- * IncludePlannedDeletion?: null| bool,
291- * MaxResults?: null| int,
292- * NextToken?: null| string,
293- * Filters?: null| array<Filter|array>,
294- * SortOrder?: null| SortOrderType::*,
290+ * IncludePlannedDeletion?: bool|null ,
291+ * MaxResults?: int|null ,
292+ * NextToken?: string|null ,
293+ * Filters?: array<Filter|array>|null ,
294+ * SortOrder?: SortOrderType::*|null ,
295295 * '@region'?: string|null,
296296 * }|ListSecretsRequest $input
297297 *
@@ -356,11 +356,11 @@ public function listSecrets($input = []): ListSecretsResponse
356356 *
357357 * @param array{
358358 * SecretId: string,
359- * ClientRequestToken?: null| string,
360- * SecretBinary?: null| string,
361- * SecretString?: null| string,
362- * VersionStages?: null| string[],
363- * RotationToken?: null| string,
359+ * ClientRequestToken?: string|null ,
360+ * SecretBinary?: string|null ,
361+ * SecretString?: string|null ,
362+ * VersionStages?: string[]|null ,
363+ * RotationToken?: string|null ,
364364 * '@region'?: string|null,
365365 * }|PutSecretValueRequest $input
366366 *
@@ -439,11 +439,11 @@ public function putSecretValue($input): PutSecretValueResponse
439439 *
440440 * @param array{
441441 * SecretId: string,
442- * ClientRequestToken?: null| string,
443- * Description?: null| string,
444- * KmsKeyId?: null| string,
445- * SecretBinary?: null| string,
446- * SecretString?: null| string,
442+ * ClientRequestToken?: string|null ,
443+ * Description?: string|null ,
444+ * KmsKeyId?: string|null ,
445+ * SecretBinary?: string|null ,
446+ * SecretString?: string|null ,
447447 * '@region'?: string|null,
448448 * }|UpdateSecretRequest $input
449449 *
0 commit comments