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
|
# 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 .resource import Resource
class NotificationHubResource(Resource):
"""Description of a NotificationHub Resource.
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar id: Resource Id
:vartype id: str
:ivar name: Resource name
:vartype name: str
:ivar type: Resource type
:vartype type: str
:param location: Resource location
:type location: str
:param tags: Resource tags
:type tags: dict[str, str]
:param sku: The sku of the created namespace
:type sku: ~azure.mgmt.notificationhubs.models.Sku
:param notification_hub_resource_name: The NotificationHub name.
:type notification_hub_resource_name: str
:param registration_ttl: The RegistrationTtl of the created
NotificationHub
:type registration_ttl: str
:param authorization_rules: The AuthorizationRules of the created
NotificationHub
:type authorization_rules:
list[~azure.mgmt.notificationhubs.models.SharedAccessAuthorizationRuleProperties]
:param apns_credential: The ApnsCredential of the created NotificationHub
:type apns_credential: ~azure.mgmt.notificationhubs.models.ApnsCredential
:param wns_credential: The WnsCredential of the created NotificationHub
:type wns_credential: ~azure.mgmt.notificationhubs.models.WnsCredential
:param gcm_credential: The GcmCredential of the created NotificationHub
:type gcm_credential: ~azure.mgmt.notificationhubs.models.GcmCredential
:param mpns_credential: The MpnsCredential of the created NotificationHub
:type mpns_credential: ~azure.mgmt.notificationhubs.models.MpnsCredential
:param adm_credential: The AdmCredential of the created NotificationHub
:type adm_credential: ~azure.mgmt.notificationhubs.models.AdmCredential
:param baidu_credential: The BaiduCredential of the created
NotificationHub
:type baidu_credential:
~azure.mgmt.notificationhubs.models.BaiduCredential
"""
_validation = {
'id': {'readonly': True},
'name': {'readonly': True},
'type': {'readonly': True},
}
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'tags': {'key': 'tags', 'type': '{str}'},
'sku': {'key': 'sku', 'type': 'Sku'},
'notification_hub_resource_name': {'key': 'properties.name', 'type': 'str'},
'registration_ttl': {'key': 'properties.registrationTtl', 'type': 'str'},
'authorization_rules': {'key': 'properties.authorizationRules', 'type': '[SharedAccessAuthorizationRuleProperties]'},
'apns_credential': {'key': 'properties.apnsCredential', 'type': 'ApnsCredential'},
'wns_credential': {'key': 'properties.wnsCredential', 'type': 'WnsCredential'},
'gcm_credential': {'key': 'properties.gcmCredential', 'type': 'GcmCredential'},
'mpns_credential': {'key': 'properties.mpnsCredential', 'type': 'MpnsCredential'},
'adm_credential': {'key': 'properties.admCredential', 'type': 'AdmCredential'},
'baidu_credential': {'key': 'properties.baiduCredential', 'type': 'BaiduCredential'},
}
def __init__(self, **kwargs):
super(NotificationHubResource, self).__init__(**kwargs)
self.notification_hub_resource_name = kwargs.get('notification_hub_resource_name', None)
self.registration_ttl = kwargs.get('registration_ttl', None)
self.authorization_rules = kwargs.get('authorization_rules', None)
self.apns_credential = kwargs.get('apns_credential', None)
self.wns_credential = kwargs.get('wns_credential', None)
self.gcm_credential = kwargs.get('gcm_credential', None)
self.mpns_credential = kwargs.get('mpns_credential', None)
self.adm_credential = kwargs.get('adm_credential', None)
self.baidu_credential = kwargs.get('baidu_credential', None)
|