@@ -112,7 +112,7 @@ public function deleteParameters($input): DeleteParametersResult
112112 *
113113 * @param array{
114114 * Name: string,
115- * WithDecryption?: null| bool,
115+ * WithDecryption?: bool|null ,
116116 * '@region'?: string|null,
117117 * }|GetParameterRequest $input
118118 *
@@ -148,7 +148,7 @@ public function getParameter($input): GetParameterResult
148148 *
149149 * @param array{
150150 * Names: string[],
151- * WithDecryption?: null| bool,
151+ * WithDecryption?: bool|null ,
152152 * '@region'?: string|null,
153153 * }|GetParametersRequest $input
154154 *
@@ -184,11 +184,11 @@ public function getParameters($input): GetParametersResult
184184 *
185185 * @param array{
186186 * Path: string,
187- * Recursive?: null| bool,
188- * ParameterFilters?: null| array<ParameterStringFilter|array>,
189- * WithDecryption?: null| bool,
190- * MaxResults?: null| int,
191- * NextToken?: null| string,
187+ * Recursive?: bool|null ,
188+ * ParameterFilters?: array<ParameterStringFilter|array>|null ,
189+ * WithDecryption?: bool|null ,
190+ * MaxResults?: int|null ,
191+ * NextToken?: string|null ,
192192 * '@region'?: string|null,
193193 * }|GetParametersByPathRequest $input
194194 *
@@ -222,16 +222,16 @@ public function getParametersByPath($input): GetParametersByPathResult
222222 *
223223 * @param array{
224224 * Name: string,
225- * Description?: null| string,
225+ * Description?: string|null ,
226226 * Value: string,
227- * Type?: null| ParameterType::*,
228- * KeyId?: null| string,
229- * Overwrite?: null| bool,
230- * AllowedPattern?: null| string,
231- * Tags?: null| array<Tag|array>,
232- * Tier?: null| ParameterTier::*,
233- * Policies?: null| string,
234- * DataType?: null| string,
227+ * Type?: ParameterType::*|null ,
228+ * KeyId?: string|null ,
229+ * Overwrite?: bool|null ,
230+ * AllowedPattern?: string|null ,
231+ * Tags?: array<Tag|array>|null ,
232+ * Tier?: ParameterTier::*|null ,
233+ * Policies?: string|null ,
234+ * DataType?: string|null ,
235235 * '@region'?: string|null,
236236 * }|PutParameterRequest $input
237237 *
0 commit comments