├── .gitignore ├── Copyright ├── LICENSE ├── MANIFEST.in ├── README.md ├── README.rst ├── __init__.py ├── apis ├── __init__.py ├── client_manager.py ├── exceptions.py └── nb │ ├── __init__.py │ ├── client_manager.py │ ├── clients │ ├── __init__.py │ ├── api_client.py │ ├── file_service_client │ │ ├── FileApi.py │ │ ├── __init__.py │ │ ├── fileservice.json │ │ └── models │ │ │ ├── FileObject.py │ │ │ ├── FileObjectListResult.py │ │ │ ├── FileObjectResult.py │ │ │ ├── NameSpaceListResult.py │ │ │ ├── SuccessResult.py │ │ │ ├── Void.py │ │ │ └── __init__.py │ ├── group_client │ │ ├── GroupApi.py │ │ ├── __init__.py │ │ ├── group.json │ │ └── models │ │ │ ├── CountResult.py │ │ │ ├── GroupMembersResult.py │ │ │ ├── GroupTypesResult.py │ │ │ ├── Resource.py │ │ │ ├── ResourceGroupDTO.py │ │ │ ├── ResourceGroupListResult.py │ │ │ ├── ResourceGroupResult.py │ │ │ ├── TaskIdResponse.py │ │ │ └── __init__.py │ ├── identity_manager_client │ │ ├── V2CiscoiseApi.py │ │ ├── V2NeighborhoodApi.py │ │ ├── V2ScalablegroupApi.py │ │ ├── __init__.py │ │ ├── cisco-ise.json │ │ ├── models │ │ │ ├── ApicEmUserDTO.py │ │ │ ├── ApicEmUserListResult.py │ │ │ ├── ApplicationGroupDTOBrief.py │ │ │ ├── ApplicationV2DTOBrief.py │ │ │ ├── CiscoIseDTO.py │ │ │ ├── CiscoIseListResult.py │ │ │ ├── CiscoIseResult.py │ │ │ ├── CountResult.py │ │ │ ├── HostBriefDTO.py │ │ │ ├── IdentityAuthFileInfoDTO.py │ │ │ ├── IdentityAuthFileInfoListResult.py │ │ │ ├── NeighborhoodDTO.py │ │ │ ├── NeighborhoodListResult.py │ │ │ ├── NeighborhoodResult.py │ │ │ ├── ScalableGroupBriefDTO.py │ │ │ ├── ScalableGroupDTO.py │ │ │ ├── ScalableGroupListResult.py │ │ │ ├── ScalableGroupResult.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ └── __init__.py │ │ ├── neighborhood.json │ │ └── scalable-group.json │ ├── inventory_manager_client │ │ ├── DiscoveryApi.py │ │ ├── GlobalcredentialApi.py │ │ ├── HostApi.py │ │ ├── InterfaceApi.py │ │ ├── LicenseApi.py │ │ ├── LocationApi.py │ │ ├── NetworkdeviceApi.py │ │ ├── NetworkdeviceidvlanApi.py │ │ ├── SegmentApi.py │ │ ├── TagApi.py │ │ ├── __init__.py │ │ ├── device-credential.json │ │ ├── discovery.json │ │ ├── host.json │ │ ├── interface.json │ │ ├── license.json │ │ ├── location.json │ │ ├── models │ │ │ ├── CLICredentialDTO.py │ │ │ ├── CountResult.py │ │ │ ├── Date.py │ │ │ ├── DeviceIfDTO.py │ │ │ ├── DeviceIfListResult.py │ │ │ ├── DeviceIfResult.py │ │ │ ├── DiscoveryJobNIO.py │ │ │ ├── DiscoveryJobNIOListResult.py │ │ │ ├── DiscoveryNIO.py │ │ │ ├── DiscoveryNIOListResult.py │ │ │ ├── DiscoveryNIOResult.py │ │ │ ├── GlobalCredentialDTO.py │ │ │ ├── GlobalCredentialListResult.py │ │ │ ├── GlobalCredentialSubTypeResult.py │ │ │ ├── HostDTO.py │ │ │ ├── HostListResult.py │ │ │ ├── HostResult.py │ │ │ ├── InventoryDeviceInfo.py │ │ │ ├── InventoryRequest.py │ │ │ ├── LicenseInfoDTO.py │ │ │ ├── LicenseInfoListResult.py │ │ │ ├── LocationNIO.py │ │ │ ├── LocationNIOListResult.py │ │ │ ├── LocationNIOResult.py │ │ │ ├── ModuleDTO.py │ │ │ ├── ModuleListResult.py │ │ │ ├── ModuleResult.py │ │ │ ├── NetworkDeviceBrief.py │ │ │ ├── NetworkDeviceBriefNIO.py │ │ │ ├── NetworkDeviceBriefNIOResult.py │ │ │ ├── NetworkDeviceDTO.py │ │ │ ├── NetworkDeviceListResult.py │ │ │ ├── NetworkDeviceManagementInfo.py │ │ │ ├── NetworkDeviceNIO.py │ │ │ ├── NetworkDeviceNIOListResult.py │ │ │ ├── NetworkDeviceResult.py │ │ │ ├── NetworkManagementInfo.py │ │ │ ├── NetworkManagementInfoResult.py │ │ │ ├── RawCliInfoNIO.py │ │ │ ├── RawCliInfoNIOListResult.py │ │ │ ├── SNMPv2ReadCommunityDTO.py │ │ │ ├── SNMPv2WriteCommunityDTO.py │ │ │ ├── SNMPv3CredentialDTO.py │ │ │ ├── SchedulingNIO.py │ │ │ ├── SegmentDto.py │ │ │ ├── SegmentResult.py │ │ │ ├── SiteManagementInfo.py │ │ │ ├── SuccessResult.py │ │ │ ├── SuccessResultList.py │ │ │ ├── TagDto.py │ │ │ ├── TagDtoListResult.py │ │ │ ├── TagDtoResult.py │ │ │ ├── TagNIO.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ ├── VlanDTO.py │ │ │ ├── VlanListResult.py │ │ │ └── __init__.py │ │ ├── network-device-config.json │ │ ├── network-device.json │ │ ├── segment.json │ │ ├── tag.json │ │ └── vlan.json │ ├── ipgeo_client │ │ ├── IpgeowanIPApi.py │ │ ├── __init__.py │ │ ├── ipgeo.json │ │ └── models │ │ │ ├── IPGeoModel.py │ │ │ ├── IPGeoModelResult.py │ │ │ └── __init__.py │ ├── ippool_client │ │ ├── IppoolApi.py │ │ ├── __init__.py │ │ ├── ippool.json │ │ └── models │ │ │ ├── CountResult.py │ │ │ ├── IpPoolInfo.py │ │ │ ├── IpPoolInfoListResult.py │ │ │ ├── IpPoolInfoResult.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ └── __init__.py │ ├── network_discovery_client │ │ ├── ReachabilityinfoApi.py │ │ ├── __init__.py │ │ ├── models │ │ │ ├── CountResult.py │ │ │ ├── NetworkDeviceReachabilityInfoNIO.py │ │ │ ├── NetworkDeviceReachabilityInfoNIOListResult.py │ │ │ ├── NetworkDeviceReachabilityInfoNIOResult.py │ │ │ └── __init__.py │ │ └── reachability-info.json │ ├── network_plug_and_play_client │ │ ├── PnpdeviceApi.py │ │ ├── PnpfileApi.py │ │ ├── PnpprojectApi.py │ │ ├── PnpsearchApi.py │ │ ├── PnpsmartaccountApi.py │ │ ├── TemplateApi.py │ │ ├── TemplateconfigApi.py │ │ ├── TemplaterendererApi.py │ │ ├── __init__.py │ │ ├── models │ │ │ ├── CertificateInfo.py │ │ │ ├── CountResult.py │ │ │ ├── DeviceAuthState.py │ │ │ ├── EntryListString.py │ │ │ ├── FileObject.py │ │ │ ├── FileObjectListResult.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ ├── Void.py │ │ │ ├── ZtdApicEmNetworkInfo.py │ │ │ ├── ZtdApicEmNetworkInfoResult.py │ │ │ ├── ZtdBulkStatus.py │ │ │ ├── ZtdBulkStatusListResult.py │ │ │ ├── ZtdBulkStatusResult.py │ │ │ ├── ZtdDefaultImage.py │ │ │ ├── ZtdDefaultImageListResult.py │ │ │ ├── ZtdDevice.py │ │ │ ├── ZtdDeviceDiscoveryInfo.py │ │ │ ├── ZtdDeviceListResult.py │ │ │ ├── ZtdDeviceResult.py │ │ │ ├── ZtdDeviceStateMapResult.py │ │ │ ├── ZtdHistory.py │ │ │ ├── ZtdHistoryListResult.py │ │ │ ├── ZtdMemberDetail.py │ │ │ ├── ZtdPlatform.py │ │ │ ├── ZtdPlatformImage.py │ │ │ ├── ZtdPlatformImageList.py │ │ │ ├── ZtdPlatformImageListResult.py │ │ │ ├── ZtdPlatformImageResult.py │ │ │ ├── ZtdPlatformListResult.py │ │ │ ├── ZtdPort.py │ │ │ ├── ZtdRequestHeader.py │ │ │ ├── ZtdRule.py │ │ │ ├── ZtdSearch.py │ │ │ ├── ZtdSearchListResult.py │ │ │ ├── ZtdSite.py │ │ │ ├── ZtdSiteDevice.py │ │ │ ├── ZtdSiteDeviceListResult.py │ │ │ ├── ZtdSiteListResult.py │ │ │ ├── ZtdSiteResult.py │ │ │ ├── ZtdSmartAccount.py │ │ │ ├── ZtdSmartAccountControllerAttribute.py │ │ │ ├── ZtdSmartAccountDevice.py │ │ │ ├── ZtdSmartAccountDeviceListResult.py │ │ │ ├── ZtdSmartAccountListResult.py │ │ │ ├── ZtdSmartAccountProfile.py │ │ │ ├── ZtdSmartAccountProfileListResult.py │ │ │ ├── ZtdSmartAccountUser.py │ │ │ ├── ZtdSmartAccountUserListResult.py │ │ │ ├── ZtdSyncedAccount.py │ │ │ ├── ZtdSyncedAccountListResult.py │ │ │ ├── ZtdSyncedAccountResult.py │ │ │ ├── ZtdTemplate.py │ │ │ ├── ZtdTemplateConfig.py │ │ │ ├── ZtdTemplateConfigListResult.py │ │ │ ├── ZtdTemplateConfigResult.py │ │ │ ├── ZtdTemplateListResult.py │ │ │ ├── ZtdTemplateRenderer.py │ │ │ ├── ZtdTemplateRendererResult.py │ │ │ ├── ZtdTemplateResult.py │ │ │ ├── ZtdValidExtensionsResult.py │ │ │ ├── ZtdVirtualAccount.py │ │ │ └── __init__.py │ │ ├── pnp-device.json │ │ ├── pnp-file.json │ │ ├── pnp-project.json │ │ ├── pnp-search.json │ │ ├── pnp-smart-account.json │ │ ├── template-config.json │ │ ├── template-renderer.json │ │ └── template.json │ ├── network_poller_client │ │ ├── NetworkdevicepollercliApi.py │ │ ├── __init__.py │ │ ├── models │ │ │ ├── CommandRunnerDTO.py │ │ │ ├── LegitCliKeyResult.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ └── __init__.py │ │ └── network-device-poller.json │ ├── pki_broker_service_client │ │ ├── DefaultApi.py │ │ ├── __init__.py │ │ ├── certificate-management.json │ │ ├── models │ │ │ ├── CertificateBrief.py │ │ │ ├── CertificateBriefListResult.py │ │ │ ├── CertificateBriefResult.py │ │ │ ├── CertificateProxyStatus.py │ │ │ ├── CountResult.py │ │ │ ├── PkiTrustPoint.py │ │ │ ├── PkiTrustPointConfig.py │ │ │ ├── PkiTrustPointConfigResult.py │ │ │ ├── PkiTrustPointListResult.py │ │ │ ├── PkiTrustPointResult.py │ │ │ ├── SuccessResult.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ ├── TrustpoolUpdateParam.py │ │ │ ├── TrustpoolUpdateStatus.py │ │ │ ├── TrustpoolUpdateStatusResult.py │ │ │ ├── Void.py │ │ │ └── __init__.py │ │ └── pki-broker.json │ ├── policy_analysis_client │ │ ├── FlowanalysisApi.py │ │ ├── __init__.py │ │ ├── flow-analysis.json │ │ └── models │ │ │ ├── Accuracy.py │ │ │ ├── AclAce.py │ │ │ ├── AclAnalysisResponse.py │ │ │ ├── AclMatchingPorts.py │ │ │ ├── AclPortInfo.py │ │ │ ├── CpuStatistics.py │ │ │ ├── DetailedStatus.py │ │ │ ├── DeviceStatistics.py │ │ │ ├── FlowAnalysis.py │ │ │ ├── FlowAnalysisListOutput.py │ │ │ ├── FlowAnalysisRequest.py │ │ │ ├── FlowAnalysisRequestResult.py │ │ │ ├── FlowAnalysisRequestResultOutput.py │ │ │ ├── Interface.py │ │ │ ├── InterfaceContainer.py │ │ │ ├── InterfaceStatistics.py │ │ │ ├── MemoryStatistics.py │ │ │ ├── NetworkElement.py │ │ │ ├── NetworkElementInfo.py │ │ │ ├── PathResponse.py │ │ │ ├── PathResponseResult.py │ │ │ ├── PerfMonitorStatistics.py │ │ │ ├── QosClassMapStatistics.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ └── __init__.py │ ├── policy_manager_client │ │ ├── ApplicationApi.py │ │ ├── BandwidthprofileApi.py │ │ ├── CategoryApi.py │ │ ├── PolicyApi.py │ │ ├── PolicyinterruptApi.py │ │ ├── PolicypreviewApi.py │ │ ├── RelevanceApi.py │ │ ├── ServiceproviderprofileApi.py │ │ ├── V2ContractApi.py │ │ ├── V2PolicyApi.py │ │ ├── __init__.py │ │ ├── application.json │ │ ├── bandwidth-profile.json │ │ ├── category.json │ │ ├── models │ │ │ ├── AccessClauseDTO.py │ │ │ ├── ActionProperty.py │ │ │ ├── ApplicationDTO.py │ │ │ ├── ApplicationIpPortClassifierDTO.py │ │ │ ├── ApplicationListResult.py │ │ │ ├── ApplicationResult.py │ │ │ ├── BandwidthProfileAssociatedPolicyScopeDTO.py │ │ │ ├── BandwidthProfileDTO.py │ │ │ ├── BandwidthProfileListResult.py │ │ │ ├── BandwidthProfileResult.py │ │ │ ├── CategoryDTO.py │ │ │ ├── CategoryListResult.py │ │ │ ├── CategoryResult.py │ │ │ ├── ClassModelDTO.py │ │ │ ├── ConsumerDTO.py │ │ │ ├── ContractDTO.py │ │ │ ├── ContractListResult.py │ │ │ ├── ContractResult.py │ │ │ ├── CountResult.py │ │ │ ├── FlowDTO.py │ │ │ ├── FlowIdResponse.py │ │ │ ├── FlowIdResult.py │ │ │ ├── FlowListResult.py │ │ │ ├── FlowResult.py │ │ │ ├── InterfaceTrafficClassBandwidthSettingsDTO.py │ │ │ ├── NetworkUser.py │ │ │ ├── Policy.py │ │ │ ├── PolicyApplication.py │ │ │ ├── PolicyApplicationDiffDTO.py │ │ │ ├── PolicyApplicationListResult.py │ │ │ ├── PolicyConsumerProducerApplication.py │ │ │ ├── PolicyContractDTO.py │ │ │ ├── PolicyDTO.py │ │ │ ├── PolicyDTOListResult.py │ │ │ ├── PolicyDTOResult.py │ │ │ ├── PolicyDiffDTO.py │ │ │ ├── PolicyFlowSettingDTO.py │ │ │ ├── PolicyFlowSettingResult.py │ │ │ ├── PolicyIntentSummaryDTO.py │ │ │ ├── PolicyIntentSummaryDTOResult.py │ │ │ ├── PolicyInterruptDTO.py │ │ │ ├── PolicyInterruptDTOResult.py │ │ │ ├── PolicyInterruptInput.py │ │ │ ├── PolicyListResult.py │ │ │ ├── PolicyPreviewDTO.py │ │ │ ├── PolicyPreviewDTOListResult.py │ │ │ ├── PolicyPreviewDTOResult.py │ │ │ ├── PolicyPreviewDeviceConfigDTO.py │ │ │ ├── PolicyResource.py │ │ │ ├── PolicyResult.py │ │ │ ├── PolicyStatusDTO.py │ │ │ ├── PolicyStatusListResult.py │ │ │ ├── PolicyTagAssociationDTO.py │ │ │ ├── PolicyTagAssociationDeviceDTO.py │ │ │ ├── PolicyTagAssociationDeviceListResult.py │ │ │ ├── PolicyTagAssociationListResult.py │ │ │ ├── PolicyTagDTO.py │ │ │ ├── PolicyTagListResult.py │ │ │ ├── PolicyVersionNumberListResult.py │ │ │ ├── ProducerDTO.py │ │ │ ├── RelevanceListResult.py │ │ │ ├── ScalableGroupDTO.py │ │ │ ├── ScheduledPolicyDTO.py │ │ │ ├── ScheduledPolicyListResult.py │ │ │ ├── ServiceProviderProfileDTO.py │ │ │ ├── ServiceProviderProfileInterfaceDTO.py │ │ │ ├── ServiceProviderProfileListResult.py │ │ │ ├── ServiceProviderProfileResult.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ ├── TrafficClassBandwidthSettingDTO.py │ │ │ ├── VersionDiffDTO.py │ │ │ ├── VersionDiffResult.py │ │ │ ├── VersionNumberDTO.py │ │ │ └── __init__.py │ │ ├── policy-interrupt.json │ │ ├── policy-preview.json │ │ ├── policy.json │ │ ├── relevance.json │ │ ├── service-provider-profile.json │ │ ├── v2-contract.json │ │ └── v2-policy.json │ ├── rbac_service_client │ │ ├── AaaserverApi.py │ │ ├── TicketApi.py │ │ ├── UserApi.py │ │ ├── UserroleApi.py │ │ ├── __init__.py │ │ ├── aaa.json │ │ ├── models │ │ │ ├── AAAAttribute.py │ │ │ ├── AAAAttributeResult.py │ │ │ ├── AAAServer.py │ │ │ ├── AAAServerListResult.py │ │ │ ├── AAAServerResult.py │ │ │ ├── AutoPassphrase.py │ │ │ ├── AutoPassphraseResult.py │ │ │ ├── Role.py │ │ │ ├── RoleListResult.py │ │ │ ├── ScopeRole.py │ │ │ ├── ServerId.py │ │ │ ├── ServerIdListResult.py │ │ │ ├── ServiceTicketRbac.py │ │ │ ├── SuccessResult.py │ │ │ ├── TicketAttribute.py │ │ │ ├── TicketAttributeResult.py │ │ │ ├── TicketRbacResult.py │ │ │ ├── UUID.py │ │ │ ├── User.py │ │ │ ├── UserListResult.py │ │ │ ├── UserLockExpiryTime.py │ │ │ ├── UserLockExpiryTimeResult.py │ │ │ ├── UserLoginInvalidAttemptCount.py │ │ │ ├── UserLoginInvalidAttemptCountResult.py │ │ │ ├── UserReqRes.py │ │ │ ├── UserResult.py │ │ │ ├── UserStatus.py │ │ │ ├── UserStatusResult.py │ │ │ └── __init__.py │ │ ├── role.json │ │ ├── ticket.json │ │ └── user.json │ ├── scheduler_service_client │ │ ├── SchedulerApi.py │ │ ├── __init__.py │ │ ├── models │ │ │ ├── ScheduleInfoOutput.py │ │ │ ├── ScheduleInfoOutputListResult.py │ │ │ ├── ScheduleInfoOutputResult.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ └── __init__.py │ │ └── scheduler.json │ ├── site_client │ │ ├── SiteApi.py │ │ ├── SiteProvisionApi.py │ │ ├── __init__.py │ │ └── models │ │ │ ├── SiteDeleteResponse.py │ │ │ ├── SiteInfo.py │ │ │ ├── SiteInfoListResult.py │ │ │ ├── SiteList.py │ │ │ ├── SiteProperties.py │ │ │ ├── SiteResponse.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ └── __init__.py │ ├── task_service_client │ │ ├── AlarmApi.py │ │ ├── AuditApi.py │ │ ├── TaskApi.py │ │ ├── __init__.py │ │ ├── alert.json │ │ ├── audit.json │ │ ├── models │ │ │ ├── AlarmDTO.py │ │ │ ├── Annotation.py │ │ │ ├── AugmentedAuditResourceDTO.py │ │ │ ├── AugmentedTaskDTO.py │ │ │ ├── CertPath.py │ │ │ ├── Certificate.py │ │ │ ├── Class.py │ │ │ ├── ClassLoader.py │ │ │ ├── CodeSigner.py │ │ │ ├── CodeSource.py │ │ │ ├── Constructor.py │ │ │ ├── EventAlarmCategoryEnum.py │ │ │ ├── EventTypeEnum.py │ │ │ ├── Field.py │ │ │ ├── GenericDeclaration.py │ │ │ ├── IdRef.py │ │ │ ├── InetAddress.py │ │ │ ├── ListAlarmDTOResponse.py │ │ │ ├── ListAuditResourceDTOResponse.py │ │ │ ├── MacAddress.py │ │ │ ├── Method.py │ │ │ ├── Package.py │ │ │ ├── PermissionCollection.py │ │ │ ├── Principal.py │ │ │ ├── ProtectionDomain.py │ │ │ ├── PublicKey.py │ │ │ ├── SuccessResult.py │ │ │ ├── TaskDTOListResponse.py │ │ │ ├── TaskDTOResponse.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ ├── Timestamp.py │ │ │ ├── Type.py │ │ │ ├── TypeVariable.py │ │ │ ├── URL.py │ │ │ └── __init__.py │ │ └── task.json │ ├── topology_client │ │ ├── DefaultApi.py │ │ ├── SharddcacheApi.py │ │ ├── TopologyApi.py │ │ ├── TopologyvrfvrfnameApi.py │ │ ├── __init__.py │ │ ├── apic-shard.json │ │ ├── models │ │ │ ├── KnownResourcesResult.py │ │ │ ├── LinkWrapper.py │ │ │ ├── NodeWrapper.py │ │ │ ├── NodeWrapperCustom.py │ │ │ ├── ServiceInstanceOwnershipCountPairDTO.py │ │ │ ├── ServiceInstanceOwnershipCountResult.py │ │ │ ├── ServiceInstancesForShardCategoryResult.py │ │ │ ├── ServiceInstancesResult.py │ │ │ ├── ShardCategoriesForServiceInstanceResult.py │ │ │ ├── ShardCategoriesResult.py │ │ │ ├── SuccessResult.py │ │ │ ├── TaskIdResponse.py │ │ │ ├── TaskIdResult.py │ │ │ ├── Topology.py │ │ │ ├── TopologyApplicationDto.py │ │ │ ├── TopologyApplicationListResult.py │ │ │ ├── TopologyApplicationResult.py │ │ │ ├── TopologyPageDto.py │ │ │ ├── TopologyPageListResult.py │ │ │ ├── TopologyPageResult.py │ │ │ ├── TopologyResult.py │ │ │ ├── TopologyViewDto.py │ │ │ ├── TopologyViewListResult.py │ │ │ ├── TopologyViewResult.py │ │ │ ├── VlanNamesResult.py │ │ │ ├── VrfNamesResult.py │ │ │ └── __init__.py │ │ ├── topology-application-page-view.json │ │ ├── topology.json │ │ ├── vlan.json │ │ └── vrf.json │ └── visibility_service_client │ │ ├── IpprefixApi.py │ │ ├── IpspaceApi.py │ │ ├── IwanApi.py │ │ ├── IwannetworkdeviceApi.py │ │ ├── IwannetworkwidesettingApi.py │ │ ├── IwanprimeapiApi.py │ │ ├── IwansiteApi.py │ │ ├── IwanuserinputApi.py │ │ ├── V2IsibilityApi.py │ │ ├── WancloudApi.py │ │ ├── WanlinkApi.py │ │ ├── __init__.py │ │ ├── ip-prefix.json │ │ ├── ip-space.json │ │ ├── iwan.json │ │ ├── models │ │ ├── AAASettingsDTO.py │ │ ├── ASProtocolDTO.py │ │ ├── BandwidthAllocations.py │ │ ├── CertifiedImageDTO.py │ │ ├── DCPrefixDTO.py │ │ ├── DCPrefixDTOListResult.py │ │ ├── DCPrefixDTOResult.py │ │ ├── DCRoutingInfoDTO.py │ │ ├── DCRoutingInfoDTOResult.py │ │ ├── DHCPServerSettingsDTO.py │ │ ├── DNSSettingsDTO.py │ │ ├── GenericIpAddressPoolDTO.py │ │ ├── GenericIpAddressPoolListResult.py │ │ ├── HubSiteDTO.py │ │ ├── HubSiteWanDTO.py │ │ ├── IPPoolAllocationDTO.py │ │ ├── IPPoolAllocationListResult.py │ │ ├── IPPoolAllocationSuggestionDTO.py │ │ ├── IPPoolAllocationSuggestionResult.py │ │ ├── IWANSiteNameDTO.py │ │ ├── IWANSiteNamesDTOResult.py │ │ ├── IWANTaggedDevicesResult.py │ │ ├── IWanQosInterfaceBandwidthInfo.py │ │ ├── InterfaceInfoDTO.py │ │ ├── InterfaceInfoDTOResult.py │ │ ├── IpAddressGlobalDTO.py │ │ ├── IpAddressGlobalSettingsResult.py │ │ ├── IpAddressPoolWrapperDTO.py │ │ ├── IwanApplicationCommonlyUsedLevel.py │ │ ├── IwanPhysicalServiceProviderClassModelDTO.py │ │ ├── IwanPhysicalServiceProviderDTO.py │ │ ├── IwanPhysicalServiceProviderListResult.py │ │ ├── IwanSpokeWanBandwidthDTO.py │ │ ├── IwanSpokeWanBandwidthListResult.py │ │ ├── IwanUserInputDTO.py │ │ ├── IwanUserInputDTOListResult.py │ │ ├── LDAPSettingsDTO.py │ │ ├── NTPSettingsDTO.py │ │ ├── NetflowSettingsDTO.py │ │ ├── NetworkWideSettingsDTO.py │ │ ├── NetworkWideSettingsResult.py │ │ ├── ReserveIpSubnetDTO.py │ │ ├── SNMPSettingsDTO.py │ │ ├── SiteDTO.py │ │ ├── SiteDTOListResult.py │ │ ├── SiteDTOResult.py │ │ ├── SiteDeviceDTO.py │ │ ├── SiteDeviceLinkDTO.py │ │ ├── SiteDeviceListResult.py │ │ ├── SiteDeviceResult.py │ │ ├── SiteIPAddressPoolDTO.py │ │ ├── SiteIPAddressPoolListResult.py │ │ ├── SiteVLANDTO.py │ │ ├── SiteVLANDTOResult.py │ │ ├── SyslogSettingsDTO.py │ │ ├── SystemSettingsDTO.py │ │ ├── SystemSettingsResult.py │ │ ├── TaskIdResponse.py │ │ ├── TaskIdResult.py │ │ ├── UnclaimedDeviceDTO.py │ │ ├── UnclaimedDeviceListResult.py │ │ ├── Void.py │ │ ├── WANLabelDTO.py │ │ ├── WANLabelsDTOResult.py │ │ ├── WanCloudDTO.py │ │ ├── WanCloudListResult.py │ │ ├── WanCloudResult.py │ │ ├── WanLinkDTO.py │ │ ├── WanLinkDTOListResult.py │ │ └── __init__.py │ │ ├── network-device.json │ │ ├── network-wide-setting.json │ │ ├── prime-api.json │ │ ├── site.json │ │ ├── user-input.json │ │ ├── visibility.json │ │ ├── wan-cloud.json │ │ └── wan-link.json │ └── services │ ├── __init__.py │ ├── services.py │ └── task │ ├── __init__.py │ └── task.py ├── platform_mgmt └── retrieve_backup.sh ├── requirements.txt ├── sample_scripts ├── add_discovery_job.py ├── create_and_delete_policy_tag.py ├── get_all_users.py ├── get_network_devices.py └── login.py ├── setup.py ├── tests ├── faked_models │ ├── faked_client │ │ └── models │ │ │ ├── Contain.py │ │ │ ├── DifferentAttr.py │ │ │ ├── DifferentType.py │ │ │ └── Same.py │ └── other_faked_client │ │ └── models │ │ ├── Contain.py │ │ ├── DifferentAttr.py │ │ ├── DifferentType.py │ │ └── Same.py └── nb │ └── test_nb_client_manager.py ├── uniq.png └── utils ├── __init__.py └── wait.py /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX Related 2 | .DS_STORE 3 | 4 | # Python Related 5 | __pycache__/ 6 | *.py[cod] 7 | 8 | # PyTest Related 9 | .cache/ 10 | 11 | # Build Related 12 | build/ 13 | dist/ 14 | *.egg-info/ 15 | .eggs/ -------------------------------------------------------------------------------- /Copyright: -------------------------------------------------------------------------------- 1 | Copyright 2016 Cisco Systems 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft tests 2 | include apis/nb/clients/*_client/*.json 3 | include README.md 4 | include README.rst 5 | include LICENSE 6 | include Copyright 7 | include requirements.txt 8 | include uniq.png -------------------------------------------------------------------------------- /apis/__init__.py: -------------------------------------------------------------------------------- 1 | """ Pacakge of APIC-EM northbound api calls. """ -------------------------------------------------------------------------------- /apis/nb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/uniq/74211d9488f1e77cf56ef86dba20ec8e8eb49cc1/apis/nb/__init__.py -------------------------------------------------------------------------------- /apis/nb/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/uniq/74211d9488f1e77cf56ef86dba20ec8e8eb49cc1/apis/nb/clients/__init__.py -------------------------------------------------------------------------------- /apis/nb/clients/file_service_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/file_service_client/models/FileObjectListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class FileObjectListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[FileObject]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[FileObject] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/file_service_client/models/FileObjectResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class FileObjectResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'FileObject' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # FileObject 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/file_service_client/models/NameSpaceListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class NameSpaceListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/file_service_client/models/SuccessResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SuccessResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/file_service_client/models/Void.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Void(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | } 19 | 20 | self.attributeMap = { 21 | 22 | } 23 | 24 | 25 | -------------------------------------------------------------------------------- /apis/nb/clients/file_service_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/group_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/group_client/models/CountResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CountResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'int' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # int 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/group_client/models/GroupMembersResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class GroupMembersResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[Resource]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[Resource] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/group_client/models/GroupTypesResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class GroupTypesResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/group_client/models/Resource.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Resource(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'instanceUuid': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'instanceUuid': 'instanceUuid' 25 | 26 | } 27 | 28 | 29 | 30 | self.instanceUuid = None # str 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/group_client/models/ResourceGroupResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ResourceGroupResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ResourceGroupDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ResourceGroupDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/group_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/group_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/ApplicationGroupDTOBrief.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ApplicationGroupDTOBrief(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'name': 'str', 19 | 20 | 21 | 'id': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'name': 'name', 28 | 29 | 'id': 'id' 30 | 31 | } 32 | 33 | 34 | 35 | self.name = None # str 36 | 37 | 38 | self.id = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/ApplicationV2DTOBrief.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ApplicationV2DTOBrief(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'name': 'str', 19 | 20 | 21 | 'id': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'name': 'name', 28 | 29 | 'id': 'id' 30 | 31 | } 32 | 33 | 34 | 35 | self.name = None # str 36 | 37 | 38 | self.id = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/CiscoIseListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CiscoIseListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[CiscoIseDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[CiscoIseDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/CiscoIseResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CiscoIseResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'CiscoIseDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # CiscoIseDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/CountResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CountResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'int' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # int 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/HostBriefDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class HostBriefDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'id': 'str', 19 | 20 | 21 | 'hostIp': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'id': 'id', 28 | 29 | 'hostIp': 'hostIp' 30 | 31 | } 32 | 33 | 34 | 35 | self.id = None # str 36 | 37 | 38 | self.hostIp = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/NeighborhoodResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class NeighborhoodResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'NeighborhoodDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # NeighborhoodDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/ScalableGroupResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ScalableGroupResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ScalableGroupDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ScalableGroupDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/identity_manager_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/CountResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CountResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'int' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # int 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/DeviceIfResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class DeviceIfResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'DeviceIfDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # DeviceIfDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/DiscoveryNIOResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class DiscoveryNIOResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'DiscoveryNIO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # DiscoveryNIO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/GlobalCredentialSubTypeResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class GlobalCredentialSubTypeResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/HostListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class HostListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[HostDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[HostDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/HostResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class HostResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'HostDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # HostDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/LocationNIOResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class LocationNIOResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'LocationNIO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # LocationNIO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/ModuleListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ModuleListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[ModuleDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[ModuleDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/ModuleResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ModuleResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ModuleDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ModuleDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/NetworkDeviceBrief.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class NetworkDeviceBrief(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'id': 'str', 19 | 20 | 21 | 'hostName': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'id': 'id', 28 | 29 | 'hostName': 'hostName' 30 | 31 | } 32 | 33 | 34 | 35 | self.id = None # str 36 | 37 | 38 | self.hostName = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/SchedulingNIO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SchedulingNIO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'ids': 'list[str]', 19 | 20 | 21 | 'collectionInterval': 'int' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'ids': 'ids', 28 | 29 | 'collectionInterval': 'collectionInterval' 30 | 31 | } 32 | 33 | 34 | 35 | self.ids = None # list[str] 36 | 37 | 38 | self.collectionInterval = None # int 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/SegmentResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SegmentResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[SegmentDto]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[SegmentDto] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/SuccessResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SuccessResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/SuccessResultList.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SuccessResultList(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/TagDtoListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TagDtoListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[TagDto]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[TagDto] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/TagDtoResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TagDtoResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TagDto' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TagDto 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'taskId': 'str', 19 | 20 | 21 | 'url': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'taskId': 'taskId', 28 | 29 | 'url': 'url' 30 | 31 | } 32 | 33 | 34 | 35 | self.taskId = None # TaskId 36 | 37 | 38 | self.url = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/VlanListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class VlanListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[VlanDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[VlanDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/inventory_manager_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/ipgeo_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/ipgeo_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/ippool_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/ippool_client/models/CountResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CountResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'int' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # int 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/ippool_client/models/IpPoolInfoListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class IpPoolInfoListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[IpPoolInfo]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[IpPoolInfo] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/ippool_client/models/IpPoolInfoResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class IpPoolInfoResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'IpPoolInfo' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # IpPoolInfo 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/ippool_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/ippool_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/ippool_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/network_discovery_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/network_discovery_client/models/CountResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CountResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'int' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # int 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_discovery_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/CountResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CountResult(object): 8 | 9 | 10 | 11 | def __init__(self): 12 | """ 13 | Attributes: 14 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 15 | attributeMap (dict): The key is attribute name and the value is json key in definition. 16 | """ 17 | self.swaggerTypes = { 18 | 19 | 'version': 'str', 20 | 21 | 22 | 'response': 'int' 23 | 24 | } 25 | 26 | self.attributeMap = { 27 | 28 | 'version': 'version', 29 | 30 | 'response': 'response' 31 | 32 | } 33 | 34 | 35 | 36 | self.version = None # str 37 | 38 | 39 | self.response = None # int 40 | 41 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/EntryListString.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class EntryListString(object): 8 | 9 | 10 | 11 | def __init__(self): 12 | """ 13 | Attributes: 14 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 15 | attributeMap (dict): The key is attribute name and the value is json key in definition. 16 | """ 17 | self.swaggerTypes = { 18 | 19 | 'key': 'list[str]' 20 | 21 | } 22 | 23 | self.attributeMap = { 24 | 25 | 'key': 'key' 26 | 27 | } 28 | 29 | 30 | 31 | self.key = None # list[str] 32 | 33 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/Void.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Void(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | } 19 | 20 | self.attributeMap = { 21 | 22 | } 23 | 24 | 25 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/ZtdBulkStatusResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ZtdBulkStatusResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ZtdBulkStatus' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ZtdBulkStatus 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/ZtdDeviceResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ZtdDeviceResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ZtdDevice' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ZtdDevice 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/ZtdDeviceStateMapResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ZtdDeviceStateMapResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'dict' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # dict 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/ZtdPlatformImageList.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ZtdPlatformImageList(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'images': 'list[ZtdPlatformImage]', 19 | 20 | 21 | 'id': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'images': 'images', 28 | 29 | 'id': 'id' 30 | 31 | } 32 | 33 | 34 | 35 | self.images = None # list[ZtdPlatformImage] 36 | 37 | 38 | self.id = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/ZtdPort.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ZtdPort(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'status': 'str', 19 | 20 | 21 | 'neighborRank': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'status': 'status', 28 | 29 | 'neighborRank': 'neighborRank' 30 | 31 | } 32 | 33 | 34 | 35 | self.status = None # str 36 | 37 | 38 | self.neighborRank = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/ZtdSiteListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ZtdSiteListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[ZtdSite]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[ZtdSite] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/ZtdSiteResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ZtdSiteResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ZtdSite' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ZtdSite 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/ZtdTemplateResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ZtdTemplateResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ZtdTemplate' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ZtdTemplate 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_plug_and_play_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/network_poller_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/network_poller_client/models/LegitCliKeyResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class LegitCliKeyResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_poller_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_poller_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/network_poller_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/models/CertificateProxyStatus.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CertificateProxyStatus(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'proxyEnabled': 'bool' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'proxyEnabled': 'proxyEnabled' 25 | 26 | } 27 | 28 | 29 | 30 | self.proxyEnabled = None # bool 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/models/CountResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CountResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'int' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # int 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/models/PkiTrustPointResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PkiTrustPointResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'PkiTrustPoint' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # PkiTrustPoint 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/models/SuccessResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SuccessResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/models/TrustpoolUpdateParam.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TrustpoolUpdateParam(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'simulate': 'bool', 19 | 20 | 21 | 'id': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'simulate': 'simulate', 28 | 29 | 'id': 'id' 30 | 31 | } 32 | 33 | 34 | 35 | self.simulate = None # bool 36 | 37 | 38 | self.id = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/models/Void.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Void(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | } 19 | 20 | self.attributeMap = { 21 | 22 | } 23 | 24 | 25 | -------------------------------------------------------------------------------- /apis/nb/clients/pki_broker_service_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_analysis_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_analysis_client/models/Accuracy.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Accuracy(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'reason': 'str', 19 | 20 | 21 | 'percent': 'int' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'reason': 'reason', 28 | 29 | 'percent': 'percent' 30 | 31 | } 32 | 33 | 34 | 35 | self.reason = None # str 36 | 37 | 38 | self.percent = None # int 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_analysis_client/models/AclMatchingPorts.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class AclMatchingPorts(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'protocol': 'str', 19 | 20 | 21 | 'ports': 'list[AclPortInfo]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'protocol': 'protocol', 28 | 29 | 'ports': 'ports' 30 | 31 | } 32 | 33 | 34 | 35 | self.protocol = None # str 36 | 37 | 38 | self.ports = None # list[AclPortInfo] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_analysis_client/models/PathResponseResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PathResponseResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'PathResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # PathResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_analysis_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_analysis_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_analysis_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/AccessClauseDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class AccessClauseDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'access': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'access': 'access' 25 | 26 | } 27 | 28 | 29 | #access 30 | 31 | self.access = None # str 32 | 33 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/ApplicationResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ApplicationResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ApplicationDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ApplicationDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/CategoryDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CategoryDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'name': 'str', 19 | 20 | 21 | 'id': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'name': 'name', 28 | 29 | 'id': 'id' 30 | 31 | } 32 | 33 | 34 | #Category Name 35 | 36 | self.name = None # str 37 | 38 | #id 39 | 40 | self.id = None # str 41 | 42 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/CategoryListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CategoryListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[CategoryDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[CategoryDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/CategoryResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CategoryResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'CategoryDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # CategoryDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/ConsumerDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ConsumerDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'scalableGroups': 'list[ScalableGroupDTO]' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'scalableGroups': 'scalableGroups' 25 | 26 | } 27 | 28 | 29 | 30 | self.scalableGroups = None # list[ScalableGroupDTO] 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/ContractListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ContractListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[ContractDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[ContractDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/ContractResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ContractResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ContractDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ContractDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/CountResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CountResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'int' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # int 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/FlowIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class FlowIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'flowId': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'flowId': 'flowId', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.flowId = None # str 36 | 37 | 38 | self.taskId = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/FlowIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class FlowIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'FlowIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # FlowIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/FlowListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class FlowListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[FlowDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[FlowDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/FlowResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class FlowResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'FlowDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # FlowDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/PolicyContractDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PolicyContractDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'name': 'str', 19 | 20 | 21 | 'id': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'name': 'name', 28 | 29 | 'id': 'id' 30 | 31 | } 32 | 33 | 34 | #name 35 | 36 | self.name = None # str 37 | 38 | #id 39 | 40 | self.id = None # str 41 | 42 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/PolicyDTOListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PolicyDTOListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[PolicyDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[PolicyDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/PolicyDTOResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PolicyDTOResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'PolicyDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # PolicyDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/PolicyFlowSettingDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PolicyFlowSettingDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'flowPolicyEnabled': 'bool' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'flowPolicyEnabled': 'flowPolicyEnabled' 25 | 26 | } 27 | 28 | 29 | #Allowed values are true, false 30 | 31 | self.flowPolicyEnabled = None # bool 32 | 33 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/PolicyListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PolicyListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[Policy]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[Policy] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/PolicyResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PolicyResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'Policy' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # Policy 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/PolicyTagDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PolicyTagDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'policyTag': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'policyTag': 'policyTag' 25 | 26 | } 27 | 28 | 29 | #Policy Tag value 30 | 31 | self.policyTag = None # str 32 | 33 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/ProducerDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ProducerDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'scalableGroups': 'list[ScalableGroupDTO]' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'scalableGroups': 'scalableGroups' 25 | 26 | } 27 | 28 | 29 | 30 | self.scalableGroups = None # list[ScalableGroupDTO] 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/RelevanceListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class RelevanceListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/VersionDiffResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class VersionDiffResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'VersionDiffDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # VersionDiffDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/policy_manager_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/AAAAttribute.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class AAAAttribute(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'attributeName': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'attributeName': 'attributeName' 25 | 26 | } 27 | 28 | 29 | #Attributename 30 | 31 | self.attributeName = None # str 32 | 33 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/AAAAttributeResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class AAAAttributeResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'AAAAttribute' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # AAAAttribute 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/AAAServerListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class AAAServerListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[AAAServer]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[AAAServer] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/AAAServerResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class AAAServerResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'AAAServer' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # AAAServer 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/AutoPassphrase.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class AutoPassphrase(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'autoPassphrase': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'autoPassphrase': 'autoPassphrase' 25 | 26 | } 27 | 28 | 29 | #Auto generated passphrase 30 | 31 | self.autoPassphrase = None # str 32 | 33 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/AutoPassphraseResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class AutoPassphraseResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'AutoPassphrase' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # AutoPassphrase 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/Role.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Role(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'role': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'role': 'role' 25 | 26 | } 27 | 28 | 29 | #User Role 30 | 31 | self.role = None # str 32 | 33 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/RoleListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class RoleListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[Role]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[Role] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/ServerId.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ServerId(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'serverId': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'serverId': 'serverId' 25 | 26 | } 27 | 28 | 29 | 30 | self.serverId = None # str 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/ServerIdListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ServerIdListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[ServerId]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[ServerId] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/SuccessResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SuccessResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/TicketAttributeResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TicketAttributeResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TicketAttribute' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TicketAttribute 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/TicketRbacResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TicketRbacResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'ServiceTicketRbac' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # ServiceTicketRbac 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/User.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class User(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'password': 'str', 19 | 20 | 21 | 'username': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'password': 'password', 28 | 29 | 'username': 'username' 30 | 31 | } 32 | 33 | 34 | #password 35 | 36 | self.password = None # str 37 | 38 | #username 39 | 40 | self.username = None # str 41 | 42 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/UserListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class UserListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[UserReqRes]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[UserReqRes] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/UserLockExpiryTime.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class UserLockExpiryTime(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'lockExpiryTime': 'int' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'lockExpiryTime': 'lockExpiryTime' 25 | 26 | } 27 | 28 | 29 | #User Lock Expiry Timer 30 | 31 | self.lockExpiryTime = None # int 32 | 33 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/UserLoginInvalidAttemptCount.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class UserLoginInvalidAttemptCount(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'loginInvalidAttemptCount': 'int' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'loginInvalidAttemptCount': 'loginInvalidAttemptCount' 25 | 26 | } 27 | 28 | 29 | #User Invalid Attempt Count 30 | 31 | self.loginInvalidAttemptCount = None # int 32 | 33 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/UserResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class UserResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'UserReqRes' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # UserReqRes 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/UserStatusResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class UserStatusResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'UserStatus' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # UserStatus 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/rbac_service_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/scheduler_service_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/scheduler_service_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/scheduler_service_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/scheduler_service_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/site_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/site_client/models/SiteDeleteResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SiteDeleteResponse(object): 8 | """NOTE: Manually generated by Nuno until the API supports swagger.""" 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | 17 | self.swaggerTypes = { 18 | 'taskId': 'str', 19 | 'url': 'SiteDeleteTask' 20 | } 21 | 22 | self.attributeMap = { 23 | 'taskId': 'taskId', 24 | 'url': 'url' 25 | } 26 | 27 | self.taskId = None # str 28 | self.url = None # SiteList 29 | -------------------------------------------------------------------------------- /apis/nb/clients/site_client/models/SiteInfoListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | class SiteInfoListResult(object): 7 | """Generated manually to emulate the code that would be generated by swagger""" 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | 17 | self.swaggerTypes = { 18 | 'version': 'str', 19 | 'response': 'list[SiteInfo]' 20 | } 21 | 22 | self.attributeMap = { 23 | 'version': 'version', 24 | 'response': 'response' 25 | } 26 | 27 | self.version = None # str 28 | self.response = None # list[SiteInfo] 29 | -------------------------------------------------------------------------------- /apis/nb/clients/site_client/models/SiteList.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | class SiteList(object): 7 | """Generated manually to emulate the code that would be generated by swagger""" 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | 17 | self.swaggerTypes = { 18 | 'siteList': 'list[SiteInfo]' 19 | } 20 | 21 | self.attributeMap = { 22 | 'siteList': 'siteList' 23 | } 24 | 25 | self.siteList = None # list[SiteInfo] 26 | -------------------------------------------------------------------------------- /apis/nb/clients/site_client/models/SiteResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SiteResponse(object): 8 | """NOTE: Manually generated by Nuno until the API supports swagger.""" 9 | 10 | 11 | def __init__(self): 12 | """ 13 | Attributes: 14 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 15 | attributeMap (dict): The key is attribute name and the value is json key in definition. 16 | """ 17 | self.swaggerTypes = { 18 | 'version': 'str', 19 | 'response': 'SiteList' 20 | } 21 | 22 | self.attributeMap = { 23 | 'version': 'version', 24 | 'response': 'response' 25 | } 26 | 27 | self.version = None # str 28 | self.response = None # SiteList 29 | 30 | -------------------------------------------------------------------------------- /apis/nb/clients/site_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/site_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/site_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/Annotation.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Annotation(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | } 19 | 20 | self.attributeMap = { 21 | 22 | } 23 | 24 | 25 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/ClassLoader.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ClassLoader(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'parent': 'ClassLoader' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'parent': 'parent' 25 | 26 | } 27 | 28 | 29 | 30 | self.parent = None # ClassLoader 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/EventAlarmCategoryEnum.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class EventAlarmCategoryEnum(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'ordinal': 'int', 19 | 20 | 21 | 'value': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'ordinal': 'ordinal', 28 | 29 | 'value': 'value' 30 | 31 | } 32 | 33 | 34 | 35 | self.ordinal = None # int 36 | 37 | 38 | self.value = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/EventTypeEnum.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class EventTypeEnum(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'ordinal': 'int', 19 | 20 | 21 | 'value': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'ordinal': 'ordinal', 28 | 29 | 'value': 'value' 30 | 31 | } 32 | 33 | 34 | 35 | self.ordinal = None # int 36 | 37 | 38 | self.value = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/GenericDeclaration.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class GenericDeclaration(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'typeParameters': 'list[TypeVariable]' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'typeParameters': 'typeParameters' 25 | 26 | } 27 | 28 | 29 | 30 | self.typeParameters = None # list[TypeVariable] 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/ListAlarmDTOResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ListAlarmDTOResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[AlarmDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[AlarmDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/PermissionCollection.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class PermissionCollection(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'readOnly': 'bool' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'readOnly': 'readOnly' 25 | 26 | } 27 | 28 | 29 | 30 | self.readOnly = None # bool 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/Principal.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Principal(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'name': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'name': 'name' 25 | 26 | } 27 | 28 | 29 | 30 | self.name = None # str 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/SuccessResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SuccessResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/TaskDTOResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskDTOResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'AugmentedTaskDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # AugmentedTaskDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/Type.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Type(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | } 19 | 20 | self.attributeMap = { 21 | 22 | } 23 | 24 | 25 | -------------------------------------------------------------------------------- /apis/nb/clients/task_service_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/KnownResourcesResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class KnownResourcesResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/ServiceInstancesResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ServiceInstancesResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/ShardCategoriesResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ShardCategoriesResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/SuccessResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SuccessResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/TopologyPageResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TopologyPageResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TopologyPageDto' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TopologyPageDto 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/TopologyResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TopologyResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'Topology' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # Topology 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/TopologyViewResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TopologyViewResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TopologyViewDto' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TopologyViewDto 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/VlanNamesResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class VlanNamesResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/VrfNamesResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class VrfNamesResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[str]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[str] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/topology_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | """Add all of the modules in the current directory to __all__""" 4 | import os 5 | 6 | __all__ = [] 7 | 8 | for module in os.listdir(os.path.dirname(__file__)): 9 | if module != '__init__.py' and module[-3:] == '.py': 10 | __all__.append(module[:-3]) 11 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/AAASettingsDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class AAASettingsDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'key': 'str', 19 | 20 | 21 | 'ipAddress': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'key': 'key', 28 | 29 | 'ipAddress': 'ipAddress' 30 | 31 | } 32 | 33 | 34 | 35 | self.key = None # str 36 | 37 | 38 | self.ipAddress = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/ASProtocolDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class ASProtocolDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'asNumber': 'str', 19 | 20 | 21 | 'protocolName': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'asNumber': 'asNumber', 28 | 29 | 'protocolName': 'protocolName' 30 | 31 | } 32 | 33 | 34 | 35 | self.asNumber = None # str 36 | 37 | 38 | self.protocolName = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/CertifiedImageDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class CertifiedImageDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'platform': 'str', 19 | 20 | 21 | 'imageId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'platform': 'platform', 28 | 29 | 'imageId': 'imageId' 30 | 31 | } 32 | 33 | 34 | 35 | self.platform = None # str 36 | 37 | 38 | self.imageId = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/DCPrefixDTOResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class DCPrefixDTOResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'DCPrefixDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # DCPrefixDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/DHCPServerSettingsDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class DHCPServerSettingsDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'description': 'str', 19 | 20 | 21 | 'ipAddress': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'description': 'description', 28 | 29 | 'ipAddress': 'ipAddress' 30 | 31 | } 32 | 33 | 34 | 35 | self.description = None # str 36 | 37 | 38 | self.ipAddress = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/IWANSiteNameDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class IWANSiteNameDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'siteName': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'siteName': 'siteName' 25 | 26 | } 27 | 28 | 29 | 30 | self.siteName = None # str 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/IwanApplicationCommonlyUsedLevel.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class IwanApplicationCommonlyUsedLevel(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'applicationCommonlyUsedLevel': 'int' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'applicationCommonlyUsedLevel': 'applicationCommonlyUsedLevel' 25 | 26 | } 27 | 28 | 29 | 30 | self.applicationCommonlyUsedLevel = None # int 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/IwanSpokeWanBandwidthDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class IwanSpokeWanBandwidthDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'bandwidth': 'float' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'bandwidth': 'bandwidth' 25 | 26 | } 27 | 28 | 29 | 30 | self.bandwidth = None # float 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/NTPSettingsDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class NTPSettingsDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'serverIp': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'serverIp': 'serverIp' 25 | 26 | } 27 | 28 | 29 | 30 | self.serverIp = None # str 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/NetflowSettingsDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class NetflowSettingsDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'port': 'str', 19 | 20 | 21 | 'reflectionIp': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'port': 'port', 28 | 29 | 'reflectionIp': 'reflectionIp' 30 | 31 | } 32 | 33 | 34 | 35 | self.port = None # str 36 | 37 | 38 | self.reflectionIp = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/SiteDTOListResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SiteDTOListResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'list[SiteDTO]' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # list[SiteDTO] 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/SiteDTOResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SiteDTOResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'SiteDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # SiteDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/SiteDeviceResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SiteDeviceResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'SiteDeviceDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # SiteDeviceDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/SyslogSettingsDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class SyslogSettingsDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'serverIp': 'str' 19 | 20 | } 21 | 22 | self.attributeMap = { 23 | 24 | 'serverIp': 'serverIp' 25 | 26 | } 27 | 28 | 29 | 30 | self.serverIp = None # str 31 | 32 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/TaskIdResponse.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResponse(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'url': 'str', 19 | 20 | 21 | 'taskId': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'url': 'url', 28 | 29 | 'taskId': 'taskId' 30 | 31 | } 32 | 33 | 34 | 35 | self.url = None # str 36 | 37 | 38 | self.taskId = None # TaskId 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/TaskIdResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class TaskIdResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'TaskIdResponse' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # TaskIdResponse 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/Void.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class Void(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | } 19 | 20 | self.attributeMap = { 21 | 22 | } 23 | 24 | 25 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/WANLabelDTO.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class WANLabelDTO(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'wanType': 'str', 19 | 20 | 21 | 'wanLabel': 'str' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'wanType': 'wanType', 28 | 29 | 'wanLabel': 'wanLabel' 30 | 31 | } 32 | 33 | 34 | 35 | self.wanType = None # str 36 | 37 | 38 | self.wanLabel = None # str 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/WanCloudResult.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | 6 | 7 | class WanCloudResult(object): 8 | 9 | 10 | def __init__(self): 11 | """ 12 | Attributes: 13 | swaggerTypes (dict): The key is attribute name and the value is attribute type. 14 | attributeMap (dict): The key is attribute name and the value is json key in definition. 15 | """ 16 | self.swaggerTypes = { 17 | 18 | 'version': 'str', 19 | 20 | 21 | 'response': 'WanCloudDTO' 22 | 23 | } 24 | 25 | self.attributeMap = { 26 | 27 | 'version': 'version', 28 | 29 | 'response': 'response' 30 | 31 | } 32 | 33 | 34 | 35 | self.version = None # str 36 | 37 | 38 | self.response = None # WanCloudDTO 39 | 40 | -------------------------------------------------------------------------------- /apis/nb/clients/visibility_service_client/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | #pylint: skip-file 3 | # This source code is licensed under the Apache license found in the 4 | # LICENSE file in the root directory of this project. 5 | """Add all of the modules in the current directory to __all__""" 6 | import os 7 | 8 | __all__ = [] 9 | 10 | for module in os.listdir(os.path.dirname(__file__)): 11 | if module != '__init__.py' and module[-3:] == '.py': 12 | __all__.append(module[:-3]) 13 | -------------------------------------------------------------------------------- /apis/nb/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/uniq/74211d9488f1e77cf56ef86dba20ec8e8eb49cc1/apis/nb/services/__init__.py -------------------------------------------------------------------------------- /apis/nb/services/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/uniq/74211d9488f1e77cf56ef86dba20ec8e8eb49cc1/apis/nb/services/task/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests>=2.6.0 -------------------------------------------------------------------------------- /sample_scripts/get_all_users.py: -------------------------------------------------------------------------------- 1 | import login 2 | 3 | 4 | client = login.login() 5 | # NorthBound API call to get all users 6 | user_list_result = client.user.getUsers() 7 | 8 | # Serialize the model object to a python dictionary 9 | users = client.serialize(user_list_result) 10 | 11 | print(users) -------------------------------------------------------------------------------- /tests/faked_models/faked_client/models/Contain.py: -------------------------------------------------------------------------------- 1 | class Contain(object): 2 | def __init__(self): 3 | self.swaggerTypes = { 4 | 'id': 'str', 5 | 'name': 'str', 6 | 'contain': 'str' 7 | } 8 | 9 | self.attributeMap = { 10 | 'id': 'id', 11 | 'name': 'name', 12 | 'contain': 'contain' 13 | } 14 | 15 | self.id = None 16 | self.name = None 17 | self.contain = None -------------------------------------------------------------------------------- /tests/faked_models/faked_client/models/DifferentAttr.py: -------------------------------------------------------------------------------- 1 | class DifferentAttr(object): 2 | def __init__(self): 3 | self.swaggerTypes = { 4 | 'id': 'str', 5 | 'name': 'str' # in other_faked_client is alias 6 | } 7 | 8 | self.attributeMap = { 9 | 'id': 'id', 10 | 'name': 'name' 11 | } 12 | 13 | self.id = None 14 | self.name = None 15 | -------------------------------------------------------------------------------- /tests/faked_models/faked_client/models/DifferentType.py: -------------------------------------------------------------------------------- 1 | class DifferentType(object): 2 | def __init__(self): 3 | self.swaggerTypes = { 4 | 'id': 'int', # in other_faked_client is str 5 | 'name': 'str' 6 | } 7 | 8 | self.attributeMap = { 9 | 'id': 'id', 10 | 'name': 'name' 11 | } 12 | 13 | self.id = None 14 | self.name = None 15 | -------------------------------------------------------------------------------- /tests/faked_models/faked_client/models/Same.py: -------------------------------------------------------------------------------- 1 | class Same(object): 2 | def __init__(self): 3 | self.swaggerTypes = { 4 | 'id': 'str', 5 | 'name': 'str' 6 | } 7 | 8 | self.attributeMap = { 9 | 'id': 'id', 10 | 'name': 'name' 11 | } 12 | 13 | self.id = None 14 | self.name = None 15 | -------------------------------------------------------------------------------- /tests/faked_models/other_faked_client/models/Contain.py: -------------------------------------------------------------------------------- 1 | class Contain(object): 2 | def __init__(self): 3 | self.swaggerTypes = { 4 | 'id': 'str', 5 | 'name': 'str' 6 | } 7 | 8 | self.attributeMap = { 9 | 'id': 'id', 10 | 'name': 'name' 11 | } 12 | 13 | self.id = None 14 | self.name = None 15 | -------------------------------------------------------------------------------- /tests/faked_models/other_faked_client/models/DifferentAttr.py: -------------------------------------------------------------------------------- 1 | class DifferentAttr(object): 2 | def __init__(self): 3 | self.swaggerTypes = { 4 | 'id': 'str', 5 | 'alias': 'str' # in faked_client is name 6 | } 7 | 8 | self.attributeMap = { 9 | 'id': 'id', 10 | 'alias': 'name' 11 | } 12 | 13 | self.id = None 14 | self.alias = None 15 | -------------------------------------------------------------------------------- /tests/faked_models/other_faked_client/models/DifferentType.py: -------------------------------------------------------------------------------- 1 | class DifferentType(object): 2 | def __init__(self): 3 | self.swaggerTypes = { 4 | 'id': 'str', # in faked_client is int 5 | 'name': 'str' 6 | } 7 | 8 | self.attributeMap = { 9 | 'id': 'id', 10 | 'name': 'name' 11 | } 12 | 13 | self.id = None 14 | self.name = None 15 | -------------------------------------------------------------------------------- /tests/faked_models/other_faked_client/models/Same.py: -------------------------------------------------------------------------------- 1 | class Same(object): 2 | def __init__(self): 3 | self.swaggerTypes = { 4 | 'id': 'str', 5 | 'name': 'str' 6 | } 7 | 8 | self.attributeMap = { 9 | 'id': 'id', 10 | 'name': 'name' 11 | } 12 | 13 | self.id = None 14 | self.name = None 15 | -------------------------------------------------------------------------------- /uniq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CiscoDevNet/uniq/74211d9488f1e77cf56ef86dba20ec8e8eb49cc1/uniq.png -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Copyright 2016 Cisco Systems 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | """ 16 | 17 | """ Package of Uniq utilities. 18 | 19 | Including: 20 | utils.wait. 21 | """ 22 | 23 | 24 | from .wait import Wait 25 | 26 | class Utils(object): 27 | pass 28 | 29 | utils = Utils() 30 | utils.wait = Wait() --------------------------------------------------------------------------------