scc-firewall-manager-sdk 1.15.315__py3-none-any.whl → 1.15.317__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.315"
18
+ __version__ = "1.15.317"
19
19
 
20
20
  # import apis into sdk package
21
21
  from scc_firewall_manager_sdk.api.ai_assistant_api import AIAssistantApi
@@ -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.315/python'
91
+ self.user_agent = 'OpenAPI-Generator/1.15.317/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.315".\
383
+ "SDK Package Version: 1.15.317".\
384
384
  format(env=sys.platform, pyversion=sys.version)
385
385
 
386
386
  def get_host_settings(self):
@@ -26,6 +26,7 @@ from scc_firewall_manager_sdk.models.asa_failover_mode import AsaFailoverMode
26
26
  from scc_firewall_manager_sdk.models.config_state import ConfigState
27
27
  from scc_firewall_manager_sdk.models.conflict_detection_state import ConflictDetectionState
28
28
  from scc_firewall_manager_sdk.models.connectivity_state import ConnectivityState
29
+ from scc_firewall_manager_sdk.models.device_maintenance_window import DeviceMaintenanceWindow
29
30
  from scc_firewall_manager_sdk.models.entity_type import EntityType
30
31
  from scc_firewall_manager_sdk.models.fmc_device_record import FmcDeviceRecord
31
32
  from scc_firewall_manager_sdk.models.ftd_cluster_info import FtdClusterInfo
@@ -47,6 +48,7 @@ class MspManagedDevice(BaseModel):
47
48
  config_state: Optional[ConfigState] = Field(default=None, alias="configState")
48
49
  conflict_detection_state: Optional[ConflictDetectionState] = Field(default=None, alias="conflictDetectionState")
49
50
  connectivity_state: Optional[ConnectivityState] = Field(default=None, alias="connectivityState")
51
+ device_maintenance_window: Optional[DeviceMaintenanceWindow] = Field(default=None, alias="deviceMaintenanceWindow")
50
52
  device_record_on_fmc: Optional[FmcDeviceRecord] = Field(default=None, alias="deviceRecordOnFmc")
51
53
  device_type: Optional[EntityType] = Field(default=None, alias="deviceType")
52
54
  ftd_cluster_info: Optional[FtdClusterInfo] = Field(default=None, alias="ftdClusterInfo")
@@ -65,7 +67,7 @@ class MspManagedDevice(BaseModel):
65
67
  software_version: Optional[StrictStr] = Field(default=None, description="The version of the software running on the device.", alias="softwareVersion")
66
68
  tenant_uid: Optional[StrictStr] = Field(default=None, alias="tenantUid")
67
69
  uid: Optional[StrictStr] = Field(default=None, description="The unique identifier, represented as a UUID, of the device in Security Cloud Control.")
68
- __properties: ClassVar[List[str]] = ["address", "asaFailoverMate", "asaFailoverMode", "asaFailoverState", "certificateExpiryDate", "chassisSerial", "configState", "conflictDetectionState", "connectivityState", "deviceRecordOnFmc", "deviceType", "ftdClusterInfo", "ftdHaInfo", "hardwareModel", "labels", "managedTenantDisplayName", "managedTenantName", "managedTenantRegion", "managedTenantUid", "modelNumber", "name", "raVpnCertificateExpiryDate", "redundancyMode", "serial", "softwareVersion", "tenantUid", "uid"]
70
+ __properties: ClassVar[List[str]] = ["address", "asaFailoverMate", "asaFailoverMode", "asaFailoverState", "certificateExpiryDate", "chassisSerial", "configState", "conflictDetectionState", "connectivityState", "deviceMaintenanceWindow", "deviceRecordOnFmc", "deviceType", "ftdClusterInfo", "ftdHaInfo", "hardwareModel", "labels", "managedTenantDisplayName", "managedTenantName", "managedTenantRegion", "managedTenantUid", "modelNumber", "name", "raVpnCertificateExpiryDate", "redundancyMode", "serial", "softwareVersion", "tenantUid", "uid"]
69
71
 
70
72
  @field_validator('redundancy_mode')
71
73
  def redundancy_mode_validate_enum(cls, value):
@@ -119,6 +121,9 @@ class MspManagedDevice(BaseModel):
119
121
  # override the default output from pydantic by calling `to_dict()` of asa_failover_mate
120
122
  if self.asa_failover_mate:
121
123
  _dict['asaFailoverMate'] = self.asa_failover_mate.to_dict()
124
+ # override the default output from pydantic by calling `to_dict()` of device_maintenance_window
125
+ if self.device_maintenance_window:
126
+ _dict['deviceMaintenanceWindow'] = self.device_maintenance_window.to_dict()
122
127
  # override the default output from pydantic by calling `to_dict()` of device_record_on_fmc
123
128
  if self.device_record_on_fmc:
124
129
  _dict['deviceRecordOnFmc'] = self.device_record_on_fmc.to_dict()
@@ -152,6 +157,7 @@ class MspManagedDevice(BaseModel):
152
157
  "configState": obj.get("configState"),
