source: vendor/google/apiclient-services/src/Compute/SecurityPolicyRulePreconfiguredWafConfigExclusion.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 3.8 KB
Line 
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
18namespace Google\Service\Compute;
19
20class SecurityPolicyRulePreconfiguredWafConfigExclusion extends \Google\Collection
21{
22 protected $collection_key = 'targetRuleIds';
23 protected $requestCookiesToExcludeType = SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams::class;
24 protected $requestCookiesToExcludeDataType = 'array';
25 protected $requestHeadersToExcludeType = SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams::class;
26 protected $requestHeadersToExcludeDataType = 'array';
27 protected $requestQueryParamsToExcludeType = SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams::class;
28 protected $requestQueryParamsToExcludeDataType = 'array';
29 protected $requestUrisToExcludeType = SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams::class;
30 protected $requestUrisToExcludeDataType = 'array';
31 /**
32 * @var string[]
33 */
34 public $targetRuleIds;
35 /**
36 * @var string
37 */
38 public $targetRuleSet;
39
40 /**
41 * @param SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams[]
42 */
43 public function setRequestCookiesToExclude($requestCookiesToExclude)
44 {
45 $this->requestCookiesToExclude = $requestCookiesToExclude;
46 }
47 /**
48 * @return SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams[]
49 */
50 public function getRequestCookiesToExclude()
51 {
52 return $this->requestCookiesToExclude;
53 }
54 /**
55 * @param SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams[]
56 */
57 public function setRequestHeadersToExclude($requestHeadersToExclude)
58 {
59 $this->requestHeadersToExclude = $requestHeadersToExclude;
60 }
61 /**
62 * @return SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams[]
63 */
64 public function getRequestHeadersToExclude()
65 {
66 return $this->requestHeadersToExclude;
67 }
68 /**
69 * @param SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams[]
70 */
71 public function setRequestQueryParamsToExclude($requestQueryParamsToExclude)
72 {
73 $this->requestQueryParamsToExclude = $requestQueryParamsToExclude;
74 }
75 /**
76 * @return SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams[]
77 */
78 public function getRequestQueryParamsToExclude()
79 {
80 return $this->requestQueryParamsToExclude;
81 }
82 /**
83 * @param SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams[]
84 */
85 public function setRequestUrisToExclude($requestUrisToExclude)
86 {
87 $this->requestUrisToExclude = $requestUrisToExclude;
88 }
89 /**
90 * @return SecurityPolicyRulePreconfiguredWafConfigExclusionFieldParams[]
91 */
92 public function getRequestUrisToExclude()
93 {
94 return $this->requestUrisToExclude;
95 }
96 /**
97 * @param string[]
98 */
99 public function setTargetRuleIds($targetRuleIds)
100 {
101 $this->targetRuleIds = $targetRuleIds;
102 }
103 /**
104 * @return string[]
105 */
106 public function getTargetRuleIds()
107 {
108 return $this->targetRuleIds;
109 }
110 /**
111 * @param string
112 */
113 public function setTargetRuleSet($targetRuleSet)
114 {
115 $this->targetRuleSet = $targetRuleSet;
116 }
117 /**
118 * @return string
119 */
120 public function getTargetRuleSet()
121 {
122 return $this->targetRuleSet;
123 }
124}
125
126// Adding a class alias for backwards compatibility with the previous class name.
127class_alias(SecurityPolicyRulePreconfiguredWafConfigExclusion::class, 'Google_Service_Compute_SecurityPolicyRulePreconfiguredWafConfigExclusion');
Note: See TracBrowser for help on using the repository browser.