File tree Expand file tree Collapse file tree 1 file changed +21
-7
lines changed
sdk/keyvault/azure-keyvault-certificates/azure/keyvault/certificates Expand file tree Collapse file tree 1 file changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -61,22 +61,30 @@ def _from_admin_detail(cls, admin_detail: models.AdministratorDetails) -> "Admin
61
61
62
62
@property
63
63
def email (self ) -> Optional [str ]:
64
- """:rtype: str or None"""
64
+ """Email address of the issuer.
65
+
66
+ :rtype: str or None"""
65
67
return self ._email
66
68
67
69
@property
68
70
def first_name (self ) -> Optional [str ]:
69
- """:rtype: str or None"""
71
+ """First name of the issuer.
72
+
73
+ :rtype: str or None"""
70
74
return self ._first_name
71
75
72
76
@property
73
77
def last_name (self ) -> Optional [str ]:
74
- """:rtype: str or None"""
78
+ """Last name of the issuer.
79
+
80
+ :rtype: str or None"""
75
81
return self ._last_name
76
82
77
83
@property
78
84
def phone (self ) -> Optional [str ]:
79
- """:rtype: str or None"""
85
+ """Phone number of the issuer.
86
+
87
+ :rtype: str or None"""
80
88
return self ._phone
81
89
82
90
@@ -1134,17 +1142,23 @@ def _from_certificate_contacts_item(cls, contact_item: models.Contact) -> "Certi
1134
1142
1135
1143
@property
1136
1144
def email (self ) -> Optional [str ]:
1137
- """:rtype: str or None"""
1145
+ """Email address of a contact for the certificate.
1146
+
1147
+ :rtype: str or None"""
1138
1148
return self ._email
1139
1149
1140
1150
@property
1141
1151
def name (self ) -> Optional [str ]:
1142
- """:rtype: str or None"""
1152
+ """Name of a contact for the certificate.
1153
+
1154
+ :rtype: str or None"""
1143
1155
return self ._name
1144
1156
1145
1157
@property
1146
1158
def phone (self ) -> Optional [str ]:
1147
- """:rtype: str or None"""
1159
+ """Phone number of a contact for the certificate.
1160
+
1161
+ :rtype: str or None"""
1148
1162
return self ._phone
1149
1163
1150
1164
You can’t perform that action at this time.
0 commit comments