scc-firewall-manager-sdk 1.15.273__py3-none-any.whl → 1.15.275__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.273"
18
+ __version__ = "1.15.275"
19
19
 
20
20
  # import apis into sdk package
21
21
  from scc_firewall_manager_sdk.api.ai_assistant_api import AIAssistantApi
@@ -233,6 +233,7 @@ from scc_firewall_manager_sdk.models.msp_managed_tenant import MspManagedTenant
233
233
  from scc_firewall_manager_sdk.models.msp_managed_tenant_page import MspManagedTenantPage
234
234
  from scc_firewall_manager_sdk.models.msp_upgrade_run_dto import MspUpgradeRunDto
235
235
  from scc_firewall_manager_sdk.models.msp_upgrade_run_dto_page import MspUpgradeRunDtoPage
236
+ from scc_firewall_manager_sdk.models.msp_upgrade_runs_attribute_values import MspUpgradeRunsAttributeValues
236
237
  from scc_firewall_manager_sdk.models.network import Network
237
238
  from scc_firewall_manager_sdk.models.network_object_content import NetworkObjectContent
238
239
  from scc_firewall_manager_sdk.models.os import OS
@@ -24,6 +24,7 @@ from scc_firewall_manager_sdk.models.cdo_transaction import CdoTransaction
24
24
  from scc_firewall_manager_sdk.models.msp_calculate_compatible_upgrade_versions_input import MspCalculateCompatibleUpgradeVersionsInput
25
25
  from scc_firewall_manager_sdk.models.msp_upgrade_run_dto import MspUpgradeRunDto
26
26
  from scc_firewall_manager_sdk.models.msp_upgrade_run_dto_page import MspUpgradeRunDtoPage
27
+ from scc_firewall_manager_sdk.models.msp_upgrade_runs_attribute_values import MspUpgradeRunsAttributeValues
27
28
  from scc_firewall_manager_sdk.models.upgrade_compatibility_info_dto import UpgradeCompatibilityInfoDto
28
29
 
29
30
  from scc_firewall_manager_sdk.api_client import ApiClient, RequestSerialized
@@ -1446,6 +1447,252 @@ class MSPDeviceUpgradesApi:
1446
1447
 
1447
1448
 
1448
1449
 
