scc-firewall-manager-sdk 1.13.735__py3-none-any.whl → 1.13.737__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.13.735"
18
+ __version__ = "1.13.737"
19
19
 
20
20
  # import apis into sdk package
21
21
  from scc_firewall_manager_sdk.api.ai_assistant_api import AIAssistantApi
@@ -122,6 +122,11 @@ from scc_firewall_manager_sdk.models.destination_dynamic_object_content import D
122
122
  from scc_firewall_manager_sdk.models.destination_network_content import DestinationNetworkContent
123
123
  from scc_firewall_manager_sdk.models.destination_port_content import DestinationPortContent
124
124
  from scc_firewall_manager_sdk.models.device import Device
125
+ from scc_firewall_manager_sdk.models.device_end_of_life import DeviceEndOfLife
126
+ from scc_firewall_manager_sdk.models.device_end_of_life_details import DeviceEndOfLifeDetails
127
+ from scc_firewall_manager_sdk.models.device_end_of_life_device_info import DeviceEndOfLifeDeviceInfo
128
+ from scc_firewall_manager_sdk.models.device_end_of_life_recommendation import DeviceEndOfLifeRecommendation
129
+ from scc_firewall_manager_sdk.models.device_end_of_life_report import DeviceEndOfLifeReport
125
130
  from scc_firewall_manager_sdk.models.device_gateway_api_request import DeviceGatewayApiRequest
126
131
  from scc_firewall_manager_sdk.models.device_manager_patch_input import DeviceManagerPatchInput
127
132
  from scc_firewall_manager_sdk.models.device_metadata import DeviceMetadata
@@ -25,6 +25,7 @@ from scc_firewall_manager_sdk.models.asa_create_or_update_input import AsaCreate
25
25
  from scc_firewall_manager_sdk.models.bulk_operation_asa_device_request import BulkOperationAsaDeviceRequest
26
26
  from scc_firewall_manager_sdk.models.cdo_transaction import CdoTransaction
27
27
  from scc_firewall_manager_sdk.models.device import Device
28
+ from scc_firewall_manager_sdk.models.device_end_of_life_report import DeviceEndOfLifeReport
28
29
  from scc_firewall_manager_sdk.models.device_manager_patch_input import DeviceManagerPatchInput
29
30
  from scc_firewall_manager_sdk.models.device_page import DevicePage
30
31
  from scc_firewall_manager_sdk.models.device_patch_input import DevicePatchInput
@@ -5085,6 +5086,551 @@ class InventoryApi:
5085
5086
 
5086
5087
 
5087
5088
 
