blob: 5d00493e6041a065325fd8095279d526b3dfb00b [file] [log] [blame]
Dmitry Frenkel3e17f892020-10-06 16:46:05 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="securitycenter_v1beta2.html">Security Command Center API</a> . <a href="securitycenter_v1beta2.folders.html">folders</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="securitycenter_v1beta2.folders.containerThreatDetectionSettings.html">containerThreatDetectionSettings()</a></code>
79</p>
80<p class="firstline">Returns the containerThreatDetectionSettings Resource.</p>
81
82<p class="toc_element">
83 <code><a href="securitycenter_v1beta2.folders.eventThreatDetectionSettings.html">eventThreatDetectionSettings()</a></code>
84</p>
85<p class="firstline">Returns the eventThreatDetectionSettings Resource.</p>
86
87<p class="toc_element">
88 <code><a href="securitycenter_v1beta2.folders.securityHealthAnalyticsSettings.html">securityHealthAnalyticsSettings()</a></code>
89</p>
90<p class="firstline">Returns the securityHealthAnalyticsSettings Resource.</p>
91
92<p class="toc_element">
93 <code><a href="securitycenter_v1beta2.folders.webSecurityScannerSettings.html">webSecurityScannerSettings()</a></code>
94</p>
95<p class="firstline">Returns the webSecurityScannerSettings Resource.</p>
96
97<p class="toc_element">
98 <code><a href="#close">close()</a></code></p>
99<p class="firstline">Close httplib2 connections.</p>
100<p class="toc_element">
101 <code><a href="#getContainerThreatDetectionSettings">getContainerThreatDetectionSettings(name, x__xgafv=None)</a></code></p>
102<p class="firstline">Get the ContainerThreatDetectionSettings resource.</p>
103<p class="toc_element">
104 <code><a href="#getEventThreatDetectionSettings">getEventThreatDetectionSettings(name, x__xgafv=None)</a></code></p>
105<p class="firstline">Get the EventThreatDetectionSettings resource.</p>
106<p class="toc_element">
107 <code><a href="#getSecurityHealthAnalyticsSettings">getSecurityHealthAnalyticsSettings(name, x__xgafv=None)</a></code></p>
108<p class="firstline">Get the SecurityHealthAnalyticsSettings resource.</p>
109<p class="toc_element">
110 <code><a href="#getWebSecurityScannerSettings">getWebSecurityScannerSettings(name, x__xgafv=None)</a></code></p>
111<p class="firstline">Get the WebSecurityScannerSettings resource.</p>
112<p class="toc_element">
113 <code><a href="#updateContainerThreatDetectionSettings">updateContainerThreatDetectionSettings(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
114<p class="firstline">Update the ContainerThreatDetectionSettings resource.</p>
115<p class="toc_element">
116 <code><a href="#updateEventThreatDetectionSettings">updateEventThreatDetectionSettings(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
117<p class="firstline">Update the EventThreatDetectionSettings resource.</p>
118<p class="toc_element">
119 <code><a href="#updateSecurityHealthAnalyticsSettings">updateSecurityHealthAnalyticsSettings(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
120<p class="firstline">Update the SecurityHealthAnalyticsSettings resource.</p>
121<p class="toc_element">
122 <code><a href="#updateWebSecurityScannerSettings">updateWebSecurityScannerSettings(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
123<p class="firstline">Update the WebSecurityScannerSettings resource.</p>
124<h3>Method Details</h3>
125<div class="method">
126 <code class="details" id="close">close()</code>
127 <pre>Close httplib2 connections.</pre>
128</div>
129
130<div class="method">
131 <code class="details" id="getContainerThreatDetectionSettings">getContainerThreatDetectionSettings(name, x__xgafv=None)</code>
132 <pre>Get the ContainerThreatDetectionSettings resource.
133
134Args:
135 name: string, Required. The name of the ContainerThreatDetectionSettings to retrieve. Formats: * organizations/{organization}/containerThreatDetectionSettings * folders/{folder}/containerThreatDetectionSettings * projects/{project}/containerThreatDetectionSettings * projects/{project}/locations/{location}/clusters/{cluster}/containerThreatDetectionSettings (required)
136 x__xgafv: string, V1 error format.
137 Allowed values
138 1 - v1 error format
139 2 - v2 error format
140
141Returns:
142 An object of the form:
143
144 { # Resource capturing the settings for the Container Threat Detection service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800145 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
146 &quot;name&quot;: &quot;A String&quot;, # The resource name of the ContainerThreatDetectionSettings. Formats: * organizations/{organization}/containerThreatDetectionSettings * folders/{folder}/containerThreatDetectionSettings * projects/{project}/containerThreatDetectionSettings * projects/{project}/locations/{location}/clusters/{cluster}/containerThreatDetectionSettings
147 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
148 &quot;serviceAccount&quot;: &quot;A String&quot;, # Output only. The service account used by Container Threat Detection for scanning. Service accounts are scoped at the project level meaning this field will be empty at any level above a project.
149 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
150 &quot;a_key&quot;: { # Configuration of a module.
151 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
152 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
153 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700154 },
155 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800156 },
157 }</pre>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700158</div>
159
160<div class="method">
161 <code class="details" id="getEventThreatDetectionSettings">getEventThreatDetectionSettings(name, x__xgafv=None)</code>
162 <pre>Get the EventThreatDetectionSettings resource.
163
164Args:
165 name: string, Required. The name of the EventThreatDetectionSettings to retrieve. Formats: * organizations/{organization}/eventThreatDetectionSettings * folders/{folder}/eventThreatDetectionSettings * projects/{project}/eventThreatDetectionSettings (required)
166 x__xgafv: string, V1 error format.
167 Allowed values
168 1 - v1 error format
169 2 - v2 error format
170
171Returns:
172 An object of the form:
173
174 { # Resource capturing the settings for the Event Threat Detection service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800175 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800176 &quot;name&quot;: &quot;A String&quot;, # The resource name of the EventThreatDetectionSettings. Formats: * organizations/{organization}/eventThreatDetectionSettings * folders/{folder}/eventThreatDetectionSettings * projects/{project}/eventThreatDetectionSettings
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800177 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
178 &quot;a_key&quot;: { # Configuration of a module.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800179 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800180 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
181 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
182 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700183 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700184 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800185 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800186 }</pre>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700187</div>
188
189<div class="method">
190 <code class="details" id="getSecurityHealthAnalyticsSettings">getSecurityHealthAnalyticsSettings(name, x__xgafv=None)</code>
191 <pre>Get the SecurityHealthAnalyticsSettings resource.
192
193Args:
194 name: string, Required. The name of the SecurityHealthAnalyticsSettings to retrieve. Formats: * organizations/{organization}/securityHealthAnalyticsSettings * folders/{folder}/securityHealthAnalyticsSettings * projects/{project}/securityHealthAnalyticsSettings (required)
195 x__xgafv: string, V1 error format.
196 Allowed values
197 1 - v1 error format
198 2 - v2 error format
199
200Returns:
201 An object of the form:
202
203 { # Resource capturing the settings for the Security Health Analytics service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800204 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
205 &quot;name&quot;: &quot;A String&quot;, # The resource name of the SecurityHealthAnalyticsSettings. Formats: * organizations/{organization}/securityHealthAnalyticsSettings * folders/{folder}/securityHealthAnalyticsSettings * projects/{project}/securityHealthAnalyticsSettings
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800206 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800207 &quot;serviceAccount&quot;: &quot;A String&quot;, # Output only. The service account used by Security Health Analytics detectors.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700208 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
209 &quot;a_key&quot;: { # Configuration of a module.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800210 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700211 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
212 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
213 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700214 },
215 },
216 }</pre>
217</div>
218
219<div class="method">
220 <code class="details" id="getWebSecurityScannerSettings">getWebSecurityScannerSettings(name, x__xgafv=None)</code>
221 <pre>Get the WebSecurityScannerSettings resource.
222
223Args:
224 name: string, Required. The name of the WebSecurityScannerSettings to retrieve. Formats: * organizations/{organization}/webSecurityScannerSettings * folders/{folder}/webSecurityScannerSettings * projects/{project}/webSecurityScannerSettings (required)
225 x__xgafv: string, V1 error format.
226 Allowed values
227 1 - v1 error format
228 2 - v2 error format
229
230Returns:
231 An object of the form:
232
233 { # Resource capturing the settings for the Web Security Scanner service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800234 &quot;name&quot;: &quot;A String&quot;, # The resource name of the WebSecurityScannerSettings. Formats: * organizations/{organization}/webSecurityScannerSettings * folders/{folder}/webSecurityScannerSettings * projects/{project}/webSecurityScannerSettings
235 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
236 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
237 &quot;a_key&quot;: { # Configuration of a module.
238 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
239 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
240 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700241 },
242 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800243 },
244 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
245 }</pre>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700246</div>
247
248<div class="method">
249 <code class="details" id="updateContainerThreatDetectionSettings">updateContainerThreatDetectionSettings(name, body=None, updateMask=None, x__xgafv=None)</code>
250 <pre>Update the ContainerThreatDetectionSettings resource.
251
252Args:
253 name: string, The resource name of the ContainerThreatDetectionSettings. Formats: * organizations/{organization}/containerThreatDetectionSettings * folders/{folder}/containerThreatDetectionSettings * projects/{project}/containerThreatDetectionSettings * projects/{project}/locations/{location}/clusters/{cluster}/containerThreatDetectionSettings (required)
254 body: object, The request body.
255 The object takes the form of:
256
257{ # Resource capturing the settings for the Container Threat Detection service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800258 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
259 &quot;name&quot;: &quot;A String&quot;, # The resource name of the ContainerThreatDetectionSettings. Formats: * organizations/{organization}/containerThreatDetectionSettings * folders/{folder}/containerThreatDetectionSettings * projects/{project}/containerThreatDetectionSettings * projects/{project}/locations/{location}/clusters/{cluster}/containerThreatDetectionSettings
260 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
261 &quot;serviceAccount&quot;: &quot;A String&quot;, # Output only. The service account used by Container Threat Detection for scanning. Service accounts are scoped at the project level meaning this field will be empty at any level above a project.
262 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
263 &quot;a_key&quot;: { # Configuration of a module.
264 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
265 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
266 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700267 },
268 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800269 },
270}
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700271
272 updateMask: string, The list of fields to be updated.
273 x__xgafv: string, V1 error format.
274 Allowed values
275 1 - v1 error format
276 2 - v2 error format
277
278Returns:
279 An object of the form:
280
281 { # Resource capturing the settings for the Container Threat Detection service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800282 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
283 &quot;name&quot;: &quot;A String&quot;, # The resource name of the ContainerThreatDetectionSettings. Formats: * organizations/{organization}/containerThreatDetectionSettings * folders/{folder}/containerThreatDetectionSettings * projects/{project}/containerThreatDetectionSettings * projects/{project}/locations/{location}/clusters/{cluster}/containerThreatDetectionSettings
284 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
285 &quot;serviceAccount&quot;: &quot;A String&quot;, # Output only. The service account used by Container Threat Detection for scanning. Service accounts are scoped at the project level meaning this field will be empty at any level above a project.
286 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
287 &quot;a_key&quot;: { # Configuration of a module.
288 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
289 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
290 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700291 },
292 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800293 },
294 }</pre>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700295</div>
296
297<div class="method">
298 <code class="details" id="updateEventThreatDetectionSettings">updateEventThreatDetectionSettings(name, body=None, updateMask=None, x__xgafv=None)</code>
299 <pre>Update the EventThreatDetectionSettings resource.
300
301Args:
302 name: string, The resource name of the EventThreatDetectionSettings. Formats: * organizations/{organization}/eventThreatDetectionSettings * folders/{folder}/eventThreatDetectionSettings * projects/{project}/eventThreatDetectionSettings (required)
303 body: object, The request body.
304 The object takes the form of:
305
306{ # Resource capturing the settings for the Event Threat Detection service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800307 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800308 &quot;name&quot;: &quot;A String&quot;, # The resource name of the EventThreatDetectionSettings. Formats: * organizations/{organization}/eventThreatDetectionSettings * folders/{folder}/eventThreatDetectionSettings * projects/{project}/eventThreatDetectionSettings
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800309 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
310 &quot;a_key&quot;: { # Configuration of a module.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800311 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800312 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
313 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
314 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700315 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700316 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800317 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800318 }
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700319
320 updateMask: string, The list of fields to be updated.
321 x__xgafv: string, V1 error format.
322 Allowed values
323 1 - v1 error format
324 2 - v2 error format
325
326Returns:
327 An object of the form:
328
329 { # Resource capturing the settings for the Event Threat Detection service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800330 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
Yoshi Automation Botb6971b02020-11-26 17:16:03 -0800331 &quot;name&quot;: &quot;A String&quot;, # The resource name of the EventThreatDetectionSettings. Formats: * organizations/{organization}/eventThreatDetectionSettings * folders/{folder}/eventThreatDetectionSettings * projects/{project}/eventThreatDetectionSettings
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800332 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
333 &quot;a_key&quot;: { # Configuration of a module.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800334 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800335 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
336 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
337 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700338 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700339 },
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800340 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800341 }</pre>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700342</div>
343
344<div class="method">
345 <code class="details" id="updateSecurityHealthAnalyticsSettings">updateSecurityHealthAnalyticsSettings(name, body=None, updateMask=None, x__xgafv=None)</code>
346 <pre>Update the SecurityHealthAnalyticsSettings resource.
347
348Args:
349 name: string, The resource name of the SecurityHealthAnalyticsSettings. Formats: * organizations/{organization}/securityHealthAnalyticsSettings * folders/{folder}/securityHealthAnalyticsSettings * projects/{project}/securityHealthAnalyticsSettings (required)
350 body: object, The request body.
351 The object takes the form of:
352
353{ # Resource capturing the settings for the Security Health Analytics service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800354 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
355 &quot;name&quot;: &quot;A String&quot;, # The resource name of the SecurityHealthAnalyticsSettings. Formats: * organizations/{organization}/securityHealthAnalyticsSettings * folders/{folder}/securityHealthAnalyticsSettings * projects/{project}/securityHealthAnalyticsSettings
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800356 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800357 &quot;serviceAccount&quot;: &quot;A String&quot;, # Output only. The service account used by Security Health Analytics detectors.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700358 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
359 &quot;a_key&quot;: { # Configuration of a module.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800360 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700361 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
362 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
363 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700364 },
365 },
366 }
367
368 updateMask: string, The list of fields to be updated.
369 x__xgafv: string, V1 error format.
370 Allowed values
371 1 - v1 error format
372 2 - v2 error format
373
374Returns:
375 An object of the form:
376
377 { # Resource capturing the settings for the Security Health Analytics service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800378 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
379 &quot;name&quot;: &quot;A String&quot;, # The resource name of the SecurityHealthAnalyticsSettings. Formats: * organizations/{organization}/securityHealthAnalyticsSettings * folders/{folder}/securityHealthAnalyticsSettings * projects/{project}/securityHealthAnalyticsSettings
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800380 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800381 &quot;serviceAccount&quot;: &quot;A String&quot;, # Output only. The service account used by Security Health Analytics detectors.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700382 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
383 &quot;a_key&quot;: { # Configuration of a module.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800384 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700385 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
386 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
387 },
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700388 },
389 },
390 }</pre>
391</div>
392
393<div class="method">
394 <code class="details" id="updateWebSecurityScannerSettings">updateWebSecurityScannerSettings(name, body=None, updateMask=None, x__xgafv=None)</code>
395 <pre>Update the WebSecurityScannerSettings resource.
396
397Args:
398 name: string, The resource name of the WebSecurityScannerSettings. Formats: * organizations/{organization}/webSecurityScannerSettings * folders/{folder}/webSecurityScannerSettings * projects/{project}/webSecurityScannerSettings (required)
399 body: object, The request body.
400 The object takes the form of:
401
402{ # Resource capturing the settings for the Web Security Scanner service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800403 &quot;name&quot;: &quot;A String&quot;, # The resource name of the WebSecurityScannerSettings. Formats: * organizations/{organization}/webSecurityScannerSettings * folders/{folder}/webSecurityScannerSettings * projects/{project}/webSecurityScannerSettings
404 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
405 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
406 &quot;a_key&quot;: { # Configuration of a module.
407 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
408 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
409 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700410 },
411 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800412 },
413 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
414}
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700415
416 updateMask: string, The list of fields to be updated.
417 x__xgafv: string, V1 error format.
418 Allowed values
419 1 - v1 error format
420 2 - v2 error format
421
422Returns:
423 An object of the form:
424
425 { # Resource capturing the settings for the Web Security Scanner service.
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800426 &quot;name&quot;: &quot;A String&quot;, # The resource name of the WebSecurityScannerSettings. Formats: * organizations/{organization}/webSecurityScannerSettings * folders/{folder}/webSecurityScannerSettings * projects/{project}/webSecurityScannerSettings
427 &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The time the settings were last updated.
428 &quot;modules&quot;: { # The configurations including the state of enablement for the service&#x27;s different modules. The absence of a module in the map implies its configuration is inherited from its parent&#x27;s.
429 &quot;a_key&quot;: { # Configuration of a module.
430 &quot;moduleEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the module at its level of the resource hierarchy.
431 &quot;value&quot;: { # The configuration value for the module. The absence of this field implies its inheritance from the parent.
432 &quot;a_key&quot;: &quot;&quot;, # Properties of the object.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700433 },
434 },
Yoshi Automation Bot0bf565c2020-12-09 08:56:03 -0800435 },
436 &quot;serviceEnablementState&quot;: &quot;A String&quot;, # The state of enablement for the service at its level of the resource hierarchy. A DISABLED state will override all module enablement_states to DISABLED.
437 }</pre>
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700438</div>
439
440</body></html>