1450
+ @validate_call
1451
+ def get_msp_upgrade_runs_attribute_values(
1452
+ self,
1453
+ _request_timeout: Union[
1454
+ None,
1455
+ Annotated[StrictFloat, Field(gt=0)],
1456
+ Tuple[
1457
+ Annotated[StrictFloat, Field(gt=0)],
1458
+ Annotated[StrictFloat, Field(gt=0)]
1459
+ ]
1460
+ ] = None,
1461
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
1462
+ _content_type: Optional[StrictStr] = None,
1463
+ _headers: Optional[Dict[StrictStr, Any]] = None,
1464
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1465
+ ) -> MspUpgradeRunsAttributeValues:
1466
+ """Get distinct attribute values for MSP upgrade runs
1467
+
1468
+ Get distinct attribute values for fields in the MSP upgrade runs.
1469
+
1470
+ :param _request_timeout: timeout setting for this request. If one
1471
+ number provided, it will be total request
1472
+ timeout. It can also be a pair (tuple) of
1473
+ (connection, read) timeouts.
1474
+ :type _request_timeout: int, tuple(int, int), optional
1475
+ :param _request_auth: set to override the auth_settings for an a single
1476
+ request; this effectively ignores the
1477
+ authentication in the spec for a single request.
1478
+ :type _request_auth: dict, optional
1479
+ :param _content_type: force content-type for the request.
1480
+ :type _content_type: str, Optional
1481
+ :param _headers: set to override the headers for a single
1482
+ request; this effectively ignores the headers
1483
+ in the spec for a single request.
1484
+ :type _headers: dict, optional
1485
+ :param _host_index: set to override the host_index for a single
1486
+ request; this effectively ignores the host_index
1487
+ in the spec for a single request.
1488
+ :type _host_index: int, optional
1489
+ :return: Returns the result object.
1490
+ """ # noqa: E501
1491
+
1492
+ _param = self._get_msp_upgrade_runs_attribute_values_serialize(
1493
+ _request_auth=_request_auth,
1494
+ _content_type=_content_type,
1495
+ _headers=_headers,
1496
+ _host_index=_host_index
1497
+ )
1498
+
1499
+ _response_types_map: Dict[str, Optional[str]] = {
1500
+ '200': "MspUpgradeRunsAttributeValues",
1501
+ '500': "CommonApiError",
1502
+ }
1503
+ response_data = self.api_client.call_api(
1504
+ *_param,
1505
+ _request_timeout=_request_timeout
1506
+ )
1507
+ response_data.read()
1508
+ return self.api_client.response_deserialize(
1509
+ response_data=response_data,
1510
+ response_types_map=_response_types_map,
1511
+ ).data
1512
+
1513
+
1514
+ @validate_call
1515
+ def get_msp_upgrade_runs_attribute_values_with_http_info(
1516
+ self,
1517
+ _request_timeout: Union[
1518
+ None,
1519
+ Annotated[StrictFloat, Field(gt=0)],
1520
+ Tuple[
1521
+ Annotated[StrictFloat, Field(gt=0)],
1522
+ Annotated[StrictFloat, Field(gt=0)]
1523
+ ]
1524
+ ] = None,
1525
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
1526
+ _content_type: Optional[StrictStr] = None,
1527
+ _headers: Optional[Dict[StrictStr, Any]] = None,
1528
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1529
+ ) -> ApiResponse[MspUpgradeRunsAttributeValues]:
1530
+ """Get distinct attribute values for MSP upgrade runs
1531
+
1532
+ Get distinct attribute values for fields in the MSP upgrade runs.
1533
+
1534
+ :param _request_timeout: timeout setting for this request. If one
1535
+ number provided, it will be total request
1536
+ timeout. It can also be a pair (tuple) of
1537
+ (connection, read) timeouts.
1538
+ :type _request_timeout: int, tuple(int, int), optional
1539
+ :param _request_auth: set to override the auth_settings for an a single
1540
+ request; this effectively ignores the
1541
+ authentication in the spec for a single request.
1542
+ :type _request_auth: dict, optional
1543
+ :param _content_type: force content-type for the request.
1544
+ :type _content_type: str, Optional
1545
+ :param _headers: set to override the headers for a single
1546
+ request; this effectively ignores the headers
1547
+ in the spec for a single request.
1548
+ :type _headers: dict, optional
1549
+ :param _host_index: set to override the host_index for a single
1550
+ request; this effectively ignores the host_index
1551
+ in the spec for a single request.
1552
+ :type _host_index: int, optional
1553
+ :return: Returns the result object.
1554
+ """ # noqa: E501
1555
+
1556
+ _param = self._get_msp_upgrade_runs_attribute_values_serialize(
1557
+ _request_auth=_request_auth,
1558
+ _content_type=_content_type,
1559
+ _headers=_headers,
1560
+ _host_index=_host_index
1561
+ )
1562
+
1563
+ _response_types_map: Dict[str, Optional[str]] = {
1564
+ '200': "MspUpgradeRunsAttributeValues",
1565
+ '500': "CommonApiError",
1566
+ }
1567
+ response_data = self.api_client.call_api(
1568
+ *_param,
1569
+ _request_timeout=_request_timeout
1570
+ )
1571
+ response_data.read()
1572
+ return self.api_client.response_deserialize(
1573
+ response_data=response_data,
1574
+ response_types_map=_response_types_map,
1575
+ )
1576
+
1577
+
1578
+ @validate_call
1579
+ def get_msp_upgrade_runs_attribute_values_without_preload_content(
1580
+ self,
1581
+ _request_timeout: Union[
1582
+ None,
1583
+ Annotated[StrictFloat, Field(gt=0)],
1584
+ Tuple[
1585
+ Annotated[StrictFloat, Field(gt=0)],
1586
+ Annotated[StrictFloat, Field(gt=0)]
1587
+ ]
1588
+ ] = None,
1589
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
1590
+ _content_type: Optional[StrictStr] = None,
1591
+ _headers: Optional[Dict[StrictStr, Any]] = None,
1592
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1593
+ ) -> RESTResponseType:
1594
+ """Get distinct attribute values for MSP upgrade runs
1595
+
1596
+ Get distinct attribute values for fields in the MSP upgrade runs.
1597
+
1598
+ :param _request_timeout: timeout setting for this request. If one
1599
+ number provided, it will be total request
1600
+ timeout. It can also be a pair (tuple) of
1601
+ (connection, read) timeouts.
1602
+ :type _request_timeout: int, tuple(int, int), optional
1603
+ :param _request_auth: set to override the auth_settings for an a single
1604
+ request; this effectively ignores the
1605
+ authentication in the spec for a single request.
1606
+ :type _request_auth: dict, optional
1607
+ :param _content_type: force content-type for the request.
1608
+ :type _content_type: str, Optional
1609
+ :param _headers: set to override the headers for a single
1610
+ request; this effectively ignores the headers
1611
+ in the spec for a single request.
1612
+ :type _headers: dict, optional
1613
+ :param _host_index: set to override the host_index for a single
1614
+ request; this effectively ignores the host_index
1615
+ in the spec for a single request.
1616
+ :type _host_index: int, optional
1617
+ :return: Returns the result object.
1618
+ """ # noqa: E501
1619
+
1620
+ _param = self._get_msp_upgrade_runs_attribute_values_serialize(
1621
+ _request_auth=_request_auth,
1622
+ _content_type=_content_type,
1623
+ _headers=_headers,
1624
+ _host_index=_host_index
1625
+ )
1626
+
1627
+ _response_types_map: Dict[str, Optional[str]] = {
1628
+ '200': "MspUpgradeRunsAttributeValues",
1629
+ '500': "CommonApiError",
1630
+ }
1631
+ response_data = self.api_client.call_api(
1632
+ *_param,
1633
+ _request_timeout=_request_timeout
1634
+ )
1635
+ return response_data.response
1636
+
1637
+
1638
+ def _get_msp_upgrade_runs_attribute_values_serialize(
1639
+ self,
1640
+ _request_auth,
1641
+ _content_type,
1642
+ _headers,
1643
+ _host_index,
1644
+ ) -> RequestSerialized:
1645
+
1646
+ _host = None
1647
+
1648
+ _collection_formats: Dict[str, str] = {
1649
+ }
1650
+
1651
+ _path_params: Dict[str, str] = {}
1652
+ _query_params: List[Tuple[str, str]] = []
1653
+ _header_params: Dict[str, Optional[str]] = _headers or {}
1654
+ _form_params: List[Tuple[str, str]] = []
1655
+ _files: Dict[str, str] = {}
1656
+ _body_params: Optional[bytes] = None
1657
+
1658
+ # process the path parameters
1659
+ # process the query parameters
1660
+ # process the header parameters
1661
+ # process the form parameters
1662
+ # process the body parameter
1663
+
1664
+
1665
+ # set the HTTP header `Accept`
1666
+ _header_params['Accept'] = self.api_client.select_header_accept(
1667
+ [
1668
+ 'application/json'
1669
+ ]
1670
+ )
1671
+
1672
+
1673
+ # authentication setting
1674
+ _auth_settings: List[str] = [
1675
+ 'bearerAuth'
1676
+ ]
1677
+
1678
+ return self.api_client.param_serialize(
1679
+ method='GET',
1680
+ resource_path='/v1/msp/inventory/devices/ftds/upgrades/runs/attribute-values',
1681
+ path_params=_path_params,
1682
+ query_params=_query_params,
1683
+ header_params=_header_params,
1684
+ body=_body_params,
1685
+ post_params=_form_params,
1686
+ files=_files,
1687
+ auth_settings=_auth_settings,
1688
+ collection_formats=_collection_formats,
1689
+ _host=_host,
1690
+ _request_auth=_request_auth
1691
+ )
1692
+
1693
+
1694
+
1695
+
1449
1696
  @validate_call