5089
+ @validate_call
5090
+ def get_device_end_of_life_report(
5091
+ self,
5092
+ device_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the Device.")],
5093
+ _request_timeout: Union[
5094
+ None,
5095
+ Annotated[StrictFloat, Field(gt=0)],
5096
+ Tuple[
5097
+ Annotated[StrictFloat, Field(gt=0)],
5098
+ Annotated[StrictFloat, Field(gt=0)]
5099
+ ]
5100
+ ] = None,
5101
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
5102
+ _content_type: Optional[StrictStr] = None,
5103
+ _headers: Optional[Dict[StrictStr, Any]] = None,
5104
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5105
+ ) -> DeviceEndOfLifeReport:
5106
+ """Get Device End-Of-Life Report
5107
+
5108
+ Get the Device End-of-Life (EOL) report that details the EOL dates for the device hardware along with recommended hardware upgrade options.
5109
+
5110
+ :param device_uid: The unique identifier, represented as a UUID, of the Device. (required)
5111
+ :type device_uid: str
5112
+ :param _request_timeout: timeout setting for this request. If one
5113
+ number provided, it will be total request
5114
+ timeout. It can also be a pair (tuple) of
5115
+ (connection, read) timeouts.
5116
+ :type _request_timeout: int, tuple(int, int), optional
5117
+ :param _request_auth: set to override the auth_settings for an a single
5118
+ request; this effectively ignores the
5119
+ authentication in the spec for a single request.
5120
+ :type _request_auth: dict, optional
5121
+ :param _content_type: force content-type for the request.
5122
+ :type _content_type: str, Optional
5123
+ :param _headers: set to override the headers for a single
5124
+ request; this effectively ignores the headers
5125
+ in the spec for a single request.
5126
+ :type _headers: dict, optional
5127
+ :param _host_index: set to override the host_index for a single
5128
+ request; this effectively ignores the host_index
5129
+ in the spec for a single request.
5130
+ :type _host_index: int, optional
5131
+ :return: Returns the result object.
5132
+ """ # noqa: E501
5133
+
5134
+ _param = self._get_device_end_of_life_report_serialize(
5135
+ device_uid=device_uid,
5136
+ _request_auth=_request_auth,
5137
+ _content_type=_content_type,
5138
+ _headers=_headers,
5139
+ _host_index=_host_index
5140
+ )
5141
+
5142
+ _response_types_map: Dict[str, Optional[str]] = {
5143
+ '200': "DeviceEndOfLifeReport",
5144
+ '400': "CommonApiError",
5145
+ '401': "AuthenticationError",
5146
+ '403': "CommonApiError",
5147
+ '404': "CommonApiError",
5148
+ '500': "CommonApiError",
5149
+ }
5150
+ response_data = self.api_client.call_api(
5151
+ *_param,
5152
+ _request_timeout=_request_timeout
5153
+ )
5154
+ response_data.read()
5155
+ return self.api_client.response_deserialize(
5156
+ response_data=response_data,
5157
+ response_types_map=_response_types_map,
5158
+ ).data
5159
+
5160
+
5161
+ @validate_call
5162
+ def get_device_end_of_life_report_with_http_info(
5163
+ self,
5164
+ device_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the Device.")],
5165
+ _request_timeout: Union[
5166
+ None,
5167
+ Annotated[StrictFloat, Field(gt=0)],
5168
+ Tuple[
5169
+ Annotated[StrictFloat, Field(gt=0)],
5170
+ Annotated[StrictFloat, Field(gt=0)]
5171
+ ]
5172
+ ] = None,
5173
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
5174
+ _content_type: Optional[StrictStr] = None,
5175
+ _headers: Optional[Dict[StrictStr, Any]] = None,
5176
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5177
+ ) -> ApiResponse[DeviceEndOfLifeReport]:
5178
+ """Get Device End-Of-Life Report
5179
+
5180
+ Get the Device End-of-Life (EOL) report that details the EOL dates for the device hardware along with recommended hardware upgrade options.
5181
+
5182
+ :param device_uid: The unique identifier, represented as a UUID, of the Device. (required)
5183
+ :type device_uid: str
5184
+ :param _request_timeout: timeout setting for this request. If one
5185
+ number provided, it will be total request
5186
+ timeout. It can also be a pair (tuple) of
5187
+ (connection, read) timeouts.
5188
+ :type _request_timeout: int, tuple(int, int), optional
5189
+ :param _request_auth: set to override the auth_settings for an a single
5190
+ request; this effectively ignores the
5191
+ authentication in the spec for a single request.
5192
+ :type _request_auth: dict, optional
5193
+ :param _content_type: force content-type for the request.
5194
+ :type _content_type: str, Optional
5195
+ :param _headers: set to override the headers for a single
5196
+ request; this effectively ignores the headers
5197
+ in the spec for a single request.
5198
+ :type _headers: dict, optional
5199
+ :param _host_index: set to override the host_index for a single
5200
+ request; this effectively ignores the host_index
5201
+ in the spec for a single request.
5202
+ :type _host_index: int, optional
5203
+ :return: Returns the result object.
5204
+ """ # noqa: E501
5205
+
5206
+ _param = self._get_device_end_of_life_report_serialize(
5207
+ device_uid=device_uid,
5208
+ _request_auth=_request_auth,
5209
+ _content_type=_content_type,
5210
+ _headers=_headers,
5211
+ _host_index=_host_index
5212
+ )
5213
+
5214
+ _response_types_map: Dict[str, Optional[str]] = {
5215
+ '200': "DeviceEndOfLifeReport",
5216
+ '400': "CommonApiError",
5217
+ '401': "AuthenticationError",
5218
+ '403': "CommonApiError",
5219
+ '404': "CommonApiError",
5220
+ '500': "CommonApiError",
5221
+ }
5222
+ response_data = self.api_client.call_api(
5223
+ *_param,
5224
+ _request_timeout=_request_timeout
5225
+ )
5226
+ response_data.read()
5227
+ return self.api_client.response_deserialize(
5228
+ response_data=response_data,
5229
+ response_types_map=_response_types_map,
5230
+ )
5231
+
5232
+
5233
+ @validate_call
5234
+ def get_device_end_of_life_report_without_preload_content(
5235
+ self,
5236
+ device_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the Device.")],
5237
+ _request_timeout: Union[
5238
+ None,
5239
+ Annotated[StrictFloat, Field(gt=0)],
5240
+ Tuple[
5241
+ Annotated[StrictFloat, Field(gt=0)],
5242
+ Annotated[StrictFloat, Field(gt=0)]
5243
+ ]
5244
+ ] = None,
5245
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
5246
+ _content_type: Optional[StrictStr] = None,
5247
+ _headers: Optional[Dict[StrictStr, Any]] = None,
5248
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5249
+ ) -> RESTResponseType:
5250
+ """Get Device End-Of-Life Report
5251
+
5252
+ Get the Device End-of-Life (EOL) report that details the EOL dates for the device hardware along with recommended hardware upgrade options.
5253
+
5254
+ :param device_uid: The unique identifier, represented as a UUID, of the Device. (required)
5255
+ :type device_uid: str
5256
+ :param _request_timeout: timeout setting for this request. If one
5257
+ number provided, it will be total request
5258
+ timeout. It can also be a pair (tuple) of
5259
+ (connection, read) timeouts.
5260
+ :type _request_timeout: int, tuple(int, int), optional
5261
+ :param _request_auth: set to override the auth_settings for an a single
5262
+ request; this effectively ignores the
5263
+ authentication in the spec for a single request.
5264
+ :type _request_auth: dict, optional
5265
+ :param _content_type: force content-type for the request.
5266
+ :type _content_type: str, Optional
5267
+ :param _headers: set to override the headers for a single
5268
+ request; this effectively ignores the headers
5269
+ in the spec for a single request.
5270
+ :type _headers: dict, optional
5271
+ :param _host_index: set to override the host_index for a single
5272
+ request; this effectively ignores the host_index
5273
+ in the spec for a single request.
5274
+ :type _host_index: int, optional
5275
+ :return: Returns the result object.
5276
+ """ # noqa: E501
5277
+
5278
+ _param = self._get_device_end_of_life_report_serialize(
5279
+ device_uid=device_uid,
5280
+ _request_auth=_request_auth,
5281
+ _content_type=_content_type,
5282
+ _headers=_headers,
5283
+ _host_index=_host_index
5284
+ )
5285
+
5286
+ _response_types_map: Dict[str, Optional[str]] = {
5287
+ '200': "DeviceEndOfLifeReport",
5288
+ '400': "CommonApiError",
5289
+ '401': "AuthenticationError",
5290
+ '403': "CommonApiError",
5291
+ '404': "CommonApiError",
5292
+ '500': "CommonApiError",
5293
+ }
5294
+ response_data = self.api_client.call_api(
5295
+ *_param,
5296
+ _request_timeout=_request_timeout
5297
+ )
5298
+ return response_data.response
5299
+
5300
+
5301
+ def _get_device_end_of_life_report_serialize(
5302
+ self,
5303
+ device_uid,
5304
+ _request_auth,
5305
+ _content_type,
5306
+ _headers,
5307
+ _host_index,
5308
+ ) -> RequestSerialized:
5309
+
5310
+ _host = None
5311
+
5312
+ _collection_formats: Dict[str, str] = {
5313
+ }
5314
+
5315
+ _path_params: Dict[str, str] = {}
5316
+ _query_params: List[Tuple[str, str]] = []
5317
+ _header_params: Dict[str, Optional[str]] = _headers or {}
5318
+ _form_params: List[Tuple[str, str]] = []
5319
+ _files: Dict[str, str] = {}
5320
+ _body_params: Optional[bytes] = None
5321
+
5322
+ # process the path parameters
5323
+ if device_uid is not None:
5324
+ _path_params['deviceUid'] = device_uid
5325
+ # process the query parameters
5326
+ # process the header parameters
5327
+ # process the form parameters
5328
+ # process the body parameter
5329
+
5330
+
5331
+ # set the HTTP header `Accept`
5332
+ _header_params['Accept'] = self.api_client.select_header_accept(
5333
+ [
5334
+ 'application/json'
5335
+ ]
5336
+ )
5337
+
5338
+
5339
+ # authentication setting
5340
+ _auth_settings: List[str] = [
5341
+ 'bearerAuth'
5342
+ ]
5343
+
5344
+ return self.api_client.param_serialize(
5345
+ method='GET',
5346
+ resource_path='/v1/inventory/devices/{deviceUid}/endoflifereports',
5347
+ path_params=_path_params,
5348
+ query_params=_query_params,
5349
+ header_params=_header_params,
5350
+ body=_body_params,
5351
+ post_params=_form_params,
5352
+ files=_files,
5353
+ auth_settings=_auth_settings,
5354
+ collection_formats=_collection_formats,
5355
+ _host=_host,
5356
+ _request_auth=_request_auth
5357
+ )
5358
+
5359
+
5360
+
5361
+
5362
+ @validate_call
5363
+ def get_device_end_of_life_reports(
5364
+ self,
5365
+ q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
5366
+ _request_timeout: Union[
5367
+ None,
5368
+ Annotated[StrictFloat, Field(gt=0)],
5369
+ Tuple[
5370
+ Annotated[StrictFloat, Field(gt=0)],
5371
+ Annotated[StrictFloat, Field(gt=0)]
5372
+ ]
5373
+ ] = None,
5374
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
5375
+ _content_type: Optional[StrictStr] = None,
5376
+ _headers: Optional[Dict[StrictStr, Any]] = None,
5377
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5378
+ ) -> List[DeviceEndOfLifeReport]:
5379
+ """Get Device End-Of-Life Reports
5380
+
5381
+ The reports provide information on devices approaching their End-Of-Life (EOL) status, indicating that they will cease to receive vendor support. For each hardware, the report outlines key EOL dates, offers recommendations for appropriate hardware upgrades, and includes an inventory of affected devices.
5382
+
5383
+ :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
5384
+ :type q: str
5385
+ :param _request_timeout: timeout setting for this request. If one
5386
+ number provided, it will be total request
5387
+ timeout. It can also be a pair (tuple) of
5388
+ (connection, read) timeouts.
5389
+ :type _request_timeout: int, tuple(int, int), optional
5390
+ :param _request_auth: set to override the auth_settings for an a single
5391
+ request; this effectively ignores the
5392
+ authentication in the spec for a single request.
5393
+ :type _request_auth: dict, optional
5394
+ :param _content_type: force content-type for the request.
5395
+ :type _content_type: str, Optional
5396
+ :param _headers: set to override the headers for a single
5397
+ request; this effectively ignores the headers
5398
+ in the spec for a single request.
5399
+ :type _headers: dict, optional
5400
+ :param _host_index: set to override the host_index for a single
5401
+ request; this effectively ignores the host_index
5402
+ in the spec for a single request.
5403
+ :type _host_index: int, optional
5404
+ :return: Returns the result object.
5405
+ """ # noqa: E501
5406
+
5407
+ _param = self._get_device_end_of_life_reports_serialize(
5408
+ q=q,
5409
+ _request_auth=_request_auth,
5410
+ _content_type=_content_type,
5411
+ _headers=_headers,
5412
+ _host_index=_host_index
5413
+ )
5414
+
5415
+ _response_types_map: Dict[str, Optional[str]] = {
5416
+ '200': "List[DeviceEndOfLifeReport]",
5417
+ '400': "CommonApiError",
5418
+ '401': "AuthenticationError",
5419
+ '403': "CommonApiError",
5420
+ '500': "CommonApiError",
5421
+ }
5422
+ response_data = self.api_client.call_api(
5423
+ *_param,
5424
+ _request_timeout=_request_timeout
5425
+ )
5426
+ response_data.read()
5427
+ return self.api_client.response_deserialize(
5428
+ response_data=response_data,
5429
+ response_types_map=_response_types_map,
5430
+ ).data
5431
+
5432
+
5433
+ @validate_call
5434
+ def get_device_end_of_life_reports_with_http_info(
5435
+ self,
5436
+ q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
5437
+ _request_timeout: Union[
5438
+ None,
5439
+ Annotated[StrictFloat, Field(gt=0)],
5440
+ Tuple[
5441
+ Annotated[StrictFloat, Field(gt=0)],
5442
+ Annotated[StrictFloat, Field(gt=0)]
5443
+ ]
5444
+ ] = None,
5445
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
5446
+ _content_type: Optional[StrictStr] = None,
5447
+ _headers: Optional[Dict[StrictStr, Any]] = None,
5448
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5449
+ ) -> ApiResponse[List[DeviceEndOfLifeReport]]:
5450
+ """Get Device End-Of-Life Reports
5451
+
5452
+ The reports provide information on devices approaching their End-Of-Life (EOL) status, indicating that they will cease to receive vendor support. For each hardware, the report outlines key EOL dates, offers recommendations for appropriate hardware upgrades, and includes an inventory of affected devices.
5453
+
5454
+ :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
5455
+ :type q: str
5456
+ :param _request_timeout: timeout setting for this request. If one
5457
+ number provided, it will be total request
5458
+ timeout. It can also be a pair (tuple) of
5459
+ (connection, read) timeouts.
5460
+ :type _request_timeout: int, tuple(int, int), optional
5461
+ :param _request_auth: set to override the auth_settings for an a single
5462
+ request; this effectively ignores the
5463
+ authentication in the spec for a single request.
5464
+ :type _request_auth: dict, optional
5465
+ :param _content_type: force content-type for the request.
5466
+ :type _content_type: str, Optional
5467
+ :param _headers: set to override the headers for a single
5468
+ request; this effectively ignores the headers
5469
+ in the spec for a single request.
5470
+ :type _headers: dict, optional
5471
+ :param _host_index: set to override the host_index for a single
5472
+ request; this effectively ignores the host_index
5473
+ in the spec for a single request.
5474
+ :type _host_index: int, optional
5475
+ :return: Returns the result object.
5476
+ """ # noqa: E501
5477
+
5478
+ _param = self._get_device_end_of_life_reports_serialize(
5479
+ q=q,
5480
+ _request_auth=_request_auth,
5481
+ _content_type=_content_type,
5482
+ _headers=_headers,
5483
+ _host_index=_host_index
5484
+ )
5485
+
5486
+ _response_types_map: Dict[str, Optional[str]] = {
5487
+ '200': "List[DeviceEndOfLifeReport]",
5488
+ '400': "CommonApiError",
5489
+ '401': "AuthenticationError",
5490
+ '403': "CommonApiError",
5491
+ '500': "CommonApiError",
5492
+ }
5493
+ response_data = self.api_client.call_api(
5494
+ *_param,
5495
+ _request_timeout=_request_timeout
5496
+ )
5497
+ response_data.read()
5498
+ return self.api_client.response_deserialize(
5499
+ response_data=response_data,
5500
+ response_types_map=_response_types_map,
5501
+ )
5502
+
5503
+
5504
+ @validate_call
5505
+ def get_device_end_of_life_reports_without_preload_content(
5506
+ self,
5507
+ q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
5508
+ _request_timeout: Union[
5509
+ None,
5510
+ Annotated[StrictFloat, Field(gt=0)],
5511
+ Tuple[
5512
+ Annotated[StrictFloat, Field(gt=0)],
5513
+ Annotated[StrictFloat, Field(gt=0)]
5514
+ ]
5515
+ ] = None,
5516
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
5517
+ _content_type: Optional[StrictStr] = None,
5518
+ _headers: Optional[Dict[StrictStr, Any]] = None,
5519
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
5520
+ ) -> RESTResponseType:
5521
+ """Get Device End-Of-Life Reports
5522
+
5523
+ The reports provide information on devices approaching their End-Of-Life (EOL) status, indicating that they will cease to receive vendor support. For each hardware, the report outlines key EOL dates, offers recommendations for appropriate hardware upgrades, and includes an inventory of affected devices.
5524
+
5525
+ :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
5526
+ :type q: str
5527
+ :param _request_timeout: timeout setting for this request. If one
5528
+ number provided, it will be total request
5529
+ timeout. It can also be a pair (tuple) of
5530
+ (connection, read) timeouts.
5531
+ :type _request_timeout: int, tuple(int, int), optional
5532
+ :param _request_auth: set to override the auth_settings for an a single
5533
+ request; this effectively ignores the
5534
+ authentication in the spec for a single request.
5535
+ :type _request_auth: dict, optional
5536
+ :param _content_type: force content-type for the request.
5537
+ :type _content_type: str, Optional
5538
+ :param _headers: set to override the headers for a single
5539
+ request; this effectively ignores the headers
5540
+ in the spec for a single request.
5541
+ :type _headers: dict, optional
5542
+ :param _host_index: set to override the host_index for a single
5543
+ request; this effectively ignores the host_index
5544
+ in the spec for a single request.
5545
+ :type _host_index: int, optional
5546
+ :return: Returns the result object.
5547
+ """ # noqa: E501
5548
+
5549
+ _param = self._get_device_end_of_life_reports_serialize(
5550
+ q=q,
5551
+ _request_auth=_request_auth,
5552
+ _content_type=_content_type,
5553
+ _headers=_headers,
5554
+ _host_index=_host_index
5555
+ )
5556
+
5557
+ _response_types_map: Dict[str, Optional[str]] = {
5558
+ '200': "List[DeviceEndOfLifeReport]",
5559
+ '400': "CommonApiError",
5560
+ '401': "AuthenticationError",
5561
+ '403': "CommonApiError",
5562
+ '500': "CommonApiError",
5563
+ }
5564
+ response_data = self.api_client.call_api(
5565
+ *_param,
5566
+ _request_timeout=_request_timeout
5567
+ )
5568
+ return response_data.response
5569
+
5570
+
5571
+ def _get_device_end_of_life_reports_serialize(
5572
+ self,
5573
+ q,
5574
+ _request_auth,
5575
+ _content_type,
5576
+ _headers,
5577
+ _host_index,
5578
+ ) -> RequestSerialized:
5579
+
5580
+ _host = None
5581
+
5582
+ _collection_formats: Dict[str, str] = {
5583
+ }
5584
+
5585
+ _path_params: Dict[str, str] = {}
5586
+ _query_params: List[Tuple[str, str]] = []
5587
+ _header_params: Dict[str, Optional[str]] = _headers or {}
5588
+ _form_params: List[Tuple[str, str]] = []
5589
+ _files: Dict[str, str] = {}
5590
+ _body_params: Optional[bytes] = None
5591
+
5592
+ # process the path parameters
5593
+ # process the query parameters
5594
+ if q is not None:
5595
+
5596
+ _query_params.append(('q', q))
5597
+
5598
+ # process the header parameters
5599
+ # process the form parameters
5600
+ # process the body parameter
5601
+
5602
+
5603
+ # set the HTTP header `Accept`
5604
+ _header_params['Accept'] = self.api_client.select_header_accept(
5605
+ [
5606
+ 'application/json'
5607
+ ]
5608
+ )
5609
+
5610
+
5611
+ # authentication setting
5612
+ _auth_settings: List[str] = [
5613
+ 'bearerAuth'
5614
+ ]
5615
+
5616
+ return self.api_client.param_serialize(
5617
+ method='GET',
5618
+ resource_path='/v1/inventory/devices/endoflifereports',
5619
+ path_params=_path_params,
5620
+ query_params=_query_params,
5621
+ header_params=_header_params,
5622
+ body=_body_params,
5623
+ post_params=_form_params,
5624
+ files=_files,
5625
+ auth_settings=_auth_settings,
5626
+ collection_formats=_collection_formats,
5627
+ _host=_host,
5628
+ _request_auth=_request_auth
5629
+ )
5630
+
5631
+
5632
+
5633
+
5088
5634
  @validate_call
