scc-firewall-manager-sdk 1.15.70__py3-none-any.whl → 1.15.72__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of scc-firewall-manager-sdk might be problematic. Click here for more details.

@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.15.70"
18
+ __version__ = "1.15.72"
19
19
 
20
20
  # import apis into sdk package
21
21
  from scc_firewall_manager_sdk.api.ai_assistant_api import AIAssistantApi
@@ -29,9 +29,10 @@ from scc_firewall_manager_sdk.api.command_line_interface_api import CommandLineI
29
29
  from scc_firewall_manager_sdk.api.commands_api import CommandsApi
30
30
  from scc_firewall_manager_sdk.api.connectors_api import ConnectorsApi
31
31
  from scc_firewall_manager_sdk.api.device_health_api import DeviceHealthApi
32
+ from scc_firewall_manager_sdk.api.device_health_aggregations_api import DeviceHealthAggregationsApi
32
33
  from scc_firewall_manager_sdk.api.device_upgrades_api import DeviceUpgradesApi
34
+ from scc_firewall_manager_sdk.api.interface_health_aggregations_api import InterfaceHealthAggregationsApi
33
35
  from scc_firewall_manager_sdk.api.inventory_api import InventoryApi
34
- from scc_firewall_manager_sdk.api.msp_device_health_aggregations_api import MSPDeviceHealthAggregationsApi
35
36
  from scc_firewall_manager_sdk.api.msp_inventory_api import MSPInventoryApi
36
37
  from scc_firewall_manager_sdk.api.msp_tenant_management_api import MSPTenantManagementApi
37
38
  from scc_firewall_manager_sdk.api.msp_user_management_api import MSPUserManagementApi
@@ -196,6 +197,7 @@ from scc_firewall_manager_sdk.models.meraki_deployment_mode import MerakiDeploym
196
197
  from scc_firewall_manager_sdk.models.meta import Meta
197
198
  from scc_firewall_manager_sdk.models.metric import Metric
198
199
  from scc_firewall_manager_sdk.models.metric_aggregation_item import MetricAggregationItem
200
+ from scc_firewall_manager_sdk.models.metric_aggregation_response import MetricAggregationResponse
199
201
  from scc_firewall_manager_sdk.models.metrics_item import MetricsItem
200
202
  from scc_firewall_manager_sdk.models.metrics_response import MetricsResponse
201
203
  from scc_firewall_manager_sdk.models.mfa_event import MfaEvent
@@ -204,7 +206,6 @@ from scc_firewall_manager_sdk.models.msp_add_tenant_input import MspAddTenantInp
204
206
  from scc_firewall_manager_sdk.models.msp_add_users_to_tenant_input import MspAddUsersToTenantInput
205
207
  from scc_firewall_manager_sdk.models.msp_create_tenant_input import MspCreateTenantInput
206
208
  from scc_firewall_manager_sdk.models.msp_delete_users_from_tenant_input import MspDeleteUsersFromTenantInput
207
- from scc_firewall_manager_sdk.models.msp_device_metric_aggregation_response import MspDeviceMetricAggregationResponse
208
209
  from scc_firewall_manager_sdk.models.msp_export_input import MspExportInput
209
210
  from scc_firewall_manager_sdk.models.msp_managed_cloud_service import MspManagedCloudService
210
211
  from scc_firewall_manager_sdk.models.msp_managed_cloud_service_distinct_attribute_values import MspManagedCloudServiceDistinctAttributeValues
@@ -12,9 +12,10 @@ from scc_firewall_manager_sdk.api.command_line_interface_api import CommandLineI
12
12
  from scc_firewall_manager_sdk.api.commands_api import CommandsApi
13
13
  from scc_firewall_manager_sdk.api.connectors_api import ConnectorsApi
14
14
  from scc_firewall_manager_sdk.api.device_health_api import DeviceHealthApi
15
+ from scc_firewall_manager_sdk.api.device_health_aggregations_api import DeviceHealthAggregationsApi
15
16
  from scc_firewall_manager_sdk.api.device_upgrades_api import DeviceUpgradesApi
17
+ from scc_firewall_manager_sdk.api.interface_health_aggregations_api import InterfaceHealthAggregationsApi
16
18
  from scc_firewall_manager_sdk.api.inventory_api import InventoryApi
17
- from scc_firewall_manager_sdk.api.msp_device_health_aggregations_api import MSPDeviceHealthAggregationsApi
18
19
  from scc_firewall_manager_sdk.api.msp_inventory_api import MSPInventoryApi
19
20
  from scc_firewall_manager_sdk.api.msp_tenant_management_api import MSPTenantManagementApi
20
21
  from scc_firewall_manager_sdk.api.msp_user_management_api import MSPUserManagementApi
@@ -20,14 +20,14 @@ from typing_extensions import Annotated
20
20
  from pydantic import Field, StrictStr, field_validator
21
21
  from typing import Optional
22
22
  from typing_extensions import Annotated
23
- from scc_firewall_manager_sdk.models.msp_device_metric_aggregation_response import MspDeviceMetricAggregationResponse
23
+ from scc_firewall_manager_sdk.models.metric_aggregation_response import MetricAggregationResponse
24
24
 
25
25
  from scc_firewall_manager_sdk.api_client import ApiClient, RequestSerialized
26
26
  from scc_firewall_manager_sdk.api_response import ApiResponse
27
27
  from scc_firewall_manager_sdk.rest import RESTResponseType
28
28
 
29
29
 
30
- class MSPDeviceHealthAggregationsApi:
30
+ class DeviceHealthAggregationsApi:
31
31
  """NOTE: This class is auto generated by OpenAPI Generator
32
32
  Ref: https://openapi-generator.tech
33
33
 
@@ -41,7 +41,7 @@ class MSPDeviceHealthAggregationsApi:
41
41
 
42
42
 
43
43
  @validate_call
44
- def get_msp_asa_device_health_metric_aggregations(
44
+ def get_device_health_metric_aggregations(
45
45
  self,
46
46
  metrics: Annotated[Optional[StrictStr], Field(description="Comma-separated list of metrics to return (e.g. cpu,mem). Returns all if omitted.")] = None,
47
47
  aggregation_period: Annotated[Optional[StrictStr], Field(description="The aggregation period of the metrics returned")] = None,
@@ -57,10 +57,10 @@ class MSPDeviceHealthAggregationsApi:
57
57
  _content_type: Optional[StrictStr] = None,
58
58
  _headers: Optional[Dict[StrictStr, Any]] = None,
59
59
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
60
- ) -> MspDeviceMetricAggregationResponse:
61
- """Get MSP device health metric aggregations
60
+ ) -> MetricAggregationResponse:
61
+ """Get device health metric aggregations
62
62
 
63
- Retrieve aggregation device health metrics for all the MSP managed devices.
63
+ Retrieve aggregation device health metrics for all managed devices.
64
64
 
65
65
  :param metrics: Comma-separated list of metrics to return (e.g. cpu,mem). Returns all if omitted.
66
66
  :type metrics: str
@@ -88,7 +88,7 @@ class MSPDeviceHealthAggregationsApi:
88
88
  :return: Returns the result object.
89
89
  """ # noqa: E501
