You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Input/InvocationRequest.php
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@ final class InvocationRequest extends Input
63
63
* ClientContext?: string,
64
64
* Payload?: string,
65
65
* Qualifier?: string,
66
+
*
66
67
* @region?: string,
67
68
* } $input
68
69
*/
@@ -130,14 +131,12 @@ public function request(): Request
130
131
thrownewInvalidArgument(sprintf('Invalid parameter "InvocationType" for "%s". The value "%s" is not a valid "InvocationType".', __CLASS__, $this->invocationType));
Copy file name to clipboardExpand all lines: src/Input/ListFunctionsRequest.php
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ final class ListFunctionsRequest extends Input
47
47
* FunctionVersion?: FunctionVersion::*,
48
48
* Marker?: string,
49
49
* MaxItems?: int,
50
+
*
50
51
* @region?: string,
51
52
* } $input
52
53
*/
@@ -99,17 +100,14 @@ public function request(): Request
99
100
$query = [];
100
101
if (null !== $this->masterRegion) {
101
102
$query['MasterRegion'] = $this->masterRegion;
102
-
}
103
-
if (null !== $this->functionVersion) {
103
+
}if (null !== $this->functionVersion) {
104
104
if (!FunctionVersion::exists($this->functionVersion)) {
105
105
thrownewInvalidArgument(sprintf('Invalid parameter "FunctionVersion" for "%s". The value "%s" is not a valid "FunctionVersion".', __CLASS__, $this->functionVersion));
Copy file name to clipboardExpand all lines: src/Input/ListLayerVersionsRequest.php
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,7 @@ final class ListLayerVersionsRequest extends Input
57
57
* Marker?: string,
58
58
* MaxItems?: int,
59
59
* CompatibleArchitecture?: Architecture::*,
60
+
*
60
61
* @region?: string,
61
62
* } $input
62
63
*/
@@ -121,14 +122,11 @@ public function request(): Request
121
122
thrownewInvalidArgument(sprintf('Invalid parameter "CompatibleRuntime" for "%s". The value "%s" is not a valid "Runtime".', __CLASS__, $this->compatibleRuntime));
if (!Architecture::exists($this->compatibleArchitecture)) {
133
131
thrownewInvalidArgument(sprintf('Invalid parameter "CompatibleArchitecture" for "%s". The value "%s" is not a valid "Architecture".', __CLASS__, $this->compatibleArchitecture));
0 commit comments