5089
5635
  def get_device_manager(
5090
5636
  self,
@@ -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.13.735/python'
91
+ self.user_agent = 'OpenAPI-Generator/1.13.737/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.13.0\n"\
383
- "SDK Package Version: 1.13.735".\
383
+ "SDK Package Version: 1.13.737".\
384
384
  format(env=sys.platform, pyversion=sys.version)
385
385
 
386
386
  def get_host_settings(self):
@@ -85,6 +85,11 @@ from scc_firewall_manager_sdk.models.destination_dynamic_object_content import D
85
85
  from scc_firewall_manager_sdk.models.destination_network_content import DestinationNetworkContent
86
86
  from scc_firewall_manager_sdk.models.destination_port_content import DestinationPortContent
87
87
  from scc_firewall_manager_sdk.models.device import Device
88
+ from scc_firewall_manager_sdk.models.device_end_of_life import DeviceEndOfLife
89
+ from scc_firewall_manager_sdk.models.device_end_of_life_details import DeviceEndOfLifeDetails
90
+ from scc_firewall_manager_sdk.models.device_end_of_life_device_info import DeviceEndOfLifeDeviceInfo
91
+ from scc_firewall_manager_sdk.models.device_end_of_life_recommendation import DeviceEndOfLifeRecommendation
92
+ from scc_firewall_manager_sdk.models.device_end_of_life_report import DeviceEndOfLifeReport
88
93
  from scc_firewall_manager_sdk.models.device_gateway_api_request import DeviceGatewayApiRequest
89
94
  from scc_firewall_manager_sdk.models.device_manager_patch_input import DeviceManagerPatchInput
90
95
  from scc_firewall_manager_sdk.models.device_metadata import DeviceMetadata
@@ -0,0 +1,104 @@
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.13.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
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from scc_firewall_manager_sdk.models.device_end_of_life_details import DeviceEndOfLifeDetails
24
+ from scc_firewall_manager_sdk.models.device_end_of_life_recommendation import DeviceEndOfLifeRecommendation
25
+ from typing import Optional, Set
26
+ from typing_extensions import Self
27
+
28
+ class DeviceEndOfLife(BaseModel):
29
+ """
30
+ DeviceEndOfLife
31
+ """ # noqa: E501
32
+ end_of_life_details: Optional[DeviceEndOfLifeDetails] = Field(default=None, alias="endOfLifeDetails")
33
+ model_numbers: Optional[List[StrictStr]] = Field(default=None, description="A list of hardware models subject to the End-of-Life evaluation.", alias="modelNumbers")
34
+ recommendations: Optional[List[DeviceEndOfLifeRecommendation]] = Field(default=None, description="End-Of-Life appropriate upgrade recommendations for the hardware models.")
35
+ __properties: ClassVar[List[str]] = ["endOfLifeDetails", "modelNumbers", "recommendations"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Optional[Self]:
55
+ """Create an instance of DeviceEndOfLife from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ # override the default output from pydantic by calling `to_dict()` of end_of_life_details
77
+ if self.end_of_life_details:
78
+ _dict['endOfLifeDetails'] = self.end_of_life_details.to_dict()
79
+ # override the default output from pydantic by calling `to_dict()` of each item in recommendations (list)
80
+ _items = []
81
+ if self.recommendations:
82
+ for _item in self.recommendations:
83
+ if _item:
84
+ _items.append(_item.to_dict())
85
+ _dict['recommendations'] = _items
86
+ return _dict
87
+
88
+ @classmethod
89
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
90
+ """Create an instance of DeviceEndOfLife from a dict"""
91
+ if obj is None:
92
+ return None
93
+
94
+ if not isinstance(obj, dict):
95
+ return cls.model_validate(obj)
96
+
97
+ _obj = cls.model_validate({
98
+ "endOfLifeDetails": DeviceEndOfLifeDetails.from_dict(obj["endOfLifeDetails"]) if obj.get("endOfLifeDetails") is not None else None,
99
+ "modelNumbers": obj.get("modelNumbers"),
100
+ "recommendations": [DeviceEndOfLifeRecommendation.from_dict(_item) for _item in obj["recommendations"]] if obj.get("recommendations") is not None else None
101
+ })
102
+ return _obj
103
+
104
+
@@ -0,0 +1,95 @@
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.13.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
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from datetime import datetime
22
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
23
+ from typing import Any, ClassVar, Dict, List, Optional
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class DeviceEndOfLifeDetails(BaseModel):
28
+ """
29
+ DeviceEndOfLifeDetails
30
+ """ # noqa: E501
31
+ end_of_life_announcement_date: Optional[datetime] = Field(default=None, description="The date (UTC; represented using the RFC-3339 standard), the hardware End-Of_life was announced", alias="endOfLifeAnnouncementDate")
32
+ end_of_sale_date: Optional[datetime] = Field(default=None, description="The date (UTC; represented using the RFC-3339 standard), the hardware is eligible for sale.", alias="endOfSaleDate")
33
+ last_date_of_support: Optional[datetime] = Field(default=None, description="The date (UTC; represented using the RFC-3339 standard), the hardware is eligible for support.", alias="lastDateOfSupport")
34
+ url: Optional[StrictStr] = Field(default=None, description="The hardware End-Of-Life notice URL with more information on the End-Of-Life details.")
35
+ __properties: ClassVar[List[str]] = ["endOfLifeAnnouncementDate", "endOfSaleDate", "lastDateOfSupport", "url"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Optional[Self]:
55
+ """Create an instance of DeviceEndOfLifeDetails from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ return _dict
77
+
78
+ @classmethod
79
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
80
+ """Create an instance of DeviceEndOfLifeDetails from a dict"""
81
+ if obj is None:
82
+ return None
83
+
84
+ if not isinstance(obj, dict):
85
+ return cls.model_validate(obj)
86
+
87
+ _obj = cls.model_validate({
88
+ "endOfLifeAnnouncementDate": obj.get("endOfLifeAnnouncementDate"),
89
+ "endOfSaleDate": obj.get("endOfSaleDate"),
90
+ "lastDateOfSupport": obj.get("lastDateOfSupport"),
91
+ "url": obj.get("url")
92
+ })
93
+ return _obj
94
+
95
+
@@ -0,0 +1,96 @@
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.13.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
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class DeviceEndOfLifeDeviceInfo(BaseModel):
27
+ """
28
+ DeviceEndOfLifeDeviceInfo
29
+ """ # noqa: E501
30
+ host: Optional[StrictStr] = Field(default=None, description="The address of the device without the port. Security Cloud Control connects to the device at this address.")
31
+ model_number: Optional[StrictStr] = Field(default=None, description="The hardware, or virtualized hardware platform, that the device is running on.", alias="modelNumber")
32
+ name: Optional[StrictStr] = Field(default=None, description="The name of the device. Device names are unique in Security Cloud Control.")
33
+ software_version: Optional[StrictStr] = Field(default=None, description="The version of the software running on the device.", alias="softwareVersion")
34
+ uid: Optional[StrictStr] = Field(default=None, description="The unique identifier, represented as a UUID, of the device in Security Cloud Control.")
35
+ __properties: ClassVar[List[str]] = ["host", "modelNumber", "name", "softwareVersion", "uid"]
36
+
37
+ model_config = ConfigDict(
38
+ populate_by_name=True,
39
+ validate_assignment=True,
40
+ protected_namespaces=(),
41
+ )
42
+
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
51
+ return json.dumps(self.to_dict())
52
+
53
+ @classmethod
54
+ def from_json(cls, json_str: str) -> Optional[Self]:
55
+ """Create an instance of DeviceEndOfLifeDeviceInfo from a JSON string"""
56
+ return cls.from_dict(json.loads(json_str))
57
+
58
+ def to_dict(self) -> Dict[str, Any]:
59
+ """Return the dictionary representation of the model using alias.
60
+
61
+ This has the following differences from calling pydantic's
62
+ `self.model_dump(by_alias=True)`:
63
+
64
+ * `None` is only added to the output dict for nullable fields that
65
+ were set at model initialization. Other fields with value `None`
66
+ are ignored.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ return _dict
77
+
78
+ @classmethod
79
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
80
+ """Create an instance of DeviceEndOfLifeDeviceInfo from a dict"""
81
+ if obj is None:
82
+ return None
83
+
84
+ if not isinstance(obj, dict):
85
+ return cls.model_validate(obj)
86
+
87
+ _obj = cls.model_validate({
88
+ "host": obj.get("host"),
89
+ "modelNumber": obj.get("modelNumber"),
90
+ "name": obj.get("name"),
91
+ "softwareVersion": obj.get("softwareVersion"),
92
+ "uid": obj.get("uid")
93
+ })
94
+ return _obj
95
+
96
+
@@ -0,0 +1,98 @@
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.13.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
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class DeviceEndOfLifeRecommendation(BaseModel):
27
+ """
28
+ DeviceEndOfLifeRecommendation
29
+ """ # noqa: E501
30
+ data_sheet_url: Optional[StrictStr] = Field(default=None, description="The Link to the Product Datasheet.", alias="dataSheetUrl")
31
+ form_factor: Optional[StrictStr] = Field(default=None, description="The physical or virtual design and deployment format of the device.", alias="formFactor")
32
+ interfaces: Optional[StrictStr] = Field(default=None, description="The physical or virtual ports through which the device communicates with networks.")
33
+ product_label: Optional[StrictStr] = Field(default=None, description="Cisco product labels specify the firewall series name, model number, and included security feature set (e.g., Threat Defense, VPN), providing clear identification of the device’s capabilities, performance level, and intended deployment use case.", alias="productLabel")
34
+ product_number: Optional[StrictStr] = Field(default=None, description="A unique identifier assigned to a specific Cisco device model or configuration, used to specify its features, performance tier, and hardware specifications", alias="productNumber")
35
+ throughput: Optional[StrictStr] = Field(default=None, description="The rate at which the firewall can process network traffic.")
36
+ __properties: ClassVar[List[str]] = ["dataSheetUrl", "formFactor", "interfaces", "productLabel", "productNumber", "throughput"]
37
+
38
+ model_config = ConfigDict(
39
+ populate_by_name=True,
40
+ validate_assignment=True,
41
+ protected_namespaces=(),
42
+ )
43
+
44
+
45
+ def to_str(self) -> str:
46
+ """Returns the string representation of the model using alias"""
47
+ return pprint.pformat(self.model_dump(by_alias=True))
48
+
49
+ def to_json(self) -> str:
50
+ """Returns the JSON representation of the model using alias"""
51
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
52
+ return json.dumps(self.to_dict())
53
+
54
+ @classmethod
55
+ def from_json(cls, json_str: str) -> Optional[Self]:
56
+ """Create an instance of DeviceEndOfLifeRecommendation from a JSON string"""
57
+ return cls.from_dict(json.loads(json_str))
58
+
59
+ def to_dict(self) -> Dict[str, Any]:
60
+ """Return the dictionary representation of the model using alias.
61
+
62
+ This has the following differences from calling pydantic's
63
+ `self.model_dump(by_alias=True)`:
64
+
65
+ * `None` is only added to the output dict for nullable fields that
66
+ were set at model initialization. Other fields with value `None`
67
+ are ignored.
68
+ """
69
+ excluded_fields: Set[str] = set([
70
+ ])
71
+
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude=excluded_fields,
75
+ exclude_none=True,
76
+ )
77
+ return _dict
78
+
79
+ @classmethod
80
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
81
+ """Create an instance of DeviceEndOfLifeRecommendation from a dict"""
82
+ if obj is None:
83
+ return None
84
+
85
+ if not isinstance(obj, dict):
86
+ return cls.model_validate(obj)
87
+
88
+ _obj = cls.model_validate({
89
+ "dataSheetUrl": obj.get("dataSheetUrl"),
90
+ "formFactor": obj.get("formFactor"),
91
+ "interfaces": obj.get("interfaces"),
92
+ "productLabel": obj.get("productLabel"),
93
+ "productNumber": obj.get("productNumber"),
94
+ "throughput": obj.get("throughput")
95
+ })
96
+ return _obj
97
+
98
+
@@ -0,0 +1,102 @@
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.13.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
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from scc_firewall_manager_sdk.models.device_end_of_life import DeviceEndOfLife
24
+ from scc_firewall_manager_sdk.models.device_end_of_life_device_info import DeviceEndOfLifeDeviceInfo
25
+ from typing import Optional, Set
26
+ from typing_extensions import Self
27
+
28
+ class DeviceEndOfLifeReport(BaseModel):
29
+ """
30
+ DeviceEndOfLifeReport
31
+ """ # noqa: E501
32
+ device_end_of_life: Optional[DeviceEndOfLife] = Field(default=None, alias="deviceEndOfLife")
33
+ devices: Optional[List[DeviceEndOfLifeDeviceInfo]] = Field(default=None, description="An inventory of End-Of-Life affected devices.")
34
+ __properties: ClassVar[List[str]] = ["deviceEndOfLife", "devices"]
35
+
36
+ model_config = ConfigDict(
37
+ populate_by_name=True,
38
+ validate_assignment=True,
39
+ protected_namespaces=(),
40
+ )
41
+
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of DeviceEndOfLifeReport from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ """
67
+ excluded_fields: Set[str] = set([
68
+ ])
69
+
70
+ _dict = self.model_dump(
71
+ by_alias=True,
72
+ exclude=excluded_fields,
73
+ exclude_none=True,
74
+ )
75
+ # override the default output from pydantic by calling `to_dict()` of device_end_of_life
76
+ if self.device_end_of_life:
77
+ _dict['deviceEndOfLife'] = self.device_end_of_life.to_dict()
78
+ # override the default output from pydantic by calling `to_dict()` of each item in devices (list)
79
+ _items = []
80
+ if self.devices:
81
+ for _item in self.devices:
82
+ if _item:
83
+ _items.append(_item.to_dict())
84
+ _dict['devices'] = _items
85
+ return _dict
86
+
87
+ @classmethod
88
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
89
+ """Create an instance of DeviceEndOfLifeReport from a dict"""
90
+ if obj is None:
91
+ return None
92
+
93
+ if not isinstance(obj, dict):
94
+ return cls.model_validate(obj)
95
+
96
+ _obj = cls.model_validate({
97
+ "deviceEndOfLife": DeviceEndOfLife.from_dict(obj["deviceEndOfLife"]) if obj.get("deviceEndOfLife") is not None else None,
98
+ "devices": [DeviceEndOfLifeDeviceInfo.from_dict(_item) for _item in obj["devices"]] if obj.get("devices") is not None else None
99
+ })
100
+ return _obj
101
+
102
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scc-firewall-manager-sdk
3
- Version: 1.13.735
3
+ Version: 1.13.737
4
4
  Summary: Cisco Security Cloud Control Firewall Manager API
5
5
  Home-page:
6
6
  Author: Cisco Security Cloud Control TAC
@@ -1,7 +1,7 @@
1
- scc_firewall_manager_sdk/__init__.py,sha256=amMrp_SUUAqqnWp4Wc638TS2r5lIbASqFPRASKIKj3k,20478
2
- scc_firewall_manager_sdk/api_client.py,sha256=z57JhQaxBkAoaVmbgN1IeAPc_xT1DNuAps-kWaET6Zk,25921
1
+ scc_firewall_manager_sdk/__init__.py,sha256=eJpYIb7wSIgh6OFttynIFJks8UCGvm_7niFClfR3H7Y,20952
2
+ scc_firewall_manager_sdk/api_client.py,sha256=fYa6VEb1k7mtmxx0oZ20sJx2hiZvDLmbSr1rvyy2S1k,25921
3
3
  scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- scc_firewall_manager_sdk/configuration.py,sha256=9q-76Kuyq3MF1hMrFfzWmyzngHt3KqgO2VJ3QOPvuwc,15993
4
+ scc_firewall_manager_sdk/configuration.py,sha256=XGJQdwQ1X6ONcm0XklS4Zp4s3u76WtOOzYcOPSWynHY,15993
5
5
  scc_firewall_manager_sdk/exceptions.py,sha256=J4sPW_b1AGNUeRyPnnDlVtb1b8kOKgDO6cCzCf1wDYg,6039
6
6
  scc_firewall_manager_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  scc_firewall_manager_sdk/rest.py,sha256=fAq2gQ-7Y88YdlSxyPNV1I3fctDBTEU0DrBJapzVrNY,9309
@@ -18,7 +18,7 @@ scc_firewall_manager_sdk/api/commands_api.py,sha256=KUSkY4Fez-R30bsUa7aa-JkwwpeZ
18
18
  scc_firewall_manager_sdk/api/connectors_api.py,sha256=y7RvcRxzAFqlTX1Ys8nAqLd8Ycpulm-5nbAYxRWoCzA,59889
19
19
  scc_firewall_manager_sdk/api/device_health_api.py,sha256=AsB2jnw7A1BKmKpbX2DcFr3OWAuqwDU6aDHhElGvrXw,62283
20
20
  scc_firewall_manager_sdk/api/device_upgrades_api.py,sha256=hINjMZ5Tpr163zR-t41XOOphOw72SBkWjLOEXxue5yg,87919
21
- scc_firewall_manager_sdk/api/inventory_api.py,sha256=KY2vmtz-5LNRcSb_dUl9LgRC8JKYKQuVd20BpaZ28rI,422134
21
+ scc_firewall_manager_sdk/api/inventory_api.py,sha256=eYQKM4GuhwlUj40KI36ngEEq6FmZmVVUx2SgkWHWoOk,444995
22
22
  scc_firewall_manager_sdk/api/meta_api.py,sha256=Kh5Dd9u4KWu3zEYAK1UAnC8Wm6sQvXAaNfuaHbygEQk,29963
23
23
  scc_firewall_manager_sdk/api/msp_api.py,sha256=eS488IW4_0GVPbenFN6srhh9xwAMp6TSHgi-MpeW9pc,346575
24
24
  scc_firewall_manager_sdk/api/object_management_api.py,sha256=ta2_mL1O-7oevx9YWigOjhs4udfmnmNIPv6p-jvSiMM,151897
@@ -27,7 +27,7 @@ scc_firewall_manager_sdk/api/search_api.py,sha256=V7waQrZ2Jz_xylLONUL_s3JF8Hj63C
27
27
  scc_firewall_manager_sdk/api/tenant_management_api.py,sha256=dHMPKC1JBw1nLbGtHTsEpJRMHXAWmxbmGLDDOwANC0s,55069
28
28
  scc_firewall_manager_sdk/api/transactions_api.py,sha256=V_w5fV1taxCcOEnlxKhi1VRgBbH0yrpmX0WijjpAQ_w,12470
29
29
  scc_firewall_manager_sdk/api/users_api.py,sha256=CO7rDpDlmwgh7dWNjYPDXghhhJZP3EhsC2nKe-JMbdo,191609
30
- scc_firewall_manager_sdk/models/__init__.py,sha256=0KP1SPzF2MQrImjVQ7sRukMjz1CGhDjOWWzcnsYNlIo,18296
30
+ scc_firewall_manager_sdk/models/__init__.py,sha256=qhC_Ia7JfvFunmFoNulsAM_5JUs4U_M88tE-DfhwH0Q,18770
31
31
  scc_firewall_manager_sdk/models/access_group.py,sha256=eJVEMhIO65w2BNCcdIptHC6GtplLMGhpqgeci3MINc8,4583
32
32
  scc_firewall_manager_sdk/models/access_group_create_input.py,sha256=mJdIwaxeDnqlvG5fyLo95BzoER97sF2inU99r2VoIbo,3930
33
33
  scc_firewall_manager_sdk/models/access_group_page.py,sha256=5x8WJxs6-oGuqdp3weEw4Y2dET5v5h46gQ8umryJOZg,3725
@@ -98,6 +98,11 @@ scc_firewall_manager_sdk/models/destination_dynamic_object_content.py,sha256=gOs
98
98
  scc_firewall_manager_sdk/models/destination_network_content.py,sha256=6KJRfheCU70zOnMjlgIEcnNWrCuFu3OQibZ7zFgTA78,4057
99
99
  scc_firewall_manager_sdk/models/destination_port_content.py,sha256=E82DN-JVdNj6W44dbpPXg8u00u0EUIfu8ajR-nhF9-k,4045
100
100
  scc_firewall_manager_sdk/models/device.py,sha256=Du7Vbn0a9_HaMyg6LshwYeKYxBq8WbvWhY113rMPfqc,17866
101
+ scc_firewall_manager_sdk/models/device_end_of_life.py,sha256=myYNmqvtbflTopWuYUXorApsGpdw3uvnPZR3Z2gqQAc,4117
102
+ scc_firewall_manager_sdk/models/device_end_of_life_details.py,sha256=jnXbc_ScncGq_05a8WDwss7QbUu1-coTztPNGvQPNBw,3630
103
+ scc_firewall_manager_sdk/models/device_end_of_life_device_info.py,sha256=JyhFPnVDZ18xcJ6Gr2-mUKYfQ6ZXI2Cedo_QNnV_Zfw,3610
104
+ scc_firewall_manager_sdk/models/device_end_of_life_recommendation.py,sha256=_gnI6MFem5NhxrSqF67i0ftRE4Ru8nrXv6vpA-fRb0o,4137
105
+ scc_firewall_manager_sdk/models/device_end_of_life_report.py,sha256=BDANrlPeeRQSZXQoExwdZ2U0s8ax0issyS2V6X1nIpw,3739
101
106
  scc_firewall_manager_sdk/models/device_gateway_api_request.py,sha256=FlTIGqkrDMuuNb3AIsYgh6nr7IHg0uYnLG7xmpx4jk0,3212
102
107
  scc_firewall_manager_sdk/models/device_manager_patch_input.py,sha256=TbNe8KLe2t1PUfiDQbvomPptRX3xsWhaysElQSETO7Y,3559
103
108
  scc_firewall_manager_sdk/models/device_metadata.py,sha256=GKDC7rY3GPsUlE8ylOOGf5U2c_50q94qpnm5qexFIK8,3203
@@ -250,7 +255,7 @@ scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=Vi0t29qVtf
250
255
  scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=uQmBUgV0DEXVY_9PLvLj7JA1_oPlNYvue-MLwAnKlPY,6210
251
256
  scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=o6f4KOotVYPH06y4Gm9EhnddZIPlymWT31x8gfnbVt0,5326
252
257
  scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=d7_s7YPs0uQBiX201HJwMc9WR_vSmQpMfAskmRrx2bM,4808
253
- scc_firewall_manager_sdk-1.13.735.dist-info/METADATA,sha256=I1dpar7VUnUUoIDNbwLLvh0yMd_PGgW9KiE1LhY1jco,596
254
- scc_firewall_manager_sdk-1.13.735.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
255
- scc_firewall_manager_sdk-1.13.735.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
256
- scc_firewall_manager_sdk-1.13.735.dist-info/RECORD,,
258
+ scc_firewall_manager_sdk-1.13.737.dist-info/METADATA,sha256=XknnIuBpIh_ERos1ZUgCy59LdQo-Cy-70vE9ykfUAmI,596
259
+ scc_firewall_manager_sdk-1.13.737.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
260
+ scc_firewall_manager_sdk-1.13.737.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
261
+ scc_firewall_manager_sdk-1.13.737.dist-info/RECORD,,