From d055521b4020f0a0e3730f7cb86cf392b021327e Mon Sep 17 00:00:00 2001 From: 00Kai0 Date: Tue, 22 Dec 2020 10:42:38 +0800 Subject: [PATCH] GA marketplaceordering track2 sdk --- .../CHANGELOG.md | 4 ++ .../mgmt/marketplaceordering/_version.py | 2 +- .../_marketplace_agreements_operations.py | 46 +++++++++---------- .../aio/operations/_operations.py | 10 ++-- .../_marketplace_agreements_operations.py | 46 +++++++++---------- .../operations/_operations.py | 10 ++-- .../recordings/test_mgmt_mpo.test_basic.yaml | 12 ++--- 7 files changed, 67 insertions(+), 63 deletions(-) diff --git a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/CHANGELOG.md b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/CHANGELOG.md index 52d152fcb298..733691d3cae6 100644 --- a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/CHANGELOG.md +++ b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +## 1.0.0 (2020-12-22) + +- GA release + ## 1.0.0b1 (2020-11-04) This is beta preview version. diff --git a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/_version.py b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/_version.py index e5754a47ce68..c47f66669f1b 100644 --- a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/_version.py +++ b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/_version.py @@ -6,4 +6,4 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -VERSION = "1.0.0b1" +VERSION = "1.0.0" diff --git a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/aio/operations/_marketplace_agreements_operations.py b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/aio/operations/_marketplace_agreements_operations.py index 4ace1a4c80e8..66572b0ffa25 100644 --- a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/aio/operations/_marketplace_agreements_operations.py +++ b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/aio/operations/_marketplace_agreements_operations.py @@ -13,7 +13,7 @@ from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest from azure.mgmt.core.exceptions import ARMErrorFormat -from ... import models +from ... import models as _models T = TypeVar('T') ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] @@ -32,7 +32,7 @@ class MarketplaceAgreementsOperations: :param deserializer: An object model deserializer. """ - models = models + models = _models def __init__(self, client, config, serializer, deserializer) -> None: self._client = client @@ -42,12 +42,12 @@ def __init__(self, client, config, serializer, deserializer) -> None: async def get( self, - offer_type: Union[str, "models.OfferType"], + offer_type: Union[str, "_models.OfferType"], publisher_id: str, offer_id: str, plan_id: str, **kwargs - ) -> "models.AgreementTerms": + ) -> "_models.AgreementTerms": """Get marketplace terms. :param offer_type: Offer Type, currently only virtualmachine type is supported. @@ -63,7 +63,7 @@ async def get( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -96,7 +96,7 @@ async def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -109,13 +109,13 @@ async def get( async def create( self, - offer_type: Union[str, "models.OfferType"], + offer_type: Union[str, "_models.OfferType"], publisher_id: str, offer_id: str, plan_id: str, - parameters: "models.AgreementTerms", + parameters: "_models.AgreementTerms", **kwargs - ) -> "models.AgreementTerms": + ) -> "_models.AgreementTerms": """Save marketplace terms. :param offer_type: Offer Type, currently only virtualmachine type is supported. @@ -133,7 +133,7 @@ async def create( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -171,7 +171,7 @@ async def create( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -188,7 +188,7 @@ async def sign( offer_id: str, plan_id: str, **kwargs - ) -> "models.AgreementTerms": + ) -> "_models.AgreementTerms": """Sign marketplace terms. :param publisher_id: Publisher identifier string of image being deployed. @@ -202,7 +202,7 @@ async def sign( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -234,7 +234,7 @@ async def sign( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -251,7 +251,7 @@ async def cancel( offer_id: str, plan_id: str, **kwargs - ) -> "models.AgreementTerms": + ) -> "_models.AgreementTerms": """Cancel marketplace terms. :param publisher_id: Publisher identifier string of image being deployed. @@ -265,7 +265,7 @@ async def cancel( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -297,7 +297,7 @@ async def cancel( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -314,7 +314,7 @@ async def get_agreement( offer_id: str, plan_id: str, **kwargs - ) -> "models.AgreementTerms": + ) -> "_models.AgreementTerms": """Get marketplace agreement. :param publisher_id: Publisher identifier string of image being deployed. @@ -328,7 +328,7 @@ async def get_agreement( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -360,7 +360,7 @@ async def get_agreement( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -374,7 +374,7 @@ async def get_agreement( async def list( self, **kwargs - ) -> List["models.AgreementTerms"]: + ) -> List["_models.AgreementTerms"]: """List marketplace agreements in the subscription. :keyword callable cls: A custom type or function that will be passed the direct response @@ -382,7 +382,7 @@ async def list( :rtype: list[~azure.mgmt.marketplaceordering.models.AgreementTerms] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType[List["models.AgreementTerms"]] + cls = kwargs.pop('cls', None) # type: ClsType[List["_models.AgreementTerms"]] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -411,7 +411,7 @@ async def list( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('[AgreementTerms]', pipeline_response) diff --git a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/aio/operations/_operations.py b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/aio/operations/_operations.py index 1df1f2375212..364d2bc8a520 100644 --- a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/aio/operations/_operations.py +++ b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/aio/operations/_operations.py @@ -14,7 +14,7 @@ from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest from azure.mgmt.core.exceptions import ARMErrorFormat -from ... import models +from ... import models as _models T = TypeVar('T') ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] @@ -33,7 +33,7 @@ class Operations: :param deserializer: An object model deserializer. """ - models = models + models = _models def __init__(self, client, config, serializer, deserializer) -> None: self._client = client @@ -44,7 +44,7 @@ def __init__(self, client, config, serializer, deserializer) -> None: def list( self, **kwargs - ) -> AsyncIterable["models.OperationListResult"]: + ) -> AsyncIterable["_models.OperationListResult"]: """Lists all of the available Microsoft.MarketplaceOrdering REST API operations. :keyword callable cls: A custom type or function that will be passed the direct response @@ -52,7 +52,7 @@ def list( :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.marketplaceordering.models.OperationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.OperationListResult"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -93,7 +93,7 @@ async def get_next(next_link=None): response = pipeline_response.http_response if response.status_code not in [200]: - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) diff --git a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/operations/_marketplace_agreements_operations.py b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/operations/_marketplace_agreements_operations.py index 9a4f727691b9..41468c8d0748 100644 --- a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/operations/_marketplace_agreements_operations.py +++ b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/operations/_marketplace_agreements_operations.py @@ -13,7 +13,7 @@ from azure.core.pipeline.transport import HttpRequest, HttpResponse from azure.mgmt.core.exceptions import ARMErrorFormat -from .. import models +from .. import models as _models if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports @@ -36,7 +36,7 @@ class MarketplaceAgreementsOperations(object): :param deserializer: An object model deserializer. """ - models = models + models = _models def __init__(self, client, config, serializer, deserializer): self._client = client @@ -46,13 +46,13 @@ def __init__(self, client, config, serializer, deserializer): def get( self, - offer_type, # type: Union[str, "models.OfferType"] + offer_type, # type: Union[str, "_models.OfferType"] publisher_id, # type: str offer_id, # type: str plan_id, # type: str **kwargs # type: Any ): - # type: (...) -> "models.AgreementTerms" + # type: (...) -> "_models.AgreementTerms" """Get marketplace terms. :param offer_type: Offer Type, currently only virtualmachine type is supported. @@ -68,7 +68,7 @@ def get( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -101,7 +101,7 @@ def get( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -114,14 +114,14 @@ def get( def create( self, - offer_type, # type: Union[str, "models.OfferType"] + offer_type, # type: Union[str, "_models.OfferType"] publisher_id, # type: str offer_id, # type: str plan_id, # type: str - parameters, # type: "models.AgreementTerms" + parameters, # type: "_models.AgreementTerms" **kwargs # type: Any ): - # type: (...) -> "models.AgreementTerms" + # type: (...) -> "_models.AgreementTerms" """Save marketplace terms. :param offer_type: Offer Type, currently only virtualmachine type is supported. @@ -139,7 +139,7 @@ def create( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -177,7 +177,7 @@ def create( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -195,7 +195,7 @@ def sign( plan_id, # type: str **kwargs # type: Any ): - # type: (...) -> "models.AgreementTerms" + # type: (...) -> "_models.AgreementTerms" """Sign marketplace terms. :param publisher_id: Publisher identifier string of image being deployed. @@ -209,7 +209,7 @@ def sign( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -241,7 +241,7 @@ def sign( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -259,7 +259,7 @@ def cancel( plan_id, # type: str **kwargs # type: Any ): - # type: (...) -> "models.AgreementTerms" + # type: (...) -> "_models.AgreementTerms" """Cancel marketplace terms. :param publisher_id: Publisher identifier string of image being deployed. @@ -273,7 +273,7 @@ def cancel( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -305,7 +305,7 @@ def cancel( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -323,7 +323,7 @@ def get_agreement( plan_id, # type: str **kwargs # type: Any ): - # type: (...) -> "models.AgreementTerms" + # type: (...) -> "_models.AgreementTerms" """Get marketplace agreement. :param publisher_id: Publisher identifier string of image being deployed. @@ -337,7 +337,7 @@ def get_agreement( :rtype: ~azure.mgmt.marketplaceordering.models.AgreementTerms :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.AgreementTerms"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.AgreementTerms"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -369,7 +369,7 @@ def get_agreement( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('AgreementTerms', pipeline_response) @@ -384,7 +384,7 @@ def list( self, **kwargs # type: Any ): - # type: (...) -> List["models.AgreementTerms"] + # type: (...) -> List["_models.AgreementTerms"] """List marketplace agreements in the subscription. :keyword callable cls: A custom type or function that will be passed the direct response @@ -392,7 +392,7 @@ def list( :rtype: list[~azure.mgmt.marketplaceordering.models.AgreementTerms] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType[List["models.AgreementTerms"]] + cls = kwargs.pop('cls', None) # type: ClsType[List["_models.AgreementTerms"]] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -421,7 +421,7 @@ def list( if response.status_code not in [200]: map_error(status_code=response.status_code, response=response, error_map=error_map) - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) deserialized = self._deserialize('[AgreementTerms]', pipeline_response) diff --git a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/operations/_operations.py b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/operations/_operations.py index e17b710b6f95..9286df9afb59 100644 --- a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/operations/_operations.py +++ b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/azure/mgmt/marketplaceordering/operations/_operations.py @@ -14,7 +14,7 @@ from azure.core.pipeline.transport import HttpRequest, HttpResponse from azure.mgmt.core.exceptions import ARMErrorFormat -from .. import models +from .. import models as _models if TYPE_CHECKING: # pylint: disable=unused-import,ungrouped-imports @@ -37,7 +37,7 @@ class Operations(object): :param deserializer: An object model deserializer. """ - models = models + models = _models def __init__(self, client, config, serializer, deserializer): self._client = client @@ -49,7 +49,7 @@ def list( self, **kwargs # type: Any ): - # type: (...) -> Iterable["models.OperationListResult"] + # type: (...) -> Iterable["_models.OperationListResult"] """Lists all of the available Microsoft.MarketplaceOrdering REST API operations. :keyword callable cls: A custom type or function that will be passed the direct response @@ -57,7 +57,7 @@ def list( :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.marketplaceordering.models.OperationListResult] :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType["models.OperationListResult"] + cls = kwargs.pop('cls', None) # type: ClsType["_models.OperationListResult"] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -98,7 +98,7 @@ def get_next(next_link=None): response = pipeline_response.http_response if response.status_code not in [200]: - error = self._deserialize(models.ErrorResponse, response) + error = self._deserialize(_models.ErrorResponse, response) map_error(status_code=response.status_code, response=response, error_map=error_map) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) diff --git a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/tests/recordings/test_mgmt_mpo.test_basic.yaml b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/tests/recordings/test_mgmt_mpo.test_basic.yaml index 63c347b6a9a9..f8cd2d1e9b6d 100644 --- a/sdk/marketplaceordering/azure-mgmt-marketplaceordering/tests/recordings/test_mgmt_mpo.test_basic.yaml +++ b/sdk/marketplaceordering/azure-mgmt-marketplaceordering/tests/recordings/test_mgmt_mpo.test_basic.yaml @@ -9,21 +9,21 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-marketplaceordering/1.0.0b1 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-marketplaceordering/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/virtualmachine/publishers/intel-bigdl/offers/bigdl_vm/plans/bigdl_vm_0p4/agreements/current?api-version=2015-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/intel-bigdl/offers/bigdl_vm/plans/bigdl_vm_0p4/agreements/current","name":"bigdl_vm_0p4","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"intel-bigdl","product":"bigdl_vm","plan":"bigdl_vm_0p4","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_INTEL%253a2DBIGDL%253a24BIGDL%253a5FVM%253a24BIGDL%253a5FVM%253a5F0P4%253a24LPVML5SNN52KTQK2VUTTKOQB2GF5VLGDDHYIMTNCI5TVT54RPWAEFUUJFPSGA2SZ7YGQ4EEOVRA6UCUVLHC7JNZNNCNFUJT63EQ2XVI.txt","privacyPolicyLink":"https://www.intel.com/content/www/us/en/privacy/intel-privacy-notice.html","retrieveDatetime":"2020-11-04T06:52:24.38356Z","signature":"GBDZ4RJG5MJJCL7FX35NJGRD5DPF52UX4NGWUJXXVCEPYZID7UNIG43VVEZZB5LUEMXU3ELXGUMBNLOEHSMU3HWVVZNUCNVIKEQ5DXA","accepted":false}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/offerTypes/VirtualMachine/publishers/intel-bigdl/offers/bigdl_vm/plans/bigdl_vm_0p4/agreements/current","name":"bigdl_vm_0p4","type":"Microsoft.MarketplaceOrdering/offertypes","properties":{"publisher":"intel-bigdl","product":"bigdl_vm","plan":"bigdl_vm_0p4","licenseTextLink":"https://storelegalterms.blob.core.windows.net/legalterms/3E5ED_legalterms_INTEL%253a2DBIGDL%253a24BIGDL%253a5FVM%253a24BIGDL%253a5FVM%253a5F0P4%253a24LPVML5SNN52KTQK2VUTTKOQB2GF5VLGDDHYIMTNCI5TVT54RPWAEFUUJFPSGA2SZ7YGQ4EEOVRA6UCUVLHC7JNZNNCNFUJT63EQ2XVI.txt","privacyPolicyLink":"https://www.intel.com/content/www/us/en/privacy/intel-privacy-notice.html","retrieveDatetime":"2020-12-22T02:41:46.0762899Z","signature":"FLURUCNDIV3RPK7SCT3QV55MYSR3OESCMYXQ7KQOWYYK4ZSQK574ZRWKZOQIY4VUDYKNZV3KCZMHEQI3PTU4PBIZ7PZZSNRKRUAPQUI","accepted":false}}' headers: cache-control: - no-cache content-length: - - '916' + - '918' content-type: - application/json; charset=utf-8 date: - - Wed, 04 Nov 2020 06:52:23 GMT + - Tue, 22 Dec 2020 02:41:45 GMT expires: - '-1' pragma: @@ -31,8 +31,8 @@ interactions: server: - Microsoft-IIS/10.0 set-cookie: - - ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=storeapi.azure.com - - ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=storeapi.azure.com + - ARRAffinity=a703f806325944e1ff92f5b6964fbc06b4fdf5647d48c76a29966c392ea989b9;Path=/;HttpOnly;Secure;Domain=storeapi.azure.com + - ARRAffinitySameSite=a703f806325944e1ff92f5b6964fbc06b4fdf5647d48c76a29966c392ea989b9;Path=/;HttpOnly;SameSite=None;Secure;Domain=storeapi.azure.com strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: