-
Notifications
You must be signed in to change notification settings - Fork 216
/
Copy pathLogStreams.php
116 lines (98 loc) · 3.33 KB
/
LogStreams.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
declare(strict_types=1);
namespace Auth0\SDK\API\Management;
use Auth0\SDK\Contract\API\Management\LogStreamsInterface;
use Auth0\SDK\Utility\Request\RequestOptions;
use Auth0\SDK\Utility\Toolkit;
use Psr\Http\Message\ResponseInterface;
/**
* Handles requests to the Log Streams endpoint of the v2 Management API.
*
* @see https://auth0.com/docs/api/management/v2#!/Log_Streams
*/
final class LogStreams extends ManagementEndpoint implements LogStreamsInterface
{
public function create(
string $type,
array $sink,
?string $name = null,
?RequestOptions $options = null,
): ResponseInterface {
[$type, $name] = Toolkit::filter([$type, $name])->string()->trim();
[$sink] = Toolkit::filter([$sink])->array()->trim();
Toolkit::assert([
[$type, \Auth0\SDK\Exception\ArgumentException::missing('type')],
])->isString();
Toolkit::assert([
[$sink, \Auth0\SDK\Exception\ArgumentException::missing('sink')],
])->isArray();
return $this->getHttpClient()
->method('post')
->addPath(['log-streams'])
->withBody(
(object) Toolkit::filter([
[
'type' => $type,
'sink' => (object) $sink,
'name' => $name,
],
])->array()->trim()[0],
)
->withOptions($options)
->call();
}
public function delete(
string $id,
?RequestOptions $options = null,
): ResponseInterface {
[$id] = Toolkit::filter([$id])->string()->trim();
Toolkit::assert([
[$id, \Auth0\SDK\Exception\ArgumentException::missing('id')],
])->isString();
return $this->getHttpClient()
->method('delete')->addPath(['log-streams', $id])
->withOptions($options)
->call();
}
public function get(
string $id,
?RequestOptions $options = null,
): ResponseInterface {
[$id] = Toolkit::filter([$id])->string()->trim();
Toolkit::assert([
[$id, \Auth0\SDK\Exception\ArgumentException::missing('id')],
])->isString();
return $this->getHttpClient()
->method('get')->addPath(['log-streams', $id])
->withOptions($options)
->call();
}
public function getAll(
?RequestOptions $options = null,
): ResponseInterface {
return $this->getHttpClient()
->method('get')
->addPath(['log-streams'])
->withOptions($options)
->call();
}
public function update(
string $id,
array $body,
?RequestOptions $options = null,
): ResponseInterface {
[$id] = Toolkit::filter([$id])->string()->trim();
[$body] = Toolkit::filter([$body])->array()->trim();
Toolkit::assert([
[$id, \Auth0\SDK\Exception\ArgumentException::missing('id')],
])->isString();
Toolkit::assert([
[$body, \Auth0\SDK\Exception\ArgumentException::missing('body')],
])->isArray();
return $this->getHttpClient()
->method('patch')->addPath(['log-streams', $id])
->withBody((object) $body)
->withOptions($options)
->call();
}
}