forked from microsoftgraph/msgraph-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccess_package.py
More file actions
110 lines (100 loc) · 6.3 KB
/
Copy pathaccess_package.py
File metadata and controls
110 lines (100 loc) · 6.3 KB
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
from __future__ import annotations
import datetime
from collections.abc import Callable
from dataclasses import dataclass, field
from kiota_abstractions.serialization import Parsable, ParseNode, SerializationWriter
from typing import Any, Optional, TYPE_CHECKING, Union
if TYPE_CHECKING:
from .access_package_assignment_policy import AccessPackageAssignmentPolicy
from .access_package_catalog import AccessPackageCatalog
from .access_package_resource_role_scope import AccessPackageResourceRoleScope
from .entity import Entity
from .group import Group
from .entity import Entity
@dataclass
class AccessPackage(Entity, Parsable):
# The access packages that are incompatible with this package. Read-only.
access_packages_incompatible_with: Optional[list[AccessPackage]] = None
# Read-only. Nullable. Supports $expand.
assignment_policies: Optional[list[AccessPackageAssignmentPolicy]] = None
# Required when creating the access package. Read-only. Nullable.
catalog: Optional[AccessPackageCatalog] = None
# The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
created_date_time: Optional[datetime.datetime] = None
# The description of the access package.
description: Optional[str] = None
# Required. The display name of the access package. Supports $filter (eq, contains).
display_name: Optional[str] = None
# The access packages whose assigned users are ineligible to be assigned this access package.
incompatible_access_packages: Optional[list[AccessPackage]] = None
# The groups whose members are ineligible to be assigned this access package.
incompatible_groups: Optional[list[Group]] = None
# Indicates whether the access package is hidden from the requestor.
is_hidden: Optional[bool] = None
# The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.
modified_date_time: Optional[datetime.datetime] = None
# The OdataType property
odata_type: Optional[str] = None
# The resource roles and scopes in this access package.
resource_role_scopes: Optional[list[AccessPackageResourceRoleScope]] = None
@staticmethod
def create_from_discriminator_value(parse_node: ParseNode) -> AccessPackage:
"""
Creates a new instance of the appropriate class based on discriminator value
param parse_node: The parse node to use to read the discriminator value and create the object
Returns: AccessPackage
"""
if parse_node is None:
raise TypeError("parse_node cannot be null.")
return AccessPackage()
def get_field_deserializers(self,) -> dict[str, Callable[[ParseNode], None]]:
"""
The deserialization information for the current model
Returns: dict[str, Callable[[ParseNode], None]]
"""
from .access_package_assignment_policy import AccessPackageAssignmentPolicy
from .access_package_catalog import AccessPackageCatalog
from .access_package_resource_role_scope import AccessPackageResourceRoleScope
from .entity import Entity
from .group import Group
from .access_package_assignment_policy import AccessPackageAssignmentPolicy
from .access_package_catalog import AccessPackageCatalog
from .access_package_resource_role_scope import AccessPackageResourceRoleScope
from .entity import Entity
from .group import Group
fields: dict[str, Callable[[Any], None]] = {
"accessPackagesIncompatibleWith": lambda n : setattr(self, 'access_packages_incompatible_with', n.get_collection_of_object_values(AccessPackage)),
"assignmentPolicies": lambda n : setattr(self, 'assignment_policies', n.get_collection_of_object_values(AccessPackageAssignmentPolicy)),
"catalog": lambda n : setattr(self, 'catalog', n.get_object_value(AccessPackageCatalog)),
"createdDateTime": lambda n : setattr(self, 'created_date_time', n.get_datetime_value()),
"description": lambda n : setattr(self, 'description', n.get_str_value()),
"displayName": lambda n : setattr(self, 'display_name', n.get_str_value()),
"incompatibleAccessPackages": lambda n : setattr(self, 'incompatible_access_packages', n.get_collection_of_object_values(AccessPackage)),
"incompatibleGroups": lambda n : setattr(self, 'incompatible_groups', n.get_collection_of_object_values(Group)),
"isHidden": lambda n : setattr(self, 'is_hidden', n.get_bool_value()),
"modifiedDateTime": lambda n : setattr(self, 'modified_date_time', n.get_datetime_value()),
"resourceRoleScopes": lambda n : setattr(self, 'resource_role_scopes', n.get_collection_of_object_values(AccessPackageResourceRoleScope)),
}
super_fields = super().get_field_deserializers()
fields.update(super_fields)
return fields
def serialize(self,writer: SerializationWriter) -> None:
"""
Serializes information the current object
param writer: Serialization writer to use to serialize this model
Returns: None
"""
if writer is None:
raise TypeError("writer cannot be null.")
super().serialize(writer)
writer.write_collection_of_object_values("accessPackagesIncompatibleWith", self.access_packages_incompatible_with)
writer.write_collection_of_object_values("assignmentPolicies", self.assignment_policies)
writer.write_object_value("catalog", self.catalog)
writer.write_datetime_value("createdDateTime", self.created_date_time)
writer.write_str_value("description", self.description)
writer.write_str_value("displayName", self.display_name)
writer.write_collection_of_object_values("incompatibleAccessPackages", self.incompatible_access_packages)
writer.write_collection_of_object_values("incompatibleGroups", self.incompatible_groups)
writer.write_bool_value("isHidden", self.is_hidden)
writer.write_datetime_value("modifiedDateTime", self.modified_date_time)
writer.write_collection_of_object_values("resourceRoleScopes", self.resource_role_scopes)