1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
############################ Copyrights and license ############################
# #
# Copyright 2023 Enrico Minack <github@enrico.minack.dev> #
# Copyright 2023 YugoHino <henom06@gmail.com> #
# Copyright 2024 Enrico Minack <github@enrico.minack.dev> #
# Copyright 2024 Jirka Borovec <6035284+Borda@users.noreply.github.com> #
# Copyright 2025 Enrico Minack <github@enrico.minack.dev> #
# #
# This file is part of PyGithub. #
# http://pygithub.readthedocs.io/ #
# #
# PyGithub is free software: you can redistribute it and/or modify it under #
# the terms of the GNU Lesser General Public License as published by the Free #
# Software Foundation, either version 3 of the License, or (at your option) #
# any later version. #
# #
# PyGithub is distributed in the hope that it will be useful, but WITHOUT ANY #
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more #
# details. #
# #
# You should have received a copy of the GNU Lesser General Public License #
# along with PyGithub. If not, see <http://www.gnu.org/licenses/>. #
# #
################################################################################
from typing import Any, Dict
from github.GithubObject import Attribute, CompletableGithubObject, NotSet
class NamedEnterpriseUser(CompletableGithubObject):
"""
This class represents NamedEnterpriseUsers.
The reference can be found here
https://docs.github.com/en/enterprise-cloud@latest/rest/enterprise-admin/license#list-enterprise-consumed-licenses
"""
def _initAttributes(self) -> None:
self._enterprise_server_primary_emails: Attribute[list] = NotSet
self._enterprise_server_user: Attribute[bool] = NotSet
self._enterprise_server_user_ids: Attribute[list] = NotSet
self._github_com_enterprise_roles: Attribute[list] = NotSet
self._github_com_login: Attribute[str] = NotSet
self._github_com_member_roles: Attribute[list] = NotSet
self._github_com_name: Attribute[str] = NotSet
self._github_com_orgs_with_pending_invites: Attribute[list] = NotSet
self._github_com_profile: Attribute[str] = NotSet
self._github_com_saml_name_id: Attribute[str] = NotSet
self._github_com_two_factor_auth: Attribute[bool] = NotSet
self._github_com_user: Attribute[bool] = NotSet
self._github_com_verified_domain_emails: Attribute[list] = NotSet
self._license_type: Attribute[str] = NotSet
self._total_user_accounts: Attribute[int] = NotSet
self._visual_studio_license_status: Attribute[str] = NotSet
self._visual_studio_subscription_email: Attribute[str] = NotSet
self._visual_studio_subscription_user: Attribute[bool] = NotSet
def __repr__(self) -> str:
return self.get__repr__({"login": self._github_com_login.value})
@property
def enterprise_server_primary_emails(self) -> list:
self._completeIfNotSet(self._enterprise_server_primary_emails)
return self._enterprise_server_primary_emails.value
@property
def enterprise_server_user(self) -> bool:
self._completeIfNotSet(self._enterprise_server_user)
return self._enterprise_server_user.value
@property
def enterprise_server_user_ids(self) -> list:
self._completeIfNotSet(self._enterprise_server_user_ids)
return self._enterprise_server_user_ids.value
@property
def github_com_enterprise_roles(self) -> list:
self._completeIfNotSet(self._github_com_enterprise_roles)
return self._github_com_enterprise_roles.value
@property
def github_com_login(self) -> str:
self._completeIfNotSet(self._github_com_login)
return self._github_com_login.value
@property
def github_com_member_roles(self) -> list:
self._completeIfNotSet(self._github_com_member_roles)
return self._github_com_member_roles.value
@property
def github_com_name(self) -> str:
self._completeIfNotSet(self._github_com_name)
return self._github_com_name.value
@property
def github_com_orgs_with_pending_invites(self) -> list:
self._completeIfNotSet(self._github_com_orgs_with_pending_invites)
return self._github_com_orgs_with_pending_invites.value
@property
def github_com_profile(self) -> str:
self._completeIfNotSet(self._github_com_profile)
return self._github_com_profile.value
@property
def github_com_saml_name_id(self) -> str:
self._completeIfNotSet(self._github_com_saml_name_id)
return self._github_com_saml_name_id.value
@property
def github_com_two_factor_auth(self) -> bool:
self._completeIfNotSet(self._github_com_two_factor_auth)
return self._github_com_two_factor_auth.value
@property
def github_com_user(self) -> bool:
self._completeIfNotSet(self._github_com_user)
return self._github_com_user.value
@property
def github_com_verified_domain_emails(self) -> list:
self._completeIfNotSet(self._github_com_verified_domain_emails)
return self._github_com_verified_domain_emails.value
@property
def license_type(self) -> str:
self._completeIfNotSet(self._license_type)
return self._license_type.value
@property
def total_user_accounts(self) -> int:
self._completeIfNotSet(self._total_user_accounts)
return self._total_user_accounts.value
@property
def visual_studio_license_status(self) -> str:
self._completeIfNotSet(self._visual_studio_license_status)
return self._visual_studio_license_status.value
@property
def visual_studio_subscription_email(self) -> str:
self._completeIfNotSet(self._visual_studio_subscription_email)
return self._visual_studio_subscription_email.value
@property
def visual_studio_subscription_user(self) -> bool:
self._completeIfNotSet(self._visual_studio_subscription_user)
return self._visual_studio_subscription_user.value
def _useAttributes(self, attributes: Dict[str, Any]) -> None:
if "enterprise_server_primary_emails" in attributes: # pragma no branch
self._enterprise_server_primary_emails = self._makeListOfStringsAttribute(
attributes["enterprise_server_primary_emails"]
)
if "enterprise_server_user" in attributes: # pragma no branch
self._enterprise_server_user = self._makeBoolAttribute(attributes["enterprise_server_user"])
if "enterprise_server_user_ids" in attributes: # pragma no branch
self._enterprise_server_user_ids = self._makeListOfStringsAttribute(
attributes["enterprise_server_user_ids"]
)
if "github_com_enterprise_roles" in attributes: # pragma no branch
self._github_com_enterprise_roles = self._makeListOfStringsAttribute(
attributes["github_com_enterprise_roles"]
)
if "github_com_login" in attributes: # pragma no branch
self._github_com_login = self._makeStringAttribute(attributes["github_com_login"])
if "github_com_member_roles" in attributes: # pragma no branch
self._github_com_member_roles = self._makeListOfStringsAttribute(attributes["github_com_member_roles"])
if "github_com_name" in attributes: # pragma no branch
self._github_com_name = self._makeStringAttribute(attributes["github_com_name"])
if "github_com_orgs_with_pending_invites" in attributes: # pragma no branch
self._github_com_orgs_with_pending_invites = self._makeListOfStringsAttribute(
attributes["github_com_orgs_with_pending_invites"]
)
if "github_com_profile" in attributes: # pragma no branch
self._github_com_profile = self._makeStringAttribute(attributes["github_com_profile"])
if "github_com_saml_name_id" in attributes: # pragma no branch
self._github_com_saml_name_id = self._makeStringAttribute(attributes["github_com_saml_name_id"])
if "github_com_two_factor_auth" in attributes: # pragma no branch
self._github_com_two_factor_auth = self._makeBoolAttribute(attributes["github_com_two_factor_auth"])
if "github_com_user" in attributes: # pragma no branch
self._github_com_user = self._makeBoolAttribute(attributes["github_com_user"])
if "github_com_verified_domain_emails" in attributes: # pragma no branch
self._github_com_verified_domain_emails = self._makeListOfStringsAttribute(
attributes["github_com_verified_domain_emails"]
)
if "license_type" in attributes: # pragma no branch
self._license_type = self._makeStringAttribute(attributes["license_type"])
if "total_user_accounts" in attributes: # pragma no branch
self._total_user_accounts = self._makeIntAttribute(attributes["total_user_accounts"])
if "visual_studio_license_status" in attributes: # pragma no branch
self._visual_studio_license_status = self._makeStringAttribute(attributes["visual_studio_license_status"])
if "visual_studio_subscription_email" in attributes: # pragma no branch
self._visual_studio_subscription_email = self._makeStringAttribute(
attributes["visual_studio_subscription_email"]
)
if "visual_studio_subscription_user" in attributes: # pragma no branch
self._visual_studio_subscription_user = self._makeBoolAttribute(
attributes["visual_studio_subscription_user"]
)
|