Skip to content

Commit

Permalink
Generated from d76988c
Browse files Browse the repository at this point in the history
  • Loading branch information
SwaggerToSDK Automation committed Nov 3, 2016
1 parent 027ed59 commit 618f176
Show file tree
Hide file tree
Showing 16 changed files with 158 additions and 162 deletions.
14 changes: 6 additions & 8 deletions azure-mgmt-dns/azure/mgmt/dns/dns_management_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ class DnsManagementClientConfiguration(AzureConfiguration):
:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: Gets subscription credentials which uniquely
identify the Microsoft Azure subscription. The subscription ID forms
part of the URI for every service call.
:param subscription_id: Specifies the Azure subscription ID, which
uniquely identifies the Microsoft Azure subscription.
:type subscription_id: str
:param api_version: Client Api Version.
:param api_version: Specifies the API version.
:type api_version: str
:param accept_language: Gets or sets the preferred language for the
response.
Expand Down Expand Up @@ -89,11 +88,10 @@ class DnsManagementClient(object):
:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
object<msrestazure.azure_active_directory>`
:param subscription_id: Gets subscription credentials which uniquely
identify the Microsoft Azure subscription. The subscription ID forms
part of the URI for every service call.
:param subscription_id: Specifies the Azure subscription ID, which
uniquely identifies the Microsoft Azure subscription.
:type subscription_id: str
:param api_version: Client Api Version.
:param api_version: Specifies the API version.
:type api_version: str
:param accept_language: Gets or sets the preferred language for the
response.
Expand Down
3 changes: 1 addition & 2 deletions azure-mgmt-dns/azure/mgmt/dns/models/aaaa_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
class AaaaRecord(Model):
"""An AAAA record.
:param ipv6_address: Gets or sets the IPv6 address of this AAAA record in
string notation.
:param ipv6_address: The IPv6 address of this AAAA record.
:type ipv6_address: str
"""

Expand Down
3 changes: 1 addition & 2 deletions azure-mgmt-dns/azure/mgmt/dns/models/arecord.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
class ARecord(Model):
"""An A record.
:param ipv4_address: Gets or sets the IPv4 address of this A record in
string notation.
:param ipv4_address: The IPv4 address of this A record.
:type ipv4_address: str
"""

Expand Down
3 changes: 1 addition & 2 deletions azure-mgmt-dns/azure/mgmt/dns/models/cname_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
class CnameRecord(Model):
"""A CNAME record.
:param cname: Gets or sets the canonical name for this record without a
terminating dot.
:param cname: The canonical name for this CNAME record.
:type cname: str
"""

Expand Down
5 changes: 2 additions & 3 deletions azure-mgmt-dns/azure/mgmt/dns/models/mx_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
class MxRecord(Model):
"""An MX record.
:param preference: Gets or sets the preference metric for this record.
:param preference: The preference value for this MX record.
:type preference: int
:param exchange: Gets or sets the domain name of the mail host, without a
terminating dot.
:param exchange: The domain name of the mail host for this MX record.
:type exchange: str
"""

Expand Down
3 changes: 1 addition & 2 deletions azure-mgmt-dns/azure/mgmt/dns/models/ns_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
class NsRecord(Model):
"""An NS record.
:param nsdname: Gets or sets the name server name for this record,
without a terminating dot.
:param nsdname: The name server name for this NS record.
:type nsdname: str
"""

Expand Down
3 changes: 1 addition & 2 deletions azure-mgmt-dns/azure/mgmt/dns/models/ptr_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
class PtrRecord(Model):
"""A PTR record.
:param ptrdname: Gets or sets the PTR target domain name for this record
without a terminating dot.
:param ptrdname: The PTR target domain name for this PTR record.
:type ptrdname: str
"""

Expand Down
35 changes: 17 additions & 18 deletions azure-mgmt-dns/azure/mgmt/dns/models/record_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,46 +13,45 @@


class RecordSet(Model):
"""Describes a DNS Recordset (a set of DNS records with the same name and
type).
"""Describes a DNS record set (a collection of DNS records with the same name
and type).
:param id: Gets or sets the ID of the resource.
:param id: The ID of the record set.
:type id: str
:param name: Gets or sets the name of the resource.
:param name: The name of the record set.
:type name: str
:param type: Gets or sets the type of the resource.
:param type: The type of the record set.
:type type: str
:param etag: Gets or sets the ETag of the Recordset.
:param etag: The etag of the record set.
:type etag: str
:param metadata: Gets or sets the metadata attached to the resource.
:param metadata: The metadata attached to the record set.
:type metadata: dict
:param ttl: Gets or sets the TTL of the records in the Recordset.
:param ttl: The TTL (time-to-live) of the records in the record set.
:type ttl: long
:param arecords: Gets or sets the list of A records in the Recordset.
:param arecords: The list of A records in the record set.
:type arecords: list of :class:`ARecord <azure.mgmt.dns.models.ARecord>`
:param aaaa_records: Gets or sets the list of AAAA records in the
Recordset.
:param aaaa_records: The list of AAAA records in the record set.
:type aaaa_records: list of :class:`AaaaRecord
<azure.mgmt.dns.models.AaaaRecord>`
:param mx_records: Gets or sets the list of MX records in the Recordset.
:param mx_records: The list of MX records in the record set.
:type mx_records: list of :class:`MxRecord
<azure.mgmt.dns.models.MxRecord>`
:param ns_records: Gets or sets the list of NS records in the RecordSet.
:param ns_records: The list of NS records in the record set.
:type ns_records: list of :class:`NsRecord
<azure.mgmt.dns.models.NsRecord>`
:param ptr_records: Gets or sets the list of PTR records in the Recordset.
:param ptr_records: The list of PTR records in the record set.
:type ptr_records: list of :class:`PtrRecord
<azure.mgmt.dns.models.PtrRecord>`
:param srv_records: Gets or sets the list of SRV records in the Recordset.
:param srv_records: The list of SRV records in the record set.
:type srv_records: list of :class:`SrvRecord
<azure.mgmt.dns.models.SrvRecord>`
:param txt_records: Gets or sets the list of TXT records in the Recordset.
:param txt_records: The list of TXT records in the record set.
:type txt_records: list of :class:`TxtRecord
<azure.mgmt.dns.models.TxtRecord>`
:param cname_record: Gets or sets the CNAME record in the Recordset.
:param cname_record: The CNAME record in the record set.
:type cname_record: :class:`CnameRecord
<azure.mgmt.dns.models.CnameRecord>`
:param soa_record: Gets or sets the SOA record in the Recordset.
:param soa_record: The SOA record in the record set.
:type soa_record: :class:`SoaRecord <azure.mgmt.dns.models.SoaRecord>`
"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@


class RecordSetUpdateParameters(Model):
"""Parameters supplied to update a Recordset.
"""Parameters supplied to update a record set.
:param record_set: Gets or sets information about the Recordset being
:param record_set: Specifies information about the record set being
updated.
:type record_set: :class:`RecordSet <azure.mgmt.dns.models.RecordSet>`
"""
Expand Down
10 changes: 5 additions & 5 deletions azure-mgmt-dns/azure/mgmt/dns/models/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ class Resource(Model):
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar id: Resource Id
:ivar id: Resource ID.
:vartype id: str
:ivar name: Resource name
:ivar name: Resource name.
:vartype name: str
:ivar type: Resource type
:ivar type: Resource type.
:vartype type: str
:param location: Resource location
:param location: Resource location.
:type location: str
:param tags: Resource tags
:param tags: Resource tags.
:type tags: dict
"""

Expand Down
17 changes: 9 additions & 8 deletions azure-mgmt-dns/azure/mgmt/dns/models/soa_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,21 @@
class SoaRecord(Model):
"""An SOA record.
:param host: Gets or sets the domain name of the authoritative name
server, without a temrinating dot.
:param host: The domain name of the authoritative name server for this
SOA record.
:type host: str
:param email: Gets or sets the email for this record.
:param email: The email contact for this SOA record.
:type email: str
:param serial_number: Gets or sets the serial number for this record.
:param serial_number: The serial number for this SOA record.
:type serial_number: long
:param refresh_time: Gets or sets the refresh value for this record.
:param refresh_time: The refresh value for this SOA record.
:type refresh_time: long
:param retry_time: Gets or sets the retry time for this record.
:param retry_time: The retry time for this SOA record.
:type retry_time: long
:param expire_time: Gets or sets the expire time for this record.
:param expire_time: The expire time for this SOA record.
:type expire_time: long
:param minimum_ttl: Gets or sets the minimum TTL value for this record.
:param minimum_ttl: The minimum value for this SOA record. By convention
this is used to determine the negative caching duration.
:type minimum_ttl: long
"""

Expand Down
9 changes: 4 additions & 5 deletions azure-mgmt-dns/azure/mgmt/dns/models/srv_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,13 @@
class SrvRecord(Model):
"""An SRV record.
:param priority: Gets or sets the priority metric for this record.
:param priority: The priority value for this SRV record.
:type priority: int
:param weight: Gets or sets the weight metric for this this record.
:param weight: The weight value for this SRV record.
:type weight: int
:param port: Gets or sets the port of the service for this record.
:param port: The port value for this SRV record.
:type port: int
:param target: Gets or sets the domain name of the target for this
record, without a terminating dot.
:param target: The target domain name for this SRV record.
:type target: str
"""

Expand Down
2 changes: 1 addition & 1 deletion azure-mgmt-dns/azure/mgmt/dns/models/txt_record.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class TxtRecord(Model):
"""A TXT record.
:param value: Gets or sets the text value of this record.
:param value: The text value of this TXT record.
:type value: list of str
"""

Expand Down
28 changes: 14 additions & 14 deletions azure-mgmt-dns/azure/mgmt/dns/models/zone.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,28 @@ class Zone(Resource):
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar id: Resource Id
:ivar id: Resource ID.
:vartype id: str
:ivar name: Resource name
:ivar name: Resource name.
:vartype name: str
:ivar type: Resource type
:ivar type: Resource type.
:vartype type: str
:param location: Resource location
:param location: Resource location.
:type location: str
:param tags: Resource tags
:param tags: Resource tags.
:type tags: dict
:param etag: Gets or sets the ETag of the zone that is being updated, as
received from a Get operation.
:param etag: The etag of the zone.
:type etag: str
:param max_number_of_record_sets: Gets or sets the maximum number of
recordsets that can be created in this zone.
:param max_number_of_record_sets: The maximum number of record sets that
can be created in this DNS zone. This is a read-only property and any
attempt to set this value will be ignored.
:type max_number_of_record_sets: long
:param number_of_record_sets: Gets or sets the current number of
recordsets in this zone.
:param number_of_record_sets: The current number of record sets in this
DNS zone. This is a read-only property and any attempt to set this
value will be ignored.
:type number_of_record_sets: long
:ivar name_servers: Gets the name servers populated for this zone. This
is a read-only property and any attempt to set this value will be
ignored.
:ivar name_servers: The name servers for this DNS zone. This is a
read-only property and any attempt to set this value will be ignored.
:vartype name_servers: list of str
"""

Expand Down
Loading

0 comments on commit 618f176

Please sign in to comment.