diff --git a/src/azure-cli/azure/cli/command_modules/signalr/_client_factory.py b/src/azure-cli/azure/cli/command_modules/signalr/_client_factory.py index 9d0537fd47e..35bda9ebedb 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/signalr/_client_factory.py @@ -24,3 +24,11 @@ def cf_private_link_resources(cli_ctx, *_): def cf_usage(cli_ctx, *_): return _signalr_client_factory(cli_ctx).usages + + +def cf_custom_domains(cli_ctx, *_): + return _signalr_client_factory(cli_ctx).signal_rcustom_domains + + +def cf_custom_certificates(cli_ctx, *_): + return _signalr_client_factory(cli_ctx).signal_rcustom_certificates diff --git a/src/azure-cli/azure/cli/command_modules/signalr/_help.py b/src/azure-cli/azure/cli/command_modules/signalr/_help.py index 4a50d36369a..4f934f87ac1 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/_help.py +++ b/src/azure-cli/azure/cli/command_modules/signalr/_help.py @@ -32,6 +32,16 @@ short-summary: Manage managed identity settings. """ +helps['signalr custom-domain'] = """ +type: group +short-summary: Manage custom domain settings. +""" + +helps['signalr custom-certificate'] = """ +type: group +short-summary: Manage custom certificate settings. +""" + helps['signalr cors add'] = """ type: command short-summary: Add allowed origins to a SignalR Service @@ -68,9 +78,12 @@ type: command short-summary: Creates a SignalR Service. examples: - - name: Create a SignalR Service with the Standard SKU and serverless mode and enable messaging logs. + - name: Create a SignalR Service with the Premium SKU and default mode + text: > + az signalr create -n MySignalR -g MyResourceGroup --sku Premium_P1 + - name: Create a SignalR Service with the Premium SKU and serverless mode and enable messaging logs. text: > - az signalr create -n MySignalR -g MyResourceGroup --sku Standard_S1 --unit-count 1 --service-mode Serverless --enable-message-logs True + az signalr create -n MySignalR -g MyResourceGroup --sku Premium_P1 --unit-count 1 --service-mode Serverless --enable-message-logs True """ helps['signalr delete'] = """ @@ -213,3 +226,53 @@ type: command short-summary: Show managed identity for SignalR Service. """ + +helps['signalr custom-domain create'] = """ +type: command +short-summary: Create a custom domain of SignalR Service. +""" + +helps['signalr custom-domain delete'] = """ +type: command +short-summary: Delete a custom domain of SignalR Service. +""" + +helps['signalr custom-domain update'] = """ +type: command +short-summary: Update a custom domain of SignalR Service. +""" + +helps['signalr custom-domain list'] = """ +type: command +short-summary: List custom domains of SignalR Service. +""" + +helps['signalr custom-domain show'] = """ +type: command +short-summary: Show the detail of a custom domain of SignalR Service. +""" + +helps['signalr custom-certificate create'] = """ +type: command +short-summary: Create a custom certificate of SignalR Service. +""" + +helps['signalr custom-certificate delete'] = """ +type: command +short-summary: Delete a custom certificate of SignalR Service. +""" + +helps['signalr custom-certificate update'] = """ +type: command +short-summary: Update a custom certificate of SignalR Service. +""" + +helps['signalr custom-certificate list'] = """ +type: command +short-summary: List custom certificate of SignalR Service. +""" + +helps['signalr custom-certificate show'] = """ +type: command +short-summary: Show the detail of a custom certificate of SignalR Service. +""" diff --git a/src/azure-cli/azure/cli/command_modules/signalr/_params.py b/src/azure-cli/azure/cli/command_modules/signalr/_params.py index 6912251558a..abc01869521 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/_params.py +++ b/src/azure-cli/azure/cli/command_modules/signalr/_params.py @@ -3,6 +3,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- +# pylint: disable=too-many-statements from knack.arguments import CLIArgumentType @@ -32,6 +33,8 @@ def load_arguments(self, _): signalr_name_type = CLIArgumentType(options_list='--signalr-name', help='Name of the SignalR.', id_part='name') + signalr_custom_domain_name_type = CLIArgumentType(help='Name of the custom domain.', id_part='child_name_1') + signalr_custom_certificate_name_type = CLIArgumentType(help='Name of the custom certificate.', id_part='child_name_2') with self.argument_context('signalr') as c: c.argument('resource_group_name', arg_type=resource_group_name_type) @@ -44,7 +47,7 @@ def load_arguments(self, _): c.argument('tags', arg_type=tags_type) with self.argument_context('signalr create') as c: - c.argument('sku', help='The sku name of the signalr service. E.g. Standard_S1') + c.argument('sku', help='The sku name of the signalr service. Allowed values: Premium_P1, Standard_S1, Free_F1') c.argument('unit_count', help='The number of signalr service unit count', type=int) c.argument('service_mode', help='The service mode which signalr service will be working on', choices=SIGNALR_SERVICE_MODE_TYPE) c.argument('enable_message_logs', help='The switch for messaging logs which signalr service will generate or not', arg_type=get_three_state_flag()) @@ -99,3 +102,36 @@ def load_arguments(self, _): # Managed Identity with self.argument_context('signalr identity assign') as c: c.argument('identity', help="Assigns managed identities to the service. Use '[system]' to refer to the system-assigned identity or a resource ID to refer to a user-assigned identity. You can only assign either on of them.") + + # Custom Domain + for scope in ['signalr custom-domain update', + 'signalr custom-domain create', + 'signalr custom-domain show', + 'signalr custom-domain delete', + 'signalr custom-domain list']: + with self.argument_context(scope) as c: + c.argument('signalr_name', signalr_name_type, id_part=None) + c.argument('name', signalr_custom_domain_name_type) + + for scope in ['signalr custom-domain update', + 'signalr custom-domain create']: + with self.argument_context(scope) as c: + c.argument('domain_name', help="Custom domain name. For example, `contoso.com`.") + c.argument('certificate_resource_id', help="ResourceId of a previously created custom certificate.") + + # Custom Certificate + for scope in ['signalr custom-certificate update', + 'signalr custom-certificate create', + 'signalr custom-certificate show', + 'signalr custom-certificate delete', + 'signalr custom-certificate list']: + with self.argument_context(scope) as c: + c.argument('signalr_name', signalr_name_type, id_part=None) + c.argument('name', signalr_custom_certificate_name_type) + + for scope in ['signalr custom-certificate update', + 'signalr custom-certificate create']: + with self.argument_context(scope) as c: + c.argument('keyvault_base_uri', help="Key vault base URI. For example, `https://contoso.vault.azure.net`.") + c.argument('keyvault_secret_name', help="Key vault secret name where certificate is stored.") + c.argument('keyvault_secret_version', help="Key vault secret version where certificate is stored. If empty, will use latest version.") diff --git a/src/azure-cli/azure/cli/command_modules/signalr/commands.py b/src/azure-cli/azure/cli/command_modules/signalr/commands.py index b2a3fd2fad8..444f6625d47 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/commands.py +++ b/src/azure-cli/azure/cli/command_modules/signalr/commands.py @@ -8,7 +8,9 @@ from azure.cli.core.util import empty_on_404 from ._client_factory import ( - cf_signalr) + cf_signalr, + cf_custom_domains, + cf_custom_certificates) def load_command_table(self, _): @@ -43,6 +45,16 @@ def load_command_table(self, _): client_factory=cf_signalr ) + signalr_custom_domain_utils = CliCommandType( + operations_tmpl='azure.cli.command_modules.signalr.customdomain#{}', + client_factory=cf_custom_domains + ) + + signalr_custom_certificate_utils = CliCommandType( + operations_tmpl='azure.cli.command_modules.signalr.customcertificate#{}', + client_factory=cf_custom_certificates + ) + with self.command_group('signalr', signalr_custom_utils) as g: g.command('create', 'signalr_create') g.command('delete', 'signalr_delete') @@ -76,3 +88,17 @@ def load_command_table(self, _): g.command('assign', 'signalr_msi_assign') g.command('remove', 'signalr_msi_remove') g.show_command('show', 'signalr_msi_show') + + with self.command_group('signalr custom-domain', signalr_custom_domain_utils) as g: + g.show_command('show', 'custom_domain_show', exception_handler=empty_on_404) + g.command('create', 'custom_domain_create') + g.command('delete', 'custom_domain_delete') + g.generic_update_command('update', getter_name='get_custom_domain', setter_name='set_custom_domain', custom_func_name='update', custom_func_type=signalr_custom_domain_utils) + g.command('list', 'custom_domain_list') + + with self.command_group('signalr custom-certificate', signalr_custom_certificate_utils) as g: + g.show_command('show', 'custom_certificate_show', exception_handler=empty_on_404) + g.command('create', 'custom_certificate_create') + g.command('delete', 'custom_certificate_delete') + g.generic_update_command('update', getter_name='get_custom_certificate', setter_name='set_custom_certificate', custom_func_name='update', custom_func_type=signalr_custom_certificate_utils) + g.command('list', 'custom_certificate_list') diff --git a/src/azure-cli/azure/cli/command_modules/signalr/customcertificate.py b/src/azure-cli/azure/cli/command_modules/signalr/customcertificate.py new file mode 100644 index 00000000000..722c8d26f26 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/signalr/customcertificate.py @@ -0,0 +1,50 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +# pylint: disable=line-too-long + + +from azure.mgmt.signalr.models import ( + CustomCertificate +) + +from azure.mgmt.signalr._signal_rmanagement_client import ( + SignalRCustomCertificatesOperations +) + + +def custom_certificate_create(client: SignalRCustomCertificatesOperations, resource_group_name, signalr_name, name, keyvault_base_uri, keyvault_secret_name, keyvault_secret_version=None): + custom_certificate = CustomCertificate(key_vault_base_uri=keyvault_base_uri, key_vault_secret_name=keyvault_secret_name, keyvault_secret_version=keyvault_secret_version) + + return client.begin_create_or_update(resource_group_name, signalr_name, name, custom_certificate) + + +def custom_certificate_delete(client: SignalRCustomCertificatesOperations, resource_group_name, signalr_name, name): + return client.delete(resource_group_name, signalr_name, name) + + +def custom_certificate_show(client: SignalRCustomCertificatesOperations, resource_group_name, signalr_name, name): + return client.get(resource_group_name, signalr_name, name) + + +def custom_certificate_list(client: SignalRCustomCertificatesOperations, resource_group_name, signalr_name): + return client.list(resource_group_name, signalr_name) + + +def get_custom_certificate(client: SignalRCustomCertificatesOperations, resource_group_name, signalr_name, name): + return client.get(resource_group_name, signalr_name, name) + + +def set_custom_certificate(client: SignalRCustomCertificatesOperations, resource_group_name, signalr_name, name, parameters): + return client.begin_create_or_update(resource_group_name, signalr_name, name, parameters) + + +def update(instance: CustomCertificate, keyvault_base_uri=None, keyvault_secret_name=None, keyvault_secret_version=None): + if keyvault_base_uri is not None: + instance.key_vault_base_uri = keyvault_base_uri + if keyvault_secret_name is not None: + instance.key_vault_secret_name = keyvault_secret_name + if keyvault_secret_version is not None: + instance.key_vault_secret_version = keyvault_secret_version + return instance diff --git a/src/azure-cli/azure/cli/command_modules/signalr/customdomain.py b/src/azure-cli/azure/cli/command_modules/signalr/customdomain.py new file mode 100644 index 00000000000..55f63666cc5 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/signalr/customdomain.py @@ -0,0 +1,50 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- +# pylint: disable=line-too-long + + +from azure.mgmt.signalr.models import ( + CustomDomain, + ResourceReference +) + +from azure.mgmt.signalr._signal_rmanagement_client import ( + SignalRCustomDomainsOperations +) + + +def custom_domain_create(client: SignalRCustomDomainsOperations, resource_group_name, signalr_name, name, domain_name, certificate_resource_id): + resource_reference = ResourceReference(id=certificate_resource_id) + custom_domain = CustomDomain(domain_name=domain_name, custom_certificate=resource_reference) + + return client.begin_create_or_update(resource_group_name, signalr_name, name, custom_domain) + + +def custom_domain_delete(client: SignalRCustomDomainsOperations, resource_group_name, signalr_name, name): + return client.begin_delete(resource_group_name, signalr_name, name) + + +def custom_domain_show(client: SignalRCustomDomainsOperations, resource_group_name, signalr_name, name): + return client.get(resource_group_name, signalr_name, name) + + +def custom_domain_list(client: SignalRCustomDomainsOperations, resource_group_name, signalr_name): + return client.list(resource_group_name, signalr_name) + + +def get_custom_domain(client: SignalRCustomDomainsOperations, resource_group_name, signalr_name, name): + return client.get(resource_group_name, signalr_name, name) + + +def set_custom_domain(client: SignalRCustomDomainsOperations, resource_group_name, signalr_name, name, parameters): + return client.begin_create_or_update(resource_group_name, signalr_name, name, parameters) + + +def update(instance: CustomDomain, domain_name=None, certificate_resource_id=None): + if domain_name is not None: + instance.domain_name = domain_name + if certificate_resource_id is not None: + instance.custom_certificate = ResourceReference(id=certificate_resource_id) + return instance diff --git a/src/azure-cli/azure/cli/command_modules/signalr/linter_exclusions.yml b/src/azure-cli/azure/cli/command_modules/signalr/linter_exclusions.yml new file mode 100644 index 00000000000..2a91bc7bd49 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/signalr/linter_exclusions.yml @@ -0,0 +1,22 @@ +--- +signalr custom-certificate create: + parameters: + keyvault_secret_version: + rule_exclusions: + - option_length_too_long +signalr custom-certificate update: + parameters: + keyvault_secret_version: + rule_exclusions: + - option_length_too_long +signalr custom-domain create: + parameters: + certificate_resource_id: + rule_exclusions: + - option_length_too_long +signalr custom-domain update: + parameters: + certificate_resource_id: + rule_exclusions: + - option_length_too_long +... diff --git a/src/azure-cli/azure/cli/command_modules/signalr/msi.py b/src/azure-cli/azure/cli/command_modules/signalr/msi.py index 3347329d1fc..c8c5e91c67b 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/msi.py +++ b/src/azure-cli/azure/cli/command_modules/signalr/msi.py @@ -14,7 +14,7 @@ def signalr_msi_assign(client, resource_group_name, signalr_name, identity): msiType, user_identity = _analyze_identity(identity) - identity = ManagedIdentity(type=msiType, userAssignedidentity={user_identity, None} if user_identity else None) + identity = ManagedIdentity(type=msiType, user_assigned_identities={user_identity: {}} if user_identity else None) parameter = SignalRResource(identity=identity) return client.begin_update(resource_group_name, signalr_name, parameter) diff --git a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_commands.yaml b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_commands.yaml index 9216a2c17fc..a0e88a9d417 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_commands.yaml +++ b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_commands.yaml @@ -4,7 +4,8 @@ interactions: "capacity": 1}, "properties": {"features": [{"flag": "ServiceMode", "value": "Classic"}, {"flag": "EnableMessagingLogs", "value": "True"}], "cors": {"allowedOrigins": ["http://example1.com", "http://example2.com"]}, "networkACLs": {"defaultAction": - "Deny"}}}' + "Deny"}, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "disableAadAuth": + false}}' headers: Accept: - application/json @@ -15,34 +16,34 @@ interactions: Connection: - keep-alive Content-Length: - - '338' + - '424' Content-Type: - application/json ParameterSetName: - -n -g --sku --unit-count -l --tags --service-mode --enable-message-logs --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Creating","externalIP":null,"hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0-preview","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"True","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:13:51.5838137Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Creating","externalIP":null,"hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0-preview","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableMessagingLogs","value":"True","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:47:24.5963547Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/a0c580a7-7638-4e72-9a05-f6daa77921b2/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/1fe47d62-f4f9-40d9-9bbc-a024749dae02?api-version=2022-02-01 cache-control: - no-cache content-length: - - '1374' + - '1411' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:13:55 GMT + - Tue, 02 Aug 2022 05:47:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/a0c580a7-7638-4e72-9a05-f6daa77921b2/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/1fe47d62-f4f9-40d9-9bbc-a024749dae02?api-version=2022-02-01 pragma: - no-cache server: @@ -54,7 +55,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 201 message: Created @@ -73,21 +74,21 @@ interactions: - -n -g --sku --unit-count -l --tags --service-mode --enable-message-logs --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/a0c580a7-7638-4e72-9a05-f6daa77921b2/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/1fe47d62-f4f9-40d9-9bbc-a024749dae02?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/a0c580a7-7638-4e72-9a05-f6daa77921b2/SignalR/signalr000002","name":"a0c580a7-7638-4e72-9a05-f6daa77921b2","status":"Running","startTime":"2021-06-01T03:13:53.1561372Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/1fe47d62-f4f9-40d9-9bbc-a024749dae02","name":"1fe47d62-f4f9-40d9-9bbc-a024749dae02","status":"Running","startTime":"2022-08-02T05:47:27.547792Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '311' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:14:26 GMT + - Tue, 02 Aug 2022 05:47:59 GMT expires: - '-1' pragma: @@ -103,7 +104,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -122,21 +123,21 @@ interactions: - -n -g --sku --unit-count -l --tags --service-mode --enable-message-logs --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/a0c580a7-7638-4e72-9a05-f6daa77921b2/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/1fe47d62-f4f9-40d9-9bbc-a024749dae02?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/a0c580a7-7638-4e72-9a05-f6daa77921b2/SignalR/signalr000002","name":"a0c580a7-7638-4e72-9a05-f6daa77921b2","status":"Running","startTime":"2021-06-01T03:13:53.1561372Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/1fe47d62-f4f9-40d9-9bbc-a024749dae02","name":"1fe47d62-f4f9-40d9-9bbc-a024749dae02","status":"Running","startTime":"2022-08-02T05:47:27.547792Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '311' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:14:56 GMT + - Tue, 02 Aug 2022 05:48:30 GMT expires: - '-1' pragma: @@ -152,7 +153,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -171,21 +172,21 @@ interactions: - -n -g --sku --unit-count -l --tags --service-mode --enable-message-logs --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/a0c580a7-7638-4e72-9a05-f6daa77921b2/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/1fe47d62-f4f9-40d9-9bbc-a024749dae02?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/a0c580a7-7638-4e72-9a05-f6daa77921b2/SignalR/signalr000002","name":"a0c580a7-7638-4e72-9a05-f6daa77921b2","status":"Succeeded","startTime":"2021-06-01T03:13:53.1561372Z","endTime":"2021-06-01T03:15:02.517036Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/1fe47d62-f4f9-40d9-9bbc-a024749dae02","name":"1fe47d62-f4f9-40d9-9bbc-a024749dae02","status":"Running","startTime":"2022-08-02T05:47:27.547792Z"}' headers: cache-control: - no-cache content-length: - - '378' + - '311' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:15:26 GMT + - Tue, 02 Aug 2022 05:49:01 GMT expires: - '-1' pragma: @@ -201,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -220,21 +221,21 @@ interactions: - -n -g --sku --unit-count -l --tags --service-mode --enable-message-logs --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/1fe47d62-f4f9-40d9-9bbc-a024749dae02?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.42.72.9","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"True","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:13:51.5838137Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/1fe47d62-f4f9-40d9-9bbc-a024749dae02","name":"1fe47d62-f4f9-40d9-9bbc-a024749dae02","status":"Succeeded","startTime":"2022-08-02T05:47:27.547792Z","endTime":"2022-08-02T05:49:13.9570602Z"}' headers: cache-control: - no-cache content-length: - - '1375' + - '354' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:15:27 GMT + - Tue, 02 Aug 2022 05:49:31 GMT expires: - '-1' pragma: @@ -250,7 +251,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -258,31 +259,32 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - signalr show + - signalr create Connection: - keep-alive ParameterSetName: - - -n -g + - -n -g --sku --unit-count -l --tags --service-mode --enable-message-logs --allowed-origins + --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.42.72.9","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"True","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:13:51.5838137Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableMessagingLogs","value":"True","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:47:24.5963547Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1375' + - '1414' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:15:29 GMT + - Tue, 02 Aug 2022 05:49:32 GMT expires: - '-1' pragma: @@ -298,7 +300,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -310,27 +312,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - signalr list + - signalr show Connection: - keep-alive ParameterSetName: - - -g + - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"value":[{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.42.72.9","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"True","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:13:51.5838137Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}]}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableMessagingLogs","value":"True","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:47:24.5963547Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1387' + - '1414' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:15:29 GMT + - Tue, 02 Aug 2022 05:49:34 GMT expires: - '-1' pragma: @@ -346,112 +348,113 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: - body: '{"tags": {"key": "value2"}, "sku": {"name": "Free_F1", "capacity": 1}, - "properties": {"features": [{"flag": "ServiceMode", "value": "Serverless"}, - {"flag": "EnableMessagingLogs", "value": "False"}]}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - signalr update + - signalr list Connection: - keep-alive - Content-Length: - - '199' - Content-Type: - - application/json ParameterSetName: - - -n -g --sku --tags --service-mode --enable-message-logs + - -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR?api-version=2022-02-01 response: body: - string: '' + string: '{"value":[{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableMessagingLogs","value":"True","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:47:24.5963547Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}]}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/50f08308-5038-462d-9a3b-38f954aba0aa/SignalR/signalr000002?api-version=2021-04-01-preview cache-control: - no-cache content-length: - - '0' + - '1426' + content-type: + - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:15:33 GMT + - Tue, 02 Aug 2022 05:49:35 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/50f08308-5038-462d-9a3b-38f954aba0aa/SignalR/signalr000002?api-version=2021-04-01-preview pragma: - no-cache server: - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: - code: 202 - message: Accepted + code: 200 + message: OK - request: - body: null + body: '{"tags": {"key": "value2"}, "sku": {"name": "Free_F1", "capacity": 1}, + "properties": {"features": [{"flag": "ServiceMode", "value": "Serverless"}, + {"flag": "EnableMessagingLogs", "value": "False"}], "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "disableAadAuth": false}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - signalr update Connection: - keep-alive + Content-Length: + - '285' + Content-Type: + - application/json ParameterSetName: - -n -g --sku --tags --service-mode --enable-message-logs User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/50f08308-5038-462d-9a3b-38f954aba0aa/SignalR/signalr000002?api-version=2021-04-01-preview + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/50f08308-5038-462d-9a3b-38f954aba0aa/SignalR/signalr000002","name":"50f08308-5038-462d-9a3b-38f954aba0aa","status":"Running","startTime":"2021-06-01T03:15:33.6379328Z"}' + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b3b299fd-6414-48b0-9ba2-9cee1ea0919c?api-version=2022-02-01 cache-control: - no-cache content-length: - - '336' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Tue, 01 Jun 2021 03:16:03 GMT + - Tue, 02 Aug 2022 05:49:38 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/b3b299fd-6414-48b0-9ba2-9cee1ea0919c?api-version=2022-02-01 pragma: - no-cache server: - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -466,21 +469,21 @@ interactions: ParameterSetName: - -n -g --sku --tags --service-mode --enable-message-logs User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/50f08308-5038-462d-9a3b-38f954aba0aa/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b3b299fd-6414-48b0-9ba2-9cee1ea0919c?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/50f08308-5038-462d-9a3b-38f954aba0aa/SignalR/signalr000002","name":"50f08308-5038-462d-9a3b-38f954aba0aa","status":"Running","startTime":"2021-06-01T03:15:33.6379328Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b3b299fd-6414-48b0-9ba2-9cee1ea0919c","name":"b3b299fd-6414-48b0-9ba2-9cee1ea0919c","status":"Running","startTime":"2022-08-02T05:49:38.7941146Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:16:33 GMT + - Tue, 02 Aug 2022 05:50:08 GMT expires: - '-1' pragma: @@ -496,7 +499,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -514,21 +517,21 @@ interactions: ParameterSetName: - -n -g --sku --tags --service-mode --enable-message-logs User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/50f08308-5038-462d-9a3b-38f954aba0aa/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b3b299fd-6414-48b0-9ba2-9cee1ea0919c?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/50f08308-5038-462d-9a3b-38f954aba0aa/SignalR/signalr000002","name":"50f08308-5038-462d-9a3b-38f954aba0aa","status":"Succeeded","startTime":"2021-06-01T03:15:33.6379328Z","endTime":"2021-06-01T03:16:50.6483797Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b3b299fd-6414-48b0-9ba2-9cee1ea0919c","name":"b3b299fd-6414-48b0-9ba2-9cee1ea0919c","status":"Succeeded","startTime":"2022-08-02T05:49:38.7941146Z","endTime":"2022-08-02T05:50:33.2214301Z"}' headers: cache-control: - no-cache content-length: - - '379' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:17:03 GMT + - Tue, 02 Aug 2022 05:50:40 GMT expires: - '-1' pragma: @@ -544,7 +547,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -562,21 +565,21 @@ interactions: ParameterSetName: - -n -g --sku --tags --service-mode --enable-message-logs User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.42.64.131","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:15:32.6361054Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.88","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:49:37.4689007Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1374' + - '1411' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:17:04 GMT + - Tue, 02 Aug 2022 05:50:40 GMT expires: - '-1' pragma: @@ -592,7 +595,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -610,21 +613,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.42.64.131","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:15:32.6361054Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.88","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:49:37.4689007Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1374' + - '1411' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:17:06 GMT + - Tue, 02 Aug 2022 05:50:41 GMT expires: - '-1' pragma: @@ -640,12 +643,13 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: - body: '{"properties": {"cors": {"allowedOrigins": ["*"]}}}' + body: '{"properties": {"cors": {"allowedOrigins": ["*"]}, "publicNetworkAccess": + "Enabled", "disableLocalAuth": false, "disableAadAuth": false}}' headers: Accept: - application/json @@ -656,31 +660,31 @@ interactions: Connection: - keep-alive Content-Length: - - '51' + - '137' Content-Type: - application/json ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/e48c56a0-96ae-4bc2-bccf-0c34000252f0/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/410e5b10-f38e-4723-97cd-114a9bc6df7d?api-version=2022-02-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 01 Jun 2021 03:17:08 GMT + - Tue, 02 Aug 2022 05:50:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/e48c56a0-96ae-4bc2-bccf-0c34000252f0/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/410e5b10-f38e-4723-97cd-114a9bc6df7d?api-version=2022-02-01 pragma: - no-cache server: @@ -692,7 +696,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -710,21 +714,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/e48c56a0-96ae-4bc2-bccf-0c34000252f0/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/410e5b10-f38e-4723-97cd-114a9bc6df7d?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/e48c56a0-96ae-4bc2-bccf-0c34000252f0/SignalR/signalr000002","name":"e48c56a0-96ae-4bc2-bccf-0c34000252f0","status":"Running","startTime":"2021-06-01T03:17:08.4088609Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/410e5b10-f38e-4723-97cd-114a9bc6df7d","name":"410e5b10-f38e-4723-97cd-114a9bc6df7d","status":"Running","startTime":"2022-08-02T05:50:43.0015223Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:17:38 GMT + - Tue, 02 Aug 2022 05:51:13 GMT expires: - '-1' pragma: @@ -740,7 +744,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -758,21 +762,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/e48c56a0-96ae-4bc2-bccf-0c34000252f0/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/410e5b10-f38e-4723-97cd-114a9bc6df7d?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/e48c56a0-96ae-4bc2-bccf-0c34000252f0/SignalR/signalr000002","name":"e48c56a0-96ae-4bc2-bccf-0c34000252f0","status":"Running","startTime":"2021-06-01T03:17:08.4088609Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/410e5b10-f38e-4723-97cd-114a9bc6df7d","name":"410e5b10-f38e-4723-97cd-114a9bc6df7d","status":"Running","startTime":"2022-08-02T05:50:43.0015223Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:18:08 GMT + - Tue, 02 Aug 2022 05:51:43 GMT expires: - '-1' pragma: @@ -788,7 +792,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -806,21 +810,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/e48c56a0-96ae-4bc2-bccf-0c34000252f0/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/410e5b10-f38e-4723-97cd-114a9bc6df7d?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/e48c56a0-96ae-4bc2-bccf-0c34000252f0/SignalR/signalr000002","name":"e48c56a0-96ae-4bc2-bccf-0c34000252f0","status":"Succeeded","startTime":"2021-06-01T03:17:08.4088609Z","endTime":"2021-06-01T03:18:21.7312438Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/410e5b10-f38e-4723-97cd-114a9bc6df7d","name":"410e5b10-f38e-4723-97cd-114a9bc6df7d","status":"Succeeded","startTime":"2022-08-02T05:50:43.0015223Z","endTime":"2022-08-02T05:51:56.6470625Z"}' headers: cache-control: - no-cache content-length: - - '379' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:18:38 GMT + - Tue, 02 Aug 2022 05:52:14 GMT expires: - '-1' pragma: @@ -836,7 +840,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -854,21 +858,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.42.64.131","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:17:08.2833948Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.88","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:50:42.8657954Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1334' + - '1371' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:18:39 GMT + - Tue, 02 Aug 2022 05:52:14 GMT expires: - '-1' pragma: @@ -884,7 +888,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -902,21 +906,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.42.64.131","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:17:08.2833948Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.88","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:50:42.8657954Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1334' + - '1371' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:18:41 GMT + - Tue, 02 Aug 2022 05:52:16 GMT expires: - '-1' pragma: @@ -932,13 +936,14 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: body: '{"properties": {"cors": {"allowedOrigins": ["*", "http://example3.com", - "http://example4.com"]}}}' + "http://example4.com"]}, "publicNetworkAccess": "Enabled", "disableLocalAuth": + false, "disableAadAuth": false}}' headers: Accept: - application/json @@ -949,31 +954,31 @@ interactions: Connection: - keep-alive Content-Length: - - '97' + - '183' Content-Type: - application/json ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3e725dfc-d2f2-4f77-8e03-b306c38cced4/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/c66945c0-7e69-4d65-ba9d-6503e73fe933?api-version=2022-02-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 01 Jun 2021 03:18:43 GMT + - Tue, 02 Aug 2022 05:52:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/3e725dfc-d2f2-4f77-8e03-b306c38cced4/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/c66945c0-7e69-4d65-ba9d-6503e73fe933?api-version=2022-02-01 pragma: - no-cache server: @@ -985,7 +990,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -1003,21 +1008,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3e725dfc-d2f2-4f77-8e03-b306c38cced4/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/c66945c0-7e69-4d65-ba9d-6503e73fe933?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3e725dfc-d2f2-4f77-8e03-b306c38cced4/SignalR/signalr000002","name":"3e725dfc-d2f2-4f77-8e03-b306c38cced4","status":"Running","startTime":"2021-06-01T03:18:43.0429766Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/c66945c0-7e69-4d65-ba9d-6503e73fe933","name":"c66945c0-7e69-4d65-ba9d-6503e73fe933","status":"Running","startTime":"2022-08-02T05:52:18.1647519Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:19:13 GMT + - Tue, 02 Aug 2022 05:52:48 GMT expires: - '-1' pragma: @@ -1033,7 +1038,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1051,21 +1056,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3e725dfc-d2f2-4f77-8e03-b306c38cced4/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/c66945c0-7e69-4d65-ba9d-6503e73fe933?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3e725dfc-d2f2-4f77-8e03-b306c38cced4/SignalR/signalr000002","name":"3e725dfc-d2f2-4f77-8e03-b306c38cced4","status":"Running","startTime":"2021-06-01T03:18:43.0429766Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/c66945c0-7e69-4d65-ba9d-6503e73fe933","name":"c66945c0-7e69-4d65-ba9d-6503e73fe933","status":"Running","startTime":"2022-08-02T05:52:18.1647519Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:19:43 GMT + - Tue, 02 Aug 2022 05:53:18 GMT expires: - '-1' pragma: @@ -1081,7 +1086,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1099,21 +1104,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3e725dfc-d2f2-4f77-8e03-b306c38cced4/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/c66945c0-7e69-4d65-ba9d-6503e73fe933?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3e725dfc-d2f2-4f77-8e03-b306c38cced4/SignalR/signalr000002","name":"3e725dfc-d2f2-4f77-8e03-b306c38cced4","status":"Succeeded","startTime":"2021-06-01T03:18:43.0429766Z","endTime":"2021-06-01T03:19:56.8596027Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/c66945c0-7e69-4d65-ba9d-6503e73fe933","name":"c66945c0-7e69-4d65-ba9d-6503e73fe933","status":"Succeeded","startTime":"2022-08-02T05:52:18.1647519Z","endTime":"2022-08-02T05:53:31.547355Z"}' headers: cache-control: - no-cache content-length: - - '379' + - '354' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:20:13 GMT + - Tue, 02 Aug 2022 05:53:49 GMT expires: - '-1' pragma: @@ -1129,7 +1134,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1147,21 +1152,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.42.64.131","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["*","http://example3.com","http://example4.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:18:42.9155843Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.88","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*","http://example3.com","http://example4.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:52:18.029617Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1378' + - '1414' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:20:14 GMT + - Tue, 02 Aug 2022 05:53:50 GMT expires: - '-1' pragma: @@ -1177,12 +1182,14 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: - body: '{"properties": {"cors": {"allowedOrigins": ["http://example3.com", "http://example4.com"]}}}' + body: '{"properties": {"cors": {"allowedOrigins": ["http://example3.com", "http://example4.com"]}, + "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "disableAadAuth": + false}}' headers: Accept: - application/json @@ -1193,31 +1200,31 @@ interactions: Connection: - keep-alive Content-Length: - - '92' + - '178' Content-Type: - application/json ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/977220e7-75a7-495d-9877-8f623768df27/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9011842a-b527-4d62-9664-3efe0921e8cc?api-version=2022-02-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 01 Jun 2021 03:20:17 GMT + - Tue, 02 Aug 2022 05:53:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/977220e7-75a7-495d-9877-8f623768df27/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/9011842a-b527-4d62-9664-3efe0921e8cc?api-version=2022-02-01 pragma: - no-cache server: @@ -1229,7 +1236,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1198' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -1247,21 +1254,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/977220e7-75a7-495d-9877-8f623768df27/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9011842a-b527-4d62-9664-3efe0921e8cc?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/977220e7-75a7-495d-9877-8f623768df27/SignalR/signalr000002","name":"977220e7-75a7-495d-9877-8f623768df27","status":"Running","startTime":"2021-06-01T03:20:17.6351208Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9011842a-b527-4d62-9664-3efe0921e8cc","name":"9011842a-b527-4d62-9664-3efe0921e8cc","status":"Running","startTime":"2022-08-02T05:53:51.8186016Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:20:47 GMT + - Tue, 02 Aug 2022 05:54:21 GMT expires: - '-1' pragma: @@ -1277,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1295,21 +1302,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/977220e7-75a7-495d-9877-8f623768df27/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9011842a-b527-4d62-9664-3efe0921e8cc?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/977220e7-75a7-495d-9877-8f623768df27/SignalR/signalr000002","name":"977220e7-75a7-495d-9877-8f623768df27","status":"Running","startTime":"2021-06-01T03:20:17.6351208Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9011842a-b527-4d62-9664-3efe0921e8cc","name":"9011842a-b527-4d62-9664-3efe0921e8cc","status":"Running","startTime":"2022-08-02T05:53:51.8186016Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:21:17 GMT + - Tue, 02 Aug 2022 05:54:52 GMT expires: - '-1' pragma: @@ -1325,7 +1332,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1343,21 +1350,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/977220e7-75a7-495d-9877-8f623768df27/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9011842a-b527-4d62-9664-3efe0921e8cc?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/977220e7-75a7-495d-9877-8f623768df27/SignalR/signalr000002","name":"977220e7-75a7-495d-9877-8f623768df27","status":"Succeeded","startTime":"2021-06-01T03:20:17.6351208Z","endTime":"2021-06-01T03:21:30.4777475Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9011842a-b527-4d62-9664-3efe0921e8cc","name":"9011842a-b527-4d62-9664-3efe0921e8cc","status":"Succeeded","startTime":"2022-08-02T05:53:51.8186016Z","endTime":"2022-08-02T05:55:05.7688455Z"}' headers: cache-control: - no-cache content-length: - - '379' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:21:48 GMT + - Tue, 02 Aug 2022 05:55:23 GMT expires: - '-1' pragma: @@ -1373,7 +1380,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1391,21 +1398,21 @@ interactions: ParameterSetName: - -n -g --allowed-origins User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.42.64.131","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example3.com","http://example4.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T03:13:51.5838137Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T03:20:16.8266404Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Free_F1","tier":"Free","size":"F1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.88","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Serverless","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example3.com","http://example4.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T05:47:24.5963547Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T05:53:50.9739947Z"},"location":"eastus","tags":{"key":"value2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1374' + - '1411' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:21:48 GMT + - Tue, 02 Aug 2022 05:55:23 GMT expires: - '-1' pragma: @@ -1421,7 +1428,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1441,21 +1448,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002/listKeys?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002/listKeys?api-version=2022-02-01 response: body: - string: '{"primaryKey":"7YANA8KYrwC6pEoDVkuO/3ICRPkqqUFK7ThWWMs2psE=","secondaryKey":"gnNSYJ4U3CYGCVhANuNFVNvAURbiigqxATV0XbkGEb8=","primaryConnectionString":"Endpoint=https://signalr000002.service.signalr.net;AccessKey=7YANA8KYrwC6pEoDVkuO/3ICRPkqqUFK7ThWWMs2psE=;Version=1.0;","secondaryConnectionString":"Endpoint=https://signalr000002.service.signalr.net;AccessKey=gnNSYJ4U3CYGCVhANuNFVNvAURbiigqxATV0XbkGEb8=;Version=1.0;"}' + string: '{"primaryKey":"CFhpukX9GetFacfOmhNTy4AjIZQpHzeqQdSEdfWOjOM=","secondaryKey":"+bi1UaScQimZz9bxYVhrmWaHeJyILzQMeQdNRDiQ/pA=","primaryConnectionString":"Endpoint=https://signalr000002.service.signalr.net;AccessKey=CFhpukX9GetFacfOmhNTy4AjIZQpHzeqQdSEdfWOjOM=;Version=1.0;","secondaryConnectionString":"Endpoint=https://signalr000002.service.signalr.net;AccessKey=+bi1UaScQimZz9bxYVhrmWaHeJyILzQMeQdNRDiQ/pA=;Version=1.0;"}' headers: cache-control: - no-cache content-length: - - '425' + - '419' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:21:50 GMT + - Tue, 02 Aug 2022 05:55:26 GMT expires: - '-1' pragma: @@ -1473,7 +1480,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1495,27 +1502,27 @@ interactions: ParameterSetName: - -n -g --key-type User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002/regenerateKey?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002/regenerateKey?api-version=2022-02-01 response: body: - string: '{"primaryKey":"7YANA8KYrwC6pEoDVkuO/3ICRPkqqUFK7ThWWMs2psE=","secondaryKey":"Sl4v04O241K31TFRTWb2HPVPfTTDKRY34UHNRq1/Dkg=","primaryConnectionString":"Endpoint=https://signalr000002.service.signalr.net;AccessKey=7YANA8KYrwC6pEoDVkuO/3ICRPkqqUFK7ThWWMs2psE=;Version=1.0;","secondaryConnectionString":"Endpoint=https://signalr000002.service.signalr.net;AccessKey=Sl4v04O241K31TFRTWb2HPVPfTTDKRY34UHNRq1/Dkg=;Version=1.0;"}' + string: '{"primaryKey":"CFhpukX9GetFacfOmhNTy4AjIZQpHzeqQdSEdfWOjOM=","secondaryKey":"nYVn4bIpEOtQ6GHWf7YYcNCkKZyFsB54Q/Q7FUioOsQ=","primaryConnectionString":"Endpoint=https://signalr000002.service.signalr.net;AccessKey=CFhpukX9GetFacfOmhNTy4AjIZQpHzeqQdSEdfWOjOM=;Version=1.0;","secondaryConnectionString":"Endpoint=https://signalr000002.service.signalr.net;AccessKey=nYVn4bIpEOtQ6GHWf7YYcNCkKZyFsB54Q/Q7FUioOsQ=;Version=1.0;"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/a83d7100-1a55-4099-8029-dd1fa47177da/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/70b4cb03-d711-4d55-ab2f-c3b6569d3c3a?api-version=2022-02-01 cache-control: - no-cache content-length: - - '425' + - '419' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 03:21:52 GMT + - Tue, 02 Aug 2022 05:55:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/a83d7100-1a55-4099-8029-dd1fa47177da/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/70b4cb03-d711-4d55-ab2f-c3b6569d3c3a?api-version=2022-02-01 pragma: - no-cache server: @@ -1527,7 +1534,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_identity.yaml b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_identity.yaml index 4152635aea8..601b2093434 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_identity.yaml @@ -2,7 +2,8 @@ interactions: - request: body: '{"location": "eastus", "sku": {"name": "Standard_S1", "capacity": 1}, "properties": {"features": [{"flag": "ServiceMode", "value": "Default"}, {"flag": "EnableMessagingLogs", - "value": "False"}], "cors": {}, "networkACLs": {"defaultAction": "Allow"}}}' + "value": "False"}], "cors": {}, "networkACLs": {"defaultAction": "Allow"}, "publicNetworkAccess": + "Enabled", "disableLocalAuth": false, "disableAadAuth": false}}' headers: Accept: - application/json @@ -13,33 +14,33 @@ interactions: Connection: - keep-alive Content-Length: - - '250' + - '336' Content-Type: - application/json ParameterSetName: - -n -g --sku --unit-count -l User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Creating","externalIP":null,"hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0-preview","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T06:47:52.7098234Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T06:47:52.7098234Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Creating","externalIP":null,"hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0-preview","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:05:52.1052013Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:05:52.1052013Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/ec0cde04-d5fd-43df-9720-76c3cb004969?api-version=2022-02-01 cache-control: - no-cache content-length: - - '1325' + - '1362' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:47:56 GMT + - Tue, 02 Aug 2022 06:05:56 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/ec0cde04-d5fd-43df-9720-76c3cb004969?api-version=2022-02-01 pragma: - no-cache server: @@ -49,9 +50,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 201 message: Created @@ -69,21 +70,21 @@ interactions: ParameterSetName: - -n -g --sku --unit-count -l User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/ec0cde04-d5fd-43df-9720-76c3cb004969?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002","name":"07ad958f-61f2-4156-b150-897b1f0d25f1","status":"Running","startTime":"2021-06-01T06:47:54.5193184Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/ec0cde04-d5fd-43df-9720-76c3cb004969","name":"ec0cde04-d5fd-43df-9720-76c3cb004969","status":"Running","startTime":"2022-08-02T06:05:55.4354176Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:48:26 GMT + - Tue, 02 Aug 2022 06:06:26 GMT expires: - '-1' pragma: @@ -99,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -117,21 +118,21 @@ interactions: ParameterSetName: - -n -g --sku --unit-count -l User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/ec0cde04-d5fd-43df-9720-76c3cb004969?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002","name":"07ad958f-61f2-4156-b150-897b1f0d25f1","status":"Running","startTime":"2021-06-01T06:47:54.5193184Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/ec0cde04-d5fd-43df-9720-76c3cb004969","name":"ec0cde04-d5fd-43df-9720-76c3cb004969","status":"Running","startTime":"2022-08-02T06:05:55.4354176Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:48:57 GMT + - Tue, 02 Aug 2022 06:06:57 GMT expires: - '-1' pragma: @@ -147,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -165,21 +166,21 @@ interactions: ParameterSetName: - -n -g --sku --unit-count -l User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/ec0cde04-d5fd-43df-9720-76c3cb004969?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002","name":"07ad958f-61f2-4156-b150-897b1f0d25f1","status":"Running","startTime":"2021-06-01T06:47:54.5193184Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/ec0cde04-d5fd-43df-9720-76c3cb004969","name":"ec0cde04-d5fd-43df-9720-76c3cb004969","status":"Running","startTime":"2022-08-02T06:05:55.4354176Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:49:27 GMT + - Tue, 02 Aug 2022 06:07:27 GMT expires: - '-1' pragma: @@ -195,7 +196,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -213,21 +214,21 @@ interactions: ParameterSetName: - -n -g --sku --unit-count -l User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/ec0cde04-d5fd-43df-9720-76c3cb004969?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/07ad958f-61f2-4156-b150-897b1f0d25f1/SignalR/signalr000002","name":"07ad958f-61f2-4156-b150-897b1f0d25f1","status":"Succeeded","startTime":"2021-06-01T06:47:54.5193184Z","endTime":"2021-06-01T06:49:33.4406952Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/ec0cde04-d5fd-43df-9720-76c3cb004969","name":"ec0cde04-d5fd-43df-9720-76c3cb004969","status":"Succeeded","startTime":"2022-08-02T06:05:55.4354176Z","endTime":"2022-08-02T06:07:29.2514006Z"}' headers: cache-control: - no-cache content-length: - - '379' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:49:57 GMT + - Tue, 02 Aug 2022 06:07:59 GMT expires: - '-1' pragma: @@ -243,7 +244,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -261,21 +262,21 @@ interactions: ParameterSetName: - -n -g --sku --unit-count -l User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"40.71.15.8","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T06:47:52.7098234Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T06:47:52.7098234Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:05:52.1052013Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:05:52.1052013Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1326' + - '1365' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:49:58 GMT + - Tue, 02 Aug 2022 06:07:59 GMT expires: - '-1' pragma: @@ -291,12 +292,13 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned"}}' + body: '{"identity": {"type": "SystemAssigned"}, "properties": {"publicNetworkAccess": + "Enabled", "disableLocalAuth": false, "disableAadAuth": false}}' headers: Accept: - application/json @@ -307,31 +309,31 @@ interactions: Connection: - keep-alive Content-Length: - - '40' + - '142' Content-Type: - application/json ParameterSetName: - -n -g --identity User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3b277a59-4b22-41dc-983c-ef4aae57adfb/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/51a87f0b-9c04-44cf-b86a-65aeffe18c5b?api-version=2022-02-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 01 Jun 2021 06:50:05 GMT + - Tue, 02 Aug 2022 06:08:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/3b277a59-4b22-41dc-983c-ef4aae57adfb/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/51a87f0b-9c04-44cf-b86a-65aeffe18c5b?api-version=2022-02-01 pragma: - no-cache server: @@ -341,9 +343,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -361,21 +363,21 @@ interactions: ParameterSetName: - -n -g --identity User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3b277a59-4b22-41dc-983c-ef4aae57adfb/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/51a87f0b-9c04-44cf-b86a-65aeffe18c5b?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3b277a59-4b22-41dc-983c-ef4aae57adfb/SignalR/signalr000002","name":"3b277a59-4b22-41dc-983c-ef4aae57adfb","status":"Running","startTime":"2021-06-01T06:50:05.0245694Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/51a87f0b-9c04-44cf-b86a-65aeffe18c5b","name":"51a87f0b-9c04-44cf-b86a-65aeffe18c5b","status":"Running","startTime":"2022-08-02T06:08:04.5066911Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:50:37 GMT + - Tue, 02 Aug 2022 06:08:35 GMT expires: - '-1' pragma: @@ -391,7 +393,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -409,21 +411,21 @@ interactions: ParameterSetName: - -n -g --identity User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3b277a59-4b22-41dc-983c-ef4aae57adfb/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/51a87f0b-9c04-44cf-b86a-65aeffe18c5b?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3b277a59-4b22-41dc-983c-ef4aae57adfb/SignalR/signalr000002","name":"3b277a59-4b22-41dc-983c-ef4aae57adfb","status":"Running","startTime":"2021-06-01T06:50:05.0245694Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/51a87f0b-9c04-44cf-b86a-65aeffe18c5b","name":"51a87f0b-9c04-44cf-b86a-65aeffe18c5b","status":"Running","startTime":"2022-08-02T06:08:04.5066911Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:51:07 GMT + - Tue, 02 Aug 2022 06:09:06 GMT expires: - '-1' pragma: @@ -439,7 +441,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -457,21 +459,21 @@ interactions: ParameterSetName: - -n -g --identity User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3b277a59-4b22-41dc-983c-ef4aae57adfb/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/51a87f0b-9c04-44cf-b86a-65aeffe18c5b?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/3b277a59-4b22-41dc-983c-ef4aae57adfb/SignalR/signalr000002","name":"3b277a59-4b22-41dc-983c-ef4aae57adfb","status":"Succeeded","startTime":"2021-06-01T06:50:05.0245694Z","endTime":"2021-06-01T06:51:23.0782111Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/51a87f0b-9c04-44cf-b86a-65aeffe18c5b","name":"51a87f0b-9c04-44cf-b86a-65aeffe18c5b","status":"Succeeded","startTime":"2022-08-02T06:08:04.5066911Z","endTime":"2022-08-02T06:09:17.9167205Z"}' headers: cache-control: - no-cache content-length: - - '379' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:51:37 GMT + - Tue, 02 Aug 2022 06:09:36 GMT expires: - '-1' pragma: @@ -487,7 +489,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -505,21 +507,21 @@ interactions: ParameterSetName: - -n -g --identity User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"40.71.15.8","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","identity":{"type":"SystemAssigned","principalId":"fadcc6bc-8018-4ee9-baa1-455211af3daf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T06:47:52.7098234Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T06:50:04.2052269Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","identity":{"type":"SystemAssigned","principalId":"f0eca0cf-979f-4cbb-b63b-0b8b24eaecad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:05:52.1052013Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:08:03.666321Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1466' + - '1504' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:51:37 GMT + - Tue, 02 Aug 2022 06:09:36 GMT expires: - '-1' pragma: @@ -535,7 +537,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -553,21 +555,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"40.71.15.8","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","identity":{"type":"SystemAssigned","principalId":"fadcc6bc-8018-4ee9-baa1-455211af3daf","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T06:47:52.7098234Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T06:50:04.2052269Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","identity":{"type":"SystemAssigned","principalId":"f0eca0cf-979f-4cbb-b63b-0b8b24eaecad","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:05:52.1052013Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:08:03.666321Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1466' + - '1504' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:51:39 GMT + - Tue, 02 Aug 2022 06:09:39 GMT expires: - '-1' pragma: @@ -576,19 +578,16 @@ interactions: - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}}' + body: '{"identity": {"type": "None"}, "properties": {"publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "disableAadAuth": false}}' headers: Accept: - application/json @@ -599,31 +598,31 @@ interactions: Connection: - keep-alive Content-Length: - - '30' + - '132' Content-Type: - application/json ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d42d1431-56aa-46d1-9b43-4639c6d5cefd/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/7612d0f7-1eef-476b-bbb6-95ba9fad17ff?api-version=2022-02-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 01 Jun 2021 06:51:53 GMT + - Tue, 02 Aug 2022 06:09:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/d42d1431-56aa-46d1-9b43-4639c6d5cefd/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/7612d0f7-1eef-476b-bbb6-95ba9fad17ff?api-version=2022-02-01 pragma: - no-cache server: @@ -633,9 +632,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -653,21 +652,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d42d1431-56aa-46d1-9b43-4639c6d5cefd/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/7612d0f7-1eef-476b-bbb6-95ba9fad17ff?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d42d1431-56aa-46d1-9b43-4639c6d5cefd/SignalR/signalr000002","name":"d42d1431-56aa-46d1-9b43-4639c6d5cefd","status":"Running","startTime":"2021-06-01T06:51:53.7123088Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/7612d0f7-1eef-476b-bbb6-95ba9fad17ff","name":"7612d0f7-1eef-476b-bbb6-95ba9fad17ff","status":"Running","startTime":"2022-08-02T06:09:43.7290683Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:52:23 GMT + - Tue, 02 Aug 2022 06:10:14 GMT expires: - '-1' pragma: @@ -683,7 +682,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -701,21 +700,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d42d1431-56aa-46d1-9b43-4639c6d5cefd/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/7612d0f7-1eef-476b-bbb6-95ba9fad17ff?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d42d1431-56aa-46d1-9b43-4639c6d5cefd/SignalR/signalr000002","name":"d42d1431-56aa-46d1-9b43-4639c6d5cefd","status":"Running","startTime":"2021-06-01T06:51:53.7123088Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/7612d0f7-1eef-476b-bbb6-95ba9fad17ff","name":"7612d0f7-1eef-476b-bbb6-95ba9fad17ff","status":"Running","startTime":"2022-08-02T06:09:43.7290683Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:52:54 GMT + - Tue, 02 Aug 2022 06:10:44 GMT expires: - '-1' pragma: @@ -731,7 +730,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -749,21 +748,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d42d1431-56aa-46d1-9b43-4639c6d5cefd/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/7612d0f7-1eef-476b-bbb6-95ba9fad17ff?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d42d1431-56aa-46d1-9b43-4639c6d5cefd/SignalR/signalr000002","name":"d42d1431-56aa-46d1-9b43-4639c6d5cefd","status":"Succeeded","startTime":"2021-06-01T06:51:53.7123088Z","endTime":"2021-06-01T06:53:09.7923787Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/7612d0f7-1eef-476b-bbb6-95ba9fad17ff","name":"7612d0f7-1eef-476b-bbb6-95ba9fad17ff","status":"Succeeded","startTime":"2022-08-02T06:09:43.7290683Z","endTime":"2022-08-02T06:10:57.2379614Z"}' headers: cache-control: - no-cache content-length: - - '379' + - '355' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:53:24 GMT + - Tue, 02 Aug 2022 06:11:15 GMT expires: - '-1' pragma: @@ -779,7 +778,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -797,21 +796,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"40.71.15.8","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-06-01T06:47:52.7098234Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-01T06:51:52.8986377Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:05:52.1052013Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:09:42.7298237Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1326' + - '1365' content-type: - application/json; charset=utf-8 date: - - Tue, 01 Jun 2021 06:53:25 GMT + - Tue, 02 Aug 2022 06:11:16 GMT expires: - '-1' pragma: @@ -827,7 +826,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_private_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_private_endpoint.yaml index 88f16855e0e..3ab7549d890 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_private_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_private_endpoint.yaml @@ -2,7 +2,8 @@ interactions: - request: body: '{"location": "eastus", "sku": {"name": "Standard_S1", "capacity": 1}, "properties": {"features": [{"flag": "ServiceMode", "value": "Default"}, {"flag": "EnableMessagingLogs", - "value": "False"}], "cors": {}, "networkACLs": {"defaultAction": "Allow"}}}' + "value": "False"}], "cors": {}, "networkACLs": {"defaultAction": "Allow"}, "publicNetworkAccess": + "Enabled", "disableLocalAuth": false, "disableAadAuth": false}}' headers: Accept: - application/json @@ -13,33 +14,33 @@ interactions: Connection: - keep-alive Content-Length: - - '250' + - '336' Content-Type: - application/json ParameterSetName: - -n -g --sku -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Creating","externalIP":null,"hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0-preview","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:28:28.5060824Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:28:28.5060824Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Creating","externalIP":null,"hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0-preview","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:12:09.6443843Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:12:09.6443843Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b681cd88-edc6-4594-bbff-a5c1560c7701?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/8408d442-ad1f-41c7-9679-51a6592efb76?api-version=2022-02-01 cache-control: - no-cache content-length: - - '1226' + - '1362' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:28:32 GMT + - Tue, 02 Aug 2022 06:12:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/b681cd88-edc6-4594-bbff-a5c1560c7701?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/8408d442-ad1f-41c7-9679-51a6592efb76?api-version=2022-02-01 pragma: - no-cache server: @@ -49,9 +50,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 201 message: Created @@ -69,12 +70,12 @@ interactions: ParameterSetName: - -n -g --sku -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b681cd88-edc6-4594-bbff-a5c1560c7701?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/8408d442-ad1f-41c7-9679-51a6592efb76?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b681cd88-edc6-4594-bbff-a5c1560c7701","name":"b681cd88-edc6-4594-bbff-a5c1560c7701","status":"Running","startTime":"2022-05-12T19:28:30.5050148Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/8408d442-ad1f-41c7-9679-51a6592efb76","name":"8408d442-ad1f-41c7-9679-51a6592efb76","status":"Running","startTime":"2022-08-02T06:12:11.9835601Z"}' headers: cache-control: - no-cache @@ -83,7 +84,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:29:02 GMT + - Tue, 02 Aug 2022 06:12:43 GMT expires: - '-1' pragma: @@ -99,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -117,12 +118,12 @@ interactions: ParameterSetName: - -n -g --sku -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b681cd88-edc6-4594-bbff-a5c1560c7701?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/8408d442-ad1f-41c7-9679-51a6592efb76?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b681cd88-edc6-4594-bbff-a5c1560c7701","name":"b681cd88-edc6-4594-bbff-a5c1560c7701","status":"Running","startTime":"2022-05-12T19:28:30.5050148Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/8408d442-ad1f-41c7-9679-51a6592efb76","name":"8408d442-ad1f-41c7-9679-51a6592efb76","status":"Running","startTime":"2022-08-02T06:12:11.9835601Z"}' headers: cache-control: - no-cache @@ -131,7 +132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:29:32 GMT + - Tue, 02 Aug 2022 06:13:13 GMT expires: - '-1' pragma: @@ -147,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -165,12 +166,12 @@ interactions: ParameterSetName: - -n -g --sku -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b681cd88-edc6-4594-bbff-a5c1560c7701?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/8408d442-ad1f-41c7-9679-51a6592efb76?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/b681cd88-edc6-4594-bbff-a5c1560c7701","name":"b681cd88-edc6-4594-bbff-a5c1560c7701","status":"Succeeded","startTime":"2022-05-12T19:28:30.5050148Z","endTime":"2022-05-12T19:29:52.2684476Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/8408d442-ad1f-41c7-9679-51a6592efb76","name":"8408d442-ad1f-41c7-9679-51a6592efb76","status":"Succeeded","startTime":"2022-08-02T06:12:11.9835601Z","endTime":"2022-08-02T06:13:25.2923181Z"}' headers: cache-control: - no-cache @@ -179,7 +180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:03 GMT + - Tue, 02 Aug 2022 06:13:44 GMT expires: - '-1' pragma: @@ -195,7 +196,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -213,21 +214,21 @@ interactions: ParameterSetName: - -n -g --sku -l User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.90","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:28:28.5060824Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:28:28.5060824Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:12:09.6443843Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:12:09.6443843Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1229' + - '1365' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:03 GMT + - Tue, 02 Aug 2022 06:13:44 GMT expires: - '-1' pragma: @@ -243,14 +244,14 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "subnet1", "properties": - {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": "Enabled", + {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": "Disabled", "privateLinkServiceNetworkPolicies": "Enabled"}}]}}' headers: Accept: @@ -262,30 +263,30 @@ interactions: Connection: - keep-alive Content-Length: - - '298' + - '299' Content-Type: - application/json ParameterSetName: - -g -n -l --subnet-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n - \ \"etag\": \"W/\\\"1fa7b301-c8ef-4b07-956d-c66e2f027318\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8b404b86-c595-4ddf-bd61-0dda0fa77ae7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9965cde9-9669-4172-a9b8-f82ec9e924c6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"cd56aca2-f7f1-48e3-95a9-aa449f3c3da9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"1fa7b301-c8ef-4b07-956d-c66e2f027318\\\"\",\r\n + \ \"etag\": \"W/\\\"8b404b86-c595-4ddf-bd61-0dda0fa77ae7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" @@ -293,15 +294,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ea5bffe7-9da2-4888-b17b-afa2d4c6787d?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/48bfccbe-4e6a-47d1-b05a-b158705587c9?api-version=2021-08-01 cache-control: - no-cache content-length: - - '1285' + - '1286' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:10 GMT + - Tue, 02 Aug 2022 06:13:51 GMT expires: - '-1' pragma: @@ -314,9 +315,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f925c5e4-6b55-40db-99d5-7b36b01509fa + - 59c5ca51-de9e-4847-b45c-a9865fba3e6f x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -334,9 +335,9 @@ interactions: ParameterSetName: - -g -n -l --subnet-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ea5bffe7-9da2-4888-b17b-afa2d4c6787d?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/48bfccbe-4e6a-47d1-b05a-b158705587c9?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -348,7 +349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:14 GMT + - Tue, 02 Aug 2022 06:13:55 GMT expires: - '-1' pragma: @@ -365,7 +366,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a152ec1-9ccd-462b-b9c2-4b15c0684898 + - 65f36af5-ccf2-4906-b07d-c1b1f3fc2be4 status: code: 200 message: OK @@ -383,24 +384,24 @@ interactions: ParameterSetName: - -g -n -l --subnet-name User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"vnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1\",\r\n - \ \"etag\": \"W/\\\"9b2b2a9e-9e4a-450b-b72b-bfdb9c3b4578\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4328cb17-7b19-4155-8bb6-66f5a73dcc48\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9965cde9-9669-4172-a9b8-f82ec9e924c6\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"cd56aca2-f7f1-48e3-95a9-aa449f3c3da9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"9b2b2a9e-9e4a-450b-b72b-bfdb9c3b4578\\\"\",\r\n + \ \"etag\": \"W/\\\"4328cb17-7b19-4155-8bb6-66f5a73dcc48\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}" @@ -408,13 +409,13 @@ interactions: cache-control: - no-cache content-length: - - '1287' + - '1288' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:15 GMT + - Tue, 02 Aug 2022 06:13:57 GMT etag: - - W/"9b2b2a9e-9e4a-450b-b72b-bfdb9c3b4578" + - W/"4328cb17-7b19-4155-8bb6-66f5a73dcc48" expires: - '-1' pragma: @@ -431,7 +432,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2dcea2e-ebb8-4e97-bbec-76ebc55ec2c5 + - b9d652d8-be22-4747-86bb-5df262f29202 status: code: 200 message: OK @@ -449,28 +450,28 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"9b2b2a9e-9e4a-450b-b72b-bfdb9c3b4578\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"4328cb17-7b19-4155-8bb6-66f5a73dcc48\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: cache-control: - no-cache content-length: - - '527' + - '528' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:17 GMT + - Tue, 02 Aug 2022 06:13:57 GMT etag: - - W/"9b2b2a9e-9e4a-450b-b72b-bfdb9c3b4578" + - W/"4328cb17-7b19-4155-8bb6-66f5a73dcc48" expires: - '-1' pragma: @@ -487,7 +488,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 283ce921-31b2-4c00-9640-90b8556d13d4 + - 8c84f706-4940-4b79-8b90-fa859a5bcffa status: code: 200 message: OK @@ -512,28 +513,28 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"5df8191a-e28c-4497-a3b2-cbdf25ed840c\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n + \ \"etag\": \"W/\\\"dc967f7f-d820-4d89-b271-0ee57933c752\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/774d7699-4308-41fb-a915-5075e377f5fd?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ecf6338c-783b-43e4-843b-f97a4ef34372?api-version=2021-08-01 cache-control: - no-cache content-length: - - '527' + - '528' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:18 GMT + - Tue, 02 Aug 2022 06:13:58 GMT expires: - '-1' pragma: @@ -550,9 +551,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5f28ffa1-0375-4170-8a8e-71b076c30809 + - 5f08a86c-a792-465c-8bab-1652df795080 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 200 message: OK @@ -570,9 +571,9 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/774d7699-4308-41fb-a915-5075e377f5fd?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ecf6338c-783b-43e4-843b-f97a4ef34372?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -584,7 +585,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:21 GMT + - Tue, 02 Aug 2022 06:14:29 GMT expires: - '-1' pragma: @@ -601,7 +602,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7e1237bd-149f-4fc8-9483-99d27b742997 + - e2b41eae-4afc-417b-9d0d-d1f231a7467c status: code: 200 message: OK @@ -619,13 +620,13 @@ interactions: ParameterSetName: - --name --resource-group --vnet-name --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\",\r\n - \ \"etag\": \"W/\\\"4f1b9fd7-ce3c-4e7a-8961-fa22985cb61f\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"dc967f7f-d820-4d89-b271-0ee57933c752\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -638,9 +639,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:22 GMT + - Tue, 02 Aug 2022 06:14:29 GMT etag: - - W/"4f1b9fd7-ce3c-4e7a-8961-fa22985cb61f" + - W/"dc967f7f-d820-4d89-b271-0ee57933c752" expires: - '-1' pragma: @@ -657,7 +658,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12914c98-be0b-4d43-a909-719a44519564 + - 057722db-f427-44a9-a485-dcf10a15bc9a status: code: 200 message: OK @@ -684,19 +685,19 @@ interactions: - --resource-group --vnet-name --subnet --name --private-connection-resource-id --group-ids --connection-name --location --manual-request User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"private_endpoint1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1\",\r\n - \ \"etag\": \"W/\\\"7a1abbc2-b9b6-425b-873e-e291f51c574d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"ef7b1da9-8f12-4833-9d4d-948db2a02959\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"6ab763ff-a103-40b3-a38e-14232304580f\",\r\n \"privateLinkServiceConnections\": + \"0a1bb966-8895-4542-a18c-9e97a68f82aa\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"private_endpoint_connection1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1/manualPrivateLinkServiceConnections/private_endpoint_connection1\",\r\n - \ \"etag\": \"W/\\\"7a1abbc2-b9b6-425b-873e-e291f51c574d\\\"\",\r\n + \ \"etag\": \"W/\\\"ef7b1da9-8f12-4833-9d4d-948db2a02959\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002\",\r\n \ \"groupIds\": [\r\n \"signalr\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -706,13 +707,13 @@ interactions: \ }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/private_endpoint1.nic.3de196a9-f471-4a76-bc54-f5ea789a1ec1\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/private_endpoint1.nic.ee0edb50-6d5b-412a-8475-282d2cf8b583\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c392e906-c445-4316-9332-e1fae9274369?api-version=2021-08-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/67ff7f44-3956-418d-93ca-5abe2a937a35?api-version=2021-08-01 cache-control: - no-cache content-length: @@ -720,7 +721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:28 GMT + - Tue, 02 Aug 2022 06:14:35 GMT expires: - '-1' pragma: @@ -733,9 +734,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - acf62069-c03a-4fc4-8f86-665c8d6111c1 + - cf0072e1-ab8c-4049-8ce1-6690bbb8847b x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -754,9 +755,9 @@ interactions: - --resource-group --vnet-name --subnet --name --private-connection-resource-id --group-ids --connection-name --location --manual-request User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c392e906-c445-4316-9332-e1fae9274369?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/67ff7f44-3956-418d-93ca-5abe2a937a35?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -768,7 +769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:39 GMT + - Tue, 02 Aug 2022 06:14:45 GMT expires: - '-1' pragma: @@ -785,7 +786,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 078abc22-b188-428e-b9c4-096b878dac4a + - 73edcbb4-0b58-4012-a43f-50cc47079f98 status: code: 200 message: OK @@ -804,9 +805,9 @@ interactions: - --resource-group --vnet-name --subnet --name --private-connection-resource-id --group-ids --connection-name --location --manual-request User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c392e906-c445-4316-9332-e1fae9274369?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/67ff7f44-3956-418d-93ca-5abe2a937a35?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -818,7 +819,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:30:49 GMT + - Tue, 02 Aug 2022 06:14:56 GMT expires: - '-1' pragma: @@ -835,7 +836,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 36400717-573f-4219-9902-1a68aaab5ee7 + - ab11409e-0a03-4609-b602-dcd503478705 status: code: 200 message: OK @@ -854,9 +855,9 @@ interactions: - --resource-group --vnet-name --subnet --name --private-connection-resource-id --group-ids --connection-name --location --manual-request User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c392e906-c445-4316-9332-e1fae9274369?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/67ff7f44-3956-418d-93ca-5abe2a937a35?api-version=2021-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -868,7 +869,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:10 GMT + - Tue, 02 Aug 2022 06:15:16 GMT expires: - '-1' pragma: @@ -885,7 +886,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f2899f7-451a-4800-8154-c9d2dbb614e2 + - 48389ae4-696e-4f0e-ab8d-561a46bdd613 status: code: 200 message: OK @@ -904,19 +905,19 @@ interactions: - --resource-group --vnet-name --subnet --name --private-connection-resource-id --group-ids --connection-name --location --manual-request User-Agent: - - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-azure-mgmt-network/20.0.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1?api-version=2021-08-01 response: body: string: "{\r\n \"name\": \"private_endpoint1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1\",\r\n - \ \"etag\": \"W/\\\"251832b6-313e-4e3e-b726-46af4a8bab64\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"499d53e3-8d29-47e0-a0ba-ba0d4d3c9042\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"6ab763ff-a103-40b3-a38e-14232304580f\",\r\n \"privateLinkServiceConnections\": + \"0a1bb966-8895-4542-a18c-9e97a68f82aa\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"private_endpoint_connection1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1/manualPrivateLinkServiceConnections/private_endpoint_connection1\",\r\n - \ \"etag\": \"W/\\\"251832b6-313e-4e3e-b726-46af4a8bab64\\\"\",\r\n + \ \"etag\": \"W/\\\"499d53e3-8d29-47e0-a0ba-ba0d4d3c9042\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002\",\r\n \ \"groupIds\": [\r\n \"signalr\"\r\n ],\r\n \"privateLinkServiceConnectionState\": @@ -926,7 +927,7 @@ interactions: \ }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/private_endpoint1.nic.3de196a9-f471-4a76-bc54-f5ea789a1ec1\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/private_endpoint1.nic.ee0edb50-6d5b-412a-8475-282d2cf8b583\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: cache-control: @@ -936,9 +937,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:10 GMT + - Tue, 02 Aug 2022 06:15:16 GMT etag: - - W/"251832b6-313e-4e3e-b726-46af4a8bab64" + - W/"499d53e3-8d29-47e0-a0ba-ba0d4d3c9042" expires: - '-1' pragma: @@ -955,7 +956,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb77de90-528f-4dd4-8f8e-df3f91573773 + - b83bd7e2-8f2b-4e34-add6-ede7debb3377 status: code: 200 message: OK @@ -973,7 +974,7 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateLinkResources?api-version=2020-05-01 response: @@ -987,7 +988,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:12 GMT + - Tue, 02 Aug 2022 06:15:18 GMT expires: - '-1' pragma: @@ -1003,7 +1004,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1021,21 +1022,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.90","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Pending","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[{"name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]}},"kind":"SignalR","systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:28:28.5060824Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:28:28.5060824Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"groupIds":["signalr"],"privateLinkServiceConnectionState":{"status":"Pending","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[{"name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:12:09.6443843Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:12:09.6443843Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '2046' + - '2205' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:15 GMT + - Tue, 02 Aug 2022 06:15:21 GMT expires: - '-1' pragma: @@ -1051,7 +1052,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1069,12 +1070,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Pending","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Pending","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: cache-control: - no-cache @@ -1083,7 +1084,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:17 GMT + - Tue, 02 Aug 2022 06:15:22 GMT expires: - '-1' pragma: @@ -1099,7 +1100,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1117,12 +1118,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002?api-version=2020-05-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.90","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Pending","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[{"name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]}},"kind":"SignalR","location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Pending","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[{"name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]}},"kind":"SignalR","location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache @@ -1131,7 +1132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:19 GMT + - Tue, 02 Aug 2022 06:15:24 GMT expires: - '-1' pragma: @@ -1147,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1165,12 +1166,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Pending","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Pending","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: cache-control: - no-cache @@ -1179,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:21 GMT + - Tue, 02 Aug 2022 06:15:25 GMT expires: - '-1' pragma: @@ -1195,7 +1196,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1203,8 +1204,8 @@ interactions: body: '{"properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"}, "privateLinkServiceConnectionState": {"status": "Approved", "description": null, - "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1", - "name": "signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1", "type": "Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02", + "name": "signalr000002.09817b2d-c676-40f9-b688-2f8719934a02", "type": "Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: Accept: - '*/*' @@ -1221,15 +1222,15 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/23500c1c-b43d-4347-bde4-2832e340c239?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/2911486c-7123-4ff8-95ef-8d77ca793d65?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1237,7 +1238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:23 GMT + - Tue, 02 Aug 2022 06:15:28 GMT expires: - '-1' pragma: @@ -1255,7 +1256,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1197' x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1273,12 +1274,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: cache-control: - no-cache @@ -1287,7 +1288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:36 GMT + - Tue, 02 Aug 2022 06:15:38 GMT expires: - '-1' pragma: @@ -1303,7 +1304,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1321,12 +1322,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: cache-control: - no-cache @@ -1335,7 +1336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:47 GMT + - Tue, 02 Aug 2022 06:15:50 GMT expires: - '-1' pragma: @@ -1351,7 +1352,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1369,12 +1370,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: cache-control: - no-cache @@ -1383,7 +1384,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:31:59 GMT + - Tue, 02 Aug 2022 06:16:01 GMT expires: - '-1' pragma: @@ -1399,7 +1400,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1417,12 +1418,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Approved","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: cache-control: - no-cache @@ -1431,7 +1432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:32:02 GMT + - Tue, 02 Aug 2022 06:16:03 GMT expires: - '-1' pragma: @@ -1447,7 +1448,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1455,8 +1456,8 @@ interactions: body: '{"properties": {"provisioningState": "Succeeded", "privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"}, "privateLinkServiceConnectionState": {"status": "Rejected", "description": null, - "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1", - "name": "signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1", "type": "Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + "actionsRequired": "None"}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02", + "name": "signalr000002.09817b2d-c676-40f9-b688-2f8719934a02", "type": "Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: Accept: - '*/*' @@ -1473,15 +1474,15 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/a2dee9b8-ca0c-40f5-9263-8b80273ca128?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/d121675c-3ebf-484d-b1e9-bffe5ff14736?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -1489,7 +1490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:32:04 GMT + - Tue, 02 Aug 2022 06:16:06 GMT expires: - '-1' pragma: @@ -1507,7 +1508,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1197' x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1525,12 +1526,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: cache-control: - no-cache @@ -1539,7 +1540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:32:16 GMT + - Tue, 02 Aug 2022 06:16:17 GMT expires: - '-1' pragma: @@ -1555,7 +1556,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1573,12 +1574,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: cache-control: - no-cache @@ -1587,7 +1588,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:32:27 GMT + - Tue, 02 Aug 2022 06:16:29 GMT expires: - '-1' pragma: @@ -1603,7 +1604,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1621,12 +1622,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: - string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' + string: '{"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}' headers: cache-control: - no-cache @@ -1635,7 +1636,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:32:40 GMT + - Tue, 02 Aug 2022 06:16:40 GMT expires: - '-1' pragma: @@ -1651,7 +1652,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1669,21 +1670,21 @@ interactions: ParameterSetName: - --public-network -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.90","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:32:03.4496731Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:32:03.4496731Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[{"name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]}},"kind":"SignalR","systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:28:28.5060824Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:28:28.5060824Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:16:05.0158696Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:16:05.0158696Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"groupIds":["signalr"],"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[{"name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:12:09.6443843Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:12:09.6443843Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '2285' + - '2438' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:32:42 GMT + - Tue, 02 Aug 2022 06:16:42 GMT expires: - '-1' pragma: @@ -1699,14 +1700,16 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: body: '{"properties": {"networkACLs": {"defaultAction": "Allow", "publicNetwork": {"allow": ["RESTAPI"], "deny": []}, "privateEndpoints": [{"allow": ["ServerConnection", - "ClientConnection", "RESTAPI", "Trace"], "name": "signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1"}]}}}' + "ClientConnection", "RESTAPI", "Trace"], "name": "signalr000002.09817b2d-c676-40f9-b688-2f8719934a02"}]}, + "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "disableAadAuth": + false}}' headers: Accept: - application/json @@ -1717,31 +1720,31 @@ interactions: Connection: - keep-alive Content-Length: - - '269' + - '355' Content-Type: - application/json ParameterSetName: - --public-network -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/bbbd9601-ccfb-451e-acd7-f7d326f8076e?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9fb60c4c-44c2-4a31-a392-7df7e518f8ec?api-version=2022-02-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 12 May 2022 19:32:43 GMT + - Tue, 02 Aug 2022 06:16:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/bbbd9601-ccfb-451e-acd7-f7d326f8076e?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/9fb60c4c-44c2-4a31-a392-7df7e518f8ec?api-version=2022-02-01 pragma: - no-cache server: @@ -1751,9 +1754,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -1771,12 +1774,12 @@ interactions: ParameterSetName: - --public-network -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/bbbd9601-ccfb-451e-acd7-f7d326f8076e?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9fb60c4c-44c2-4a31-a392-7df7e518f8ec?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/bbbd9601-ccfb-451e-acd7-f7d326f8076e","name":"bbbd9601-ccfb-451e-acd7-f7d326f8076e","status":"Running","startTime":"2022-05-12T19:32:43.6852602Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9fb60c4c-44c2-4a31-a392-7df7e518f8ec","name":"9fb60c4c-44c2-4a31-a392-7df7e518f8ec","status":"Running","startTime":"2022-08-02T06:16:43.9370425Z"}' headers: cache-control: - no-cache @@ -1785,7 +1788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:33:14 GMT + - Tue, 02 Aug 2022 06:17:14 GMT expires: - '-1' pragma: @@ -1801,7 +1804,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1819,12 +1822,12 @@ interactions: ParameterSetName: - --public-network -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/bbbd9601-ccfb-451e-acd7-f7d326f8076e?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9fb60c4c-44c2-4a31-a392-7df7e518f8ec?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/bbbd9601-ccfb-451e-acd7-f7d326f8076e","name":"bbbd9601-ccfb-451e-acd7-f7d326f8076e","status":"Running","startTime":"2022-05-12T19:32:43.6852602Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9fb60c4c-44c2-4a31-a392-7df7e518f8ec","name":"9fb60c4c-44c2-4a31-a392-7df7e518f8ec","status":"Running","startTime":"2022-08-02T06:16:43.9370425Z"}' headers: cache-control: - no-cache @@ -1833,7 +1836,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:33:45 GMT + - Tue, 02 Aug 2022 06:17:44 GMT expires: - '-1' pragma: @@ -1849,7 +1852,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1867,12 +1870,12 @@ interactions: ParameterSetName: - --public-network -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/bbbd9601-ccfb-451e-acd7-f7d326f8076e?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9fb60c4c-44c2-4a31-a392-7df7e518f8ec?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/bbbd9601-ccfb-451e-acd7-f7d326f8076e","name":"bbbd9601-ccfb-451e-acd7-f7d326f8076e","status":"Succeeded","startTime":"2022-05-12T19:32:43.6852602Z","endTime":"2022-05-12T19:33:56.6303127Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/9fb60c4c-44c2-4a31-a392-7df7e518f8ec","name":"9fb60c4c-44c2-4a31-a392-7df7e518f8ec","status":"Succeeded","startTime":"2022-08-02T06:16:43.9370425Z","endTime":"2022-08-02T06:17:57.0882351Z"}' headers: cache-control: - no-cache @@ -1881,7 +1884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:34:15 GMT + - Tue, 02 Aug 2022 06:18:14 GMT expires: - '-1' pragma: @@ -1897,7 +1900,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1915,21 +1918,21 @@ interactions: ParameterSetName: - --public-network -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.90","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:32:03.4496731Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:32:03.4496731Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[{"name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]}},"kind":"SignalR","systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:28:28.5060824Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:32:43.5532795Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:16:05.0158696Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:16:05.0158696Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"groupIds":["signalr"],"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[{"name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:12:09.6443843Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:16:43.79704Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '2237' + - '2388' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:34:15 GMT + - Tue, 02 Aug 2022 06:18:15 GMT expires: - '-1' pragma: @@ -1945,7 +1948,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -1963,21 +1966,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.90","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:32:03.4496731Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:32:03.4496731Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[{"name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]}},"kind":"SignalR","systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:28:28.5060824Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:32:43.5532795Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:16:05.0158696Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:16:05.0158696Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"groupIds":["signalr"],"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[{"name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:12:09.6443843Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:16:43.79704Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '2237' + - '2388' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:34:17 GMT + - Tue, 02 Aug 2022 06:18:17 GMT expires: - '-1' pragma: @@ -1993,7 +1996,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -2011,21 +2014,21 @@ interactions: ParameterSetName: - --connection-name -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.90","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:32:03.4496731Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:32:03.4496731Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[{"name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]}},"kind":"SignalR","systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:28:28.5060824Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:32:43.5532795Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:16:05.0158696Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:16:05.0158696Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"groupIds":["signalr"],"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[{"name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null}]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:12:09.6443843Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:16:43.79704Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '2237' + - '2388' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:34:19 GMT + - Tue, 02 Aug 2022 06:18:19 GMT expires: - '-1' pragma: @@ -2041,14 +2044,16 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: body: '{"properties": {"networkACLs": {"defaultAction": "Allow", "publicNetwork": {"allow": ["RESTAPI"], "deny": []}, "privateEndpoints": [{"allow": ["RESTAPI"], - "deny": [], "name": "signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1"}]}}}' + "deny": [], "name": "signalr000002.09817b2d-c676-40f9-b688-2f8719934a02"}]}, + "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "disableAadAuth": + false}}' headers: Accept: - application/json @@ -2059,31 +2064,31 @@ interactions: Connection: - keep-alive Content-Length: - - '232' + - '318' Content-Type: - application/json ParameterSetName: - --connection-name -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/959299d9-bad0-4a66-8196-b863c763a371?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/819da962-c526-438b-b5f4-832c0e35c2c3?api-version=2022-02-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 12 May 2022 19:34:20 GMT + - Tue, 02 Aug 2022 06:18:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/959299d9-bad0-4a66-8196-b863c763a371?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/819da962-c526-438b-b5f4-832c0e35c2c3?api-version=2022-02-01 pragma: - no-cache server: @@ -2093,9 +2098,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -2113,12 +2118,12 @@ interactions: ParameterSetName: - --connection-name -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/959299d9-bad0-4a66-8196-b863c763a371?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/819da962-c526-438b-b5f4-832c0e35c2c3?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/959299d9-bad0-4a66-8196-b863c763a371","name":"959299d9-bad0-4a66-8196-b863c763a371","status":"Running","startTime":"2022-05-12T19:34:21.3700352Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/819da962-c526-438b-b5f4-832c0e35c2c3","name":"819da962-c526-438b-b5f4-832c0e35c2c3","status":"Running","startTime":"2022-08-02T06:18:20.3731889Z"}' headers: cache-control: - no-cache @@ -2127,7 +2132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:34:51 GMT + - Tue, 02 Aug 2022 06:18:50 GMT expires: - '-1' pragma: @@ -2143,7 +2148,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -2161,12 +2166,12 @@ interactions: ParameterSetName: - --connection-name -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/959299d9-bad0-4a66-8196-b863c763a371?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/819da962-c526-438b-b5f4-832c0e35c2c3?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/959299d9-bad0-4a66-8196-b863c763a371","name":"959299d9-bad0-4a66-8196-b863c763a371","status":"Running","startTime":"2022-05-12T19:34:21.3700352Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/819da962-c526-438b-b5f4-832c0e35c2c3","name":"819da962-c526-438b-b5f4-832c0e35c2c3","status":"Running","startTime":"2022-08-02T06:18:20.3731889Z"}' headers: cache-control: - no-cache @@ -2175,7 +2180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:35:22 GMT + - Tue, 02 Aug 2022 06:19:20 GMT expires: - '-1' pragma: @@ -2191,7 +2196,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -2209,12 +2214,12 @@ interactions: ParameterSetName: - --connection-name -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/959299d9-bad0-4a66-8196-b863c763a371?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/819da962-c526-438b-b5f4-832c0e35c2c3?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/959299d9-bad0-4a66-8196-b863c763a371","name":"959299d9-bad0-4a66-8196-b863c763a371","status":"Succeeded","startTime":"2022-05-12T19:34:21.3700352Z","endTime":"2022-05-12T19:35:34.1703739Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/819da962-c526-438b-b5f4-832c0e35c2c3","name":"819da962-c526-438b-b5f4-832c0e35c2c3","status":"Succeeded","startTime":"2022-08-02T06:18:20.3731889Z","endTime":"2022-08-02T06:19:34.0489033Z"}' headers: cache-control: - no-cache @@ -2223,7 +2228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:35:52 GMT + - Tue, 02 Aug 2022 06:19:51 GMT expires: - '-1' pragma: @@ -2239,7 +2244,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -2257,21 +2262,21 @@ interactions: ParameterSetName: - --connection-name -n -g --allow User-Agent: - - AZURECLI/2.36.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.90","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:32:03.4496731Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:32:03.4496731Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[{"name":"signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1","allow":["RESTAPI"],"deny":[]}]}},"kind":"SignalR","systemData":{"createdBy":"ethanyang@microsoft.com","createdByType":"User","createdAt":"2022-05-12T19:28:28.5060824Z","lastModifiedBy":"ethanyang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-12T19:34:21.2168421Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[{"systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:16:05.0158696Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:16:05.0158696Z"},"properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/private_endpoint1"},"groupIds":["signalr"],"privateLinkServiceConnectionState":{"status":"Rejected","description":null,"actionsRequired":"None"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","type":"Microsoft.SignalRService/SignalR/privateEndpointConnections"}],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[{"name":"signalr000002.09817b2d-c676-40f9-b688-2f8719934a02","allow":["RESTAPI"],"deny":[]}]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:12:09.6443843Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:18:20.211157Z"},"location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '2189' + - '2341' content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:35:53 GMT + - Tue, 02 Aug 2022 06:19:51 GMT expires: - '-1' pragma: @@ -2287,7 +2292,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -2307,25 +2312,25 @@ interactions: ParameterSetName: - --id -y User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.6ffd5240-e26e-4ac9-a77b-40e80cdf11f1?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002/privateEndpointConnections/signalr000002.09817b2d-c676-40f9-b688-2f8719934a02?api-version=2020-05-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/8194193d-9808-49a5-8586-9ab7250bdc38?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/dbb33ed3-b094-4086-a55f-a11e0218ad77?api-version=2020-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 12 May 2022 19:35:55 GMT + - Tue, 02 Aug 2022 06:19:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/8194193d-9808-49a5-8586-9ab7250bdc38?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/dbb33ed3-b094-4086-a55f-a11e0218ad77?api-version=2020-05-01 pragma: - no-cache server: @@ -2337,7 +2342,7 @@ interactions: x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -2355,12 +2360,12 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.10 (Windows-10-10.0.19044-SP0) AZURECLI/2.36.0 + - python/3.10.5 (Windows-10-10.0.22621-SP0) AZURECLI/2.38.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalr/signalr000002?api-version=2020-05-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.62.133.90","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[]}},"kind":"SignalR","location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Default","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"cors":{"allowedOrigins":["*"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Allow","publicNetwork":{"allow":["RESTAPI"],"deny":[]},"privateEndpoints":[]}},"kind":"SignalR","location":"eastus","tags":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache @@ -2369,7 +2374,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 12 May 2022 19:36:27 GMT + - Tue, 02 Aug 2022 06:20:26 GMT expires: - '-1' pragma: @@ -2385,7 +2390,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - e58ba2c2-e450-4347-b66c-f3ad6f1de555 + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_upstream.yaml b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_upstream.yaml index c2bffae088c..8c25da97063 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_upstream.yaml +++ b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/recordings/test_signalr_upstream.yaml @@ -4,7 +4,8 @@ interactions: "capacity": 1}, "properties": {"features": [{"flag": "ServiceMode", "value": "Classic"}, {"flag": "EnableMessagingLogs", "value": "False"}], "cors": {"allowedOrigins": ["http://example1.com", "http://example2.com"]}, "networkACLs": {"defaultAction": - "Deny"}}}' + "Deny"}, "publicNetworkAccess": "Enabled", "disableLocalAuth": false, "disableAadAuth": + false}}' headers: Accept: - application/json @@ -15,33 +16,33 @@ interactions: Connection: - keep-alive Content-Length: - - '339' + - '425' Content-Type: - application/json ParameterSetName: - -n -g --sku --unit-count -l --tags --service-mode --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Creating","externalIP":null,"hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0-preview","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-05-31T05:25:47.744845Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-31T05:25:47.744845Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Creating","externalIP":null,"hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0-preview","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:21:44.4701914Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:21:44.4701914Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/1e5fbfc5-0567-4927-a03e-aa2027bc2c4c/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/83aee3c7-29ca-4114-8800-3695e80f01d9?api-version=2022-02-01 cache-control: - no-cache content-length: - - '1373' + - '1412' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:25:54 GMT + - Tue, 02 Aug 2022 06:21:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/1e5fbfc5-0567-4927-a03e-aa2027bc2c4c/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/83aee3c7-29ca-4114-8800-3695e80f01d9?api-version=2022-02-01 pragma: - no-cache server: @@ -51,9 +52,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 201 message: Created @@ -71,21 +72,21 @@ interactions: ParameterSetName: - -n -g --sku --unit-count -l --tags --service-mode --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/1e5fbfc5-0567-4927-a03e-aa2027bc2c4c/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/83aee3c7-29ca-4114-8800-3695e80f01d9?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/1e5fbfc5-0567-4927-a03e-aa2027bc2c4c/SignalR/signalr000002","name":"1e5fbfc5-0567-4927-a03e-aa2027bc2c4c","status":"Running","startTime":"2021-05-31T05:25:51.9994118Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/83aee3c7-29ca-4114-8800-3695e80f01d9","name":"83aee3c7-29ca-4114-8800-3695e80f01d9","status":"Running","startTime":"2022-08-02T06:21:46.8066573Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:26:24 GMT + - Tue, 02 Aug 2022 06:22:18 GMT expires: - '-1' pragma: @@ -101,7 +102,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -119,21 +120,21 @@ interactions: ParameterSetName: - -n -g --sku --unit-count -l --tags --service-mode --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/1e5fbfc5-0567-4927-a03e-aa2027bc2c4c/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/83aee3c7-29ca-4114-8800-3695e80f01d9?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/1e5fbfc5-0567-4927-a03e-aa2027bc2c4c/SignalR/signalr000002","name":"1e5fbfc5-0567-4927-a03e-aa2027bc2c4c","status":"Running","startTime":"2021-05-31T05:25:51.9994118Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/83aee3c7-29ca-4114-8800-3695e80f01d9","name":"83aee3c7-29ca-4114-8800-3695e80f01d9","status":"Running","startTime":"2022-08-02T06:21:46.8066573Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:26:54 GMT + - Tue, 02 Aug 2022 06:22:49 GMT expires: - '-1' pragma: @@ -149,7 +150,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -167,21 +168,21 @@ interactions: ParameterSetName: - -n -g --sku --unit-count -l --tags --service-mode --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/1e5fbfc5-0567-4927-a03e-aa2027bc2c4c/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/83aee3c7-29ca-4114-8800-3695e80f01d9?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/1e5fbfc5-0567-4927-a03e-aa2027bc2c4c/SignalR/signalr000002","name":"1e5fbfc5-0567-4927-a03e-aa2027bc2c4c","status":"Succeeded","startTime":"2021-05-31T05:25:51.9994118Z","endTime":"2021-05-31T05:27:06.465494Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/83aee3c7-29ca-4114-8800-3695e80f01d9","name":"83aee3c7-29ca-4114-8800-3695e80f01d9","status":"Running","startTime":"2022-08-02T06:21:46.8066573Z"}' headers: cache-control: - no-cache content-length: - - '378' + - '312' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:27:24 GMT + - Tue, 02 Aug 2022 06:23:19 GMT expires: - '-1' pragma: @@ -197,7 +198,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -215,21 +216,21 @@ interactions: ParameterSetName: - -n -g --sku --unit-count -l --tags --service-mode --allowed-origins --default-action User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/83aee3c7-29ca-4114-8800-3695e80f01d9?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"40.71.15.8","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-05-31T05:25:47.744845Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-31T05:25:47.744845Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/83aee3c7-29ca-4114-8800-3695e80f01d9","name":"83aee3c7-29ca-4114-8800-3695e80f01d9","status":"Succeeded","startTime":"2022-08-02T06:21:46.8066573Z","endTime":"2022-08-02T06:23:20.4045793Z"}' headers: cache-control: - no-cache content-length: - - '1374' + - '355' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:27:25 GMT + - Tue, 02 Aug 2022 06:23:50 GMT expires: - '-1' pragma: @@ -245,14 +246,63 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - signalr create + Connection: + - keep-alive + ParameterSetName: + - -n -g --sku --unit-count -l --tags --service-mode --allowed-origins --default-action + User-Agent: + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 + response: + body: + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":null},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:21:44.4701914Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:21:44.4701914Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + headers: + cache-control: + - no-cache + content-length: + - '1415' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Aug 2022 06:23:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Kestrel + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-rp-server-mvid: + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: body: '{"properties": {"upstream": {"templates": [{"hubPattern": "chat", "eventPattern": "connected", "categoryPattern": "connections", "urlTemplate": "http://host1.com"}, - {"categoryPattern": "messages", "urlTemplate": "http://host2.com"}]}}}' + {"categoryPattern": "messages", "urlTemplate": "http://host2.com"}]}, "publicNetworkAccess": + "Enabled", "disableLocalAuth": false, "disableAadAuth": false}}' headers: Accept: - application/json @@ -263,31 +313,31 @@ interactions: Connection: - keep-alive Content-Length: - - '235' + - '321' Content-Type: - application/json ParameterSetName: - -n -g --template --template User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d3fd0139-bf6c-45e3-9332-cfd130b8c0fc/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/65209860-369d-43e8-9332-28c61114fc40?api-version=2022-02-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 31 May 2021 05:27:29 GMT + - Tue, 02 Aug 2022 06:23:53 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/d3fd0139-bf6c-45e3-9332-cfd130b8c0fc/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/65209860-369d-43e8-9332-28c61114fc40?api-version=2022-02-01 pragma: - no-cache server: @@ -299,7 +349,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -317,21 +367,21 @@ interactions: ParameterSetName: - -n -g --template --template User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d3fd0139-bf6c-45e3-9332-cfd130b8c0fc/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/65209860-369d-43e8-9332-28c61114fc40?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d3fd0139-bf6c-45e3-9332-cfd130b8c0fc/SignalR/signalr000002","name":"d3fd0139-bf6c-45e3-9332-cfd130b8c0fc","status":"Running","startTime":"2021-05-31T05:27:29.1750435Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/65209860-369d-43e8-9332-28c61114fc40","name":"65209860-369d-43e8-9332-28c61114fc40","status":"Running","startTime":"2022-08-02T06:23:53.8697737Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:27:59 GMT + - Tue, 02 Aug 2022 06:24:24 GMT expires: - '-1' pragma: @@ -340,14 +390,10 @@ interactions: - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -365,21 +411,21 @@ interactions: ParameterSetName: - -n -g --template --template User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d3fd0139-bf6c-45e3-9332-cfd130b8c0fc/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/65209860-369d-43e8-9332-28c61114fc40?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d3fd0139-bf6c-45e3-9332-cfd130b8c0fc/SignalR/signalr000002","name":"d3fd0139-bf6c-45e3-9332-cfd130b8c0fc","status":"Running","startTime":"2021-05-31T05:27:29.1750435Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/65209860-369d-43e8-9332-28c61114fc40","name":"65209860-369d-43e8-9332-28c61114fc40","status":"Running","startTime":"2022-08-02T06:23:53.8697737Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:28:29 GMT + - Tue, 02 Aug 2022 06:24:54 GMT expires: - '-1' pragma: @@ -388,14 +434,10 @@ interactions: - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -413,21 +455,21 @@ interactions: ParameterSetName: - -n -g --template --template User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d3fd0139-bf6c-45e3-9332-cfd130b8c0fc/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/65209860-369d-43e8-9332-28c61114fc40?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/d3fd0139-bf6c-45e3-9332-cfd130b8c0fc/SignalR/signalr000002","name":"d3fd0139-bf6c-45e3-9332-cfd130b8c0fc","status":"Succeeded","startTime":"2021-05-31T05:27:29.1750435Z","endTime":"2021-05-31T05:28:46.3092345Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/65209860-369d-43e8-9332-28c61114fc40","name":"65209860-369d-43e8-9332-28c61114fc40","status":"Succeeded","startTime":"2022-08-02T06:23:53.8697737Z","endTime":"2022-08-02T06:25:06.9073293Z"}' headers: cache-control: - no-cache content-length: - - '379' + - '355' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:28:59 GMT + - Tue, 02 Aug 2022 06:25:25 GMT expires: - '-1' pragma: @@ -436,14 +478,10 @@ interactions: - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -461,21 +499,21 @@ interactions: ParameterSetName: - -n -g --template --template User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"40.71.15.8","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":[{"hubPattern":"chat","eventPattern":"connected","categoryPattern":"connections","urlTemplate":"http://host1.com","auth":null},{"hubPattern":"*","eventPattern":"*","categoryPattern":"messages","urlTemplate":"http://host2.com","auth":null}]},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-05-31T05:25:47.744845Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-31T05:27:28.3109975Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":[{"hubPattern":"chat","eventPattern":"connected","categoryPattern":"connections","urlTemplate":"http://host1.com","auth":null},{"hubPattern":"*","eventPattern":"*","categoryPattern":"messages","urlTemplate":"http://host2.com","auth":null}]},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:21:44.4701914Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:23:52.9829536Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1610' + - '1650' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:29:00 GMT + - Tue, 02 Aug 2022 06:25:25 GMT expires: - '-1' pragma: @@ -484,14 +522,10 @@ interactions: - Kestrel strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -509,21 +543,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"40.71.15.8","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":[{"hubPattern":"chat","eventPattern":"connected","categoryPattern":"connections","urlTemplate":"http://host1.com","auth":null},{"hubPattern":"*","eventPattern":"*","categoryPattern":"messages","urlTemplate":"http://host2.com","auth":null}]},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-05-31T05:25:47.744845Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-31T05:27:28.3109975Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":[{"hubPattern":"chat","eventPattern":"connected","categoryPattern":"connections","urlTemplate":"http://host1.com","auth":null},{"hubPattern":"*","eventPattern":"*","categoryPattern":"messages","urlTemplate":"http://host2.com","auth":null}]},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:21:44.4701914Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:23:52.9829536Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1610' + - '1650' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:29:01 GMT + - Tue, 02 Aug 2022 06:25:27 GMT expires: - '-1' pragma: @@ -539,12 +573,13 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK - request: - body: '{"properties": {"upstream": {"templates": []}}}' + body: '{"properties": {"upstream": {"templates": []}, "publicNetworkAccess": "Enabled", + "disableLocalAuth": false, "disableAadAuth": false}}' headers: Accept: - application/json @@ -555,31 +590,31 @@ interactions: Connection: - keep-alive Content-Length: - - '47' + - '133' Content-Type: - application/json ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/488a9ab9-e6a4-4d7d-a92d-04f5c1076779/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/824f5d48-dc41-4fcc-b02c-95e43464aab9?api-version=2022-02-01 cache-control: - no-cache content-length: - '0' date: - - Mon, 31 May 2021 05:29:04 GMT + - Tue, 02 Aug 2022 06:25:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationResults/488a9ab9-e6a4-4d7d-a92d-04f5c1076779/SignalR/signalr000002?api-version=2021-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationResults/824f5d48-dc41-4fcc-b02c-95e43464aab9?api-version=2022-02-01 pragma: - no-cache server: @@ -591,7 +626,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 202 message: Accepted @@ -609,21 +644,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/488a9ab9-e6a4-4d7d-a92d-04f5c1076779/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/824f5d48-dc41-4fcc-b02c-95e43464aab9?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/488a9ab9-e6a4-4d7d-a92d-04f5c1076779/SignalR/signalr000002","name":"488a9ab9-e6a4-4d7d-a92d-04f5c1076779","status":"Running","startTime":"2021-05-31T05:29:04.7314747Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/824f5d48-dc41-4fcc-b02c-95e43464aab9","name":"824f5d48-dc41-4fcc-b02c-95e43464aab9","status":"Running","startTime":"2022-08-02T06:25:30.1315388Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:29:34 GMT + - Tue, 02 Aug 2022 06:26:00 GMT expires: - '-1' pragma: @@ -639,7 +674,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -657,21 +692,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/488a9ab9-e6a4-4d7d-a92d-04f5c1076779/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/824f5d48-dc41-4fcc-b02c-95e43464aab9?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/488a9ab9-e6a4-4d7d-a92d-04f5c1076779/SignalR/signalr000002","name":"488a9ab9-e6a4-4d7d-a92d-04f5c1076779","status":"Running","startTime":"2021-05-31T05:29:04.7314747Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/824f5d48-dc41-4fcc-b02c-95e43464aab9","name":"824f5d48-dc41-4fcc-b02c-95e43464aab9","status":"Running","startTime":"2022-08-02T06:25:30.1315388Z"}' headers: cache-control: - no-cache content-length: - - '336' + - '312' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:30:04 GMT + - Tue, 02 Aug 2022 06:26:31 GMT expires: - '-1' pragma: @@ -687,7 +722,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -705,21 +740,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/488a9ab9-e6a4-4d7d-a92d-04f5c1076779/SignalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/824f5d48-dc41-4fcc-b02c-95e43464aab9?api-version=2022-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/locations/eastus/operationStatuses/488a9ab9-e6a4-4d7d-a92d-04f5c1076779/SignalR/signalr000002","name":"488a9ab9-e6a4-4d7d-a92d-04f5c1076779","status":"Succeeded","startTime":"2021-05-31T05:29:04.7314747Z","endTime":"2021-05-31T05:30:19.621697Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002/operationStatuses/824f5d48-dc41-4fcc-b02c-95e43464aab9","name":"824f5d48-dc41-4fcc-b02c-95e43464aab9","status":"Succeeded","startTime":"2022-08-02T06:25:30.1315388Z","endTime":"2022-08-02T06:26:43.5102236Z"}' headers: cache-control: - no-cache content-length: - - '378' + - '355' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:30:35 GMT + - Tue, 02 Aug 2022 06:27:01 GMT expires: - '-1' pragma: @@ -735,7 +770,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK @@ -753,21 +788,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.23.0 azsdk-python-mgmt-signalr/1.0.0b2 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.38.0 azsdk-python-mgmt-signalr/1.1.0 Python/3.10.5 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2021-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/signalR/signalr000002?api-version=2022-02-01 response: body: - string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"40.71.15.8","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableConnectivityLogs","value":"False","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}},{"flag":"EnableLiveTrace","value":"False","properties":{}}],"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":[]},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]}},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2021-05-31T05:25:47.744845Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-05-31T05:29:03.8994562Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' + string: '{"sku":{"name":"Standard_S1","tier":"Standard","size":"S1","capacity":1},"properties":{"provisioningState":"Succeeded","externalIP":"20.88.155.11","hostName":"signalr000002.service.signalr.net","publicPort":443,"serverPort":443,"version":"1.0","privateEndpointConnections":[],"sharedPrivateLinkResources":[],"tls":{"clientCertEnabled":false},"hostNamePrefix":"signalr000002","features":[{"flag":"ServiceMode","value":"Classic","properties":{}},{"flag":"EnableMessagingLogs","value":"False","properties":{}}],"liveTraceConfiguration":null,"resourceLogConfiguration":null,"cors":{"allowedOrigins":["http://example1.com","http://example2.com"]},"upstream":{"templates":[]},"networkACLs":{"defaultAction":"Deny","publicNetwork":{"allow":["ServerConnection","ClientConnection","RESTAPI","Trace"],"deny":null},"privateEndpoints":[]},"publicNetworkAccess":"Enabled","disableLocalAuth":false,"disableAadAuth":false},"kind":"SignalR","systemData":{"createdBy":"chenyl@microsoft.com","createdByType":"User","createdAt":"2022-08-02T06:21:44.4701914Z","lastModifiedBy":"chenyl@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-02T06:25:29.2769665Z"},"location":"eastus","tags":{"key":"value"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.SignalRService/SignalR/signalr000002","name":"signalr000002","type":"Microsoft.SignalRService/SignalR"}' headers: cache-control: - no-cache content-length: - - '1373' + - '1413' content-type: - application/json; charset=utf-8 date: - - Mon, 31 May 2021 05:30:35 GMT + - Tue, 02 Aug 2022 06:27:01 GMT expires: - '-1' pragma: @@ -783,7 +818,7 @@ interactions: x-content-type-options: - nosniff x-rp-server-mvid: - - 984a9db1-8dbb-44a5-825f-40facb4f334c + - a240317d-2594-4b08-9f0c-5f370ea616d7 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/test_signalr_commands.py b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/test_signalr_commands.py index 41c3eaf0de8..5b132005fd4 100644 --- a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/test_signalr_commands.py +++ b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/test_signalr_commands.py @@ -57,7 +57,7 @@ def test_signalr_commands(self, resource_group): self.check('sku.capacity', '{unit_count}'), self.check('tags.{}'.format(tags_key), tags_val), self.check('features[0].value', '{service_mode}'), - self.check('features[2].value', '{enable_message_logs_check}'), + self.check('features[1].value', '{enable_message_logs_check}'), self.check('cors.allowedOrigins', allowed_origins), self.exists('hostName'), self.exists('publicPort'), @@ -73,7 +73,7 @@ def test_signalr_commands(self, resource_group): self.check('sku.name', '{sku}'), self.check('sku.capacity', '{unit_count}'), self.check('features[0].value', '{service_mode}'), - self.check('features[2].value', '{enable_message_logs_check}'), + self.check('features[1].value', '{enable_message_logs_check}'), self.check('cors.allowedOrigins', allowed_origins), self.exists('hostName'), self.exists('publicPort'), @@ -90,7 +90,7 @@ def test_signalr_commands(self, resource_group): self.check('[0].sku.name', '{sku}'), self.check('[0].sku.capacity', '{unit_count}'), self.check('[0].features[0].value', '{service_mode}'), - self.check('[0].features[2].value', '{enable_message_logs_check}'), + self.check('[0].features[1].value', '{enable_message_logs_check}'), self.check('[0].cors.allowedOrigins', allowed_origins), self.exists('[0].hostName'), self.exists('[0].publicPort'), @@ -108,7 +108,7 @@ def test_signalr_commands(self, resource_group): self.check('sku.name', '{updated_sku}'), self.check('tags.{}'.format(tags_key), updated_tags_val), self.check('features[0].value', '{update_service_mode}'), - self.check('features[2].value', '{update_enable_message_logs_check}'), + self.check('features[1].value', '{update_enable_message_logs_check}'), self.check('cors.allowedOrigins', allowed_origins), self.exists('hostName'), self.exists('publicPort'), diff --git a/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/test_signalr_custom_domain.py b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/test_signalr_custom_domain.py new file mode 100644 index 00000000000..ed5de85dba7 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/signalr/tests/latest/test_signalr_custom_domain.py @@ -0,0 +1,86 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import time +import unittest +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer, live_only + + +class AzureSignalRServiceCustomDomainScenarioTest(ScenarioTest): + + @live_only() + @ResourceGroupPreparer(random_name_length=20) + def test_signalr_private_endpoint(self, resource_group): + signalr_name = 'signalrcliteststatic' + sku = 'Premium_P1' + unit_count = 1 + location = 'eastus' + + self.kwargs.update({ + 'location': location, + 'signalr_name': signalr_name, + 'sku': sku, + 'unit_count': unit_count, + 'kv_base_uri': 'https://azureclitestkv.vault.azure.net/', + 'kv_group': 'azureclitest', + 'kv_name': 'azureclitestkv', + 'kv_s_name': 'azureclitest', + 'identity': '/subscriptions/9caf2a1e-9c49-49b6-89a2-56bdec7e3f97/resourcegroups/azureclitest/providers/Microsoft.ManagedIdentity/userAssignedIdentities/azureclitestmsi', + 'custom_cert_name': 'test-cert', + 'custom_domain_resource_name': 'test-domain', + 'custom_domain_name': 'clitest.manual-test.dev.signalr.azure.com' + }) + + self.cmd('az signalr create -n {signalr_name} -g {rg} --sku {sku} -l {location}', checks=[ + self.check('name', '{signalr_name}'), + self.check('location', '{location}'), + self.check('provisioningState', 'Succeeded'), + self.check('sku.name', '{sku}') + ]) + + self.cmd('az signalr identity assign --identity {identity} -n {signalr_name} -g {rg}') + + self.cmd('az signalr custom-certificate create -g {rg} --signalr-name {signalr_name} --keyvault-base-uri {kv_base_uri} --keyvault-secret-name {kv_s_name} --name {custom_cert_name}', checks=[ + self.check('provisioningState', 'Succeeded'), + ]) + + cert = self.cmd('az signalr custom-certificate show -g {rg} --signalr-name {signalr_name} --name {custom_cert_name}', checks=[ + self.check('name', '{custom_cert_name}'), + self.check('keyVaultBaseUri', '{kv_base_uri}'), + self.check('keyVaultSecretName', '{kv_s_name}'), + self.check('provisioningState', 'Succeeded'), + ]).get_output_in_json() + + self.kwargs.update({'cert_resource_id': cert['id']}) + + self.cmd('az signalr custom-certificate list -g {rg} --signalr-name {signalr_name}', checks=[ + self.check('[0].name', '{custom_cert_name}'), + self.check('[0].keyVaultBaseUri', '{kv_base_uri}'), + self.check('[0].keyVaultSecretName', '{kv_s_name}'), + self.check('[0].provisioningState', 'Succeeded'), + ]) + + self.cmd('az signalr custom-domain create -g {rg} --signalr-name {signalr_name} --name {custom_domain_resource_name} --domain-name {custom_domain_name} --certificate-resource-id {cert_resource_id}', checks=[ + self.check('domainName', '{custom_domain_name}'), + ]) + + self.cmd('az signalr custom-domain show -g {rg} --signalr-name {signalr_name} --name {custom_domain_resource_name}', checks=[ + self.check('domainName', '{custom_domain_name}'), + self.check('name', '{custom_domain_resource_name}'), + self.check('provisioningState', 'Succeeded'), + ]) + + self.cmd('az signalr custom-domain list -g {rg} --signalr-name {signalr_name}', checks=[ + self.check('[0].domainName', '{custom_domain_name}'), + self.check('[0].name', '{custom_domain_resource_name}'), + self.check('[0].provisioningState', 'Succeeded'), + ]) + + self.cmd('az signalr delete -g {rg} -n {signalr_name}') + + + + + diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index 89c01cbdc52..295c8944988 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -78,7 +78,7 @@ azure-mgmt-servicebus==7.1.0 azure-mgmt-servicefabric==1.0.0 azure-mgmt-servicefabricmanagedclusters==1.0.0 azure-mgmt-servicelinker==1.0.0 -azure-mgmt-signalr==1.0.0b2 +azure-mgmt-signalr==1.1.0 azure-mgmt-sql==4.0.0b2 azure-mgmt-sqlvirtualmachine==1.0.0b3 azure-mgmt-storage==20.0.0 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index 9f8be1ca827..140de98a61e 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -78,7 +78,7 @@ azure-mgmt-servicebus==7.1.0 azure-mgmt-servicefabric==1.0.0 azure-mgmt-servicefabricmanagedclusters==1.0.0 azure-mgmt-servicelinker==1.0.0 -azure-mgmt-signalr==1.0.0b2 +azure-mgmt-signalr==1.1.0 azure-mgmt-sql==4.0.0b2 azure-mgmt-sqlvirtualmachine==1.0.0b3 azure-mgmt-storage==20.0.0 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index da9522a281b..198800f9eca 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -78,7 +78,7 @@ azure-mgmt-servicebus==7.1.0 azure-mgmt-servicefabric==1.0.0 azure-mgmt-servicefabricmanagedclusters==1.0.0 azure-mgmt-servicelinker==1.0.0 -azure-mgmt-signalr==1.0.0b2 +azure-mgmt-signalr==1.1.0 azure-mgmt-sql==4.0.0b2 azure-mgmt-sqlvirtualmachine==1.0.0b3 azure-mgmt-storage==20.0.0 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index 1150c9929f5..39ef171dc4a 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -122,7 +122,7 @@ 'azure-mgmt-servicefabricmanagedclusters~=1.0.0', 'azure-mgmt-servicelinker==1.0.0', 'azure-mgmt-servicefabric~=1.0.0', - 'azure-mgmt-signalr==1.0.0b2', + 'azure-mgmt-signalr==1.1.0', 'azure-mgmt-sqlvirtualmachine==1.0.0b3', 'azure-mgmt-sql==4.0.0b2', 'azure-mgmt-storage~=20.0.0',