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
|
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
class ApnsCredential(Model):
"""Description of a NotificationHub ApnsCredential.
:param apns_certificate: The APNS certificate.
:type apns_certificate: str
:param certificate_key: The certificate key.
:type certificate_key: str
:param endpoint: The endpoint of this credential.
:type endpoint: str
:param thumbprint: The Apns certificate Thumbprint
:type thumbprint: str
:param key_id: A 10-character key identifier (kid) key, obtained from your
developer account
:type key_id: str
:param app_name: The name of the application
:type app_name: str
:param app_id: The issuer (iss) registered claim key, whose value is your
10-character Team ID, obtained from your developer account
:type app_id: str
:param token: Provider Authentication Token, obtained through your
developer account
:type token: str
"""
_attribute_map = {
'apns_certificate': {'key': 'properties.apnsCertificate', 'type': 'str'},
'certificate_key': {'key': 'properties.certificateKey', 'type': 'str'},
'endpoint': {'key': 'properties.endpoint', 'type': 'str'},
'thumbprint': {'key': 'properties.thumbprint', 'type': 'str'},
'key_id': {'key': 'properties.keyId', 'type': 'str'},
'app_name': {'key': 'properties.appName', 'type': 'str'},
'app_id': {'key': 'properties.appId', 'type': 'str'},
'token': {'key': 'properties.token', 'type': 'str'},
}
def __init__(self, **kwargs):
super(ApnsCredential, self).__init__(**kwargs)
self.apns_certificate = kwargs.get('apns_certificate', None)
self.certificate_key = kwargs.get('certificate_key', None)
self.endpoint = kwargs.get('endpoint', None)
self.thumbprint = kwargs.get('thumbprint', None)
self.key_id = kwargs.get('key_id', None)
self.app_name = kwargs.get('app_name', None)
self.app_id = kwargs.get('app_id', None)
self.token = kwargs.get('token', None)
|