Skip to content

[T2-GA] Compute #13830

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 17, 2020
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
53 changes: 53 additions & 0 deletions sdk/compute/azure-mgmt-compute/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,58 @@
# Release History

## 17.0.0 (2020-09-16)

**Features**

- Model VirtualMachineExtensionUpdate has a new parameter enable_automatic_upgrade
- Model VirtualMachineScaleSetExtensionUpdate has a new parameter enable_automatic_upgrade
- Model DedicatedHostGroup has a new parameter instance_view
- Model DedicatedHostGroup has a new parameter support_automatic_placement
- Model VirtualMachineScaleSetExtension has a new parameter enable_automatic_upgrade
- Model VirtualMachineScaleSetVM has a new parameter security_profile
- Model VirtualMachineImage has a new parameter disallowed
- Model VirtualMachine has a new parameter security_profile
- Model VirtualMachine has a new parameter extensions_time_budget
- Model VirtualMachine has a new parameter host_group
- Model VirtualMachineInstanceView has a new parameter vm_health
- Model VirtualMachineInstanceView has a new parameter patch_status
- Model VirtualMachineInstanceView has a new parameter assigned_host
- Model DiskEncryptionSet has a new parameter encryption_type
- Model Snapshot has a new parameter disk_state
- Model Snapshot has a new parameter disk_access_id
- Model Snapshot has a new parameter network_access_policy
- Model CreationData has a new parameter logical_sector_size
- Model DiskEncryptionSetUpdate has a new parameter encryption_type
- Model VirtualMachineScaleSetVMInstanceView has a new parameter assigned_host
- Model WindowsConfiguration has a new parameter patch_settings
- Model DiskUpdate has a new parameter disk_access_id
- Model DiskUpdate has a new parameter network_access_policy
- Model DiskUpdate has a new parameter tier
- Model VirtualMachineScaleSetUpdateVMProfile has a new parameter security_profile
- Model VirtualMachineScaleSetVMProfile has a new parameter security_profile
- Model VirtualMachineUpdate has a new parameter security_profile
- Model VirtualMachineUpdate has a new parameter extensions_time_budget
- Model VirtualMachineUpdate has a new parameter host_group
- Model Disk has a new parameter disk_access_id
- Model Disk has a new parameter network_access_policy
- Model Disk has a new parameter tier
- Model VirtualMachineExtension has a new parameter enable_automatic_upgrade
- Model VirtualMachineScaleSet has a new parameter host_group
- Model DedicatedHostGroupUpdate has a new parameter instance_view
- Model DedicatedHostGroupUpdate has a new parameter support_automatic_placement
- Model SnapshotUpdate has a new parameter disk_access_id
- Model SnapshotUpdate has a new parameter network_access_policy
- Model VirtualMachineScaleSetExtensionProfile has a new parameter extensions_time_budget
- Added operation VirtualMachineScaleSetVMsOperations.retrieve_boot_diagnostics_data
- Added operation VirtualMachinesOperations.retrieve_boot_diagnostics_data
- Added operation VirtualMachinesOperations.begin_assess_patches
- Added operation DiskEncryptionSetsOperations.list_associated_resources
- Added operation group DiskAccessesOperations

**Breaking changes**

- Operation DedicatedHostGroupsOperations.get has a new signature

## 17.0.0b1 (2020-06-17)

This is beta preview version.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
__all__ = ['ComputeManagementClient']

try:
from ._patch import patch_sdk
from ._patch import patch_sdk # type: ignore
patch_sdk()
except ImportError:
pass

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

from azure.core.configuration import Configuration
from azure.core.pipeline import policies
from azure.mgmt.core.policies import ARMHttpLoggingPolicy

from ._version import VERSION

Expand Down Expand Up @@ -43,8 +44,7 @@ def __init__(

self.credential = credential
self.subscription_id = subscription_id
self.credential_scopes = ['https://management.azure.com/.default']
self.credential_scopes.extend(kwargs.pop('credential_scopes', []))
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
kwargs.setdefault('sdk_moniker', 'azure-mgmt-compute/{}'.format(VERSION))
self._configure(**kwargs)

Expand All @@ -57,6 +57,7 @@ def _configure(
self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs)
self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs)
self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs)
self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs)
self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs)
self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs)
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# license information.
# --------------------------------------------------------------------------

VERSION = "17.0.0b1"
VERSION = "17.0.0"
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from ._compute_management_client_async import ComputeManagementClient
from ._compute_management_client import ComputeManagementClient
__all__ = ['ComputeManagementClient']
Loading