1 | <?php
|
---|
2 | /*
|
---|
3 | * Copyright 2014 Google Inc.
|
---|
4 | *
|
---|
5 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
---|
6 | * use this file except in compliance with the License. You may obtain a copy of
|
---|
7 | * the License at
|
---|
8 | *
|
---|
9 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
10 | *
|
---|
11 | * Unless required by applicable law or agreed to in writing, software
|
---|
12 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
---|
13 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
---|
14 | * License for the specific language governing permissions and limitations under
|
---|
15 | * the License.
|
---|
16 | */
|
---|
17 |
|
---|
18 | namespace Google\Service\SecurityCommandCenter\Resource;
|
---|
19 |
|
---|
20 | use Google\Service\SecurityCommandCenter\EffectiveEventThreatDetectionCustomModule;
|
---|
21 | use Google\Service\SecurityCommandCenter\ListEffectiveEventThreatDetectionCustomModulesResponse;
|
---|
22 |
|
---|
23 | /**
|
---|
24 | * The "effectiveCustomModules" collection of methods.
|
---|
25 | * Typical usage is:
|
---|
26 | * <code>
|
---|
27 | * $securitycenterService = new Google\Service\SecurityCommandCenter(...);
|
---|
28 | * $effectiveCustomModules = $securitycenterService->folders_eventThreatDetectionSettings_effectiveCustomModules;
|
---|
29 | * </code>
|
---|
30 | */
|
---|
31 | class FoldersEventThreatDetectionSettingsEffectiveCustomModules extends \Google\Service\Resource
|
---|
32 | {
|
---|
33 | /**
|
---|
34 | * Gets an effective Event Threat Detection custom module at the given level.
|
---|
35 | * (effectiveCustomModules.get)
|
---|
36 | *
|
---|
37 | * @param string $name Required. The resource name of the effective Event Threat
|
---|
38 | * Detection custom module. Its format is: * `organizations/{organization}/event
|
---|
39 | * ThreatDetectionSettings/effectiveCustomModules/{module}`. * `folders/{folder}
|
---|
40 | * /eventThreatDetectionSettings/effectiveCustomModules/{module}`. * `projects/{
|
---|
41 | * project}/eventThreatDetectionSettings/effectiveCustomModules/{module}`.
|
---|
42 | * @param array $optParams Optional parameters.
|
---|
43 | * @return EffectiveEventThreatDetectionCustomModule
|
---|
44 | * @throws \Google\Service\Exception
|
---|
45 | */
|
---|
46 | public function get($name, $optParams = [])
|
---|
47 | {
|
---|
48 | $params = ['name' => $name];
|
---|
49 | $params = array_merge($params, $optParams);
|
---|
50 | return $this->call('get', [$params], EffectiveEventThreatDetectionCustomModule::class);
|
---|
51 | }
|
---|
52 | /**
|
---|
53 | * Lists all effective Event Threat Detection custom modules for the given
|
---|
54 | * parent. This includes resident modules defined at the scope of the parent
|
---|
55 | * along with modules inherited from its ancestors. (effectiveCustomModules.list
|
---|
56 | * FoldersEventThreatDetectionSettingsEffectiveCustomModules)
|
---|
57 | *
|
---|
58 | * @param string $parent Required. Name of the parent to list custom modules
|
---|
59 | * for. Its format is: *
|
---|
60 | * `organizations/{organization}/eventThreatDetectionSettings`. *
|
---|
61 | * `folders/{folder}/eventThreatDetectionSettings`. *
|
---|
62 | * `projects/{project}/eventThreatDetectionSettings`.
|
---|
63 | * @param array $optParams Optional parameters.
|
---|
64 | *
|
---|
65 | * @opt_param int pageSize The maximum number of modules to return. The service
|
---|
66 | * may return fewer than this value. If unspecified, at most 10 configs will be
|
---|
67 | * returned. The maximum value is 1000; values above 1000 will be coerced to
|
---|
68 | * 1000.
|
---|
69 | * @opt_param string pageToken A page token, received from a previous
|
---|
70 | * `ListEffectiveEventThreatDetectionCustomModules` call. Provide this to
|
---|
71 | * retrieve the subsequent page. When paginating, all other parameters provided
|
---|
72 | * to `ListEffectiveEventThreatDetectionCustomModules` must match the call that
|
---|
73 | * provided the page token.
|
---|
74 | * @return ListEffectiveEventThreatDetectionCustomModulesResponse
|
---|
75 | * @throws \Google\Service\Exception
|
---|
76 | */
|
---|
77 | public function listFoldersEventThreatDetectionSettingsEffectiveCustomModules($parent, $optParams = [])
|
---|
78 | {
|
---|
79 | $params = ['parent' => $parent];
|
---|
80 | $params = array_merge($params, $optParams);
|
---|
81 | return $this->call('list', [$params], ListEffectiveEventThreatDetectionCustomModulesResponse::class);
|
---|
82 | }
|
---|
83 | }
|
---|
84 |
|
---|
85 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
86 | class_alias(FoldersEventThreatDetectionSettingsEffectiveCustomModules::class, 'Google_Service_SecurityCommandCenter_Resource_FoldersEventThreatDetectionSettingsEffectiveCustomModules');
|
---|