90
90
 
91
- _param = self._get_msp_asa_device_health_metric_aggregations_serialize(
91
+ _param = self._get_device_health_metric_aggregations_serialize(
92
92
  metrics=metrics,
93
93
  aggregation_period=aggregation_period,
94
94
  _request_auth=_request_auth,
@@ -98,7 +98,7 @@ class MSPDeviceHealthAggregationsApi:
98
98
  )
99
99
 
100
100
  _response_types_map: Dict[str, Optional[str]] = {
101
- '200': "MspDeviceMetricAggregationResponse",
101
+ '200': "MetricAggregationResponse",
102
102
  '400': "CommonApiError",
103
103
  '401': "AuthenticationError",
104
104
  '403': "CommonApiError",
@@ -117,7 +117,7 @@ class MSPDeviceHealthAggregationsApi:
117
117
 
118
118
 
119
119
  @validate_call
120
- def get_msp_asa_device_health_metric_aggregations_with_http_info(
120
+ def get_device_health_metric_aggregations_with_http_info(
121
121
  self,
122
122
  metrics: Annotated[Optional[StrictStr], Field(description="Comma-separated list of metrics to return (e.g. cpu,mem). Returns all if omitted.")] = None,
123
123
  aggregation_period: Annotated[Optional[StrictStr], Field(description="The aggregation period of the metrics returned")] = None,
@@ -133,10 +133,10 @@ class MSPDeviceHealthAggregationsApi:
133
133
  _content_type: Optional[StrictStr] = None,
134
134
  _headers: Optional[Dict[StrictStr, Any]] = None,
135
135
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
136
- ) -> ApiResponse[MspDeviceMetricAggregationResponse]:
137
- """Get MSP device health metric aggregations
136
+ ) -> ApiResponse[MetricAggregationResponse]:
137
+ """Get device health metric aggregations
138
138
 
139
- Retrieve aggregation device health metrics for all the MSP managed devices.
139
+ Retrieve aggregation device health metrics for all managed devices.
140
140
 
141
141
  :param metrics: Comma-separated list of metrics to return (e.g. cpu,mem). Returns all if omitted.
142
142
  :type metrics: str
@@ -164,7 +164,7 @@ class MSPDeviceHealthAggregationsApi:
164
164
  :return: Returns the result object.
165
165
  """ # noqa: E501
166
166
 
167
- _param = self._get_msp_asa_device_health_metric_aggregations_serialize(
167
+ _param = self._get_device_health_metric_aggregations_serialize(
168
168
  metrics=metrics,
169
169
  aggregation_period=aggregation_period,
170
170
  _request_auth=_request_auth,
@@ -174,7 +174,7 @@ class MSPDeviceHealthAggregationsApi:
174
174
  )
175
175
 
176
176
  _response_types_map: Dict[str, Optional[str]] = {
177
- '200': "MspDeviceMetricAggregationResponse",
177
+ '200': "MetricAggregationResponse",
178
178
  '400': "CommonApiError",
179
179
  '401': "AuthenticationError",
180
180
  '403': "CommonApiError",
@@ -193,7 +193,7 @@ class MSPDeviceHealthAggregationsApi:
193
193
 
194
194
 
195
195
  @validate_call
196
- def get_msp_asa_device_health_metric_aggregations_without_preload_content(
196
+ def get_device_health_metric_aggregations_without_preload_content(
197
197
  self,
198
198
  metrics: Annotated[Optional[StrictStr], Field(description="Comma-separated list of metrics to return (e.g. cpu,mem). Returns all if omitted.")] = None,
199
199
  aggregation_period: Annotated[Optional[StrictStr], Field(description="The aggregation period of the metrics returned")] = None,
@@ -210,9 +210,9 @@ class MSPDeviceHealthAggregationsApi:
210
210
  _headers: Optional[Dict[StrictStr, Any]] = None,
211
211
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
212
212
  ) -> RESTResponseType:
213
- """Get MSP device health metric aggregations
213
+ """Get device health metric aggregations
214
214
 
215
- Retrieve aggregation device health metrics for all the MSP managed devices.
215
+ Retrieve aggregation device health metrics for all managed devices.
216
216
 
217
217
  :param metrics: Comma-separated list of metrics to return (e.g. cpu,mem). Returns all if omitted.
218
218
  :type metrics: str
@@ -240,7 +240,7 @@ class MSPDeviceHealthAggregationsApi:
240
240
  :return: Returns the result object.
241
241
  """ # noqa: E501
242
242
 
243
- _param = self._get_msp_asa_device_health_metric_aggregations_serialize(
243
+ _param = self._get_device_health_metric_aggregations_serialize(
244
244
  metrics=metrics,
245
245
  aggregation_period=aggregation_period,
246
246
  _request_auth=_request_auth,
@@ -250,7 +250,7 @@ class MSPDeviceHealthAggregationsApi:
250
250
  )
251
251
 
252
252
  _response_types_map: Dict[str, Optional[str]] = {
253
- '200': "MspDeviceMetricAggregationResponse",
253
+ '200': "MetricAggregationResponse",
254
254
  '400': "CommonApiError",
255
255
  '401': "AuthenticationError",
256
256
  '403': "CommonApiError",
@@ -264,7 +264,7 @@ class MSPDeviceHealthAggregationsApi:
264
264
  return response_data.response
265
265
 
266
266
 
267
- def _get_msp_asa_device_health_metric_aggregations_serialize(
267
+ def _get_device_health_metric_aggregations_serialize(
268
268
  self,
269
269
  metrics,
270
270
  aggregation_period,
@@ -316,7 +316,7 @@ class MSPDeviceHealthAggregationsApi:
316
316
 
317
317
  return self.api_client.param_serialize(
318
318
  method='GET',
319
- resource_path='/v1/msp/inventory/devices/health/metrics/aggregations',
319
+ resource_path='/v1/inventory/devices/health/metrics/aggregations',
320
320
  path_params=_path_params,
321
321
  query_params=_query_params,
322
322
  header_params=_header_params,
@@ -0,0 +1,332 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Cisco Security Cloud Control Firewall Manager API
5
+
6
+ Use the documentation to explore the endpoints Security Cloud Control Firewall Manager has to offer
7
+
8
+ The version of the OpenAPI document: 1.15.0
9
+ Contact: cdo.tac@cisco.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+ import warnings
16
+ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
17
+ from typing import Any, Dict, List, Optional, Tuple, Union
18
+ from typing_extensions import Annotated
19
+
20
+ from pydantic import Field, StrictStr, field_validator
21
+ from typing import Optional
22
+ from typing_extensions import Annotated
23
+ from scc_firewall_manager_sdk.models.metric_aggregation_response import MetricAggregationResponse
24
+
25
+ from scc_firewall_manager_sdk.api_client import ApiClient, RequestSerialized
26
+ from scc_firewall_manager_sdk.api_response import ApiResponse
27
+ from scc_firewall_manager_sdk.rest import RESTResponseType
28
+
29
+
30
+ class InterfaceHealthAggregationsApi:
31
+ """NOTE: This class is auto generated by OpenAPI Generator
32
+ Ref: https://openapi-generator.tech
33
+
34
+ Do not edit the class manually.
35
+ """
36
+
37
+ def __init__(self, api_client=None) -> None:
38
+ if api_client is None:
39
+ api_client = ApiClient.get_default()
40
+ self.api_client = api_client
41
+
42
+
43
+ @validate_call
44
+ def get_interface_health_metric_aggregations(
45
+ self,
46
+ metrics: Annotated[Optional[StrictStr], Field(description="Comma-separated list of metrics to return (e.g. linkStatus,overruns). Returns all if omitted.")] = None,
47
+ aggregation_period: Annotated[Optional[StrictStr], Field(description="The aggregation period of the metrics returned")] = None,
48
+ _request_timeout: Union[
49
+ None,
50
+ Annotated[StrictFloat, Field(gt=0)],
51
+ Tuple[
52
+ Annotated[StrictFloat, Field(gt=0)],
53
+ Annotated[StrictFloat, Field(gt=0)]
54
+ ]
55
+ ] = None,
56
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
57
+ _content_type: Optional[StrictStr] = None,
58
+ _headers: Optional[Dict[StrictStr, Any]] = None,
59
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
60
+ ) -> MetricAggregationResponse:
61
+ """Get interface health metric aggregations
62
+
63
+ Retrieve aggregation interface health metrics for all managed devices.
64
+
65
+ :param metrics: Comma-separated list of metrics to return (e.g. linkStatus,overruns). Returns all if omitted.
66
+ :type metrics: str
67
+ :param aggregation_period: The aggregation period of the metrics returned
68
+ :type aggregation_period: str
69
+ :param _request_timeout: timeout setting for this request. If one
70
+ number provided, it will be total request
71
+ timeout. It can also be a pair (tuple) of
72
+ (connection, read) timeouts.
73
+ :type _request_timeout: int, tuple(int, int), optional
74
+ :param _request_auth: set to override the auth_settings for an a single
75
+ request; this effectively ignores the
76
+ authentication in the spec for a single request.
77
+ :type _request_auth: dict, optional
78
+ :param _content_type: force content-type for the request.
79
+ :type _content_type: str, Optional
80
+ :param _headers: set to override the headers for a single
81
+ request; this effectively ignores the headers
82
+ in the spec for a single request.
83
+ :type _headers: dict, optional
84
+ :param _host_index: set to override the host_index for a single
85
+ request; this effectively ignores the host_index
86
+ in the spec for a single request.
87
+ :type _host_index: int, optional
88
+ :return: Returns the result object.
89
+ """ # noqa: E501
90
+
91
+ _param = self._get_interface_health_metric_aggregations_serialize(
92
+ metrics=metrics,
93
+ aggregation_period=aggregation_period,
94
+ _request_auth=_request_auth,
95
+ _content_type=_content_type,
96
+ _headers=_headers,
97
+ _host_index=_host_index
98
+ )
99
+
100
+ _response_types_map: Dict[str, Optional[str]] = {
101
+ '200': "MetricAggregationResponse",
102
+ '400': "CommonApiError",
103
+ '401': "AuthenticationError",
104
+ '403': "CommonApiError",
105
+ '404': "CommonApiError",
106
+ '500': "CommonApiError",
107
+ }
108
+ response_data = self.api_client.call_api(
109
+ *_param,
110
+ _request_timeout=_request_timeout
111
+ )
112
+ response_data.read()
113
+ return self.api_client.response_deserialize(
114
+ response_data=response_data,
115
+ response_types_map=_response_types_map,
116
+ ).data
117
+
118
+
119
+ @validate_call
120
+ def get_interface_health_metric_aggregations_with_http_info(
121
+ self,
122
+ metrics: Annotated[Optional[StrictStr], Field(description="Comma-separated list of metrics to return (e.g. linkStatus,overruns). Returns all if omitted.")] = None,
123
+ aggregation_period: Annotated[Optional[StrictStr], Field(description="The aggregation period of the metrics returned")] = None,
124
+ _request_timeout: Union[
125
+ None,
126
+ Annotated[StrictFloat, Field(gt=0)],
127
+ Tuple[
128
+ Annotated[StrictFloat, Field(gt=0)],
129
+ Annotated[StrictFloat, Field(gt=0)]
130
+ ]
131
+ ] = None,
132
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
133
+ _content_type: Optional[StrictStr] = None,
134
+ _headers: Optional[Dict[StrictStr, Any]] = None,
135
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
136
+ ) -> ApiResponse[MetricAggregationResponse]:
137
+ """Get interface health metric aggregations
138
+
139
+ Retrieve aggregation interface health metrics for all managed devices.
140
+
141
+ :param metrics: Comma-separated list of metrics to return (e.g. linkStatus,overruns). Returns all if omitted.
142
+ :type metrics: str
143
+ :param aggregation_period: The aggregation period of the metrics returned
144
+ :type aggregation_period: str
145
+ :param _request_timeout: timeout setting for this request. If one
146
+ number provided, it will be total request
147
+ timeout. It can also be a pair (tuple) of
148
+ (connection, read) timeouts.
149
+ :type _request_timeout: int, tuple(int, int), optional
150
+ :param _request_auth: set to override the auth_settings for an a single
151
+ request; this effectively ignores the
152
+ authentication in the spec for a single request.
153
+ :type _request_auth: dict, optional
154
+ :param _content_type: force content-type for the request.
155
+ :type _content_type: str, Optional
156
+ :param _headers: set to override the headers for a single
157
+ request; this effectively ignores the headers
158
+ in the spec for a single request.
159
+ :type _headers: dict, optional
160
+ :param _host_index: set to override the host_index for a single
161
+ request; this effectively ignores the host_index
162
+ in the spec for a single request.
163
+ :type _host_index: int, optional
164
+ :return: Returns the result object.
165
+ """ # noqa: E501
166
+
167
+ _param = self._get_interface_health_metric_aggregations_serialize(
168
+ metrics=metrics,
169
+ aggregation_period=aggregation_period,
170
+ _request_auth=_request_auth,
171
+ _content_type=_content_type,
172
+ _headers=_headers,
173
+ _host_index=_host_index
174
+ )
175
+
176
+ _response_types_map: Dict[str, Optional[str]] = {
177
+ '200': "MetricAggregationResponse",
178
+ '400': "CommonApiError",
179
+ '401': "AuthenticationError",
180
+ '403': "CommonApiError",
181
+ '404': "CommonApiError",
182
+ '500': "CommonApiError",
183
+ }
184
+ response_data = self.api_client.call_api(
185
+ *_param,
186
+ _request_timeout=_request_timeout
187
+ )
188
+ response_data.read()
189
+ return self.api_client.response_deserialize(
190
+ response_data=response_data,
191
+ response_types_map=_response_types_map,
192
+ )
193
+
194
+
195
+ @validate_call
196
+ def get_interface_health_metric_aggregations_without_preload_content(
197
+ self,
198
+ metrics: Annotated[Optional[StrictStr], Field(description="Comma-separated list of metrics to return (e.g. linkStatus,overruns). Returns all if omitted.")] = None,
199
+ aggregation_period: Annotated[Optional[StrictStr], Field(description="The aggregation period of the metrics returned")] = None,
200
+ _request_timeout: Union[
201
+ None,
202
+ Annotated[StrictFloat, Field(gt=0)],
203
+ Tuple[
204
+ Annotated[StrictFloat, Field(gt=0)],
205
+ Annotated[StrictFloat, Field(gt=0)]
206
+ ]
207
+ ] = None,
208
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
209
+ _content_type: Optional[StrictStr] = None,
210
+ _headers: Optional[Dict[StrictStr, Any]] = None,
211
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
212
+ ) -> RESTResponseType:
213
+ """Get interface health metric aggregations
214
+
215
+ Retrieve aggregation interface health metrics for all managed devices.
216
+
217
+ :param metrics: Comma-separated list of metrics to return (e.g. linkStatus,overruns). Returns all if omitted.
218
+ :type metrics: str
219
+ :param aggregation_period: The aggregation period of the metrics returned
220
+ :type aggregation_period: str
221
+ :param _request_timeout: timeout setting for this request. If one
222
+ number provided, it will be total request
223
+ timeout. It can also be a pair (tuple) of
224
+ (connection, read) timeouts.
225
+ :type _request_timeout: int, tuple(int, int), optional
226
+ :param _request_auth: set to override the auth_settings for an a single
227
+ request; this effectively ignores the
228
+ authentication in the spec for a single request.
229
+ :type _request_auth: dict, optional
230
+ :param _content_type: force content-type for the request.
231
+ :type _content_type: str, Optional
232
+ :param _headers: set to override the headers for a single
233
+ request; this effectively ignores the headers
234
+ in the spec for a single request.
235
+ :type _headers: dict, optional
236
+ :param _host_index: set to override the host_index for a single
237
+ request; this effectively ignores the host_index
238
+ in the spec for a single request.
239
+ :type _host_index: int, optional
240
+ :return: Returns the result object.
241
+ """ # noqa: E501
242
+
243
+ _param = self._get_interface_health_metric_aggregations_serialize(
244
+ metrics=metrics,
245
+ aggregation_period=aggregation_period,
246
+ _request_auth=_request_auth,
247
+ _content_type=_content_type,
248
+ _headers=_headers,
249
+ _host_index=_host_index
250
+ )
251
+
252
+ _response_types_map: Dict[str, Optional[str]] = {
253
+ '200': "MetricAggregationResponse",
254
+ '400': "CommonApiError",
255
+ '401': "AuthenticationError",
256
+ '403': "CommonApiError",
257
+ '404': "CommonApiError",
258
+ '500': "CommonApiError",
259
+ }
260
+ response_data = self.api_client.call_api(
261
+ *_param,
262
+ _request_timeout=_request_timeout
263
+ )
264
+ return response_data.response
265
+
266
+
267
+ def _get_interface_health_metric_aggregations_serialize(
268
+ self,
269
+ metrics,
270
+ aggregation_period,
271
+ _request_auth,
272
+ _content_type,
273
+ _headers,
274
+ _host_index,
275
+ ) -> RequestSerialized:
276
+
277
+ _host = None
278
+
279
+ _collection_formats: Dict[str, str] = {
280
+ }
281
+
282
+ _path_params: Dict[str, str] = {}
283
+ _query_params: List[Tuple[str, str]] = []
284
+ _header_params: Dict[str, Optional[str]] = _headers or {}
285
+ _form_params: List[Tuple[str, str]] = []
286
+ _files: Dict[str, str] = {}
287
+ _body_params: Optional[bytes] = None
288
+
289
+ # process the path parameters
290
+ # process the query parameters
291
+ if metrics is not None:
292
+
293
+ _query_params.append(('metrics', metrics))
294
+
295
+ if aggregation_period is not None:
296
+
297
+ _query_params.append(('aggregationPeriod', aggregation_period))
298
+
299
+ # process the header parameters
300
+ # process the form parameters
301
+ # process the body parameter
302
+
303
+
304
+ # set the HTTP header `Accept`
305
+ _header_params['Accept'] = self.api_client.select_header_accept(
306
+ [
307
+ 'application/json'
308
+ ]
309
+ )
310
+
311
+
312
+ # authentication setting
313
+ _auth_settings: List[str] = [
314
+ 'bearerAuth'
315
+ ]
316
+
317
+ return self.api_client.param_serialize(
318
+ method='GET',
319
+ resource_path='/v1/inventory/devices/health/interfaces/aggregations',
320
+ path_params=_path_params,
321
+ query_params=_query_params,
322
+ header_params=_header_params,
323
+ body=_body_params,
324
+ post_params=_form_params,
325
+ files=_files,
326
+ auth_settings=_auth_settings,
327
+ collection_formats=_collection_formats,
328
+ _host=_host,
329
+ _request_auth=_request_auth
330
+ )
331
+
332
+
@@ -88,7 +88,7 @@ class ApiClient:
88
88
  self.default_headers[header_name] = header_value
89
89
  self.cookie = cookie
90
90
  # Set default User-Agent.
91
- self.user_agent = 'OpenAPI-Generator/1.15.70/python'
91
+ self.user_agent = 'OpenAPI-Generator/1.15.72/python'
92
92
  self.client_side_validation = configuration.client_side_validation
93
93
 
94
94
  def __enter__(self):
@@ -380,7 +380,7 @@ class Configuration:
380
380
  "OS: {env}\n"\
381
381
  "Python Version: {pyversion}\n"\
382
382
  "Version of the API: 1.15.0\n"\
383
- "SDK Package Version: 1.15.70".\
383
+ "SDK Package Version: 1.15.72".\
384
384
  format(env=sys.platform, pyversion=sys.version)
385
385
 
386
386
  def get_host_settings(self):
@@ -156,6 +156,7 @@ from scc_firewall_manager_sdk.models.meraki_deployment_mode import MerakiDeploym
156
156
  from scc_firewall_manager_sdk.models.meta import Meta
157
157
  from scc_firewall_manager_sdk.models.metric import Metric
158
158
  from scc_firewall_manager_sdk.models.metric_aggregation_item import MetricAggregationItem
159
+ from scc_firewall_manager_sdk.models.metric_aggregation_response import MetricAggregationResponse
159
160
  from scc_firewall_manager_sdk.models.metrics_item import MetricsItem
160
161
  from scc_firewall_manager_sdk.models.metrics_response import MetricsResponse
161
162
  from scc_firewall_manager_sdk.models.mfa_event import MfaEvent
@@ -164,7 +165,6 @@ from scc_firewall_manager_sdk.models.msp_add_tenant_input import MspAddTenantInp
164
165
  from scc_firewall_manager_sdk.models.msp_add_users_to_tenant_input import MspAddUsersToTenantInput
165
166
  from scc_firewall_manager_sdk.models.msp_create_tenant_input import MspCreateTenantInput
166
167
  from scc_firewall_manager_sdk.models.msp_delete_users_from_tenant_input import MspDeleteUsersFromTenantInput
167
- from scc_firewall_manager_sdk.models.msp_device_metric_aggregation_response import MspDeviceMetricAggregationResponse
168
168
  from scc_firewall_manager_sdk.models.msp_export_input import MspExportInput
169
169
  from scc_firewall_manager_sdk.models.msp_managed_cloud_service import MspManagedCloudService
170
170
  from scc_firewall_manager_sdk.models.msp_managed_cloud_service_distinct_attribute_values import MspManagedCloudServiceDistinctAttributeValues
@@ -24,9 +24,9 @@ from scc_firewall_manager_sdk.models.metric_aggregation_item import MetricAggreg
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
26
26
 
27
- class MspDeviceMetricAggregationResponse(BaseModel):
27
+ class MetricAggregationResponse(BaseModel):
28
28
  """
29
- MspDeviceMetricAggregationResponse
29
+ MetricAggregationResponse
30
30
  """ # noqa: E501
31
31
  metric_aggregations: Optional[List[MetricAggregationItem]] = Field(default=None, alias="metricAggregations")
32
32
  __properties: ClassVar[List[str]] = ["metricAggregations"]
@@ -49,7 +49,7 @@ class MspDeviceMetricAggregationResponse(BaseModel):
49
49
 
50
50
  @classmethod
51
51
  def from_json(cls, json_str: str) -> Optional[Self]:
52
- """Create an instance of MspDeviceMetricAggregationResponse from a JSON string"""
52
+ """Create an instance of MetricAggregationResponse from a JSON string"""
53
53
  return cls.from_dict(json.loads(json_str))
54
54
 
55
55
  def to_dict(self) -> Dict[str, Any]:
@@ -81,7 +81,7 @@ class MspDeviceMetricAggregationResponse(BaseModel):
81
81
 
82
82
  @classmethod
83
83
  def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
84
- """Create an instance of MspDeviceMetricAggregationResponse from a dict"""
84
+ """Create an instance of MetricAggregationResponse from a dict"""
85
85
  if obj is None:
86
86
  return None
87
87
 
@@ -18,7 +18,7 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional
23
23
  from typing import Optional, Set
24
24
  from typing_extensions import Self
@@ -28,8 +28,9 @@ class UpgradeAsaDeviceInput(BaseModel):
28
28
  UpgradeAsaDeviceInput
29
29
  """ # noqa: E501
30
30
  asdm_version: Optional[StrictStr] = Field(default=None, description="The target ASDM software version to upgrade the device to.", alias="asdmVersion")
31
+ ignore_maintenance_window: Optional[StrictBool] = Field(default=None, description="A boolean value, indicating whether device maintenance window should be ignored. If this is set to true, upgrade will be allowed even if device is outside maintenance window.", alias="ignoreMaintenanceWindow")
31
32
  software_version: Optional[StrictStr] = Field(default=None, description="The target ASA firmware version to upgrade the device to.", alias="softwareVersion")
32
- __properties: ClassVar[List[str]] = ["asdmVersion", "softwareVersion"]
33
+ __properties: ClassVar[List[str]] = ["asdmVersion", "ignoreMaintenanceWindow", "softwareVersion"]
33
34
 
34
35
  model_config = ConfigDict(
35
36
  populate_by_name=True,
@@ -83,6 +84,7 @@ class UpgradeAsaDeviceInput(BaseModel):
83
84
 
84
85
  _obj = cls.model_validate({
85
86
  "asdmVersion": obj.get("asdmVersion"),
87
+ "ignoreMaintenanceWindow": obj.get("ignoreMaintenanceWindow"),
86
88
  "softwareVersion": obj.get("softwareVersion")
87
89
  })
88
90
  return _obj
@@ -27,10 +27,11 @@ class UpgradeFtdDeviceInput(BaseModel):
27
27
  """
28
28
  UpgradeFtdDeviceInput
29
29
  """ # noqa: E501
30
+ ignore_maintenance_window: Optional[StrictBool] = Field(default=None, description="A boolean value, indicating whether device maintenance window should be ignored. If this is set to true, upgrade will be allowed even if device is outside maintenance window.", alias="ignoreMaintenanceWindow")
30
31
  name: Optional[StrictStr] = Field(default=None, description="An optional name for the upgrade operation to help identify and track the upgrade.")
31
32
  stage_upgrade: Optional[StrictBool] = Field(default=False, description="A boolean value, indicating whether the upgrade should be staged. If this is set to true, the image will be downloaded on to the device and readiness checks will be performed. However, the upgrade will not be applied to the device.", alias="stageUpgrade")
32
33
  upgrade_package_uid: StrictStr = Field(description="The unique identifier, represented as a UUID, of the upgrade package to be applied to the device.", alias="upgradePackageUid")
33
- __properties: ClassVar[List[str]] = ["name", "stageUpgrade", "upgradePackageUid"]
34
+ __properties: ClassVar[List[str]] = ["ignoreMaintenanceWindow", "name", "stageUpgrade", "upgradePackageUid"]
34
35
 
35
36
  model_config = ConfigDict(
36
37
  populate_by_name=True,
@@ -83,6 +84,7 @@ class UpgradeFtdDeviceInput(BaseModel):
83
84
  return cls.model_validate(obj)
84
85
 
85
86
  _obj = cls.model_validate({
87
+ "ignoreMaintenanceWindow": obj.get("ignoreMaintenanceWindow"),
86
88
  "name": obj.get("name"),
87
89
  "stageUpgrade": obj.get("stageUpgrade") if obj.get("stageUpgrade") is not None else False,
88
90
  "upgradePackageUid": obj.get("upgradePackageUid")
@@ -29,10 +29,11 @@ class UpgradeFtdDevicesInput(BaseModel):
29
29
  UpgradeFtdDevicesInput
30
30
  """ # noqa: E501
31
31
  device_uids: Annotated[List[StrictStr], Field(min_length=1, max_length=50)] = Field(description="The set of unique identifiers, represented as UUIDs, of the devices to upgrade in Security Cloud Control. All of the devices in the list have to be compatible with the upgrade package.", alias="deviceUids")
32
+ ignore_maintenance_window: Optional[StrictBool] = Field(default=None, description="A boolean value, indicating whether devices maintenance window should be ignored. If this is set to true, upgrade will be allowed even if there are devices outside their maintenance window.", alias="ignoreMaintenanceWindow")
32
33
  name: Optional[StrictStr] = Field(default=None, description="An optional name for the upgrade operation to help identify and track the upgrade.")
33
34
  stage_upgrade: Optional[StrictBool] = Field(default=False, description="A boolean value, indicating whether the upgrade should be staged. If this is set to true, the image will be downloaded on to the device and readiness checks will be performed. However, the upgrade will not be applied to the device.", alias="stageUpgrade")
34
35
  upgrade_package_uid: StrictStr = Field(description="The unique identifier, represented as a UUID, of the upgrade package to be applied to the device.", alias="upgradePackageUid")
35
- __properties: ClassVar[List[str]] = ["deviceUids", "name", "stageUpgrade", "upgradePackageUid"]
36
+ __properties: ClassVar[List[str]] = ["deviceUids", "ignoreMaintenanceWindow", "name", "stageUpgrade", "upgradePackageUid"]
36
37
 
37
38
  model_config = ConfigDict(
38
39
  populate_by_name=True,
@@ -86,6 +87,7 @@ class UpgradeFtdDevicesInput(BaseModel):
86
87
 
87
88
  _obj = cls.model_validate({
88
89
  "deviceUids": obj.get("deviceUids"),
90
+ "ignoreMaintenanceWindow": obj.get("ignoreMaintenanceWindow"),
89
91
  "name": obj.get("name"),
90
92
  "stageUpgrade": obj.get("stageUpgrade") if obj.get("stageUpgrade") is not None else False,
91
93
  "upgradePackageUid": obj.get("upgradePackageUid")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scc-firewall-manager-sdk
3
- Version: 1.15.70
3
+ Version: 1.15.72
4
4
  Summary: Cisco Security Cloud Control Firewall Manager API
5
5
  Home-page:
6
6
  Author: Cisco Security Cloud Control TAC
@@ -1,11 +1,11 @@
1
- scc_firewall_manager_sdk/__init__.py,sha256=kV0COd2_2Gdpu4TPzEktpGUbgWWMZIYVIb0cVxXVmsU,21913
2
- scc_firewall_manager_sdk/api_client.py,sha256=vb4vgucSvaH9VlV-kL0emDDB7AyON2TIQcJbwtzQsKg,25920
1
+ scc_firewall_manager_sdk/__init__.py,sha256=_20bGM5vP-2u5_ZgnP1c97TxfhBsEp_GUIz7pkQo9wQ,21992
2
+ scc_firewall_manager_sdk/api_client.py,sha256=GZxOXh3HoxUldce5pNoh85s4my_gb-2rzC8-Hz8kP9I,25920
3
3
  scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- scc_firewall_manager_sdk/configuration.py,sha256=1NL_4gseRQPMYTHhVQut7n3C9ZrOyu_yf67H_Xcd3mY,15992
4
+ scc_firewall_manager_sdk/configuration.py,sha256=SVAGM5VevuE6L2OLlymrEZDo9KsiixdnJ3A3lbLRZoo,15992
5
5
  scc_firewall_manager_sdk/exceptions.py,sha256=u5-7l5MRjP-aS2pNudBzqSw9OI4xVsIvUjw4WCA8LEk,6039
6
6
  scc_firewall_manager_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  scc_firewall_manager_sdk/rest.py,sha256=cSeilvAB5y-V_10IdXcZ0kOyv5dYW8jeWVhrD6kUDa0,9309
8
- scc_firewall_manager_sdk/api/__init__.py,sha256=EBpVTxKjphjG9fkFJs1t79R_6B-xa262-FyDTKItohw,1902
8
+ scc_firewall_manager_sdk/api/__init__.py,sha256=2H6DZHTFf0qOgdTs-P-5Jp-RpslLrvhmbCLan__Ww7Q,2001
9
9
  scc_firewall_manager_sdk/api/ai_assistant_api.py,sha256=k4PXtChJD_MzAc5cn_EYtC1Q4YCCknDPTYhLlh4tFhA,60316
10
10
  scc_firewall_manager_sdk/api/asa_access_groups_api.py,sha256=n29L7dlwRpP8MsBlgMn9pSwV-uCXf5QHf18qiEXU4xY,60430
11
11
  scc_firewall_manager_sdk/api/asa_access_rules_api.py,sha256=zStpYuIiNHyTaIINPqu5qSSWp3-wGo9SmXodwEJEJhI,60377
@@ -16,11 +16,12 @@ scc_firewall_manager_sdk/api/changelogs_api.py,sha256=6C4ugk1SwLgJfCM-q-_H2gnNoW
16
16
  scc_firewall_manager_sdk/api/command_line_interface_api.py,sha256=_sUPKdTkBkXNbk5m9iGH1t-eYJbFdzDLjLAuNMWJqYc,110872
17
17
  scc_firewall_manager_sdk/api/commands_api.py,sha256=U1cDPCmUAgOPnCOC8KcbcQpLGSwgOBBgHUcKH6JmWK4,33891
18
18
  scc_firewall_manager_sdk/api/connectors_api.py,sha256=lw4asxJMtyHTm3sxM6Z7S1O2tbr4ZtbjVrZIalmYagI,59889
19
+ scc_firewall_manager_sdk/api/device_health_aggregations_api.py,sha256=h6wyzUSbI7IMXjsFnBhuufUcDYhQ7n1dJkVp-wt8XPE,13644
19
20
  scc_firewall_manager_sdk/api/device_health_api.py,sha256=UoxgUo10Am1kga8U0Kxhb6DDw6d7wpXxzGopsvUJ1JI,62283
20
21
  scc_firewall_manager_sdk/api/device_upgrades_api.py,sha256=iWb4v4tteX7uoEOncmF34V0n1So7oTPa_tV9AscL9Ck,138718
22
+ scc_firewall_manager_sdk/api/interface_health_aggregations_api.py,sha256=2h7kABlh0WXKA2_1WWpEoxKbEHN1ATxHh2Z_-J1icgs,13761
21
23
  scc_firewall_manager_sdk/api/inventory_api.py,sha256=EJqDZzqBE4w_klxuo84rSYmrmbinGSJEbSbU6Wqs4Gg,444995
22
24
  scc_firewall_manager_sdk/api/meta_api.py,sha256=0T4mIpkOc0FyDIvEN5qhRQbKN4CzOM00_sRVY2oG59U,29963
23
- scc_firewall_manager_sdk/api/msp_device_health_aggregations_api.py,sha256=ijjdWeZTpQg5wre_v-qQHIWWJi9Hg3f_dz6i8K0if-U,13808
24
25
  scc_firewall_manager_sdk/api/msp_inventory_api.py,sha256=eLYqsv_7YNxQGLQLqEnWfSFPIJ8nWnuJQkZfxtGapxM,185473
25
26
  scc_firewall_manager_sdk/api/msp_tenant_management_api.py,sha256=u1Ljk5-A3JnMGyfGNVVyc1L2ll6I1m43hrLflbqvT5M,108920
26
27
  scc_firewall_manager_sdk/api/msp_user_management_api.py,sha256=MPy-WAv52ziuUcrK_Tq_q38PN1pbpgfL5fdqzYP81S8,54797
@@ -30,7 +31,7 @@ scc_firewall_manager_sdk/api/search_api.py,sha256=PonVl7RieSVsbCCVQOdqIA7vx2NCH5
30
31
  scc_firewall_manager_sdk/api/tenant_management_api.py,sha256=3PWPuirkaUck1VZex3w4Cg3qO05GF0f7xeiptaAc5zE,55069
31
32
  scc_firewall_manager_sdk/api/transactions_api.py,sha256=fz0Ko2bAXFpz0SM8psceOlcxq0gXnrnuTEhaX1E0QzA,23402
32
33
  scc_firewall_manager_sdk/api/users_api.py,sha256=MKuyXmxWLSqPBkfA7rUGZ1EO1Ox-Oge7QhhgzSFAVu8,191609
33
- scc_firewall_manager_sdk/models/__init__.py,sha256=8ApvocwkPCjjKT0U-B1A2XOoZZmA61zmDhyCULVgdFA,19423
34
+ scc_firewall_manager_sdk/models/__init__.py,sha256=YRVPRO6uYCxxSpsePs9pvxSeNKDuJs5-ZfbWTY51tqM,19403
34
35
  scc_firewall_manager_sdk/models/access_group.py,sha256=9FlXrDT5xhtk-uWuwgMmM-qAGiKZrpfnkphZuogGsHo,4583
35
36
  scc_firewall_manager_sdk/models/access_group_create_input.py,sha256=7tgCifqvqbwS2bZvS_PQdIV_ra_jiEbupJhyaHcG8ys,3930
36
37
  scc_firewall_manager_sdk/models/access_group_page.py,sha256=imWa0te5qmTpXfuE8W8YM3SG01MIn4ewbA-_N8kPKHk,3725
@@ -172,6 +173,7 @@ scc_firewall_manager_sdk/models/meraki_deployment_mode.py,sha256=_bTJMhPEJKTUxLO
172
173
  scc_firewall_manager_sdk/models/meta.py,sha256=qosi0QYsSVWIBzvb4T0CCStW7-uqSLbA9BWNAv7bE9w,2807
173
174
  scc_firewall_manager_sdk/models/metric.py,sha256=4Uneqr033GF08yl-Mr5VOWAigGpfK9gEiysga2SAHoU,3347
174
175
  scc_firewall_manager_sdk/models/metric_aggregation_item.py,sha256=TH6tfqIrXL9sYw-uzTw5Fh5Yp0VT42hEgL9SsTnzlZo,3260
176
+ scc_firewall_manager_sdk/models/metric_aggregation_response.py,sha256=Lie3Jj3HbGmr_dBEVwo-EDxuZeswm6BSwp0yczlEWnU,3271
175
177
  scc_firewall_manager_sdk/models/metrics_item.py,sha256=3GPAqUlfMRNbfaHzgh0ul3cCzfpwz0rHKPYLMjcw2R8,3413
176
178
  scc_firewall_manager_sdk/models/metrics_response.py,sha256=JHzWBpkDk-tV8oFww6bQRwBjWgm65WTMeCWveoEKPlE,3292
177
179
  scc_firewall_manager_sdk/models/mfa_event.py,sha256=TMQsBFkHWPcKr548CtZH63wBXJUQH_pUQ3abNiuxnRg,4663
@@ -180,7 +182,6 @@ scc_firewall_manager_sdk/models/msp_add_tenant_input.py,sha256=8AUS2ZlPUNyqvenEX
180
182
  scc_firewall_manager_sdk/models/msp_add_users_to_tenant_input.py,sha256=zh4tLdlt02dQXYD1AA8eyEOVWCMAyuJTctFph9W5U4E,3227
181
183
  scc_firewall_manager_sdk/models/msp_create_tenant_input.py,sha256=M2e4eXR17qZ-taqJjNffegwMdW-WW5yHbQhCs4PotIA,3788
182
184
  scc_firewall_manager_sdk/models/msp_delete_users_from_tenant_input.py,sha256=WSDxobFaalh3J5HyS0wu4_5FsXp0RLS2lefO_fkWhRg,2855
183
- scc_firewall_manager_sdk/models/msp_device_metric_aggregation_response.py,sha256=0rHN_M519ttXky2-7v4L079PaWw8ULL0RtJk8fLB4GI,3307
184
185
  scc_firewall_manager_sdk/models/msp_export_input.py,sha256=OcIWeptdOLWRGBVsj6LCcl2yzCbEMQLxCKOW0kzl_2g,2779
185
186
  scc_firewall_manager_sdk/models/msp_managed_cloud_service.py,sha256=_PYu5Nn-6xrJMH_3fbHHdXSESWevOtTj4pM55hIGDpQ,5482
186
187
  scc_firewall_manager_sdk/models/msp_managed_cloud_service_distinct_attribute_values.py,sha256=p3LQ3KOJ2uR--Qvy1-5vVlk4kYEVTijTDElHqCNR_Rc,4719
@@ -249,9 +250,9 @@ scc_firewall_manager_sdk/models/tenant_settings.py,sha256=SBz33QJxeSRsKTk2LZUWg7
249
250
  scc_firewall_manager_sdk/models/unified_object_list_view.py,sha256=nMYDZ-ulbnjpyvSCFazeq9TP_JzJ6pnYcZXbl-dRRpI,4167
250
251
  scc_firewall_manager_sdk/models/universal_ztna_settings.py,sha256=vfnfttfSKfrlffJpTzH1TCWdK46jn61lN5l0hIaX3jo,4149
251
252
  scc_firewall_manager_sdk/models/update_request.py,sha256=okwPfBTYcCUw5ZD1-XYOwa-WGv-4192QB-38rrQ1G78,3507
252
- scc_firewall_manager_sdk/models/upgrade_asa_device_input.py,sha256=nGZpqNNTLxrRxqVWReVy05J8QtyhM05Fz9ZM1AMusDs,2980
253
- scc_firewall_manager_sdk/models/upgrade_ftd_device_input.py,sha256=EkZVgn1onpw5ruKOa4ygYjty2VHVWdknM8G0c4r4VZA,3444
254
- scc_firewall_manager_sdk/models/upgrade_ftd_devices_input.py,sha256=SOs24cfe6PwO9_8yefiwdGioYrIXPKQtU1GRa4IgCqc,3859
253
+ scc_firewall_manager_sdk/models/upgrade_asa_device_input.py,sha256=j_zJPdZT2o__UDL5HHp_v1aENSM0zP0yjDFDJZnnNmw,3391
254
+ scc_firewall_manager_sdk/models/upgrade_ftd_device_input.py,sha256=MbPKinUCTDXl39E-P7KhiHb3oJKb_Liewn7WS21Y-0k,3843
255
+ scc_firewall_manager_sdk/models/upgrade_ftd_devices_input.py,sha256=IecylWty_KpfCW3xaNZgj-RhxHW3nhPQNziHHYjy1DQ,4273
255
256
  scc_firewall_manager_sdk/models/upgrade_run_dto.py,sha256=Aw4R31JM_NfUrPerNZEPpCq9zntmw5UvCt-xh104piU,5544
256
257
  scc_firewall_manager_sdk/models/upgrade_run_modify_input.py,sha256=attD1huRN1nST0xkblUW50VgNYtNXtOGH_1WVF0q-jw,2708
257
258
  scc_firewall_manager_sdk/models/url_object_content.py,sha256=OqcDbRE_HoEGf4Z_yCsTH8B08R9GdY8RMOs1wM0-ecY,2657
@@ -265,7 +266,7 @@ scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=AKUqPJw5ku
265
266
  scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=srEFTyQykscNrWsbp8KGEzbmHC07_AU3DXjJ-7Be4zc,6054
266
267
  scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=HAgBTdocZeHGDZP_-9NyRtzP9E7BReGtiOmn4S3J-_g,5326
267
268
  scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=f9Z62yGFvz4QAQ07Z4bjfHLw2bRg46ccwoLuQ8q30TE,4808
268
- scc_firewall_manager_sdk-1.15.70.dist-info/METADATA,sha256=pVJTs219dBCcEHUsQaJWbn_ZE2Z8hWD-_J_9RjBCYUI,595
269
- scc_firewall_manager_sdk-1.15.70.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
270
- scc_firewall_manager_sdk-1.15.70.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
271
- scc_firewall_manager_sdk-1.15.70.dist-info/RECORD,,
269
+ scc_firewall_manager_sdk-1.15.72.dist-info/METADATA,sha256=qrcyFgGmFOd3IKgw5xzcu8jyzefnUJ1jAM94J5pSlWk,595
270
+ scc_firewall_manager_sdk-1.15.72.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
271
+ scc_firewall_manager_sdk-1.15.72.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
272
+ scc_firewall_manager_sdk-1.15.72.dist-info/RECORD,,