153
158
  "conflictDetectionState": obj.get("conflictDetectionState"),
154
159
  "connectivityState": obj.get("connectivityState"),
160
+ "deviceMaintenanceWindow": DeviceMaintenanceWindow.from_dict(obj["deviceMaintenanceWindow"]) if obj.get("deviceMaintenanceWindow") is not None else None,
155
161
  "deviceRecordOnFmc": FmcDeviceRecord.from_dict(obj["deviceRecordOnFmc"]) if obj.get("deviceRecordOnFmc") is not None else None,
156
162
  "deviceType": obj.get("deviceType"),
157
163
  "ftdClusterInfo": FtdClusterInfo.from_dict(obj["ftdClusterInfo"]) if obj.get("ftdClusterInfo") is not None else None,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scc-firewall-manager-sdk
3
- Version: 1.15.315
3
+ Version: 1.15.317
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=Tp4_QvBAvFjAh6Cn1wBVaeh6F0xvAiyvRzpABBjKcco,23696
2
- scc_firewall_manager_sdk/api_client.py,sha256=gbsmcY-ehoHcJkTLTwk9Oo-slXPkrIWHWsvrnpicg-Q,25921
1
+ scc_firewall_manager_sdk/__init__.py,sha256=zYdJwTuMQLY-4WgK7IixCPek4fGtXdOtsopoeft45yo,23696
2
+ scc_firewall_manager_sdk/api_client.py,sha256=ATQKDXl-qiv1Z1-71-JyLAWvLRCeXEoBDZpWnc2MtmI,25921
3
3
  scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- scc_firewall_manager_sdk/configuration.py,sha256=kl24WGft_cVUbey-S_Rnrqmduz6w8WT4mWIfufpdkyw,15993
4
+ scc_firewall_manager_sdk/configuration.py,sha256=180P0YDXz5D4laAH53746SOee8GRM_F8pTM3va9eoUs,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
@@ -198,7 +198,7 @@ scc_firewall_manager_sdk/models/msp_export_input.py,sha256=OcIWeptdOLWRGBVsj6LCc
198
198
  scc_firewall_manager_sdk/models/msp_managed_cloud_service.py,sha256=_PYu5Nn-6xrJMH_3fbHHdXSESWevOtTj4pM55hIGDpQ,5482
199
199
  scc_firewall_manager_sdk/models/msp_managed_cloud_service_distinct_attribute_values.py,sha256=p3LQ3KOJ2uR--Qvy1-5vVlk4kYEVTijTDElHqCNR_Rc,4719
200
200
  scc_firewall_manager_sdk/models/msp_managed_cloud_service_page.py,sha256=Dd7FHEypt16shFZwXr40hdOec1abJRRLCTztdGs_fhU,3815
201
- scc_firewall_manager_sdk/models/msp_managed_device.py,sha256=cU_hIu60qEcrh6R3YCndDuWwjbBgDk75XOxs62zVNhY,11128
201
+ scc_firewall_manager_sdk/models/msp_managed_device.py,sha256=4UE0wgCYMgipa22pzwRsW063x-703g3K1t0eVG6ufJE,11770
202
202
  scc_firewall_manager_sdk/models/msp_managed_device_distinct_attribute_values.py,sha256=DcE0qIEueWR4_U4sEaT2GqzAToZgJfS9LA-qtddd9lg,5552
203
203
  scc_firewall_manager_sdk/models/msp_managed_device_manager.py,sha256=EpNlNfq51KQg19ge2YLoSldcqapT8gqjmJ5ZD9gn0Lg,5379
204
204
  scc_firewall_manager_sdk/models/msp_managed_device_manager_distinct_attribute_values.py,sha256=IdKwQdyQ12Hgup8-raO2TQQwF-D0ifpvcAKRYv2WKqc,4272
@@ -284,7 +284,7 @@ scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=AKUqPJw5ku
284
284
  scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=srEFTyQykscNrWsbp8KGEzbmHC07_AU3DXjJ-7Be4zc,6054
285
285
  scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=HAgBTdocZeHGDZP_-9NyRtzP9E7BReGtiOmn4S3J-_g,5326
286
286
  scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=f9Z62yGFvz4QAQ07Z4bjfHLw2bRg46ccwoLuQ8q30TE,4808
287
- scc_firewall_manager_sdk-1.15.315.dist-info/METADATA,sha256=jz-ZpiZuu0vNw0g_pBqUkgduxwyQ_1ecMRgJucamo3s,596
288
- scc_firewall_manager_sdk-1.15.315.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
289
- scc_firewall_manager_sdk-1.15.315.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
290
- scc_firewall_manager_sdk-1.15.315.dist-info/RECORD,,
287
+ scc_firewall_manager_sdk-1.15.317.dist-info/METADATA,sha256=TmsvlnuF13PahoXDhwTD4f3XxTNnSc0KENZ8gbvhzeA,596
288
+ scc_firewall_manager_sdk-1.15.317.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
289
+ scc_firewall_manager_sdk-1.15.317.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
290
+ scc_firewall_manager_sdk-1.15.317.dist-info/RECORD,,