Sha256: 28dbeacb9b880d76d84a03161678759e5464c77f7ba2bc8997c11be01fc287e4
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::NotificationHubs module Models # # Description of a NotificationHub AdmCredential. # class AdmCredential include MsRestAzure include MsRest::JSONable # @return [String] The client identifier. attr_accessor :client_id # @return [String] The credential secret access key. attr_accessor :client_secret # @return [String] The URL of the authorization token. attr_accessor :auth_token_url # # Mapper for AdmCredential class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'AdmCredential', type: { name: 'Composite', class_name: 'AdmCredential', model_properties: { client_id: { required: false, serialized_name: 'properties.clientId', type: { name: 'String' } }, client_secret: { required: false, serialized_name: 'properties.clientSecret', type: { name: 'String' } }, auth_token_url: { required: false, serialized_name: 'properties.authTokenUrl', type: { name: 'String' } } } } } end end end end
Version data entries
2 entries across 2 versions & 1 rubygems