Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class AttachNewDataDiskOptions(Model):
"""Properties to attach new disk to the Virtual Machine.

:param disk_size_gi_b: Size of the disk to be attached in GibiBytes.
:param disk_size_gi_b: Size of the disk to be attached in Gibibytes.
:type disk_size_gi_b: int
:param disk_name: The name of the disk to be attached.
:type disk_name: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class AttachNewDataDiskOptionsFragment(Model):
"""Properties to attach new disk to the Virtual Machine.

:param disk_size_gi_b: Size of the disk to be attached in GibiBytes.
:param disk_size_gi_b: Size of the disk to be attached in Gibibytes.
:type disk_size_gi_b: int
:param disk_name: The name of the disk to be attached.
:type disk_name: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class AttachNewDataDiskOptionsFragment(Model):
"""Properties to attach new disk to the Virtual Machine.

:param disk_size_gi_b: Size of the disk to be attached in GibiBytes.
:param disk_size_gi_b: Size of the disk to be attached in Gibibytes.
:type disk_size_gi_b: int
:param disk_name: The name of the disk to be attached.
:type disk_name: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class AttachNewDataDiskOptions(Model):
"""Properties to attach new disk to the Virtual Machine.

:param disk_size_gi_b: Size of the disk to be attached in GibiBytes.
:param disk_size_gi_b: Size of the disk to be attached in Gibibytes.
:type disk_size_gi_b: int
:param disk_name: The name of the disk to be attached.
:type disk_name: str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Disk(Resource):
:param disk_type: The storage type for the disk (i.e. Standard, Premium).
Possible values include: 'Standard', 'Premium'
:type disk_type: str or ~azure.mgmt.devtestlabs.models.StorageType
:param disk_size_gi_b: The size of the disk in GibiBytes.
:param disk_size_gi_b: The size of the disk in Gibibytes.
:type disk_size_gi_b: int
:param leased_by_lab_vm_id: The resource ID of the VM to which this disk
is leased.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class DiskFragment(UpdateResource):
:param disk_type: The storage type for the disk (i.e. Standard, Premium).
Possible values include: 'Standard', 'Premium'
:type disk_type: str or ~azure.mgmt.devtestlabs.models.StorageType
:param disk_size_gi_b: The size of the disk in GibiBytes.
:param disk_size_gi_b: The size of the disk in Gibibytes.
:type disk_size_gi_b: int
:param leased_by_lab_vm_id: The resource ID of the VM to which this disk
is leased.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class DiskFragment(UpdateResource):
:param disk_type: The storage type for the disk (i.e. Standard, Premium).
Possible values include: 'Standard', 'Premium'
:type disk_type: str or ~azure.mgmt.devtestlabs.models.StorageType
:param disk_size_gi_b: The size of the disk in GibiBytes.
:param disk_size_gi_b: The size of the disk in Gibibytes.
:type disk_size_gi_b: int
:param leased_by_lab_vm_id: The resource ID of the VM to which this disk
is leased.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Disk(Resource):
:param disk_type: The storage type for the disk (i.e. Standard, Premium).
Possible values include: 'Standard', 'Premium'
:type disk_type: str or ~azure.mgmt.devtestlabs.models.StorageType
:param disk_size_gi_b: The size of the disk in GibiBytes.
:param disk_size_gi_b: The size of the disk in Gibibytes.
:type disk_size_gi_b: int
:param leased_by_lab_vm_id: The resource ID of the VM to which this disk
is leased.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, client, config, serializer, deserializer):

def list(
self, resource_group_name, lab_name, expand=None, filter=None, top=None, orderby=None, custom_headers=None, raw=False, **operation_config):
"""List notificationchannels in a given lab.
"""List notification channels in a given lab.

:param resource_group_name: The name of the resource group.
:type resource_group_name: str
Expand Down Expand Up @@ -129,7 +129,7 @@ def internal_paging(next_link=None, raw=False):

def get(
self, resource_group_name, lab_name, name, expand=None, custom_headers=None, raw=False, **operation_config):
"""Get notificationchannel.
"""Get notification channel.

:param resource_group_name: The name of the resource group.
:type resource_group_name: str
Expand Down Expand Up @@ -273,7 +273,7 @@ def create_or_update(

def delete(
self, resource_group_name, lab_name, name, custom_headers=None, raw=False, **operation_config):
"""Delete notificationchannel.
"""Delete notification channel.

:param resource_group_name: The name of the resource group.
:type resource_group_name: str
Expand Down Expand Up @@ -329,7 +329,7 @@ def delete(

def update(
self, resource_group_name, lab_name, name, notification_channel, custom_headers=None, raw=False, **operation_config):
"""Modify properties of notificationchannels.
"""Modify properties of notification channels.

:param resource_group_name: The name of the resource group.
:type resource_group_name: str
Expand Down