1450
1697
  def upgrade_msp_managed_ftd_devices(
1451
1698
  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.15.273/python'
91
+ self.user_agent = 'OpenAPI-Generator/1.15.275/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.273".\
383
+ "SDK Package Version: 1.15.275".\
384
384
  format(env=sys.platform, pyversion=sys.version)
385
385
 
386
386
  def get_host_settings(self):
@@ -191,6 +191,7 @@ from scc_firewall_manager_sdk.models.msp_managed_tenant import MspManagedTenant
191
191
  from scc_firewall_manager_sdk.models.msp_managed_tenant_page import MspManagedTenantPage
192
192
  from scc_firewall_manager_sdk.models.msp_upgrade_run_dto import MspUpgradeRunDto
193
193
  from scc_firewall_manager_sdk.models.msp_upgrade_run_dto_page import MspUpgradeRunDtoPage
194
+ from scc_firewall_manager_sdk.models.msp_upgrade_runs_attribute_values import MspUpgradeRunsAttributeValues
194
195
  from scc_firewall_manager_sdk.models.network import Network
195
196
  from scc_firewall_manager_sdk.models.network_object_content import NetworkObjectContent
196
197
  from scc_firewall_manager_sdk.models.os import OS
@@ -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, StrictFloat, StrictInt, StrictStr, field_validator
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional, Union
23
23
  from typing import Optional, Set
24
24
  from typing_extensions import Self
@@ -27,28 +27,10 @@ class DeviceUpgradeStatusDto(BaseModel):
27
27
  """
28
28
  DeviceUpgradeStatusDto
29
29
  """ # noqa: E501
30
- hardware_model: Optional[StrictStr] = Field(default=None, description="The hardware model of the devices being upgraded.", alias="hardwareModel")
31
- managed_tenant_display_name: Optional[StrictStr] = Field(default=None, description="The display name of the managed tenant in CDO.", alias="managedTenantDisplayName")
32
- managed_tenant_name: Optional[StrictStr] = Field(default=None, description="The name of the managed tenant in CDO.", alias="managedTenantName")
33
- managed_tenant_uid: Optional[StrictStr] = Field(default=None, description="The unique identifier, represented as a UUID, of the managed tenant in Security Cloud Control that this device belongs to.", alias="managedTenantUid")
34
30
  message: Optional[StrictStr] = Field(default=None, description="A message, indicating current progress, returned from the device.")
35
- name: Optional[StrictStr] = Field(default=None, description="The name of the device being upgraded.")
36
31
  percentage_complete: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The percentage completion of the current task being performed", alias="percentageComplete")
37
- software_version_before_upgrade: Optional[StrictStr] = Field(default=None, description="The software version of the device before the upgrade.", alias="softwareVersionBeforeUpgrade")
38
- transaction_uid: Optional[StrictStr] = Field(default=None, description="The unique identifier, represented as a UUID, of the CDO transaction on the managed tenant that tracks this upgrade run.", alias="transactionUid")
39
- uid: Optional[StrictStr] = Field(default=None, description="The unique identifier, represented as a UUID, of the device being upgraded.")
40
- upgrade_run_status: Optional[StrictStr] = Field(default=None, description="The current status of the upgrade run.", alias="upgradeRunStatus")
41
- __properties: ClassVar[List[str]] = ["hardwareModel", "managedTenantDisplayName", "managedTenantName", "managedTenantUid", "message", "name", "percentageComplete", "softwareVersionBeforeUpgrade", "transactionUid", "uid", "upgradeRunStatus"]
42
-
43
- @field_validator('upgrade_run_status')
44
- def upgrade_run_status_validate_enum(cls, value):
45
- """Validates the enum"""
46
- if value is None:
47
- return value
48
-
49
- if value not in set(['IN_PROGRESS', 'REBUILDING_UPGRADE_CACHE', 'PERFORMING_UPGRADE', 'UPLOADING_IMAGE', 'PERFORMING_READINESS_CHECK', 'UPGRADE_STAGED', 'UPGRADE_STAGING_FAILED', 'UGPRADE_STAGING_FAILED', 'UPGRADE_COMPLETED', 'UPGRADE_FAILED']):
50
- raise ValueError("must be one of enum values ('IN_PROGRESS', 'REBUILDING_UPGRADE_CACHE', 'PERFORMING_UPGRADE', 'UPLOADING_IMAGE', 'PERFORMING_READINESS_CHECK', 'UPGRADE_STAGED', 'UPGRADE_STAGING_FAILED', 'UGPRADE_STAGING_FAILED', 'UPGRADE_COMPLETED', 'UPGRADE_FAILED')")
51
- return value
32
+ uid: Optional[StrictStr] = Field(default=None, description="The unique identifier, represented as a UUID, of the device in SCC Firewall Manager.")
33
+ __properties: ClassVar[List[str]] = ["message", "percentageComplete", "uid"]
52
34
 
53
35
  model_config = ConfigDict(
54
36
  populate_by_name=True,
@@ -101,17 +83,9 @@ class DeviceUpgradeStatusDto(BaseModel):
101
83
  return cls.model_validate(obj)
102
84
 
103
85
  _obj = cls.model_validate({
104
- "hardwareModel": obj.get("hardwareModel"),
105
- "managedTenantDisplayName": obj.get("managedTenantDisplayName"),
106
- "managedTenantName": obj.get("managedTenantName"),
107
- "managedTenantUid": obj.get("managedTenantUid"),
108
86
  "message": obj.get("message"),
109
- "name": obj.get("name"),
110
87
  "percentageComplete": obj.get("percentageComplete"),
111
- "softwareVersionBeforeUpgrade": obj.get("softwareVersionBeforeUpgrade"),
112
- "transactionUid": obj.get("transactionUid"),
113
- "uid": obj.get("uid"),
114
- "upgradeRunStatus": obj.get("upgradeRunStatus")
88
+ "uid": obj.get("uid")
115
89
  })
116
90
  return _obj
117
91
 
@@ -0,0 +1,99 @@
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
+
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, field_validator
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class MspUpgradeRunsAttributeValues(BaseModel):
27
+ """
28
+ MspUpgradeRunsAttributeValues
29
+ """ # noqa: E501
30
+ upgrade_run_statuses: Optional[List[StrictStr]] = Field(default=None, description="The distinct status values for the MSP upgrade runs on this MSP portal.", alias="upgradeRunStatuses")
31
+ __properties: ClassVar[List[str]] = ["upgradeRunStatuses"]
32
+
33
+ @field_validator('upgrade_run_statuses')
34
+ def upgrade_run_statuses_validate_enum(cls, value):
35
+ """Validates the enum"""
36
+ if value is None:
37
+ return value
38
+
39
+ for i in value:
40
+ if i not in set(['IN_PROGRESS', 'REBUILDING_UPGRADE_CACHE', 'PERFORMING_UPGRADE', 'UPLOADING_IMAGE', 'PERFORMING_READINESS_CHECK', 'UPGRADE_STAGED', 'UPGRADE_STAGING_FAILED', 'UGPRADE_STAGING_FAILED', 'UPGRADE_COMPLETED', 'UPGRADE_FAILED']):
41
+ raise ValueError("each list item must be one of ('IN_PROGRESS', 'REBUILDING_UPGRADE_CACHE', 'PERFORMING_UPGRADE', 'UPLOADING_IMAGE', 'PERFORMING_READINESS_CHECK', 'UPGRADE_STAGED', 'UPGRADE_STAGING_FAILED', 'UGPRADE_STAGING_FAILED', 'UPGRADE_COMPLETED', 'UPGRADE_FAILED')")
42
+ return value
43
+
44
+ model_config = ConfigDict(
45
+ populate_by_name=True,
46
+ validate_assignment=True,
47
+ protected_namespaces=(),
48
+ )
49
+
50
+
51
+ def to_str(self) -> str:
52
+ """Returns the string representation of the model using alias"""
53
+ return pprint.pformat(self.model_dump(by_alias=True))
54
+
55
+ def to_json(self) -> str:
56
+ """Returns the JSON representation of the model using alias"""
57
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
58
+ return json.dumps(self.to_dict())
59
+
60
+ @classmethod
61
+ def from_json(cls, json_str: str) -> Optional[Self]:
62
+ """Create an instance of MspUpgradeRunsAttributeValues from a JSON string"""
63
+ return cls.from_dict(json.loads(json_str))
64
+
65
+ def to_dict(self) -> Dict[str, Any]:
66
+ """Return the dictionary representation of the model using alias.
67
+
68
+ This has the following differences from calling pydantic's
69
+ `self.model_dump(by_alias=True)`:
70
+
71
+ * `None` is only added to the output dict for nullable fields that
72
+ were set at model initialization. Other fields with value `None`
73
+ are ignored.
74
+ """
75
+ excluded_fields: Set[str] = set([
76
+ ])
77
+
78
+ _dict = self.model_dump(
79
+ by_alias=True,
80
+ exclude=excluded_fields,
81
+ exclude_none=True,
82
+ )
83
+ return _dict
84
+
85
+ @classmethod
86
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
87
+ """Create an instance of MspUpgradeRunsAttributeValues from a dict"""
88
+ if obj is None:
89
+ return None
90
+
91
+ if not isinstance(obj, dict):
92
+ return cls.model_validate(obj)
93
+
94
+ _obj = cls.model_validate({
95
+ "upgradeRunStatuses": obj.get("upgradeRunStatuses")
96
+ })
97
+ return _obj
98
+
99
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scc-firewall-manager-sdk
3
- Version: 1.15.273
3
+ Version: 1.15.275
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=Vwf1mJ6bxDg404GOoXpZ2_wMctCKqbuBts50pMCGZ0g,23421
2
- scc_firewall_manager_sdk/api_client.py,sha256=m1sf0FK4-_G5o3IgGrcJCA1Z86YwxxeC4Duge6A6o7I,25921
1
+ scc_firewall_manager_sdk/__init__.py,sha256=u5Gma2p5EfCbepAUB7lk0xtaSKmVvBKSuAZVHeFrUeA,23529
2
+ scc_firewall_manager_sdk/api_client.py,sha256=i5GYykeg33KS3q0e8aTX5UfhwYEoRqLhN_Vh--X3CQc,25921
3
3
  scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- scc_firewall_manager_sdk/configuration.py,sha256=dtTuJDheTcgt1km9fcRyO0yi1qhO53E3XvdA8hcRbR0,15993
4
+ scc_firewall_manager_sdk/configuration.py,sha256=zh1HVNlGJ4oRUP77YjTdHto1PomOJilwS_g57swjH6Y,15993
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
@@ -22,7 +22,7 @@ scc_firewall_manager_sdk/api/device_upgrades_api.py,sha256=nEtjWfCJ9eDVONZ0TLUAp
22
22
  scc_firewall_manager_sdk/api/interface_health_aggregations_api.py,sha256=2fxsrkfFpI2zSx3WnviJnP0uuS2XBT8YE_sZ0FcXjk0,40990
23
23
  scc_firewall_manager_sdk/api/inventory_api.py,sha256=EJqDZzqBE4w_klxuo84rSYmrmbinGSJEbSbU6Wqs4Gg,444995
24
24
  scc_firewall_manager_sdk/api/meta_api.py,sha256=0T4mIpkOc0FyDIvEN5qhRQbKN4CzOM00_sRVY2oG59U,29963
25
- scc_firewall_manager_sdk/api/msp_device_upgrades_api.py,sha256=Tt0_OnxCJiSPhiWfYYOMJqKCJ3UvPxV-0qpvA12KHVk,73309
25
+ scc_firewall_manager_sdk/api/msp_device_upgrades_api.py,sha256=4aM0if2FEPAjwkSos46ge9IXJYZTajKEKmwHZyrH4vQ,83128
26
26
  scc_firewall_manager_sdk/api/msp_inventory_api.py,sha256=eLYqsv_7YNxQGLQLqEnWfSFPIJ8nWnuJQkZfxtGapxM,185473
27
27
  scc_firewall_manager_sdk/api/msp_tenant_management_api.py,sha256=u1Ljk5-A3JnMGyfGNVVyc1L2ll6I1m43hrLflbqvT5M,108920
28
28
  scc_firewall_manager_sdk/api/msp_user_management_api.py,sha256=MPy-WAv52ziuUcrK_Tq_q38PN1pbpgfL5fdqzYP81S8,54797
@@ -32,7 +32,7 @@ scc_firewall_manager_sdk/api/search_api.py,sha256=PonVl7RieSVsbCCVQOdqIA7vx2NCH5
32
32
  scc_firewall_manager_sdk/api/tenant_management_api.py,sha256=3PWPuirkaUck1VZex3w4Cg3qO05GF0f7xeiptaAc5zE,55069
33
33
  scc_firewall_manager_sdk/api/transactions_api.py,sha256=fz0Ko2bAXFpz0SM8psceOlcxq0gXnrnuTEhaX1E0QzA,23402
34
34
  scc_firewall_manager_sdk/api/users_api.py,sha256=MKuyXmxWLSqPBkfA7rUGZ1EO1Ox-Oge7QhhgzSFAVu8,191609
35
- scc_firewall_manager_sdk/models/__init__.py,sha256=pwrPJC5O2qn3qaoaTU0kXh9nINbq64DF0m0AIZEOyPo,20745
35
+ scc_firewall_manager_sdk/models/__init__.py,sha256=GTULTJYmJZngHM7zdZzsN5dMmADm82prH5COJQec1n8,20853
36
36
  scc_firewall_manager_sdk/models/access_group.py,sha256=9FlXrDT5xhtk-uWuwgMmM-qAGiKZrpfnkphZuogGsHo,4583
37
37
  scc_firewall_manager_sdk/models/access_group_create_input.py,sha256=7tgCifqvqbwS2bZvS_PQdIV_ra_jiEbupJhyaHcG8ys,3930
38
38
  scc_firewall_manager_sdk/models/access_group_page.py,sha256=imWa0te5qmTpXfuE8W8YM3SG01MIn4ewbA-_N8kPKHk,3725
@@ -118,7 +118,7 @@ scc_firewall_manager_sdk/models/device_metadata.py,sha256=PNCBkG35enpJhcwqiku4NH
118
118
  scc_firewall_manager_sdk/models/device_page.py,sha256=ha32rLEnC9v8JpDff_07t_rtFLa-pAJFelG7czmFl8g,3684
119
119
  scc_firewall_manager_sdk/models/device_patch_input.py,sha256=1LOG---DhQRxRYP0qA8PzzopCUX5c0bbLu7ptIySYXo,4224
120
120
  scc_firewall_manager_sdk/models/device_role.py,sha256=cqv0xYyNhsvAOoDRUpdeSwkbEE9u89hEf8gA66cAteQ,1038
121
- scc_firewall_manager_sdk/models/device_upgrade_status_dto.py,sha256=VyuohadpQIWv6aII44-ncHx8HXN4bdTWn9YfobH6S0c,5986
121
+ scc_firewall_manager_sdk/models/device_upgrade_status_dto.py,sha256=APBrvjPIxnDTUDPSsQBttDpwyTjqC77b0opzJ32A6ZY,3216
122
122
  scc_firewall_manager_sdk/models/devices_patch_input.py,sha256=lSH-tNHYdS0CjWsHcSsnzQ9kL5ZxIsaVoHMxp5_Z8n4,3836
123
123
  scc_firewall_manager_sdk/models/disk_health_metrics.py,sha256=QU7XHLFoitOo4_ijLYromfp0stM8c7tx1T20uocXGXs,2947
124
124
  scc_firewall_manager_sdk/models/domain_settings.py,sha256=QqPTLHlNLd-PDoVqviIrU0IIPXhqLdTqTokV6uVQ8ug,3852
@@ -209,6 +209,7 @@ scc_firewall_manager_sdk/models/msp_managed_tenant.py,sha256=TNe2ICfaX9ZvueCjSov
209
209
  scc_firewall_manager_sdk/models/msp_managed_tenant_page.py,sha256=eMkOCp0F3rSPYEYWxOMm99QIhLkPxj26-OM77nyWOKc,3766
210
210
  scc_firewall_manager_sdk/models/msp_upgrade_run_dto.py,sha256=43fIdsW4UY-xKZ4TnIkTXdMSj99Db-ahwQfBgb5klk0,6821
211
211
  scc_firewall_manager_sdk/models/msp_upgrade_run_dto_page.py,sha256=eE2zAYd6zeQ3aSP4GfYjJMFRvID6LzWAkBih_H3Gp9A,3767
212
+ scc_firewall_manager_sdk/models/msp_upgrade_runs_attribute_values.py,sha256=3t0RursAGjhwmKzimZpSLG6p1s2iEbaRbIgs1zfXx-E,3620
212
213
  scc_firewall_manager_sdk/models/network.py,sha256=T1MdmQRNP6gmIYo4PRVPq-aEVDw13SHrN5DvQZu-L7A,2974
213
214
  scc_firewall_manager_sdk/models/network_object_content.py,sha256=qwtnc7RcIfWcV3WhCLaZeeZQEUIR56unMWdmHNo3vXI,2726
214
215
  scc_firewall_manager_sdk/models/object_content.py,sha256=yhDK2KXeN9KFnSNgAaB-NdnSyLhXslpSf6hCzg-EgSw,7159
@@ -281,7 +282,7 @@ scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=AKUqPJw5ku
281
282
  scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=srEFTyQykscNrWsbp8KGEzbmHC07_AU3DXjJ-7Be4zc,6054
282
283
  scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=HAgBTdocZeHGDZP_-9NyRtzP9E7BReGtiOmn4S3J-_g,5326
283
284
  scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=f9Z62yGFvz4QAQ07Z4bjfHLw2bRg46ccwoLuQ8q30TE,4808
284
- scc_firewall_manager_sdk-1.15.273.dist-info/METADATA,sha256=g9btObfMUOfWk8yJfQVjsleGdK_44SfjAWFW-Z7Um4I,596
285
- scc_firewall_manager_sdk-1.15.273.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
286
- scc_firewall_manager_sdk-1.15.273.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
287
- scc_firewall_manager_sdk-1.15.273.dist-info/RECORD,,
285
+ scc_firewall_manager_sdk-1.15.275.dist-info/METADATA,sha256=_plVA8OwGb2TC6kCfgHX92veEUKX8tOPLSmOVVon9nI,596
286
+ scc_firewall_manager_sdk-1.15.275.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
287
+ scc_firewall_manager_sdk-1.15.275.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
288
+ scc_firewall_manager_sdk-1.15.275.dist-info/RECORD,,