-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update generated code * Disable tests using fakesqs * Update SQS test to be compatible with JSON API --------- Co-authored-by: Jérémy Derussé <[email protected]>
- Loading branch information
1 parent
42c9a17
commit 9cab464
Showing
12 changed files
with
307 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
|
||
namespace AsyncAws\Lambda\Enum; | ||
|
||
final class ApplicationLogLevel | ||
{ | ||
public const DEBUG = 'DEBUG'; | ||
public const ERROR = 'ERROR'; | ||
public const FATAL = 'FATAL'; | ||
public const INFO = 'INFO'; | ||
public const TRACE = 'TRACE'; | ||
public const WARN = 'WARN'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::DEBUG => true, | ||
self::ERROR => true, | ||
self::FATAL => true, | ||
self::INFO => true, | ||
self::TRACE => true, | ||
self::WARN => true, | ||
][$value]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace AsyncAws\Lambda\Enum; | ||
|
||
final class LogFormat | ||
{ | ||
public const JSON = 'JSON'; | ||
public const TEXT = 'Text'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::JSON => true, | ||
self::TEXT => true, | ||
][$value]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
namespace AsyncAws\Lambda\Enum; | ||
|
||
final class SystemLogLevel | ||
{ | ||
public const DEBUG = 'DEBUG'; | ||
public const INFO = 'INFO'; | ||
public const WARN = 'WARN'; | ||
|
||
public static function exists(string $value): bool | ||
{ | ||
return isset([ | ||
self::DEBUG => true, | ||
self::INFO => true, | ||
self::WARN => true, | ||
][$value]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.