diff --git a/src/azure-cli/azure/cli/command_modules/postgresql/_breaking_change.py b/src/azure-cli/azure/cli/command_modules/postgresql/_breaking_change.py index 0ee9742e0e9..948f7c6b896 100644 --- a/src/azure-cli/azure/cli/command_modules/postgresql/_breaking_change.py +++ b/src/azure-cli/azure/cli/command_modules/postgresql/_breaking_change.py @@ -39,14 +39,6 @@ def _register_network_resource_breaking_change(command_name): register_argument_deprecate('postgres flexible-server create', '--high-availability', redirect='--zonal-resiliency') register_argument_deprecate('postgres flexible-server update', '--high-availability', redirect='--zonal-resiliency') -# Index Tuning command group renamed to Autonomous Tuning as the feature has expanded to -# include more types of recommendations beyond just index tuning -register_command_group_deprecate(command_group='postgres flexible-server index-tuning', - redirect='postgres flexible-server autonomous-tuning', - message='Index tuning feature has now expanded its capabilities to support ' - 'other automatically generated recommendations which are covered by the ' - 'new command.') - # Long term retention command group deprecated with no redirect as the functionality will be removed in the future register_command_group_deprecate(command_group='postgres flexible-server long-term-retention', message='Long term retention command group will be removed. ' diff --git a/src/azure-cli/azure/cli/command_modules/postgresql/_help.py b/src/azure-cli/azure/cli/command_modules/postgresql/_help.py index b071105c299..6c11511cd4c 100644 --- a/src/azure-cli/azure/cli/command_modules/postgresql/_help.py +++ b/src/azure-cli/azure/cli/command_modules/postgresql/_help.py @@ -1182,59 +1182,6 @@ text: az postgres flexible-server fabric-mirroring update-databases -g testgroup -s testsvr --database-names testdb2 testdb3 """ -helps['postgres flexible-server index-tuning'] = """ -type: group -short-summary: Index tuning analyzes read queries captured in Query Store and recommends index changes to optimize these queries. -""" - -helps['postgres flexible-server index-tuning update'] = """ -type: command -short-summary: Update index tuning to be enabled/disabled for a PostgreSQL flexible server. -examples: - - name: Update index tuning to be enabled/disabled for a PostgreSQL flexible server. - text: az postgres flexible-server index-tuning update -g testgroup -s testsvr --enabled True -""" - -helps['postgres flexible-server index-tuning show'] = """ -type: command -short-summary: Show state of index tuning for a PostgreSQL flexible server. -examples: - - name: Show state of index tuning for a PostgreSQL flexible server. - text: az postgres flexible-server index-tuning show -g testgroup -s testsvr -""" - -helps['postgres flexible-server index-tuning list-settings'] = """ -type: command -short-summary: Get tuning settings associated for a PostgreSQL flexible server. -examples: - - name: Get tuning settings for a PostgreSQL flexible server. - text: az postgres flexible-server index-tuning list-settings -g testgroup -s testsvr -""" - -helps['postgres flexible-server index-tuning show-settings'] = """ -type: command -short-summary: Get a tuning setting for a PostgreSQL flexible server. -examples: - - name: Get a tuning setting for a PostgreSQL flexible server. - text: az postgres flexible-server index-tuning show-settings -g testgroup -s testsvr --name setting-name -""" - -helps['postgres flexible-server index-tuning set-settings'] = """ -type: command -short-summary: Update a tuning setting for a PostgreSQL flexible server. -examples: - - name: Update a tuning setting for a PostgreSQL flexible server. - text: az postgres flexible-server index-tuning set-settings -g testgroup -s testsvr --name setting-name --value setting-value -""" - -helps['postgres flexible-server index-tuning list-recommendations'] = """ -type: command -short-summary: Get available tuning index recommendations associated with a PostgreSQL flexible server. -examples: - - name: Get tuning index recommendations for a PostgreSQL flexible server. Filter by selected type. - text: az postgres flexible-server index-tuning list-recommendations -g testgroup -s testsvr --recommendation-type CreateIndex -""" - helps['postgres flexible-server autonomous-tuning'] = """ type: group short-summary: Autonomous tuning analyzes read queries captured in query store and recommends operations on tables or index changes to optimize these queries. diff --git a/src/azure-cli/azure/cli/command_modules/postgresql/_params.py b/src/azure-cli/azure/cli/command_modules/postgresql/_params.py index d4957500154..b12fb09b0fa 100644 --- a/src/azure-cli/azure/cli/command_modules/postgresql/_params.py +++ b/src/azure-cli/azure/cli/command_modules/postgresql/_params.py @@ -743,36 +743,6 @@ def _flexible_server_params(command_group): with self.argument_context('{} flexible-server private-link-resource {}'.format(command_group, scope)) as c: c.argument('server_name', arg_type=server_name_resource_arg_type) - # index tuning - for scope in ['update', 'show', 'list-settings', 'show-settings', 'set-settings', 'list-recommendations']: - argument_context_string = '{} flexible-server index-tuning {}'.format(command_group, scope) - with self.argument_context(argument_context_string) as c: - c.argument('server_name', arg_type=server_name_resource_arg_type) - - with self.argument_context('{} flexible-server index-tuning update'.format(command_group)) as c: - c.argument('index_tuning_enabled', - options_list=['--enabled'], - required=True, - help='Enable or disable index tuning feature.', - arg_type=get_enum_type(['True', 'False'])) - - with self.argument_context('{} flexible-server index-tuning list-recommendations'.format(command_group)) as c: - c.argument('recommendation_type', - options_list=['--recommendation-type', '-r'], - help='Retrieve recommendations based on type.', - arg_type=get_enum_type(['CreateIndex', 'DropIndex', 'ReIndex'])) - - for scope in ['show-settings', 'set-settings']: - argument_context_string = '{} flexible-server index-tuning {}'.format(command_group, scope) - with self.argument_context(argument_context_string) as c: - c.argument('setting_name', options_list=['--name', '-n'], required=True, - arg_type=get_enum_type(get_autonomous_tuning_settings_map().keys()), - help='The name of the tuning setting.') - - with self.argument_context('{} flexible-server index-tuning set-settings'.format(command_group)) as c: - c.argument('value', options_list=['--value', '-v'], - help='Value of the tuning setting.') - # autonomous tuning for scope in ['update', 'show', 'list-settings', 'show-settings', 'set-settings', 'list-table-recommendations', 'list-index-recommendations']: argument_context_string = '{} flexible-server autonomous-tuning {}'.format(command_group, scope) diff --git a/src/azure-cli/azure/cli/command_modules/postgresql/flexible_server_commands.py b/src/azure-cli/azure/cli/command_modules/postgresql/flexible_server_commands.py index 2bb2be44167..eca85927ef1 100644 --- a/src/azure-cli/azure/cli/command_modules/postgresql/flexible_server_commands.py +++ b/src/azure-cli/azure/cli/command_modules/postgresql/flexible_server_commands.py @@ -334,16 +334,6 @@ def load_flexibleserver_command_table(self, _): autonomous_tuning_commands = CliCommandType( operations_tmpl='azure.cli.command_modules.postgresql.commands.autonomous_tuning_commands#{}') - with self.command_group('postgres flexible-server index-tuning', postgres_flexible_config_sdk, - custom_command_type=autonomous_tuning_commands, - client_factory=cf_postgres_flexible_config) as g: - g.custom_command('update', 'index_tuning_update') - g.custom_show_command('show', 'index_tuning_show') - g.custom_command('list-settings', 'index_tuning_settings_list') - g.custom_command('show-settings', 'index_tuning_settings_get') - g.custom_command('set-settings', 'index_tuning_settings_set') - g.custom_command('list-recommendations', 'index_tuning_recommendations_list') - with self.command_group('postgres flexible-server autonomous-tuning', postgres_flexible_config_sdk, custom_command_type=autonomous_tuning_commands, client_factory=cf_postgres_flexible_config) as g: diff --git a/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/recordings/test_postgres_flexible_server_autonomous_tuning_options.yaml b/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/recordings/test_postgres_flexible_server_autonomous_tuning_options.yaml index 4655b102236..356f62a77e7 100644 --- a/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/recordings/test_postgres_flexible_server_autonomous_tuning_options.yaml +++ b/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/recordings/test_postgres_flexible_server_autonomous_tuning_options.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: HEAD uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: @@ -25,7 +25,7 @@ interactions: content-length: - '0' date: - - Tue, 31 Mar 2026 21:37:51 GMT + - Sun, 10 May 2026 18:08:15 GMT expires: - '-1' pragma: @@ -39,7 +39,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FD28FA1811D3496BB3F0A4C3CE24B953 Ref B: AMS231020512035 Ref C: 2026-03-31T21:37:51Z' + - 'Ref A: F916DA87615A4975ADED3C8E8CE52423 Ref B: AMS231032608019 Ref C: 2026-05-10T18:08:15Z' status: code: 204 message: No Content @@ -57,12 +57,12 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"product":"azurecli","cause":"automation","test":"test_postgres_flexible_server_autonomous_tuning_options","date":"2026-03-31T21:37:47Z","module":"postgresql"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"product":"azurecli","cause":"automation","test":"test_postgres_flexible_server_autonomous_tuning_options","date":"2026-05-10T18:08:11Z","module":"postgresql"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:37:52 GMT + - Sun, 10 May 2026 18:08:16 GMT expires: - '-1' pragma: @@ -85,7 +85,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 66F2ED6DAD574CCD9097BEFC6C6740DC Ref B: AMS231020614039 Ref C: 2026-03-31T21:37:52Z' + - 'Ref A: DB74305759554834BFB6E913DFE4D019 Ref B: AMS231020614053 Ref C: 2026-05-10T18:08:16Z' status: code: 200 message: OK @@ -107,7 +107,7 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/checkNameAvailability?api-version=2026-01-01-preview response: @@ -121,7 +121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:37:53 GMT + - Sun, 10 May 2026 18:08:17 GMT expires: - '-1' pragma: @@ -133,13 +133,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/54060d8d-6abe-49bb-ba04-36802f9e121e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/ab2e0564-21b9-4746-8cab-84bc7f17b970 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 308947E0B22E4986816BB6492F6ADDA3 Ref B: AMS231032609025 Ref C: 2026-03-31T21:37:52Z' + - 'Ref A: D52EAB93D41C4A9480B791C6C32C74DD Ref B: AMS231032607023 Ref C: 2026-05-10T18:08:16Z' status: code: 200 message: OK @@ -157,7 +157,7 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/capabilities?api-version=2026-01-01-preview response: @@ -173,7 +173,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:37:55 GMT + - Sun, 10 May 2026 18:08:19 GMT expires: - '-1' pragma: @@ -185,22 +185,22 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/e781464b-044e-4636-acfb-4dfc53326cb2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/ac47308e-c311-4c6e-a5a3-ac02f8d48636 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 97DE4A9A55134D66AAF9FA50C39979BD Ref B: AMS231020512045 Ref C: 2026-03-31T21:37:53Z' + - 'Ref A: C5FC3B82ECE34EA287EEBF2F0E4A979B Ref B: AMS231020512033 Ref C: 2026-05-10T18:08:17Z' status: code: 200 message: OK - request: body: '{"location": "canadacentral", "sku": {"name": "Standard_D4ds_v4", "tier": - "GeneralPurpose"}, "properties": {"administratorLogin": "ajarowl5", "version": - "16", "createMode": "Create", "storage": {"storageSizeGB": 128, "autoGrow": - "Disabled"}, "authConfig": {"activeDirectoryAuth": "Disabled", "passwordAuth": - "Enabled"}, "backup": {"backupRetentionDays": 7, "geoRedundantBackup": "Disabled"}, - "administratorLoginPassword": "SF8kzS3Mk5daqzf4kQ0jpw", "network": {"publicNetworkAccess": - "Disabled"}, "highAvailability": {"mode": "Disabled"}}}' + "GeneralPurpose"}, "properties": {"administratorLogin": "sorrypie9", "network": + {"publicNetworkAccess": "Disabled"}, "version": "16", "authConfig": {"activeDirectoryAuth": + "Disabled", "passwordAuth": "Enabled"}, "administratorLoginPassword": "CUJpPciMfJqWb5S1BVGAPQ", + "backup": {"backupRetentionDays": 7, "geoRedundantBackup": "Disabled"}, "highAvailability": + {"mode": "Disabled"}, "storage": {"storageSizeGB": 128, "autoGrow": "Disabled"}, + "createMode": "Create"}}' headers: Accept: - '*/*' @@ -211,21 +211,21 @@ interactions: Connection: - keep-alive Content-Length: - - '538' + - '539' Content-Type: - application/json ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002?api-version=2026-01-01-preview response: body: - string: '{"operation":"UpsertServerManagementOperationV2","startTime":"2026-03-31T21:37:56.677Z"}' + string: '{"operation":"UpsertServerManagementOperationV2","startTime":"2026-05-10T18:08:20.377Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d7875cce-fea9-476c-a412-5924afd8e304?api-version=2026-01-01-preview&t=639105898767408898&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=G78jW7t5nnCQr36Drhw16X3DeRexpiE2dJ_wZKM-phYQBOWpG3lGlK9KTjGO0iQiWYcWpuW05P3aN3sYtQqojYsqKnA45N5gF5bh94SKnDRHMt64Lqy48GAdECyGDJ_IRNkT8jJvEh1-BVfI3Rc9B8UbGGC9ngHLpucZGyMcHjety4hRsCG3HNm2b_IORXt-_x1fyfYJekviQR5A9Ron-_Fl8DlzE6BURYqlkmFIhkKs1KkQZrumS5zs6sj_rF36MkhHnYhZigtb-ZeRFFypbZnp0v_GoFqLXE7IjlBHr4bY6rPMA0uw366F4uRvcDkY6Vag_QmdqY0KqqbC0CUslQ&h=skwfKFrRo6lcWbRWpR-nHv2m0MumdUABv8jUQ5_o1YU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/71bfb461-72dc-407d-b3c5-e6e614706418?api-version=2026-01-01-preview&t=639140333004533902&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=vXfpPDXra06pkeGCv9TPUUbzh6yNYmsVRVe6sHJFmV73EN2tqQsXOdOXQJ5cnEqxSnuF0jWFgNFcMwZwZVxIhtAIETasIQEqc-pJFlMxyzeUhPSoGfm_eQlF6fgqabdFJKmPC5jtkukwDILZQq1QJ45tJ8cqVxuGEuarv2anraUL3gbC8SZ9HRSF7DcdlYjwEkg4Yv_FVSRNBq90vyBnB1qz2fIMI7MQZXIqhVqzfrGoYkI-9BAtJqr3F1vn3d_5NMKTqQIcY0CkjnUAywxrSoPAopxOTkCxQBSeSCPVRJGrzp43xlntA1hGGm1Lpwlos6AN1lYER0WhMmFjJa3QTg&h=u8_R0Uaoi-6c_auRbOarBKXPMhFak3tAiJwWxuGzfwI cache-control: - no-cache content-length: @@ -233,11 +233,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:37:56 GMT + - Sun, 10 May 2026 18:08:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/d7875cce-fea9-476c-a412-5924afd8e304?api-version=2026-01-01-preview&t=639105898767565255&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=UaZZuikarJMAZBvmC0MvsX8q5HgepE8mZdOlQDZoiL6sjm3gyNTNZsiIq0Q8P3OFb0nUT4jqhJTCM4novcJ4ysxrkW_gyX8PoQ9bFmbgh954E8UFEiQkp2FLRjpyW6929BVDmmnOLCM96jCvTZRAxFhpXNmyoAQ2N5ayNpFSeYBWMngJ995XJKmoB9pollxrHnrsgn6YmZllwiKJW6lcL_5pUF54gwBLGEe7VzklGOB5Hb0PvNVu_oYvIOHKrfXkLCO-eRbZIzJV1l1y9qBRP6eehxXRFTi-qnFY6Pxn5s-53j_2ag3dByntflrZ8ng4sQimi1fRvDMpxT-8XE9KjA&h=xm5p-jMpORq5bUnyDW29TMEG4TcbJj9_zGW9oVS5js0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/71bfb461-72dc-407d-b3c5-e6e614706418?api-version=2026-01-01-preview&t=639140333004689718&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=nuYbk08Nxex5JEg6Fl1FwBUbLzrr1Pa6QsZPiPmq0BYtnR_XlfTeE_VE_R3ViclCjLY1HKe4Tgb1Z7Gt33wSMX_N8oh_kQCgggurQ3UkxCoaWCBhqFfJi98c_2O9QGjRmteku7AvgENpnmVBR-XhmQfLiGYgah0yy9qLydkFh0QM-vX25w9Jdt6jI3sRWVAXKwb_i9gL_BNe-prTcMy1kyC3l7QHiu7u0BwmrfuUW_2ZhDRoFDIiO_pLUQGjba7VjodOrDJH4hlRcYB1VeMlxW6HUjGWY66dya5XlofnQaGGSRpZbb5jNerbFdD91Dxe54nteLkvevh42e3FIJuNoQ&h=nJ9wmGAK4m8_12IfT1DfXuTbI8Ce9GMg2j37Tj82VfY pragma: - no-cache strict-transport-security: @@ -247,13 +247,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/c0f78b4f-7713-4074-b7af-09dba98fc4ca + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/6cae1e3e-6c31-451c-8e41-c57b93198917 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E7A8617A844643A79BDA8CA642C83393 Ref B: AMS231032609025 Ref C: 2026-03-31T21:37:56Z' + - 'Ref A: 948AB273DAC44500854080F4142C2F3B Ref B: AMS231032609009 Ref C: 2026-05-10T18:08:19Z' status: code: 202 message: Accepted @@ -271,12 +271,12 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d7875cce-fea9-476c-a412-5924afd8e304?api-version=2026-01-01-preview&t=639105898767408898&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=G78jW7t5nnCQr36Drhw16X3DeRexpiE2dJ_wZKM-phYQBOWpG3lGlK9KTjGO0iQiWYcWpuW05P3aN3sYtQqojYsqKnA45N5gF5bh94SKnDRHMt64Lqy48GAdECyGDJ_IRNkT8jJvEh1-BVfI3Rc9B8UbGGC9ngHLpucZGyMcHjety4hRsCG3HNm2b_IORXt-_x1fyfYJekviQR5A9Ron-_Fl8DlzE6BURYqlkmFIhkKs1KkQZrumS5zs6sj_rF36MkhHnYhZigtb-ZeRFFypbZnp0v_GoFqLXE7IjlBHr4bY6rPMA0uw366F4uRvcDkY6Vag_QmdqY0KqqbC0CUslQ&h=skwfKFrRo6lcWbRWpR-nHv2m0MumdUABv8jUQ5_o1YU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/71bfb461-72dc-407d-b3c5-e6e614706418?api-version=2026-01-01-preview&t=639140333004533902&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=vXfpPDXra06pkeGCv9TPUUbzh6yNYmsVRVe6sHJFmV73EN2tqQsXOdOXQJ5cnEqxSnuF0jWFgNFcMwZwZVxIhtAIETasIQEqc-pJFlMxyzeUhPSoGfm_eQlF6fgqabdFJKmPC5jtkukwDILZQq1QJ45tJ8cqVxuGEuarv2anraUL3gbC8SZ9HRSF7DcdlYjwEkg4Yv_FVSRNBq90vyBnB1qz2fIMI7MQZXIqhVqzfrGoYkI-9BAtJqr3F1vn3d_5NMKTqQIcY0CkjnUAywxrSoPAopxOTkCxQBSeSCPVRJGrzp43xlntA1hGGm1Lpwlos6AN1lYER0WhMmFjJa3QTg&h=u8_R0Uaoi-6c_auRbOarBKXPMhFak3tAiJwWxuGzfwI response: body: - string: '{"name":"d7875cce-fea9-476c-a412-5924afd8e304","status":"InProgress","startTime":"2026-03-31T21:37:56.677Z"}' + string: '{"name":"71bfb461-72dc-407d-b3c5-e6e614706418","status":"InProgress","startTime":"2026-05-10T18:08:20.377Z"}' headers: cache-control: - no-cache @@ -285,7 +285,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:37:57 GMT + - Sun, 10 May 2026 18:08:20 GMT expires: - '-1' pragma: @@ -297,11 +297,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/a7624701-4f1f-4f66-9891-1ac0278db0a4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/21b70295-42d0-4502-90a1-b1237715c9f4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 42DB6227A5DC4C5287EFFAC09C07B575 Ref B: AMS231032607007 Ref C: 2026-03-31T21:37:57Z' + - 'Ref A: 50D4A89E229A4B3DB6FD957F24645BB6 Ref B: AMS231032609011 Ref C: 2026-05-10T18:08:20Z' status: code: 200 message: OK @@ -319,12 +319,12 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d7875cce-fea9-476c-a412-5924afd8e304?api-version=2026-01-01-preview&t=639105898767408898&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=G78jW7t5nnCQr36Drhw16X3DeRexpiE2dJ_wZKM-phYQBOWpG3lGlK9KTjGO0iQiWYcWpuW05P3aN3sYtQqojYsqKnA45N5gF5bh94SKnDRHMt64Lqy48GAdECyGDJ_IRNkT8jJvEh1-BVfI3Rc9B8UbGGC9ngHLpucZGyMcHjety4hRsCG3HNm2b_IORXt-_x1fyfYJekviQR5A9Ron-_Fl8DlzE6BURYqlkmFIhkKs1KkQZrumS5zs6sj_rF36MkhHnYhZigtb-ZeRFFypbZnp0v_GoFqLXE7IjlBHr4bY6rPMA0uw366F4uRvcDkY6Vag_QmdqY0KqqbC0CUslQ&h=skwfKFrRo6lcWbRWpR-nHv2m0MumdUABv8jUQ5_o1YU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/71bfb461-72dc-407d-b3c5-e6e614706418?api-version=2026-01-01-preview&t=639140333004533902&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=vXfpPDXra06pkeGCv9TPUUbzh6yNYmsVRVe6sHJFmV73EN2tqQsXOdOXQJ5cnEqxSnuF0jWFgNFcMwZwZVxIhtAIETasIQEqc-pJFlMxyzeUhPSoGfm_eQlF6fgqabdFJKmPC5jtkukwDILZQq1QJ45tJ8cqVxuGEuarv2anraUL3gbC8SZ9HRSF7DcdlYjwEkg4Yv_FVSRNBq90vyBnB1qz2fIMI7MQZXIqhVqzfrGoYkI-9BAtJqr3F1vn3d_5NMKTqQIcY0CkjnUAywxrSoPAopxOTkCxQBSeSCPVRJGrzp43xlntA1hGGm1Lpwlos6AN1lYER0WhMmFjJa3QTg&h=u8_R0Uaoi-6c_auRbOarBKXPMhFak3tAiJwWxuGzfwI response: body: - string: '{"name":"d7875cce-fea9-476c-a412-5924afd8e304","status":"InProgress","startTime":"2026-03-31T21:37:56.677Z"}' + string: '{"name":"71bfb461-72dc-407d-b3c5-e6e614706418","status":"InProgress","startTime":"2026-05-10T18:08:20.377Z"}' headers: cache-control: - no-cache @@ -333,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:38:57 GMT + - Sun, 10 May 2026 18:09:21 GMT expires: - '-1' pragma: @@ -345,11 +345,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/74a598ee-d9d0-43b6-9c94-20144346997a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/8e73bc6b-f87b-43e5-b89e-f6da7f44fe72 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7B5E4CB9D39347DBA5E559E89D6A74BD Ref B: AMS231022012049 Ref C: 2026-03-31T21:38:57Z' + - 'Ref A: BE030FAB691A46DC9AFBBD23851899F1 Ref B: AMS231020614047 Ref C: 2026-05-10T18:09:21Z' status: code: 200 message: OK @@ -367,12 +367,12 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d7875cce-fea9-476c-a412-5924afd8e304?api-version=2026-01-01-preview&t=639105898767408898&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=G78jW7t5nnCQr36Drhw16X3DeRexpiE2dJ_wZKM-phYQBOWpG3lGlK9KTjGO0iQiWYcWpuW05P3aN3sYtQqojYsqKnA45N5gF5bh94SKnDRHMt64Lqy48GAdECyGDJ_IRNkT8jJvEh1-BVfI3Rc9B8UbGGC9ngHLpucZGyMcHjety4hRsCG3HNm2b_IORXt-_x1fyfYJekviQR5A9Ron-_Fl8DlzE6BURYqlkmFIhkKs1KkQZrumS5zs6sj_rF36MkhHnYhZigtb-ZeRFFypbZnp0v_GoFqLXE7IjlBHr4bY6rPMA0uw366F4uRvcDkY6Vag_QmdqY0KqqbC0CUslQ&h=skwfKFrRo6lcWbRWpR-nHv2m0MumdUABv8jUQ5_o1YU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/71bfb461-72dc-407d-b3c5-e6e614706418?api-version=2026-01-01-preview&t=639140333004533902&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=vXfpPDXra06pkeGCv9TPUUbzh6yNYmsVRVe6sHJFmV73EN2tqQsXOdOXQJ5cnEqxSnuF0jWFgNFcMwZwZVxIhtAIETasIQEqc-pJFlMxyzeUhPSoGfm_eQlF6fgqabdFJKmPC5jtkukwDILZQq1QJ45tJ8cqVxuGEuarv2anraUL3gbC8SZ9HRSF7DcdlYjwEkg4Yv_FVSRNBq90vyBnB1qz2fIMI7MQZXIqhVqzfrGoYkI-9BAtJqr3F1vn3d_5NMKTqQIcY0CkjnUAywxrSoPAopxOTkCxQBSeSCPVRJGrzp43xlntA1hGGm1Lpwlos6AN1lYER0WhMmFjJa3QTg&h=u8_R0Uaoi-6c_auRbOarBKXPMhFak3tAiJwWxuGzfwI response: body: - string: '{"name":"d7875cce-fea9-476c-a412-5924afd8e304","status":"InProgress","startTime":"2026-03-31T21:37:56.677Z"}' + string: '{"name":"71bfb461-72dc-407d-b3c5-e6e614706418","status":"InProgress","startTime":"2026-05-10T18:08:20.377Z"}' headers: cache-control: - no-cache @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:39:57 GMT + - Sun, 10 May 2026 18:10:22 GMT expires: - '-1' pragma: @@ -393,11 +393,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/76544797-6099-46d3-9e00-de07082e097d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/9bec3545-f8a9-40a8-bae6-fc50fcc25ce5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B63619DA620D4FBA963769D77E4FDDD1 Ref B: AMS231022012037 Ref C: 2026-03-31T21:39:58Z' + - 'Ref A: 0E3706B833734F3182521FBCF5917E92 Ref B: AMS231032609019 Ref C: 2026-05-10T18:10:22Z' status: code: 200 message: OK @@ -415,12 +415,12 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d7875cce-fea9-476c-a412-5924afd8e304?api-version=2026-01-01-preview&t=639105898767408898&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=G78jW7t5nnCQr36Drhw16X3DeRexpiE2dJ_wZKM-phYQBOWpG3lGlK9KTjGO0iQiWYcWpuW05P3aN3sYtQqojYsqKnA45N5gF5bh94SKnDRHMt64Lqy48GAdECyGDJ_IRNkT8jJvEh1-BVfI3Rc9B8UbGGC9ngHLpucZGyMcHjety4hRsCG3HNm2b_IORXt-_x1fyfYJekviQR5A9Ron-_Fl8DlzE6BURYqlkmFIhkKs1KkQZrumS5zs6sj_rF36MkhHnYhZigtb-ZeRFFypbZnp0v_GoFqLXE7IjlBHr4bY6rPMA0uw366F4uRvcDkY6Vag_QmdqY0KqqbC0CUslQ&h=skwfKFrRo6lcWbRWpR-nHv2m0MumdUABv8jUQ5_o1YU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/71bfb461-72dc-407d-b3c5-e6e614706418?api-version=2026-01-01-preview&t=639140333004533902&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=vXfpPDXra06pkeGCv9TPUUbzh6yNYmsVRVe6sHJFmV73EN2tqQsXOdOXQJ5cnEqxSnuF0jWFgNFcMwZwZVxIhtAIETasIQEqc-pJFlMxyzeUhPSoGfm_eQlF6fgqabdFJKmPC5jtkukwDILZQq1QJ45tJ8cqVxuGEuarv2anraUL3gbC8SZ9HRSF7DcdlYjwEkg4Yv_FVSRNBq90vyBnB1qz2fIMI7MQZXIqhVqzfrGoYkI-9BAtJqr3F1vn3d_5NMKTqQIcY0CkjnUAywxrSoPAopxOTkCxQBSeSCPVRJGrzp43xlntA1hGGm1Lpwlos6AN1lYER0WhMmFjJa3QTg&h=u8_R0Uaoi-6c_auRbOarBKXPMhFak3tAiJwWxuGzfwI response: body: - string: '{"name":"d7875cce-fea9-476c-a412-5924afd8e304","status":"InProgress","startTime":"2026-03-31T21:37:56.677Z"}' + string: '{"name":"71bfb461-72dc-407d-b3c5-e6e614706418","status":"InProgress","startTime":"2026-05-10T18:08:20.377Z"}' headers: cache-control: - no-cache @@ -429,7 +429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:40:58 GMT + - Sun, 10 May 2026 18:11:22 GMT expires: - '-1' pragma: @@ -441,11 +441,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/3ea369f4-9614-4986-9265-62163442c5f3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/ab33a5b4-07bc-4143-8770-056766bb1402 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 503A7B2D800F42878F600167C44D9BE9 Ref B: AMS231020615023 Ref C: 2026-03-31T21:40:59Z' + - 'Ref A: 14E07B97ADB54EFC99ED2560C0261AEB Ref B: AMS231020614025 Ref C: 2026-05-10T18:11:22Z' status: code: 200 message: OK @@ -463,12 +463,12 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d7875cce-fea9-476c-a412-5924afd8e304?api-version=2026-01-01-preview&t=639105898767408898&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=G78jW7t5nnCQr36Drhw16X3DeRexpiE2dJ_wZKM-phYQBOWpG3lGlK9KTjGO0iQiWYcWpuW05P3aN3sYtQqojYsqKnA45N5gF5bh94SKnDRHMt64Lqy48GAdECyGDJ_IRNkT8jJvEh1-BVfI3Rc9B8UbGGC9ngHLpucZGyMcHjety4hRsCG3HNm2b_IORXt-_x1fyfYJekviQR5A9Ron-_Fl8DlzE6BURYqlkmFIhkKs1KkQZrumS5zs6sj_rF36MkhHnYhZigtb-ZeRFFypbZnp0v_GoFqLXE7IjlBHr4bY6rPMA0uw366F4uRvcDkY6Vag_QmdqY0KqqbC0CUslQ&h=skwfKFrRo6lcWbRWpR-nHv2m0MumdUABv8jUQ5_o1YU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/71bfb461-72dc-407d-b3c5-e6e614706418?api-version=2026-01-01-preview&t=639140333004533902&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=vXfpPDXra06pkeGCv9TPUUbzh6yNYmsVRVe6sHJFmV73EN2tqQsXOdOXQJ5cnEqxSnuF0jWFgNFcMwZwZVxIhtAIETasIQEqc-pJFlMxyzeUhPSoGfm_eQlF6fgqabdFJKmPC5jtkukwDILZQq1QJ45tJ8cqVxuGEuarv2anraUL3gbC8SZ9HRSF7DcdlYjwEkg4Yv_FVSRNBq90vyBnB1qz2fIMI7MQZXIqhVqzfrGoYkI-9BAtJqr3F1vn3d_5NMKTqQIcY0CkjnUAywxrSoPAopxOTkCxQBSeSCPVRJGrzp43xlntA1hGGm1Lpwlos6AN1lYER0WhMmFjJa3QTg&h=u8_R0Uaoi-6c_auRbOarBKXPMhFak3tAiJwWxuGzfwI response: body: - string: '{"name":"d7875cce-fea9-476c-a412-5924afd8e304","status":"InProgress","startTime":"2026-03-31T21:37:56.677Z"}' + string: '{"name":"71bfb461-72dc-407d-b3c5-e6e614706418","status":"InProgress","startTime":"2026-05-10T18:08:20.377Z"}' headers: cache-control: - no-cache @@ -477,7 +477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:41:59 GMT + - Sun, 10 May 2026 18:12:23 GMT expires: - '-1' pragma: @@ -489,11 +489,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/d2b6a623-cd77-4f72-9028-3c4b9e1ec604 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/b9422d4c-ad8b-4a3c-8658-6640544d7550 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2A46CCDD45704371AFF48741DDDF1FBB Ref B: AMS231032607023 Ref C: 2026-03-31T21:41:59Z' + - 'Ref A: E8CB10755C084B9F969DAB940949DCB4 Ref B: AMS231032608029 Ref C: 2026-05-10T18:12:23Z' status: code: 200 message: OK @@ -511,12 +511,12 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d7875cce-fea9-476c-a412-5924afd8e304?api-version=2026-01-01-preview&t=639105898767408898&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=G78jW7t5nnCQr36Drhw16X3DeRexpiE2dJ_wZKM-phYQBOWpG3lGlK9KTjGO0iQiWYcWpuW05P3aN3sYtQqojYsqKnA45N5gF5bh94SKnDRHMt64Lqy48GAdECyGDJ_IRNkT8jJvEh1-BVfI3Rc9B8UbGGC9ngHLpucZGyMcHjety4hRsCG3HNm2b_IORXt-_x1fyfYJekviQR5A9Ron-_Fl8DlzE6BURYqlkmFIhkKs1KkQZrumS5zs6sj_rF36MkhHnYhZigtb-ZeRFFypbZnp0v_GoFqLXE7IjlBHr4bY6rPMA0uw366F4uRvcDkY6Vag_QmdqY0KqqbC0CUslQ&h=skwfKFrRo6lcWbRWpR-nHv2m0MumdUABv8jUQ5_o1YU + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/71bfb461-72dc-407d-b3c5-e6e614706418?api-version=2026-01-01-preview&t=639140333004533902&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=vXfpPDXra06pkeGCv9TPUUbzh6yNYmsVRVe6sHJFmV73EN2tqQsXOdOXQJ5cnEqxSnuF0jWFgNFcMwZwZVxIhtAIETasIQEqc-pJFlMxyzeUhPSoGfm_eQlF6fgqabdFJKmPC5jtkukwDILZQq1QJ45tJ8cqVxuGEuarv2anraUL3gbC8SZ9HRSF7DcdlYjwEkg4Yv_FVSRNBq90vyBnB1qz2fIMI7MQZXIqhVqzfrGoYkI-9BAtJqr3F1vn3d_5NMKTqQIcY0CkjnUAywxrSoPAopxOTkCxQBSeSCPVRJGrzp43xlntA1hGGm1Lpwlos6AN1lYER0WhMmFjJa3QTg&h=u8_R0Uaoi-6c_auRbOarBKXPMhFak3tAiJwWxuGzfwI response: body: - string: '{"name":"d7875cce-fea9-476c-a412-5924afd8e304","status":"Succeeded","startTime":"2026-03-31T21:37:56.677Z"}' + string: '{"name":"71bfb461-72dc-407d-b3c5-e6e614706418","status":"Succeeded","startTime":"2026-05-10T18:08:20.377Z"}' headers: cache-control: - no-cache @@ -525,7 +525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:00 GMT + - Sun, 10 May 2026 18:13:24 GMT expires: - '-1' pragma: @@ -537,11 +537,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/a733a95d-b9bd-4cd8-9b26-1ed504990e7b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/d1cebb9c-9464-4dbe-a8a1-1c4ac9fe26d5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7D366221E8AD4B79A137AB77F39263E3 Ref B: AMS231020615009 Ref C: 2026-03-31T21:43:00Z' + - 'Ref A: 14B1928EDEF24594A0686B1A822F97C8 Ref B: AMS231020615021 Ref C: 2026-05-10T18:13:24Z' status: code: 200 message: OK @@ -559,22 +559,22 @@ interactions: ParameterSetName: - -g -n --sku-name --tier --storage-size --version -l --public-access --yes User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Standard_D4ds_v4","tier":"GeneralPurpose"},"systemData":{"createdAt":"2026-03-31T21:38:07.0386870Z"},"properties":{"dataEncryption":{"type":"SystemManaged"},"replica":{"role":"Primary","capacity":5},"storage":{"type":"","iops":500,"tier":"P10","storageSizeGB":128,"autoGrow":"Disabled"},"network":{"publicNetworkAccess":"Disabled"},"privateEndpointConnections":[],"authConfig":{"activeDirectoryAuth":"Disabled","passwordAuth":"Enabled"},"fullyQualifiedDomainName":"azuredbclitest-000002.postgres.database.azure.com","version":"16","minorVersion":"13","administratorLogin":"ajarowl5","state":"Ready","availabilityZone":"2","backup":{"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"highAvailability":{"mode":"Disabled","state":"NotEnabled"},"maintenanceWindow":{"customWindow":"Disabled","dayOfWeek":0,"startHour":0,"startMinute":0},"replicationRole":"Primary","replicaCapacity":5},"location":"Canada + string: '{"sku":{"name":"Standard_D4ds_v4","tier":"GeneralPurpose"},"systemData":{"createdAt":"2026-05-10T18:08:32.9480353Z"},"properties":{"dataEncryption":{"type":"SystemManaged"},"replica":{"role":"Primary","capacity":5},"storage":{"type":"","iops":500,"tier":"P10","storageSizeGB":128,"autoGrow":"Disabled"},"network":{"publicNetworkAccess":"Disabled"},"privateEndpointConnections":[],"authConfig":{"activeDirectoryAuth":"Disabled","passwordAuth":"Enabled"},"fullyQualifiedDomainName":"azuredbclitest-000002.postgres.database.azure.com","version":"16","minorVersion":"13","administratorLogin":"sorrypie9","state":"Ready","availabilityZone":"1","backup":{"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"highAvailability":{"mode":"Disabled","state":"NotEnabled"},"maintenanceWindow":{"customWindow":"Disabled","dayOfWeek":0,"startHour":0,"startMinute":0},"replicationRole":"Primary","replicaCapacity":5},"location":"Canada Central","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002","name":"azuredbclitest-000002","type":"Microsoft.DBforPostgreSQL/flexibleServers"}' headers: cache-control: - no-cache content-length: - - '1181' + - '1182' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:00 GMT + - Sun, 10 May 2026 18:13:25 GMT expires: - '-1' pragma: @@ -588,7 +588,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 864339BD32C748B8BC4777F9B4FED67B Ref B: AMS231020615017 Ref C: 2026-03-31T21:43:01Z' + - 'Ref A: D75744233E4B4B0EB56F5581819CCD44 Ref B: AMS231032608049 Ref C: 2026-05-10T18:13:24Z' status: code: 200 message: OK @@ -606,22 +606,22 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Standard_D4ds_v4","tier":"GeneralPurpose"},"systemData":{"createdAt":"2026-03-31T21:38:07.0386870Z"},"properties":{"dataEncryption":{"type":"SystemManaged"},"replica":{"role":"Primary","capacity":5},"storage":{"type":"","iops":500,"tier":"P10","storageSizeGB":128,"autoGrow":"Disabled"},"network":{"publicNetworkAccess":"Disabled"},"privateEndpointConnections":[],"authConfig":{"activeDirectoryAuth":"Disabled","passwordAuth":"Enabled"},"fullyQualifiedDomainName":"azuredbclitest-000002.postgres.database.azure.com","version":"16","minorVersion":"13","administratorLogin":"ajarowl5","state":"Ready","availabilityZone":"2","backup":{"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"highAvailability":{"mode":"Disabled","state":"NotEnabled"},"maintenanceWindow":{"customWindow":"Disabled","dayOfWeek":0,"startHour":0,"startMinute":0},"replicationRole":"Primary","replicaCapacity":5},"location":"Canada + string: '{"sku":{"name":"Standard_D4ds_v4","tier":"GeneralPurpose"},"systemData":{"createdAt":"2026-05-10T18:08:32.9480353Z"},"properties":{"dataEncryption":{"type":"SystemManaged"},"replica":{"role":"Primary","capacity":5},"storage":{"type":"","iops":500,"tier":"P10","storageSizeGB":128,"autoGrow":"Disabled"},"network":{"publicNetworkAccess":"Disabled"},"privateEndpointConnections":[],"authConfig":{"activeDirectoryAuth":"Disabled","passwordAuth":"Enabled"},"fullyQualifiedDomainName":"azuredbclitest-000002.postgres.database.azure.com","version":"16","minorVersion":"13","administratorLogin":"sorrypie9","state":"Ready","availabilityZone":"1","backup":{"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"highAvailability":{"mode":"Disabled","state":"NotEnabled"},"maintenanceWindow":{"customWindow":"Disabled","dayOfWeek":0,"startHour":0,"startMinute":0},"replicationRole":"Primary","replicaCapacity":5},"location":"Canada Central","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002","name":"azuredbclitest-000002","type":"Microsoft.DBforPostgreSQL/flexibleServers"}' headers: cache-control: - no-cache content-length: - - '1181' + - '1182' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:00 GMT + - Sun, 10 May 2026 18:13:25 GMT expires: - '-1' pragma: @@ -635,7 +635,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 6FFAF7A01AED407FAF6513B32CB03AC3 Ref B: AMS231032609051 Ref C: 2026-03-31T21:43:01Z' + - 'Ref A: 32A354DA7BE64472B8FE9DED77A8CDD5 Ref B: AMS231032607021 Ref C: 2026-05-10T18:13:25Z' status: code: 200 message: OK @@ -653,7 +653,7 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/capabilities?api-version=2026-01-01-preview response: @@ -669,7 +669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:03 GMT + - Sun, 10 May 2026 18:13:27 GMT expires: - '-1' pragma: @@ -681,11 +681,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/11756f8e-619f-4022-acef-366b76737acb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/78da5d88-917f-4b03-bf6d-a92d12a3d6fa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: ABC155D71DAA4B19A175CFB9A945AB7B Ref B: AMS231020615033 Ref C: 2026-03-31T21:43:02Z' + - 'Ref A: E193E774864048ABB71FC6EE4780530D Ref B: AMS231020512037 Ref C: 2026-05-10T18:13:25Z' status: code: 200 message: OK @@ -707,15 +707,15 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview response: body: - string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-03-31T21:43:04.257Z"}' + string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-05-10T18:13:28.107Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/378154e2-3843-465a-90fe-8f0103f365d9?api-version=2026-01-01-preview&t=639105901843135375&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=XLXmSQXIyC95_AiyqxWrs-63BBGa3dRruWNDpB0JVDupPcQSd-6dBBM6vKWlAmqJ5o5Vf5MWkskhV-fvAh1tIN-EuASGICQyBunlhZ35nuqPYIEP8W_erJIbx2HCU2K3VZi70O1jttD5NVjv0i6EWjP95sUTF99j7mvHTN3TZCpKxHBV00ONVv3sXXY9HZ-b0zAzJ2KJfHKEXi0YU-6eIbOiTdS1u4noVaUD3B1M9n-vd-6v53gBmQZh-_XQnT8qLjtRG6NMTsijopCgdqHPWks5mRWh9RSeRz3L357b5lsjJSd0f7frA3MW0witMcDkWHVn7nsae9vCFsr7FAu1Ug&h=K_kVhDqjGNHqtVopF1eTPG1kSjaIq1BRo0GFcBjDUYI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/65c72977-f2c9-4104-910d-06e98423f69b?api-version=2026-01-01-preview&t=639140336081545454&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=ablZE5DP_DK_2UT0xe4WL3eNXtVknpYagmrkbH_awHjObOahnFetgpHiX9rB_B47ZvpCYlSWfvzbJusIsQLiHyqx6Qbq5yppT5N8nmvZ_0W0HckM-a6rKUyjC7Zl6It5NIt8iIPi1QCIvipj48NpKzr2DQdPmTJBNZTSM4mlbxfKOUtpiN1vXhydPP9C6ppnPtGAmbtFKP1voYy98Vu2sk7OfuSlt5NMwUFEu1CG8olNF9BX5azkzG6wHl-TB_TBcIfDpV8MGUnOwoeehdRb1hQTz9Vv0R_OKP9UCUNFqQyv_fHNk-DpvdM9iFJqaOeUMhL6A1kQ7L4LW2ltIpS7hw&h=saz1ctg2Z_FAa-MzEQSX_cA17jhdRQhmHESjU0tm2uM cache-control: - no-cache content-length: @@ -723,11 +723,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:03 GMT + - Sun, 10 May 2026 18:13:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/378154e2-3843-465a-90fe-8f0103f365d9?api-version=2026-01-01-preview&t=639105901843291544&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=hjNTILqHxAXRXinshfBTbYq3wB21dbxEyXszI6EPzsmAPDH1BpvBsbZXdH8mhKyRvxRc0pu8xkqsJfeTjznaVPYlLppYow3nsJD14IZNkzLjxCOP8dc1o96ZbCM8uJaqfsMnZo6TdZYFvDeyeKnZ8bk5gFBf44HKNXYRRqxxFsw6OqQpAlwWEBjJHyp6FVKGDEamMQIj_BM1UwrE6LIoe2DanNtNMLGJAAsJPpGeLMurLhXMBDEfmBcZe-tI4ThRDO8VcfMpBt_HvT0K9v9zoCPZ2BbkSm9N_HMUffKp3H4H5IhUDxPVJpZkrngrgBea3i3uRAqF9x52oYcbJoly6A&h=imCiZhZRF4MFNUCItSsa0IhNJLsyVtlIru5g5YG3Lb4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/65c72977-f2c9-4104-910d-06e98423f69b?api-version=2026-01-01-preview&t=639140336081701745&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=m4QBdH7oYEu7gfa54cuwGy0moEm6IbD8hEkAs0sa0omP4DN6iTmuFe0vv8lVGKGmO5nNWaWsKEZoHGer4qkisIz0JqRXwNbRMytW9yacdVTynrpyqqFi2aAQ8ucc04mWWVuRBDOyigQOhg-Yj5jqB9vW1-FedijOsgUn9irym-vTdWRFI2I8ob5pRjGL9Pd_4mbcXCvZ36-HTZbHJSAUdVQzuAR9nzDg9n7SzTlU7LSveGrypHUFWpIFisGPgYP9NiNSgGOMoNhgDYi28KxyIS8Hy1MVeMbF_DaqT6ijytp8KxwCb3pkX8HR_U00FhKEM0_5ejdekh16NhovkGC-fQ&h=VjCLyWddQmhQz55FLjNF3GiJ1MP3rxRMuecH_2NneRE pragma: - no-cache strict-transport-security: @@ -737,13 +737,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/4d8139cb-0b19-4922-863d-8e89588f95ff + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/ab33f059-ec76-4a0a-b2c1-172f8999a6df x-ms-ratelimit-remaining-subscription-global-writes: - - '11998' + - '11999' x-ms-ratelimit-remaining-subscription-writes: - - '798' + - '799' x-msedge-ref: - - 'Ref A: FA544ACF50BA42839BC8EA0C156DEE0E Ref B: AMS231020614017 Ref C: 2026-03-31T21:43:04Z' + - 'Ref A: 4035287EDECA4A86A27D1DEFD5994CB7 Ref B: AMS231032607037 Ref C: 2026-05-10T18:13:27Z' status: code: 202 message: Accepted @@ -761,12 +761,12 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/378154e2-3843-465a-90fe-8f0103f365d9?api-version=2026-01-01-preview&t=639105901843135375&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=XLXmSQXIyC95_AiyqxWrs-63BBGa3dRruWNDpB0JVDupPcQSd-6dBBM6vKWlAmqJ5o5Vf5MWkskhV-fvAh1tIN-EuASGICQyBunlhZ35nuqPYIEP8W_erJIbx2HCU2K3VZi70O1jttD5NVjv0i6EWjP95sUTF99j7mvHTN3TZCpKxHBV00ONVv3sXXY9HZ-b0zAzJ2KJfHKEXi0YU-6eIbOiTdS1u4noVaUD3B1M9n-vd-6v53gBmQZh-_XQnT8qLjtRG6NMTsijopCgdqHPWks5mRWh9RSeRz3L357b5lsjJSd0f7frA3MW0witMcDkWHVn7nsae9vCFsr7FAu1Ug&h=K_kVhDqjGNHqtVopF1eTPG1kSjaIq1BRo0GFcBjDUYI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/65c72977-f2c9-4104-910d-06e98423f69b?api-version=2026-01-01-preview&t=639140336081545454&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=ablZE5DP_DK_2UT0xe4WL3eNXtVknpYagmrkbH_awHjObOahnFetgpHiX9rB_B47ZvpCYlSWfvzbJusIsQLiHyqx6Qbq5yppT5N8nmvZ_0W0HckM-a6rKUyjC7Zl6It5NIt8iIPi1QCIvipj48NpKzr2DQdPmTJBNZTSM4mlbxfKOUtpiN1vXhydPP9C6ppnPtGAmbtFKP1voYy98Vu2sk7OfuSlt5NMwUFEu1CG8olNF9BX5azkzG6wHl-TB_TBcIfDpV8MGUnOwoeehdRb1hQTz9Vv0R_OKP9UCUNFqQyv_fHNk-DpvdM9iFJqaOeUMhL6A1kQ7L4LW2ltIpS7hw&h=saz1ctg2Z_FAa-MzEQSX_cA17jhdRQhmHESjU0tm2uM response: body: - string: '{"name":"378154e2-3843-465a-90fe-8f0103f365d9","status":"InProgress","startTime":"2026-03-31T21:43:04.257Z"}' + string: '{"name":"65c72977-f2c9-4104-910d-06e98423f69b","status":"InProgress","startTime":"2026-05-10T18:13:28.107Z"}' headers: cache-control: - no-cache @@ -775,7 +775,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:04 GMT + - Sun, 10 May 2026 18:13:28 GMT expires: - '-1' pragma: @@ -787,11 +787,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/55468f93-ce30-420f-ae2a-62979bee8973 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/013a1565-0b39-41ff-8618-9b284a784524 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 004FDF6DB4AD456AA198ADCBCCE758CE Ref B: AMS231020512049 Ref C: 2026-03-31T21:43:04Z' + - 'Ref A: BD947BF3EEEB4A9B881BC929C456F913 Ref B: AMS231020615023 Ref C: 2026-05-10T18:13:28Z' status: code: 200 message: OK @@ -809,12 +809,12 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/378154e2-3843-465a-90fe-8f0103f365d9?api-version=2026-01-01-preview&t=639105901843135375&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=XLXmSQXIyC95_AiyqxWrs-63BBGa3dRruWNDpB0JVDupPcQSd-6dBBM6vKWlAmqJ5o5Vf5MWkskhV-fvAh1tIN-EuASGICQyBunlhZ35nuqPYIEP8W_erJIbx2HCU2K3VZi70O1jttD5NVjv0i6EWjP95sUTF99j7mvHTN3TZCpKxHBV00ONVv3sXXY9HZ-b0zAzJ2KJfHKEXi0YU-6eIbOiTdS1u4noVaUD3B1M9n-vd-6v53gBmQZh-_XQnT8qLjtRG6NMTsijopCgdqHPWks5mRWh9RSeRz3L357b5lsjJSd0f7frA3MW0witMcDkWHVn7nsae9vCFsr7FAu1Ug&h=K_kVhDqjGNHqtVopF1eTPG1kSjaIq1BRo0GFcBjDUYI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/65c72977-f2c9-4104-910d-06e98423f69b?api-version=2026-01-01-preview&t=639140336081545454&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=ablZE5DP_DK_2UT0xe4WL3eNXtVknpYagmrkbH_awHjObOahnFetgpHiX9rB_B47ZvpCYlSWfvzbJusIsQLiHyqx6Qbq5yppT5N8nmvZ_0W0HckM-a6rKUyjC7Zl6It5NIt8iIPi1QCIvipj48NpKzr2DQdPmTJBNZTSM4mlbxfKOUtpiN1vXhydPP9C6ppnPtGAmbtFKP1voYy98Vu2sk7OfuSlt5NMwUFEu1CG8olNF9BX5azkzG6wHl-TB_TBcIfDpV8MGUnOwoeehdRb1hQTz9Vv0R_OKP9UCUNFqQyv_fHNk-DpvdM9iFJqaOeUMhL6A1kQ7L4LW2ltIpS7hw&h=saz1ctg2Z_FAa-MzEQSX_cA17jhdRQhmHESjU0tm2uM response: body: - string: '{"name":"378154e2-3843-465a-90fe-8f0103f365d9","status":"Succeeded","startTime":"2026-03-31T21:43:04.257Z"}' + string: '{"name":"65c72977-f2c9-4104-910d-06e98423f69b","status":"Succeeded","startTime":"2026-05-10T18:13:28.107Z"}' headers: cache-control: - no-cache @@ -823,7 +823,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:15 GMT + - Sun, 10 May 2026 18:13:38 GMT expires: - '-1' pragma: @@ -835,11 +835,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/59728d36-e0e8-4c65-87ff-9486ee8a66a1 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/576a3d42-3067-43b7-9e68-85ebe0f7b990 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3D0F8631CD3E44C79F661D59403FB6C1 Ref B: AMS231032607023 Ref C: 2026-03-31T21:43:15Z' + - 'Ref A: F44B5209C0B943BF8F4BCA114924C78A Ref B: AMS231032608031 Ref C: 2026-05-10T18:13:39Z' status: code: 200 message: OK @@ -857,7 +857,7 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview response: @@ -873,7 +873,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:16 GMT + - Sun, 10 May 2026 18:13:39 GMT expires: - '-1' pragma: @@ -885,11 +885,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/7e68d618-f030-4bde-b1de-7ef9c34cbed8 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/6ee1d116-eb63-4cdf-b1a8-201ce7d3c2a5 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F44F30DAE6934DC0A971E090398C0735 Ref B: AMS231032609019 Ref C: 2026-03-31T21:43:15Z' + - 'Ref A: B3EC6502DDA6497FAC1576A6FEEA6CC5 Ref B: AMS231020614019 Ref C: 2026-05-10T18:13:39Z' status: code: 200 message: OK @@ -907,216 +907,13 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview response: body: - string: '{"properties":{"value":"none","description":"Sets query capture mode - for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '669' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/38ede3b0-1454-4de2-854b-023d5439e93f - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: D8FAA8A2A60E43DBAD32B315C81E6885 Ref B: AMS231020615029 Ref C: 2026-03-31T21:43:17Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"source": "user-override", "value": "all"}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server autonomous-tuning update - Connection: - - keep-alive - Content-Length: - - '59' - Content-Type: - - application/json - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview - response: - body: - string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-03-31T21:43:17.82Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d9400856-400e-4ce4-a409-1b58972aa163?api-version=2026-01-01-preview&t=639105901978802313&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=NnM1Xg-wzehQU9U-uBlBbz0eIilBzkurCzVfJM8eUzsbj85_9QazPjiu0e1ypZ029F6c6xLIKKrwojuG20-KAGSmUloILV1Je3OH6owhuA06UOlgxs7zOE2BctmF8jOnlbQdYZdYKfG-rwLDSESeoRFqdpvUsJwHSrQgFLlj66Z69nBLM3WE1l2vVbCFZD75P9sWtAKvyshry_O8vuezkqu0Yut6EPphUpY_0NQwX6EpXnHTGRwM8KfP3eeIF5660ziwFdCQ1lghm7vYmDhzN8ioOJ7ep1sLaoGSQfoWU2TUVsP8XHq4ZsnVJgfyDNRTll4FObWJ_bsKju01hRcMVQ&h=DrcM4s9km_FbTqEftTE7RAw6eEqG17De0-C573yak04 - cache-control: - - no-cache - content-length: - - '99' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/d9400856-400e-4ce4-a409-1b58972aa163?api-version=2026-01-01-preview&t=639105901978802313&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=uefDAftLHPqaex1R26SJKULhPz4TWIgfUP_scagok2Rx_M9efDm4WFwZYpza6Jwaryn4DgTipFKAH7AvKPvE1-v6XymzvguSh0NX5qyCMV4nMbvVVxZbr1VryL_jwCFNKBkVxtCr_LEfZ-PHanFxHe7_FG85iakhf-FgBuUAqDlJNwORdV4yxOZbMuEYKv227W3Afp5ZMw2ovoQo5h8-3rgSIu4djhBHfvM7XVBI57iL4Loz2hf5rjhTJWmh8kmw1cLsMZeZlcoZqUIyypU4SesyOrE0h9HCA3grA4lDtC1MJJ3a54Abiyjp1A-wXl7Ffcrk8nH1BaNlfpPZu3HnAQ&h=flyGsIeEF8Sg9KRGqnH39UovGEPev5beocbwh6IjHPc - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/1febe630-493b-4a2e-bcb6-356a83d58182 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: EF1D6B11F29F4752912249CCD2CA9690 Ref B: AMS231032609009 Ref C: 2026-03-31T21:43:17Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server autonomous-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d9400856-400e-4ce4-a409-1b58972aa163?api-version=2026-01-01-preview&t=639105901978802313&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=NnM1Xg-wzehQU9U-uBlBbz0eIilBzkurCzVfJM8eUzsbj85_9QazPjiu0e1ypZ029F6c6xLIKKrwojuG20-KAGSmUloILV1Je3OH6owhuA06UOlgxs7zOE2BctmF8jOnlbQdYZdYKfG-rwLDSESeoRFqdpvUsJwHSrQgFLlj66Z69nBLM3WE1l2vVbCFZD75P9sWtAKvyshry_O8vuezkqu0Yut6EPphUpY_0NQwX6EpXnHTGRwM8KfP3eeIF5660ziwFdCQ1lghm7vYmDhzN8ioOJ7ep1sLaoGSQfoWU2TUVsP8XHq4ZsnVJgfyDNRTll4FObWJ_bsKju01hRcMVQ&h=DrcM4s9km_FbTqEftTE7RAw6eEqG17De0-C573yak04 - response: - body: - string: '{"name":"d9400856-400e-4ce4-a409-1b58972aa163","status":"InProgress","startTime":"2026-03-31T21:43:17.82Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/aa7237c6-be2c-4823-8ccb-1be46e6c4220 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 2715F27A04774ACDBC29B2CE175252DE Ref B: AMS231032607029 Ref C: 2026-03-31T21:43:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server autonomous-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/d9400856-400e-4ce4-a409-1b58972aa163?api-version=2026-01-01-preview&t=639105901978802313&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=NnM1Xg-wzehQU9U-uBlBbz0eIilBzkurCzVfJM8eUzsbj85_9QazPjiu0e1ypZ029F6c6xLIKKrwojuG20-KAGSmUloILV1Je3OH6owhuA06UOlgxs7zOE2BctmF8jOnlbQdYZdYKfG-rwLDSESeoRFqdpvUsJwHSrQgFLlj66Z69nBLM3WE1l2vVbCFZD75P9sWtAKvyshry_O8vuezkqu0Yut6EPphUpY_0NQwX6EpXnHTGRwM8KfP3eeIF5660ziwFdCQ1lghm7vYmDhzN8ioOJ7ep1sLaoGSQfoWU2TUVsP8XHq4ZsnVJgfyDNRTll4FObWJ_bsKju01hRcMVQ&h=DrcM4s9km_FbTqEftTE7RAw6eEqG17De0-C573yak04 - response: - body: - string: '{"name":"d9400856-400e-4ce4-a409-1b58972aa163","status":"Succeeded","startTime":"2026-03-31T21:43:17.82Z"}' - headers: - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/c352832e-11c3-40d9-8cce-726513846da8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 7E0A3F53A94F4C0284E8CEAF8028B38E Ref B: AMS231022012023 Ref C: 2026-03-31T21:43:28Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server autonomous-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"all","description":"Sets query capture mode - for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' + string: '{"properties":{"value":"top","description":"Sets query capture mode + for query store. None disables any capturing.","defaultValue":"top","dataType":"Enumeration","allowedValues":"top,all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' headers: cache-control: - no-cache @@ -1125,7 +922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:29 GMT + - Sun, 10 May 2026 18:13:40 GMT expires: - '-1' pragma: @@ -1137,11 +934,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/d32ee82b-d1b8-445a-b270-ed6e63ff68ce + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/3e6bca8a-1829-46c3-8bf8-a30c16f31b72 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 59C249F0D79748C7B9DB3A24CF3E9263 Ref B: AMS231020615023 Ref C: 2026-03-31T21:43:29Z' + - 'Ref A: 3FF0E58A312147448C5519307FCE85A4 Ref B: AMS231032609039 Ref C: 2026-05-10T18:13:40Z' status: code: 200 message: OK @@ -1159,7 +956,7 @@ interactions: ParameterSetName: - -g -s User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview response: @@ -1175,7 +972,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:30 GMT + - Sun, 10 May 2026 18:13:40 GMT expires: - '-1' pragma: @@ -1187,11 +984,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/a1dbbc30-a571-4f25-b46f-679d135b16e9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/73aa5b1e-c6cc-403b-94b4-6ecae4ee7f5d x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8A4F33345A4E4E86987E0C7FB0E8AB2C Ref B: AMS231020615029 Ref C: 2026-03-31T21:43:30Z' + - 'Ref A: 6F4080D21D0B433D8B9614D4B23DA7EA Ref B: AMS231022012051 Ref C: 2026-05-10T18:13:40Z' status: code: 200 message: OK @@ -1209,13 +1006,13 @@ interactions: ParameterSetName: - -g -s User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview response: body: - string: '{"properties":{"value":"all","description":"Sets query capture mode - for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' + string: '{"properties":{"value":"top","description":"Sets query capture mode + for query store. None disables any capturing.","defaultValue":"top","dataType":"Enumeration","allowedValues":"top,all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' headers: cache-control: - no-cache @@ -1224,7 +1021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:30 GMT + - Sun, 10 May 2026 18:13:42 GMT expires: - '-1' pragma: @@ -1236,11 +1033,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/c9553dee-3032-45fb-9841-a419eb4fe0a6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/a7404bf8-a91a-474d-8d00-eaeb1efc725b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: E2BC83D956584465BE69A602E76DC79F Ref B: AMS231020615009 Ref C: 2026-03-31T21:43:30Z' + - 'Ref A: D72AEFD6813342DDBE3156278D251C64 Ref B: AMS231032608049 Ref C: 2026-05-10T18:13:41Z' status: code: 200 message: OK @@ -1258,7 +1055,7 @@ interactions: ParameterSetName: - -g -s User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations?api-version=2026-01-01-preview response: @@ -1329,7 +1126,7 @@ interactions: the maximum memory to be used by each autovacuum worker process.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2097151","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-AUTOVACUUM-WORK-MEM"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_work_mem","name":"autovacuum_work_mem","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"md5,scram-sha-256","description":"Accepted password authentication method.","defaultValue":"md5,scram-sha-256","dataType":"Set","allowedValues":"md5,scram-sha-256","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274147"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.accepted_password_auth_method","name":"azure.accepted_password_auth_method","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Create temp tablespace on ephemeral disk.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.enable_temp_tablespaces_on_local_ssd","name":"azure.enable_temp_tablespaces_on_local_ssd","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Specifies - which extensions are allowed to be created in the server.","defaultValue":"","dataType":"Set","allowedValues":",address_standardizer,address_standardizer_data_us,age,amcheck,anon,azure_ai,azure_storage,bloom,btree_gin,btree_gist,citext,credcheck,cube,dblink,dict_int,dict_xsyn,earthdistance,fuzzystrmatch,hll,hstore,hypopg,intagg,intarray,ip4r,isn,lo,login_hook,ltree,oracle_fdw,orafce,pageinspect,pg_buffercache,pg_cron,pg_diskann,pg_duckdb,pg_freespacemap,pg_hint_plan,pg_ivm,pg_partman,pg_prewarm,pg_repack,pg_squeeze,pg_stat_statements,pg_trgm,pg_visibility,pgaudit,pgcrypto,pglogical,pgrouting,pgrowlocks,pgstattuple,plpgsql,plv8,postgis,postgis_raster,postgis_sfcgal,postgis_tiger_geocoder,postgis_topology,postgres_fdw,postgres_protobuf,semver,session_variable,sslinfo,tablefunc,tdigest,tds_fdw,timescaledb,topn,tsm_system_rows,tsm_system_time,unaccent,uuid-ossp,vector","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274269"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.extensions","name":"azure.extensions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Sepcifies + which extensions are allowed to be created in the server.","defaultValue":"","dataType":"Set","allowedValues":",address_standardizer,address_standardizer_data_us,age,amcheck,anon,azure_ai,azure_storage,bloom,btree_gin,btree_gist,citext,credcheck,cube,dblink,dict_int,dict_xsyn,earthdistance,fuzzystrmatch,hll,hstore,hypopg,intagg,intarray,ip4r,isn,lo,login_hook,ltree,oracle_fdw,orafce,pageinspect,pg_buffercache,pg_cron,pg_diskann,pg_duckdb,pg_freespacemap,pg_hint_plan,pg_ivm,pg_partman,pg_prewarm,pg_repack,pg_squeeze,pg_stat_statements,pg_trgm,pg_visibility,pgaudit,pgcrypto,pglogical,pgrouting,pgrowlocks,pgstattuple,plpgsql,plv8,postgis,postgis_raster,postgis_sfcgal,postgis_tiger_geocoder,postgis_topology,postgres_fdw,postgres_protobuf,semver,session_variable,sslinfo,tablefunc,temporal_tables,tdigest,tds_fdw,timescaledb,topn,tsm_system_rows,tsm_system_time,unaccent,uuid-ossp,vector","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274269"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.extensions","name":"azure.extensions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Sepcifies the flag indicating if mirroring is enabled on server.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.fabric_mirror_enabled","name":"azure.fabric_mirror_enabled","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"When set to on, this parameter will enable the use of the binary format for copying data during migration.","defaultValue":"off","dataType":"Boolean","allowedValues":"on, @@ -1773,7 +1570,9 @@ interactions: role name is allowed.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgpartman/pg_partman"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_partman_bgw.role","name":"pg_partman_bgw.role","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Starts the autoprewarm worker.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgprewarm.html#PGPREWARM-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_prewarm.autoprewarm","name":"pg_prewarm.autoprewarm","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"300","description":"Sets the interval between dumps of shared buffers. If set to zero, time-based dumping - is disabled.","defaultValue":"300","dataType":"Integer","allowedValues":"0-2147483","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgprewarm.html#PGPREWARM-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_prewarm.autoprewarm_interval","name":"pg_prewarm.autoprewarm_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"15","description":"Sets + is disabled.","defaultValue":"300","dataType":"Integer","allowedValues":"0-2147483","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgprewarm.html#PGPREWARM-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_prewarm.autoprewarm_interval","name":"pg_prewarm.autoprewarm_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Controls + whether query text is emitted in telemetry pipeline. Need to reload the config + for the change to take effect","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.emit_query_text","name":"pg_qs.emit_query_text","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"15","description":"Sets the query_store capture interval in minutes for pg_qs - this is the frequency of data persistence.","defaultValue":"15","dataType":"Integer","allowedValues":"1-30","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"min","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.interval_length_minutes","name":"pg_qs.interval_length_minutes","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Internal Use Only: This parameter is used as a feature override switch. If it shows @@ -1783,8 +1582,8 @@ interactions: the maximum number of bytes that will be saved for query plan text for pg_qs; longer plans will be truncated.","defaultValue":"7500","dataType":"Integer","allowedValues":"100-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"bytes","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.max_plan_size","name":"pg_qs.max_plan_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"6000","description":"Sets the maximum query text length that will be saved; longer queries will be truncated.","defaultValue":"6000","dataType":"Integer","allowedValues":"100-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"bytes","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.max_query_text_length","name":"pg_qs.max_query_text_length","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"capture_parameterless_only","description":"Whether - and when to capture query positional parameters.","defaultValue":"capture_parameterless_only","dataType":"Enumeration","allowedValues":"capture_parameterless_only,capture_first_sample","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.parameters_capture_mode","name":"pg_qs.parameters_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"all","description":"Sets - query capture mode for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"7","description":"Sets + and when to capture query positional parameters.","defaultValue":"capture_parameterless_only","dataType":"Enumeration","allowedValues":"capture_parameterless_only,capture_first_sample","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.parameters_capture_mode","name":"pg_qs.parameters_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"top","description":"Sets + query capture mode for query store. None disables any capturing.","defaultValue":"top","dataType":"Enumeration","allowedValues":"top,all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"7","description":"Sets the retention period window in days for pg_qs - after this time data will be deleted.","defaultValue":"7","dataType":"Integer","allowedValues":"1-30","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.retention_period_in_days","name":"pg_qs.retention_period_in_days","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Turns saving query plans on or off for pg_qs ","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.store_query_plans","name":"pg_qs.store_query_plans","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Selects @@ -1831,8 +1630,8 @@ interactions: Use Only: This parameter is used as a feature override switch.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_stats.is_enabled_fs","name":"pgms_stats.is_enabled_fs","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"100","description":"Set the frequency, in milliseconds, at which wait events are sampled.","defaultValue":"100","dataType":"Integer","allowedValues":"1-600000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_wait_sampling.history_period","name":"pgms_wait_sampling.history_period","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Internal Use Only: This parameter is used as a feature override switch. If it shows - as off, wait sampling will be disabled despite the value set for pgms_wait_sampling.query_capture_mode.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_wait_sampling.is_enabled_fs","name":"pgms_wait_sampling.is_enabled_fs","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"none","description":"Selects - which statements are tracked by the pgms_wait_sampling extension.","defaultValue":"none","dataType":"Enumeration","allowedValues":"all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_wait_sampling.query_capture_mode","name":"pgms_wait_sampling.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"auto","description":"Controls + as off, wait sampling will be disabled despite the value set for pgms_wait_sampling.query_capture_mode.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_wait_sampling.is_enabled_fs","name":"pgms_wait_sampling.is_enabled_fs","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"all","description":"Selects + which statements are tracked by the pgms_wait_sampling extension.","defaultValue":"all","dataType":"Enumeration","allowedValues":"all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_wait_sampling.query_capture_mode","name":"pgms_wait_sampling.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"auto","description":"Controls the planner''s selection of custom or generic plan.","defaultValue":"auto","dataType":"Enumeration","allowedValues":"auto,force_generic_plan,force_custom_plan","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-PLAN-CACHE-MODE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/plan_cache_mode","name":"plan_cache_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"5432","description":"Sets the TCP port the server listens on.","defaultValue":"5432","dataType":"Integer","allowedValues":"1-65535","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-PORT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/port","name":"port","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets the amount of time to wait after authentication on connection startup.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-POST-AUTH-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/post_auth_delay","name":"post_auth_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"DISABLE_ALL","description":"Controls @@ -2014,11 +1813,11 @@ interactions: cache-control: - no-cache content-length: - - '389497' + - '390211' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:31 GMT + - Sun, 10 May 2026 18:13:42 GMT expires: - '-1' pragma: @@ -2030,11 +1829,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/fda7299d-87a4-46ed-8f5b-4e6833dab145 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/a632e9e9-e6df-4643-8d43-cde748aae076 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 020F6AC573AB47C0A6C148097E82B7BB Ref B: AMS231032608037 Ref C: 2026-03-31T21:43:31Z' + - 'Ref A: 40AE4054B958449BA258A1F4B2F76444 Ref B: AMS231020512045 Ref C: 2026-05-10T18:13:42Z' status: code: 200 message: OK @@ -2052,7 +1851,7 @@ interactions: ParameterSetName: - -g -s -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview response: @@ -2068,7 +1867,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:32 GMT + - Sun, 10 May 2026 18:13:43 GMT expires: - '-1' pragma: @@ -2080,11 +1879,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/bd0af4d0-c351-449a-9bce-6a559ad41c61 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/bce3f745-1ac4-482f-9ec8-ecdbb2ae8476 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 529A49AA5FF84CD68502164E4C479009 Ref B: AMS231032607035 Ref C: 2026-03-31T21:43:32Z' + - 'Ref A: 0F8FE0F6457D49B69C4EE13B5EC0C21D Ref B: AMS231022012031 Ref C: 2026-05-10T18:13:43Z' status: code: 200 message: OK @@ -2102,13 +1901,13 @@ interactions: ParameterSetName: - --name -g -s User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview response: body: - string: '{"properties":{"value":"all","description":"Sets query capture mode - for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' + string: '{"properties":{"value":"top","description":"Sets query capture mode + for query store. None disables any capturing.","defaultValue":"top","dataType":"Enumeration","allowedValues":"top,all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' headers: cache-control: - no-cache @@ -2117,7 +1916,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:33 GMT + - Sun, 10 May 2026 18:13:43 GMT expires: - '-1' pragma: @@ -2129,11 +1928,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/3e304af0-8125-46e9-b380-2f6b660ec8ac + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/a2b655d9-1bb1-45f6-94f0-4cef95e23e29 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B4A02424037F462BB282BFEA4D2E0E1A Ref B: AMS231020614029 Ref C: 2026-03-31T21:43:32Z' + - 'Ref A: DC8E03D1ED9F48E8B79C79F8FE7CA022 Ref B: AMS231020615033 Ref C: 2026-05-10T18:13:44Z' status: code: 200 message: OK @@ -2151,7 +1950,7 @@ interactions: ParameterSetName: - -g -s -n -v User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_reads_per_table?api-version=2026-01-01-preview response: @@ -2167,7 +1966,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:33 GMT + - Sun, 10 May 2026 18:13:44 GMT expires: - '-1' pragma: @@ -2179,11 +1978,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/ccb5a5bf-dc2a-4243-b37a-7fca874e8ec9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/5135a151-4047-43d0-8904-2d8af6695c4a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 13DD6DA9ADAC434EB3AC8A0A07E3AEBF Ref B: AMS231020512045 Ref C: 2026-03-31T21:43:33Z' + - 'Ref A: 47DCCEF8BDAF4603B665C4E62F6D2C6C Ref B: AMS231032607035 Ref C: 2026-05-10T18:13:44Z' status: code: 200 message: OK @@ -2205,27 +2004,27 @@ interactions: ParameterSetName: - -g -s -n -v User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_reads_per_table?api-version=2026-01-01-preview response: body: - string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-03-31T21:43:34.417Z"}' + string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-05-10T18:13:45.71Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/8dac9fd8-52c4-43f7-aa41-fc2e52a0dd70?api-version=2026-01-01-preview&t=639105902144409941&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=vnz6NWZDPs7WdLv7CNButc6NTiAr35_mX-DpERgu_PuvPHlZAZ-697o9u4Dpg349pjyNbACdTfxFbtIxO6epjSzHtIrgZpfNzzYiAMD_acCCxHkTqQN11TrLDpRDY_dOoRaYNxyo5tPWF28ZflG9IWShJ364a9WfGvGSx6O0eNFKB1VvJIvpHRjKoK_SAie3iFGIoe9EN_s9QkQCe9zQGxG7fKkh83m49W2q3_yFHykTGMQ56wGWPYOHY1QJGw8vrrTKhERsU_efSkHJtNVLLhRjlZstYpzQqrltfgyiW7cRBnkJrCkq4zxHOSOTbHy7qeoaW11H9jEJ6M7BSOJZUg&h=6b7qftc301x8XfMit909zIDXJ5RwQACj3xEWtDWV4ek + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/2ff4847c-c56a-45f7-9d19-d28fb1dacc49?api-version=2026-01-01-preview&t=639140336257563180&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=IB7g7ObcQQCAYHy9nY9wMaeJzls3K7aChIACHJltITkwtJADT-8ve06696YDK0KWKFTEs99hgtwqIbL61nNCThnkp419MdelISpkUMCDKrSPZkW8ImLOzRKlQGuT-tB2RMx8LvJO0X7Bykal22tSsbmsjn26jW-7FKPP_qg2ZrcjbAjuJ7pOnm7jhuutb1KH9kVKkN3WitQAxJeakv7HZFlajVGFQwFlJrwnmNoefQrtOh5jDcplCehxSc-3J4juOixKY7YGNtSbi1S3HtkheWpPcTIWTcOxCh9yokXLBn89SueHDP6i0m5AXu4gtY2ej5KJN5H2yssYdwa38JL7gA&h=9ggEUbuQdBzTpWJJ9FdX0uh8dg3634odCyTnda7e-ss cache-control: - no-cache content-length: - - '100' + - '99' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:33 GMT + - Sun, 10 May 2026 18:13:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/8dac9fd8-52c4-43f7-aa41-fc2e52a0dd70?api-version=2026-01-01-preview&t=639105902144566239&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=AXEzsfYdlcTX-2peCs9B-zbWR0FYsaApbL6Avx1eSeEUEPBmAwuNWgIQwhYV54GWp3gwbj06aIySKukxwLfNqeDHle8TaAJ5lYuOSCSqp5sjENnYIgmtpH2ylD51Z8b18BY2pKUALb5GCojJFu-jtfwoAVqNSCISNuCUCD8omkdAr7KhFiZhObpF3U73ooEMfjXZR3tN1fsmvVyKfowlGnlEy_jbSt4TfbDfboBFs6ztnzIdIL0SgPLbmKmf9U3ERQwv59_fNdXk4kghGJyEsRN7nnbibXlV-Goj0ryyO4FMijyHVywSkcurKmEWXc471_jFKB1fA5dThIcMHl5DVQ&h=THgtx0KZX412nQQ2r9CrA-haWDnM7widHuXd7mi-K9Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/2ff4847c-c56a-45f7-9d19-d28fb1dacc49?api-version=2026-01-01-preview&t=639140336257719424&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=QKUAnPXEOAI7wbjIS-7ftsHq_5_tR9yWQm2pA9mI_tUNbb2epiukZMipsgM5qBo1kjgHFOFRszZz9_JBSG7NRuMLurwGiiW83lOllLJGzBp11gvkdZS-u6g3SLWJGxynAPUe9hvwPPzu7T_RMO1qOXkUO8MgeyUw_qjs1H_Eyw84VahXlgRWOuqJjVPFXagvc4DIX85O6mO6xrWvMX0CYZNAxep9kdPh-ImGuZHWjGv7dI5oD5-1nUhWO84Rs1Px5BABp39gSexZgB6uR5OvOcrOjUfK4lahnyqLUIHGfPApFT8KHAk_xkM7jbOnheKLhvvzHXoslgSogqnUfymAfA&h=2JWPmwxzJDIc2TKmphz6InfHoj0xPQLGNso-UWXanJc pragma: - no-cache strict-transport-security: @@ -2235,13 +2034,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/4a7305fd-9845-49cc-8e17-c306860bd802 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/0a40c0f6-7b4e-4ae6-836b-1845ce6a57d8 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BE22B7192C514855BD8DEE1ECCF6E5E4 Ref B: AMS231020512023 Ref C: 2026-03-31T21:43:34Z' + - 'Ref A: E048E8D799164E51919EAB4B64574CE9 Ref B: AMS231032607033 Ref C: 2026-05-10T18:13:45Z' status: code: 202 message: Accepted @@ -2259,21 +2058,21 @@ interactions: ParameterSetName: - -g -s -n -v User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/8dac9fd8-52c4-43f7-aa41-fc2e52a0dd70?api-version=2026-01-01-preview&t=639105902144409941&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=vnz6NWZDPs7WdLv7CNButc6NTiAr35_mX-DpERgu_PuvPHlZAZ-697o9u4Dpg349pjyNbACdTfxFbtIxO6epjSzHtIrgZpfNzzYiAMD_acCCxHkTqQN11TrLDpRDY_dOoRaYNxyo5tPWF28ZflG9IWShJ364a9WfGvGSx6O0eNFKB1VvJIvpHRjKoK_SAie3iFGIoe9EN_s9QkQCe9zQGxG7fKkh83m49W2q3_yFHykTGMQ56wGWPYOHY1QJGw8vrrTKhERsU_efSkHJtNVLLhRjlZstYpzQqrltfgyiW7cRBnkJrCkq4zxHOSOTbHy7qeoaW11H9jEJ6M7BSOJZUg&h=6b7qftc301x8XfMit909zIDXJ5RwQACj3xEWtDWV4ek + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/2ff4847c-c56a-45f7-9d19-d28fb1dacc49?api-version=2026-01-01-preview&t=639140336257563180&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=IB7g7ObcQQCAYHy9nY9wMaeJzls3K7aChIACHJltITkwtJADT-8ve06696YDK0KWKFTEs99hgtwqIbL61nNCThnkp419MdelISpkUMCDKrSPZkW8ImLOzRKlQGuT-tB2RMx8LvJO0X7Bykal22tSsbmsjn26jW-7FKPP_qg2ZrcjbAjuJ7pOnm7jhuutb1KH9kVKkN3WitQAxJeakv7HZFlajVGFQwFlJrwnmNoefQrtOh5jDcplCehxSc-3J4juOixKY7YGNtSbi1S3HtkheWpPcTIWTcOxCh9yokXLBn89SueHDP6i0m5AXu4gtY2ej5KJN5H2yssYdwa38JL7gA&h=9ggEUbuQdBzTpWJJ9FdX0uh8dg3634odCyTnda7e-ss response: body: - string: '{"name":"8dac9fd8-52c4-43f7-aa41-fc2e52a0dd70","status":"InProgress","startTime":"2026-03-31T21:43:34.417Z"}' + string: '{"name":"2ff4847c-c56a-45f7-9d19-d28fb1dacc49","status":"InProgress","startTime":"2026-05-10T18:13:45.71Z"}' headers: cache-control: - no-cache content-length: - - '108' + - '107' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:35 GMT + - Sun, 10 May 2026 18:13:45 GMT expires: - '-1' pragma: @@ -2285,11 +2084,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/77767158-7f53-4575-b322-4213f3c44e7a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/13372e4b-3948-4695-ae28-e76b2c6ee529 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FBF12BD4DC074BDF9A09369171E0ECF2 Ref B: AMS231032608009 Ref C: 2026-03-31T21:43:34Z' + - 'Ref A: 9B5D1B66021242E2A215E23A417442C6 Ref B: AMS231032609047 Ref C: 2026-05-10T18:13:46Z' status: code: 200 message: OK @@ -2307,21 +2106,21 @@ interactions: ParameterSetName: - -g -s -n -v User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/8dac9fd8-52c4-43f7-aa41-fc2e52a0dd70?api-version=2026-01-01-preview&t=639105902144409941&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=vnz6NWZDPs7WdLv7CNButc6NTiAr35_mX-DpERgu_PuvPHlZAZ-697o9u4Dpg349pjyNbACdTfxFbtIxO6epjSzHtIrgZpfNzzYiAMD_acCCxHkTqQN11TrLDpRDY_dOoRaYNxyo5tPWF28ZflG9IWShJ364a9WfGvGSx6O0eNFKB1VvJIvpHRjKoK_SAie3iFGIoe9EN_s9QkQCe9zQGxG7fKkh83m49W2q3_yFHykTGMQ56wGWPYOHY1QJGw8vrrTKhERsU_efSkHJtNVLLhRjlZstYpzQqrltfgyiW7cRBnkJrCkq4zxHOSOTbHy7qeoaW11H9jEJ6M7BSOJZUg&h=6b7qftc301x8XfMit909zIDXJ5RwQACj3xEWtDWV4ek + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/2ff4847c-c56a-45f7-9d19-d28fb1dacc49?api-version=2026-01-01-preview&t=639140336257563180&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=IB7g7ObcQQCAYHy9nY9wMaeJzls3K7aChIACHJltITkwtJADT-8ve06696YDK0KWKFTEs99hgtwqIbL61nNCThnkp419MdelISpkUMCDKrSPZkW8ImLOzRKlQGuT-tB2RMx8LvJO0X7Bykal22tSsbmsjn26jW-7FKPP_qg2ZrcjbAjuJ7pOnm7jhuutb1KH9kVKkN3WitQAxJeakv7HZFlajVGFQwFlJrwnmNoefQrtOh5jDcplCehxSc-3J4juOixKY7YGNtSbi1S3HtkheWpPcTIWTcOxCh9yokXLBn89SueHDP6i0m5AXu4gtY2ej5KJN5H2yssYdwa38JL7gA&h=9ggEUbuQdBzTpWJJ9FdX0uh8dg3634odCyTnda7e-ss response: body: - string: '{"name":"8dac9fd8-52c4-43f7-aa41-fc2e52a0dd70","status":"Succeeded","startTime":"2026-03-31T21:43:34.417Z"}' + string: '{"name":"2ff4847c-c56a-45f7-9d19-d28fb1dacc49","status":"Succeeded","startTime":"2026-05-10T18:13:45.71Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '106' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:45 GMT + - Sun, 10 May 2026 18:13:56 GMT expires: - '-1' pragma: @@ -2333,11 +2132,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/055a44e5-fd27-492b-9322-d2352e6a8850 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/ac6d9f81-d49d-4cbe-9d24-259434ecb767 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 95B33C3BFD974413844FCFE9CFEFC921 Ref B: AMS231032609053 Ref C: 2026-03-31T21:43:45Z' + - 'Ref A: 474B378614C340C78FEBCDD9F5A91B90 Ref B: AMS231020512027 Ref C: 2026-05-10T18:13:56Z' status: code: 200 message: OK @@ -2355,7 +2154,7 @@ interactions: ParameterSetName: - -g -s -n -v User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_reads_per_table?api-version=2026-01-01-preview response: @@ -2371,7 +2170,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:46 GMT + - Sun, 10 May 2026 18:13:56 GMT expires: - '-1' pragma: @@ -2383,11 +2182,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/ffd13870-5831-46e9-bb4b-89eb775ef478 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/e5f635d1-e976-4048-a41d-7e0630e95ca2 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16497' x-msedge-ref: - - 'Ref A: 0A71C8AE4EF04BF489DD7089B724F9FD Ref B: AMS231022012037 Ref C: 2026-03-31T21:43:45Z' + - 'Ref A: 811D9DF7323F456D9801AD38F904B3AD Ref B: AMS231032607031 Ref C: 2026-05-10T18:13:57Z' status: code: 200 message: OK @@ -2405,7 +2204,7 @@ interactions: ParameterSetName: - -g -s User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/tuningOptions/index/recommendations?api-version=2026-01-01-preview response: @@ -2419,7 +2218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:46 GMT + - Sun, 10 May 2026 18:13:57 GMT expires: - '-1' pragma: @@ -2431,11 +2230,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/7f45a10d-941d-4bf2-8af4-b48a1bbf273a + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/303dd2c3-f4e0-49b4-b515-8cb045466d4d x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: FDE4A62E3B634A988525A6990301A481 Ref B: AMS231020512035 Ref C: 2026-03-31T21:43:46Z' + - 'Ref A: 30AD841C8DBC4DF0929263A57DDB87F1 Ref B: AMS231032608017 Ref C: 2026-05-10T18:13:57Z' status: code: 200 message: OK @@ -2453,7 +2252,7 @@ interactions: ParameterSetName: - -g -s User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/tuningOptions/table/recommendations?api-version=2026-01-01-preview response: @@ -2467,7 +2266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:47 GMT + - Sun, 10 May 2026 18:13:58 GMT expires: - '-1' pragma: @@ -2479,11 +2278,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/2e0b7773-85bd-4166-9750-f8fa9fe17678 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/582aae23-52af-468e-8de6-367f65267ba1 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16497' x-msedge-ref: - - 'Ref A: D0FD139F737C45B8871989A3755B46DA Ref B: AMS231020615007 Ref C: 2026-03-31T21:43:47Z' + - 'Ref A: C7256F9E397147E1B7710A986C875A6D Ref B: AMS231020615021 Ref C: 2026-05-10T18:13:58Z' status: code: 200 message: OK @@ -2505,27 +2304,27 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview response: body: - string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-03-31T21:43:48.67Z"}' + string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-05-10T18:13:59.707Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/79314244-7e30-466a-a6ec-bb3b0a3f979f?api-version=2026-01-01-preview&t=639105902287099679&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=M_lLPnpKOy_bGwTv3r_gAtiMjHA0raftVUgVo2MROoOFHb14suSo6qLvtx2f_mbVobEzSG4rwEunLORIwBEtCgSe9h6W6JZzGqFQO14BErRrAKUIT_OzWy28RVgU1bl4gEpdecLwi_qMBM_mn1dqIUW8aW4vXjke5PbORfUdDLw7CqmPk9zaVGmfe2yFU_5nO6FhJrlw0drgi0Wh_m_bUks2zurafyxv0j6jmyRE25yKcXOKCACFN6U92jFDmPM63h4o-P7NEuI5VEfV1C43ptg2-2MBqJmOXGlTL4b2xnAubFPv7vIL7vxz_WUCX5mPT-2Eh18uOmUQFASk_AKbZQ&h=HswGQo7o67hvOsISuUyqUhfY4H9vVGm1reBjaGazYx8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/ce4c88e7-4ab6-4302-a567-6745e1aa53a8?api-version=2026-01-01-preview&t=639140336397446575&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=Ua_0FaGpdauf5nDVgkRNyxWRJVZYmPLEfovhEkPumZ1m1Nh59Ou7fMgzGwqfhzOx9-k79IHAcM8NFsAENhJOi7LnadCvjSg_F76cUVo8tXP23XFBS2ayFP-MY0oFpVDr-dt7zUi2pf2OD1ZUqve8n_0NOn5b96-qVAeLGoigRkvXgJCYaFyPc51OrEcSq815GUk7wrDwqb0_dZq2puwtXs9_rpR7jtigzK9ObQi_jN_QsKRprW3aZKgqKCc2Rvo7F-PZflwVm-hO3xVBf5FPHcC2_YI2opYl1PLtOCL8gMH45Y0mM3dqzfMgBUV_la5cieEneQt9r8oSWCExk59pRg&h=4MYC26wXqkYBynoDStCY0NrMg96rEAn3M70SYKKceYs cache-control: - no-cache content-length: - - '99' + - '100' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:48 GMT + - Sun, 10 May 2026 18:13:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/79314244-7e30-466a-a6ec-bb3b0a3f979f?api-version=2026-01-01-preview&t=639105902287255914&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=aI_dq4T2aVkbbaCWrVpbxIXrAGz8o8VtLT2MtsV5Il6BqevIw6Z5J5FpeuO_uF1S1cjydgRRBp3HNT44rlq6uyrBf8bHybngfXKLwI85jwYj8WshR1lL53KDOgO2Uzw9Tp-CQ1tSOMSz-sA3DGyyJne1V1LCWO5w7Fx5a1m-tQ0ehAsWT50jkvRvgdPrgJTvYuZKBdIhAjCA_WG9Fe578SGpQ6ZiyAD6otFmmMIP9XsaioM5yFtZauspaZmpyU2bnvKDTy3fTPzTNktQEPkji2E0wAdVGWdDwPmre41fIu-GU2w-WKgDQi91nv2LUva8jIx3J42n51a4j7H75jZNeA&h=kkU3I3hW9A_rjRET8w4VUviIJfRdW2ulowGcnZpIfA0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/ce4c88e7-4ab6-4302-a567-6745e1aa53a8?api-version=2026-01-01-preview&t=639140336397602800&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=eIi4zncJmaRh3GwHxo23c_gEhOP4hNgNJsnUSzPZtLWNsAJUIoCRM-GMBi2xwz6lzJDjgh8P526xwSakaFsi1VjiUd9QG7zZtmbqdt5dVJ9btwIjmThDNc4oCnjWkCfUICsCbIqroUYddCTxB79wzjjhXVVM8ZP7ft_dFlr2YNhhOqizwWiUmxbG52ZEsQqqNDt5bFNOUfPz65jNIBAgmJ4Oo2CVijmR9RpGvcqbESE6qdF5g_b1sh_Z4AM81EwzstveckYaECwmvrBjieLWroe4UxZ8gfWENnLKvsDhZWnZRlf2tdK84-q1q6HTsr7OLnVSLwdqIgYzRd0D2DQBTA&h=4o8RIgtO4P3nM_SQp5gU4IL1tq1pmjHkWenTk__x8VY pragma: - no-cache strict-transport-security: @@ -2535,13 +2334,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/d510f450-8a0d-4abc-820f-26cebac87d89 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/5f99a02e-1f55-47d5-8e3a-911877e79017 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 9BA8043CA7214380A47BCB1CDF53C26E Ref B: AMS231020615011 Ref C: 2026-03-31T21:43:48Z' + - 'Ref A: A00F9D182494497394B1AF73E6AEA069 Ref B: AMS231032607027 Ref C: 2026-05-10T18:13:59Z' status: code: 202 message: Accepted @@ -2559,21 +2358,21 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/79314244-7e30-466a-a6ec-bb3b0a3f979f?api-version=2026-01-01-preview&t=639105902287099679&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=M_lLPnpKOy_bGwTv3r_gAtiMjHA0raftVUgVo2MROoOFHb14suSo6qLvtx2f_mbVobEzSG4rwEunLORIwBEtCgSe9h6W6JZzGqFQO14BErRrAKUIT_OzWy28RVgU1bl4gEpdecLwi_qMBM_mn1dqIUW8aW4vXjke5PbORfUdDLw7CqmPk9zaVGmfe2yFU_5nO6FhJrlw0drgi0Wh_m_bUks2zurafyxv0j6jmyRE25yKcXOKCACFN6U92jFDmPM63h4o-P7NEuI5VEfV1C43ptg2-2MBqJmOXGlTL4b2xnAubFPv7vIL7vxz_WUCX5mPT-2Eh18uOmUQFASk_AKbZQ&h=HswGQo7o67hvOsISuUyqUhfY4H9vVGm1reBjaGazYx8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/ce4c88e7-4ab6-4302-a567-6745e1aa53a8?api-version=2026-01-01-preview&t=639140336397446575&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=Ua_0FaGpdauf5nDVgkRNyxWRJVZYmPLEfovhEkPumZ1m1Nh59Ou7fMgzGwqfhzOx9-k79IHAcM8NFsAENhJOi7LnadCvjSg_F76cUVo8tXP23XFBS2ayFP-MY0oFpVDr-dt7zUi2pf2OD1ZUqve8n_0NOn5b96-qVAeLGoigRkvXgJCYaFyPc51OrEcSq815GUk7wrDwqb0_dZq2puwtXs9_rpR7jtigzK9ObQi_jN_QsKRprW3aZKgqKCc2Rvo7F-PZflwVm-hO3xVBf5FPHcC2_YI2opYl1PLtOCL8gMH45Y0mM3dqzfMgBUV_la5cieEneQt9r8oSWCExk59pRg&h=4MYC26wXqkYBynoDStCY0NrMg96rEAn3M70SYKKceYs response: body: - string: '{"name":"79314244-7e30-466a-a6ec-bb3b0a3f979f","status":"InProgress","startTime":"2026-03-31T21:43:48.67Z"}' + string: '{"name":"ce4c88e7-4ab6-4302-a567-6745e1aa53a8","status":"InProgress","startTime":"2026-05-10T18:13:59.707Z"}' headers: cache-control: - no-cache content-length: - - '107' + - '108' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:43:49 GMT + - Sun, 10 May 2026 18:14:00 GMT expires: - '-1' pragma: @@ -2585,11 +2384,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/c1437464-317c-4662-8c52-5f8055dadcbb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/36900a53-d29b-4251-b639-e19e7c5ffa14 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8039B47D607C496CB7BF24027C20B369 Ref B: AMS231032607049 Ref C: 2026-03-31T21:43:48Z' + - 'Ref A: 97DC2AE5D52E43038332BB33E846CC25 Ref B: AMS231022012019 Ref C: 2026-05-10T18:14:00Z' status: code: 200 message: OK @@ -2607,21 +2406,21 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/79314244-7e30-466a-a6ec-bb3b0a3f979f?api-version=2026-01-01-preview&t=639105902287099679&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=M_lLPnpKOy_bGwTv3r_gAtiMjHA0raftVUgVo2MROoOFHb14suSo6qLvtx2f_mbVobEzSG4rwEunLORIwBEtCgSe9h6W6JZzGqFQO14BErRrAKUIT_OzWy28RVgU1bl4gEpdecLwi_qMBM_mn1dqIUW8aW4vXjke5PbORfUdDLw7CqmPk9zaVGmfe2yFU_5nO6FhJrlw0drgi0Wh_m_bUks2zurafyxv0j6jmyRE25yKcXOKCACFN6U92jFDmPM63h4o-P7NEuI5VEfV1C43ptg2-2MBqJmOXGlTL4b2xnAubFPv7vIL7vxz_WUCX5mPT-2Eh18uOmUQFASk_AKbZQ&h=HswGQo7o67hvOsISuUyqUhfY4H9vVGm1reBjaGazYx8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/ce4c88e7-4ab6-4302-a567-6745e1aa53a8?api-version=2026-01-01-preview&t=639140336397446575&c=MIIHwDCCBqigAwIBAgIRAPWxbBB_mCCry-ZKSQn7cnowDQYJKoZIhvcNAQELBQAwNTEzMDEGA1UEAxMqQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgQ1VTIENBIDAxMB4XDTI2MDQwNzIzMDQ1M1oXDTI2MTAwMzA1MDQ1M1owQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDUaPYUfErvhN8Yj__o_n9q-mi3z5cn7gIFVUD9wwzLITkpvlwaS4ZCkzsgJUmme8iOwD9MwGrB0_nP0z4LrhBRlqgwoyvXLw90W8-TJ_r3DwaNPXj__WCiJFKfiXprCdql4v_pHTSFnTTVZGXp96YMAaEG9giFpk-8Cs3uKQbiOKHuczePyAzKsH5h8FzXQHbXsLNn__PyhU8TxZFocxzRuNgfKcSQNL3CN8jdykXbs2f1syZY1v5Dq_OyzQ_BTFE7Ue6GESAG4zLN6M0orsGwW1o-VxFzmN-t40l0kPCUyi3ncU3CQzz6Btq84l45JWMMb7e2-Evst0EVnMzfLVMpAgMBAAGjggS-MIIEujCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBT6s4rBWHpDWcIE3L6CHBE27m_0vTAfBgNVHSMEGDAWgBT85FoKL4UO50S5B3N44NREB6IZETCCAcYGA1UdHwSCAb0wggG5MG6gbKBqhmhodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBwoG6gbIZqaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvMi9jdXJyZW50LmNybDBfoF2gW4ZZaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jcmxzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxLzIvY3VycmVudC5jcmwwdKByoHCGbmh0dHA6Ly9jY21lY2VudHJhbHVzcGtpLmNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWVjZW50cmFsdXNpY2EwMS8yL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBABoD6uSSuEiQNafNxuHyzi9I8tmvdEG2RxP_-9N7NoSTIU316hwX_yN-5seOel7T5g0vng0_6yWc_tN5ceDpG5aOMzdvaLNJfSGGjzXkQY78IKF0VEzX79E2Zs-37G8VCEdz-5JMHqQ3yIjDjUmDn8bt0Jn3SZ15msUd2UJ50puzTstI092jo47YaLzFdTWej33FmOKju-38SZsR370A2vLSIXW0GiXGOuoqyGsOZnMk_nFMbkBp1-MB9R-rucWHb2971zwyxIJBCc9JWQjH7aLT_dgbMHMuzIMZCnJTpIWt7jShFHpSMkm3fjs1pzaKnsKmQ2hknXT4zOTFdnIz-po&s=Ua_0FaGpdauf5nDVgkRNyxWRJVZYmPLEfovhEkPumZ1m1Nh59Ou7fMgzGwqfhzOx9-k79IHAcM8NFsAENhJOi7LnadCvjSg_F76cUVo8tXP23XFBS2ayFP-MY0oFpVDr-dt7zUi2pf2OD1ZUqve8n_0NOn5b96-qVAeLGoigRkvXgJCYaFyPc51OrEcSq815GUk7wrDwqb0_dZq2puwtXs9_rpR7jtigzK9ObQi_jN_QsKRprW3aZKgqKCc2Rvo7F-PZflwVm-hO3xVBf5FPHcC2_YI2opYl1PLtOCL8gMH45Y0mM3dqzfMgBUV_la5cieEneQt9r8oSWCExk59pRg&h=4MYC26wXqkYBynoDStCY0NrMg96rEAn3M70SYKKceYs response: body: - string: '{"name":"79314244-7e30-466a-a6ec-bb3b0a3f979f","status":"Succeeded","startTime":"2026-03-31T21:43:48.67Z"}' + string: '{"name":"ce4c88e7-4ab6-4302-a567-6745e1aa53a8","status":"Succeeded","startTime":"2026-05-10T18:13:59.707Z"}' headers: cache-control: - no-cache content-length: - - '106' + - '107' content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:44:00 GMT + - Sun, 10 May 2026 18:14:10 GMT expires: - '-1' pragma: @@ -2633,11 +2432,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/b917e2a8-c485-48fb-b687-01dd2f839653 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/f63a4fce-fb55-4e9e-afda-ca69b6a80cdf x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 59268EDBFE60468F89F245B3F0C2A60C Ref B: AMS231022012007 Ref C: 2026-03-31T21:43:59Z' + - 'Ref A: 9DAD3F98AA584758808461F473FF6C32 Ref B: AMS231020512009 Ref C: 2026-05-10T18:14:10Z' status: code: 200 message: OK @@ -2655,7 +2454,7 @@ interactions: ParameterSetName: - -g -s --enabled User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview response: @@ -2671,7 +2470,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:44:00 GMT + - Sun, 10 May 2026 18:14:11 GMT expires: - '-1' pragma: @@ -2683,11 +2482,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/02db18ec-a560-4656-9793-f5a85e9e1ce7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/84ade769-a6b3-42ae-9d8f-8bd953bdec2d x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16497' x-msedge-ref: - - 'Ref A: F7FFD23BE36A461D91705119BC69F68F Ref B: AMS231032608051 Ref C: 2026-03-31T21:44:00Z' + - 'Ref A: 34C7E4F77F514738A410A986E13B2D2B Ref B: AMS231020512019 Ref C: 2026-05-10T18:14:11Z' status: code: 200 message: OK @@ -2705,7 +2504,7 @@ interactions: ParameterSetName: - -g -s -n User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview response: @@ -2721,7 +2520,56 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 31 Mar 2026 21:44:01 GMT + - Sun, 10 May 2026 18:14:12 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-operation-identifier: + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/38a2186f-9e7a-4eff-aed6-ed673f07241e + x-ms-ratelimit-remaining-subscription-global-reads: + - '16499' + x-msedge-ref: + - 'Ref A: 2A5844B96D884CA1AF5DED9156A91404 Ref B: AMS231020512049 Ref C: 2026-05-10T18:14:12Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - postgres flexible-server parameter show + Connection: + - keep-alive + ParameterSetName: + - --name -g -s + User-Agent: + - AZURECLI/2.86.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview + response: + body: + string: '{"properties":{"value":"top","description":"Sets query capture mode + for query store. None disables any capturing.","defaultValue":"top","dataType":"Enumeration","allowedValues":"top,all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' + headers: + cache-control: + - no-cache + content-length: + - '667' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 10 May 2026 18:14:12 GMT expires: - '-1' pragma: @@ -2733,11 +2581,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/4608afe6-6e7a-477c-b1d4-1846b04a363c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/3ca3d9ac-d694-4f19-b0bd-48892ed4c9b8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AEC4272B910A4965AE69961C23399491 Ref B: AMS231022012023 Ref C: 2026-03-31T21:44:01Z' + - 'Ref A: BC5C1F80B9624042BA9AB5535C6E5153 Ref B: AMS231020512027 Ref C: 2026-05-10T18:14:13Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/recordings/test_postgres_flexible_server_index_tuning_options.yaml b/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/recordings/test_postgres_flexible_server_index_tuning_options.yaml deleted file mode 100644 index b71c01718d5..00000000000 --- a/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/recordings/test_postgres_flexible_server_index_tuning_options.yaml +++ /dev/null @@ -1,2649 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: HEAD - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Tue, 31 Mar 2026 21:37:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 92CFECABF9704B4193CDDC9D346E3C99 Ref B: AMS231032607021 Ref C: 2026-03-31T21:37:51Z' - status: - code: 204 - message: No Content -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2024-11-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"canadacentral","tags":{"product":"azurecli","cause":"automation","test":"test_postgres_flexible_server_index_tuning_options","date":"2026-03-31T21:37:47Z","module":"postgresql"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '399' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:37:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 128C204820E844A888CA3059EFADFD8A Ref B: AMS231032607049 Ref C: 2026-03-31T21:37:52Z' - status: - code: 200 - message: OK -- request: - body: '{"name": "azuredbclitest-000002", "type": "Microsoft.DBforPostgreSQL/flexibleServers"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - Content-Length: - - '86' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/checkNameAvailability?api-version=2026-01-01-preview - response: - body: - string: '{"name":"azuredbclitest-000002","type":"Microsoft.DBforPostgreSQL/flexibleServers","nameAvailable":true,"message":""}' - headers: - cache-control: - - no-cache - content-length: - - '117' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:37:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/55702358-4a5b-4a97-8ba2-8dc18bfd9547 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: 2419364E4DE24A258D35721A3593B661 Ref B: AMS231022012011 Ref C: 2026-03-31T21:37:52Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/capabilities?api-version=2026-01-01-preview - response: - body: - string: '{"value":[{"name":"FlexibleServerCapabilities","supportedServerEditions":[{"supportedServerSkus":[{"supportedFeatures":[],"name":"Standard_B1ms","vCores":1,"supportedIops":640,"supportedMemoryPerVcoreMb":2048,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B2s","vCores":2,"supportedIops":1280,"supportedMemoryPerVcoreMb":2048,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B2ms","vCores":2,"supportedIops":1920,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B4ms","vCores":4,"supportedIops":2880,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B8ms","vCores":8,"supportedIops":4320,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B12ms","vCores":12,"supportedIops":4320,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B16ms","vCores":16,"supportedIops":4320,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B20ms","vCores":20,"supportedIops":4320,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]}],"name":"Burstable","defaultSkuName":"Standard_B2s","supportedStorageEditions":[{"name":"ManagedDisk","defaultStorageSizeMb":32768,"supportedStorageMb":[{"supportedIops":120,"storageSizeMb":32768,"defaultIopsTier":"P4","supportedIopsTiers":[{"name":"P4","iops":120},{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":240,"storageSizeMb":65536,"defaultIopsTier":"P6","supportedIopsTiers":[{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":500,"storageSizeMb":131072,"defaultIopsTier":"P10","supportedIopsTiers":[{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":1100,"storageSizeMb":262144,"defaultIopsTier":"P15","supportedIopsTiers":[{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":2300,"storageSizeMb":524288,"defaultIopsTier":"P20","supportedIopsTiers":[{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":5000,"storageSizeMb":1048576,"defaultIopsTier":"P30","supportedIopsTiers":[{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":2097152,"defaultIopsTier":"P40","supportedIopsTiers":[{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4193280,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4194304,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":16000,"storageSizeMb":8388608,"defaultIopsTier":"P60","supportedIopsTiers":[{"name":"P60","iops":16000},{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":18000,"storageSizeMb":16777216,"defaultIopsTier":"P70","supportedIopsTiers":[{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":20000,"storageSizeMb":33553408,"defaultIopsTier":"P80","supportedIopsTiers":[{"name":"P80","iops":20000}]}]},{"name":"ManagedDiskV2","defaultStorageSizeMb":32768,"supportedStorageMb":[{"supportedIops":3000,"supportedMaximumIops":80000,"storageSizeMb":32768,"maximumStorageSizeMb":67108864,"supportedThroughput":125,"supportedMaximumThroughput":1200,"defaultIopsTier":"None","supportedIopsTiers":[{"name":"None","iops":0}]}]}]},{"supportedServerSkus":[{"supportedFeatures":[],"name":"Standard_D2s_v3","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D4s_v3","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D8s_v3","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D16s_v3","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D32s_v3","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D48s_v3","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D64s_v3","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D2ds_v4","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D4ds_v4","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D8ds_v4","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D16ds_v4","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D32ds_v4","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D48ds_v4","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D64ds_v4","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D2ads_v5","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D4ads_v5","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D8ads_v5","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D16ads_v5","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D32ads_v5","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D48ads_v5","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D64ads_v5","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D96ads_v5","vCores":96,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D2ds_v5","vCores":2,"supportedIops":3750,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D4ds_v5","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D8ds_v5","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D16ds_v5","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D32ds_v5","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D48ds_v5","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D64ds_v5","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D96ds_v5","vCores":96,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]}],"name":"GeneralPurpose","defaultSkuName":"Standard_D4ads_v5","supportedStorageEditions":[{"name":"ManagedDisk","defaultStorageSizeMb":65536,"supportedStorageMb":[{"supportedIops":120,"storageSizeMb":32768,"defaultIopsTier":"P4","supportedIopsTiers":[{"name":"P4","iops":120},{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":240,"storageSizeMb":65536,"defaultIopsTier":"P6","supportedIopsTiers":[{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":500,"storageSizeMb":131072,"defaultIopsTier":"P10","supportedIopsTiers":[{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":1100,"storageSizeMb":262144,"defaultIopsTier":"P15","supportedIopsTiers":[{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":2300,"storageSizeMb":524288,"defaultIopsTier":"P20","supportedIopsTiers":[{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":5000,"storageSizeMb":1048576,"defaultIopsTier":"P30","supportedIopsTiers":[{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":2097152,"defaultIopsTier":"P40","supportedIopsTiers":[{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4193280,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4194304,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":16000,"storageSizeMb":8388608,"defaultIopsTier":"P60","supportedIopsTiers":[{"name":"P60","iops":16000},{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":18000,"storageSizeMb":16777216,"defaultIopsTier":"P70","supportedIopsTiers":[{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":20000,"storageSizeMb":33553408,"defaultIopsTier":"P80","supportedIopsTiers":[{"name":"P80","iops":20000}]}]},{"name":"ManagedDiskV2","defaultStorageSizeMb":65536,"supportedStorageMb":[{"supportedIops":3000,"supportedMaximumIops":80000,"storageSizeMb":32768,"maximumStorageSizeMb":67108864,"supportedThroughput":125,"supportedMaximumThroughput":1200,"defaultIopsTier":"None","supportedIopsTiers":[{"name":"None","iops":0}]}]},{"name":"UltraDisk","defaultStorageSizeMb":65536,"supportedStorageMb":[],"reason":"Specified - Storage Edition not supported in this region."}]},{"supportedServerSkus":[{"supportedFeatures":[],"name":"Standard_E2s_v3","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E4s_v3","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E8s_v3","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E16s_v3","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E32s_v3","vCores":32,"supportedIops":32000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E48s_v3","vCores":48,"supportedIops":51200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E64s_v3","vCores":64,"supportedIops":76800,"supportedMemoryPerVcoreMb":6912,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E2ds_v4","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E4ds_v4","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E8ds_v4","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E16ds_v4","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E20ds_v4","vCores":20,"supportedIops":32000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E32ds_v4","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E48ds_v4","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E64ds_v4","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":6912,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E2ads_v5","vCores":2,"supportedIops":3750,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E4ads_v5","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E8ads_v5","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E16ads_v5","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E20ads_v5","vCores":20,"supportedIops":32000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E32ads_v5","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E48ads_v5","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E64ads_v5","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E96ads_v5","vCores":96,"supportedIops":80000,"supportedMemoryPerVcoreMb":7168,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E2ds_v5","vCores":2,"supportedIops":3750,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E4ds_v5","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E8ds_v5","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E16ds_v5","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E20ds_v5","vCores":20,"supportedIops":32000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E32ds_v5","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E48ds_v5","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E64ds_v5","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E96ds_v5","vCores":96,"supportedIops":80000,"supportedMemoryPerVcoreMb":7168,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E96bds_v5","vCores":96,"supportedIops":160000,"supportedMemoryPerVcoreMb":7168,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]}],"name":"MemoryOptimized","defaultSkuName":"Standard_E4ads_v5","supportedStorageEditions":[{"name":"ManagedDisk","defaultStorageSizeMb":131072,"supportedStorageMb":[{"supportedIops":120,"storageSizeMb":32768,"defaultIopsTier":"P4","supportedIopsTiers":[{"name":"P4","iops":120},{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":240,"storageSizeMb":65536,"defaultIopsTier":"P6","supportedIopsTiers":[{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":500,"storageSizeMb":131072,"defaultIopsTier":"P10","supportedIopsTiers":[{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":1100,"storageSizeMb":262144,"defaultIopsTier":"P15","supportedIopsTiers":[{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":2300,"storageSizeMb":524288,"defaultIopsTier":"P20","supportedIopsTiers":[{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":5000,"storageSizeMb":1048576,"defaultIopsTier":"P30","supportedIopsTiers":[{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":2097152,"defaultIopsTier":"P40","supportedIopsTiers":[{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4193280,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4194304,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":16000,"storageSizeMb":8388608,"defaultIopsTier":"P60","supportedIopsTiers":[{"name":"P60","iops":16000},{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":18000,"storageSizeMb":16777216,"defaultIopsTier":"P70","supportedIopsTiers":[{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":20000,"storageSizeMb":33553408,"defaultIopsTier":"P80","supportedIopsTiers":[{"name":"P80","iops":20000}]}]},{"name":"ManagedDiskV2","defaultStorageSizeMb":131072,"supportedStorageMb":[{"supportedIops":3000,"supportedMaximumIops":80000,"storageSizeMb":32768,"maximumStorageSizeMb":67108864,"supportedThroughput":125,"supportedMaximumThroughput":1200,"defaultIopsTier":"None","supportedIopsTiers":[{"name":"None","iops":0}]}]},{"name":"UltraDisk","defaultStorageSizeMb":131072,"supportedStorageMb":[],"reason":"Specified - Storage Edition not supported in this region."}]}],"supportedServerVersions":[{"supportedFeatures":[],"name":"11","supportedVersionsToUpgrade":["12","13","14","15","16","17","18"]},{"supportedFeatures":[],"name":"12","supportedVersionsToUpgrade":["13","14","15","16","17","18"]},{"supportedFeatures":[],"name":"13","supportedVersionsToUpgrade":["14","15","16","17","18"]},{"supportedFeatures":[],"name":"14","supportedVersionsToUpgrade":["15","16","17","18"]},{"supportedFeatures":[],"name":"15","supportedVersionsToUpgrade":["16","17","18"]},{"supportedFeatures":[],"name":"16","supportedVersionsToUpgrade":["17","18"]},{"supportedFeatures":[],"name":"17","supportedVersionsToUpgrade":["18"]},{"supportedFeatures":[],"name":"18","supportedVersionsToUpgrade":[]}],"supportedFastProvisioningEditions":[],"supportedFeatures":[{"name":"FastProvisioning","status":"Disabled"},{"name":"ZoneRedundantHa","status":"Enabled"},{"name":"GeoBackup","status":"Enabled"},{"name":"ZoneRedundantHaAndGeoBackup","status":"Enabled"},{"name":"StorageAutoGrowth","status":"Enabled"},{"name":"OnlineResize","status":"Enabled"},{"name":"OfferRestricted","status":"Disabled"},{"name":"IndexTuning","status":"Enabled"},{"name":"Clusters","status":"Enabled"},{"name":"AdaptiveAutoVacuumAutoApply","status":"Disabled"},{"name":"ConfigTuning","status":"Disabled"}],"fastProvisioningSupported":"Disabled","geoBackupSupported":"Enabled","zoneRedundantHaSupported":"Enabled","zoneRedundantHaAndGeoBackupSupported":"Enabled","storageAutoGrowthSupported":"Enabled","onlineResizeSupported":"Enabled","indexTuningSupported":"Enabled"}]}' - headers: - cache-control: - - no-cache - content-length: - - '24342' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:37:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/29010ec6-bd2a-4a1c-94eb-2fee29c2dd72 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 1366D386C087464483678319472706FC Ref B: AMS231020614009 Ref C: 2026-03-31T21:37:53Z' - status: - code: 200 - message: OK -- request: - body: '{"location": "canadacentral", "sku": {"name": "Standard_D4ds_v4", "tier": - "GeneralPurpose"}, "properties": {"highAvailability": {"mode": "Disabled"}, - "version": "16", "authConfig": {"activeDirectoryAuth": "Disabled", "passwordAuth": - "Enabled"}, "administratorLogin": "nextgull4", "administratorLoginPassword": - "IN5xK2H_nmPTEy1i3C_n5w", "storage": {"storageSizeGB": 128, "autoGrow": "Disabled"}, - "backup": {"backupRetentionDays": 7, "geoRedundantBackup": "Disabled"}, "network": - {"publicNetworkAccess": "Disabled"}, "createMode": "Create"}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - Content-Length: - - '539' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002?api-version=2026-01-01-preview - response: - body: - string: '{"operation":"UpsertServerManagementOperationV2","startTime":"2026-03-31T21:37:56.057Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eb1a6f3c-31ef-42a9-a120-3d8560195886?api-version=2026-01-01-preview&t=639105898761394252&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=s23QQzW7aMHkhaawjZJiK27XNJL9Mzgqj9Qs4ycZYBj_T6glpdURdW2zVHkrvI91PcHzxCEPXVHvh0-cTtrcYpAd5Cts51G-GuEFUPglUhLr7_wNeQc7zM6kM7mOvobUX7Zx0N9cik-9oSA-6wDNXuLInrsusbfH9nkptLrVxUfVv63vMS3VhWL3k_4ndyuPJOD4HuWOmzkyFAHb99hEDJpuF7sxbxyug1vB5iJmy0ALZo5DQ1GzmbWp8OIZXI1wGe1Q1K9p42P7xHCR_FA4nxiJOzfwf0zVUzOzOaCnBB66e8szYVU1UXOjz1jGlmYunWQMvnojcIZQgFEMtuBx1g&h=z61S6dJ1ySf_HYxTb51oOx3-2v-BGKEARfFqb1f4_jI - cache-control: - - no-cache - content-length: - - '88' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:37:56 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/eb1a6f3c-31ef-42a9-a120-3d8560195886?api-version=2026-01-01-preview&t=639105898761550515&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=XzQirlOI-eNN_DtUq3kdZcwpJxCpS7ZJXoS8WynPUccxlJCMH2YT5WFQdzv6U_aSQg3Ey5KF999GpBYB7RiJ2coJgefXkvu_N6twSMCUsiuJFLQSKtFfEtMHWyuf0eMfzstQ-iN1YzAvD3rV25X6mMyKmbSaYkFJAX6azbv9U7YmI5K4Yl-lFXnQbIE51rzQHzAi-d3IAf8oALaSzV7_ksFYbHZOfA9Pdrm7ceXRWPaHPOvKaz4DIMq7gQYpo7r6uIAOXaKDB9mFOrl1CsZNMvdUhUjJrrg2oJQ9QppgrzO3TOcMGJ5LFdVsaCkWAerj8g26hqItzrxHfR8whtW1tg&h=nBpYXVJH3qK4fYe5SnenN-1m2VV_n5eNmt0tRQI6P64 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/400ca4cb-688e-4de1-b9d3-9ebad0cf1c31 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: 7910F90C14A447769987B77E99B422B7 Ref B: AMS231020615029 Ref C: 2026-03-31T21:37:55Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eb1a6f3c-31ef-42a9-a120-3d8560195886?api-version=2026-01-01-preview&t=639105898761394252&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=s23QQzW7aMHkhaawjZJiK27XNJL9Mzgqj9Qs4ycZYBj_T6glpdURdW2zVHkrvI91PcHzxCEPXVHvh0-cTtrcYpAd5Cts51G-GuEFUPglUhLr7_wNeQc7zM6kM7mOvobUX7Zx0N9cik-9oSA-6wDNXuLInrsusbfH9nkptLrVxUfVv63vMS3VhWL3k_4ndyuPJOD4HuWOmzkyFAHb99hEDJpuF7sxbxyug1vB5iJmy0ALZo5DQ1GzmbWp8OIZXI1wGe1Q1K9p42P7xHCR_FA4nxiJOzfwf0zVUzOzOaCnBB66e8szYVU1UXOjz1jGlmYunWQMvnojcIZQgFEMtuBx1g&h=z61S6dJ1ySf_HYxTb51oOx3-2v-BGKEARfFqb1f4_jI - response: - body: - string: '{"name":"eb1a6f3c-31ef-42a9-a120-3d8560195886","status":"InProgress","startTime":"2026-03-31T21:37:56.057Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:37:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/674c7ab3-b25e-4bfe-9a86-a345171e084b - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 0AFC1D5C457540658C97948E95BBE79F Ref B: AMS231020615027 Ref C: 2026-03-31T21:37:56Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eb1a6f3c-31ef-42a9-a120-3d8560195886?api-version=2026-01-01-preview&t=639105898761394252&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=s23QQzW7aMHkhaawjZJiK27XNJL9Mzgqj9Qs4ycZYBj_T6glpdURdW2zVHkrvI91PcHzxCEPXVHvh0-cTtrcYpAd5Cts51G-GuEFUPglUhLr7_wNeQc7zM6kM7mOvobUX7Zx0N9cik-9oSA-6wDNXuLInrsusbfH9nkptLrVxUfVv63vMS3VhWL3k_4ndyuPJOD4HuWOmzkyFAHb99hEDJpuF7sxbxyug1vB5iJmy0ALZo5DQ1GzmbWp8OIZXI1wGe1Q1K9p42P7xHCR_FA4nxiJOzfwf0zVUzOzOaCnBB66e8szYVU1UXOjz1jGlmYunWQMvnojcIZQgFEMtuBx1g&h=z61S6dJ1ySf_HYxTb51oOx3-2v-BGKEARfFqb1f4_jI - response: - body: - string: '{"name":"eb1a6f3c-31ef-42a9-a120-3d8560195886","status":"InProgress","startTime":"2026-03-31T21:37:56.057Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:38:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/b937acf4-05b7-48a4-aa93-887bd73f5d11 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 946C89C13A67425CBF31AC77728D25D3 Ref B: AMS231032608017 Ref C: 2026-03-31T21:38:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eb1a6f3c-31ef-42a9-a120-3d8560195886?api-version=2026-01-01-preview&t=639105898761394252&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=s23QQzW7aMHkhaawjZJiK27XNJL9Mzgqj9Qs4ycZYBj_T6glpdURdW2zVHkrvI91PcHzxCEPXVHvh0-cTtrcYpAd5Cts51G-GuEFUPglUhLr7_wNeQc7zM6kM7mOvobUX7Zx0N9cik-9oSA-6wDNXuLInrsusbfH9nkptLrVxUfVv63vMS3VhWL3k_4ndyuPJOD4HuWOmzkyFAHb99hEDJpuF7sxbxyug1vB5iJmy0ALZo5DQ1GzmbWp8OIZXI1wGe1Q1K9p42P7xHCR_FA4nxiJOzfwf0zVUzOzOaCnBB66e8szYVU1UXOjz1jGlmYunWQMvnojcIZQgFEMtuBx1g&h=z61S6dJ1ySf_HYxTb51oOx3-2v-BGKEARfFqb1f4_jI - response: - body: - string: '{"name":"eb1a6f3c-31ef-42a9-a120-3d8560195886","status":"InProgress","startTime":"2026-03-31T21:37:56.057Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:39:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/ukwest/bbea5ed9-60fa-406e-a27d-a884dd822a99 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: C22E150A021B474D88F692D986F11AC5 Ref B: AMS231022012035 Ref C: 2026-03-31T21:39:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eb1a6f3c-31ef-42a9-a120-3d8560195886?api-version=2026-01-01-preview&t=639105898761394252&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=s23QQzW7aMHkhaawjZJiK27XNJL9Mzgqj9Qs4ycZYBj_T6glpdURdW2zVHkrvI91PcHzxCEPXVHvh0-cTtrcYpAd5Cts51G-GuEFUPglUhLr7_wNeQc7zM6kM7mOvobUX7Zx0N9cik-9oSA-6wDNXuLInrsusbfH9nkptLrVxUfVv63vMS3VhWL3k_4ndyuPJOD4HuWOmzkyFAHb99hEDJpuF7sxbxyug1vB5iJmy0ALZo5DQ1GzmbWp8OIZXI1wGe1Q1K9p42P7xHCR_FA4nxiJOzfwf0zVUzOzOaCnBB66e8szYVU1UXOjz1jGlmYunWQMvnojcIZQgFEMtuBx1g&h=z61S6dJ1ySf_HYxTb51oOx3-2v-BGKEARfFqb1f4_jI - response: - body: - string: '{"name":"eb1a6f3c-31ef-42a9-a120-3d8560195886","status":"InProgress","startTime":"2026-03-31T21:37:56.057Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:40:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/951fbf5c-df63-400b-88a1-99b02d7c6d3b - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 228530DC67C3480886A6CD97691EAD4D Ref B: AMS231020512039 Ref C: 2026-03-31T21:40:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eb1a6f3c-31ef-42a9-a120-3d8560195886?api-version=2026-01-01-preview&t=639105898761394252&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=s23QQzW7aMHkhaawjZJiK27XNJL9Mzgqj9Qs4ycZYBj_T6glpdURdW2zVHkrvI91PcHzxCEPXVHvh0-cTtrcYpAd5Cts51G-GuEFUPglUhLr7_wNeQc7zM6kM7mOvobUX7Zx0N9cik-9oSA-6wDNXuLInrsusbfH9nkptLrVxUfVv63vMS3VhWL3k_4ndyuPJOD4HuWOmzkyFAHb99hEDJpuF7sxbxyug1vB5iJmy0ALZo5DQ1GzmbWp8OIZXI1wGe1Q1K9p42P7xHCR_FA4nxiJOzfwf0zVUzOzOaCnBB66e8szYVU1UXOjz1jGlmYunWQMvnojcIZQgFEMtuBx1g&h=z61S6dJ1ySf_HYxTb51oOx3-2v-BGKEARfFqb1f4_jI - response: - body: - string: '{"name":"eb1a6f3c-31ef-42a9-a120-3d8560195886","status":"InProgress","startTime":"2026-03-31T21:37:56.057Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:41:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/9c331f01-833b-49fd-a373-1036f41aaaef - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 2B302E258167424BB9EAD0DF0D03DF4E Ref B: AMS231032609017 Ref C: 2026-03-31T21:41:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eb1a6f3c-31ef-42a9-a120-3d8560195886?api-version=2026-01-01-preview&t=639105898761394252&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=s23QQzW7aMHkhaawjZJiK27XNJL9Mzgqj9Qs4ycZYBj_T6glpdURdW2zVHkrvI91PcHzxCEPXVHvh0-cTtrcYpAd5Cts51G-GuEFUPglUhLr7_wNeQc7zM6kM7mOvobUX7Zx0N9cik-9oSA-6wDNXuLInrsusbfH9nkptLrVxUfVv63vMS3VhWL3k_4ndyuPJOD4HuWOmzkyFAHb99hEDJpuF7sxbxyug1vB5iJmy0ALZo5DQ1GzmbWp8OIZXI1wGe1Q1K9p42P7xHCR_FA4nxiJOzfwf0zVUzOzOaCnBB66e8szYVU1UXOjz1jGlmYunWQMvnojcIZQgFEMtuBx1g&h=z61S6dJ1ySf_HYxTb51oOx3-2v-BGKEARfFqb1f4_jI - response: - body: - string: '{"name":"eb1a6f3c-31ef-42a9-a120-3d8560195886","status":"Succeeded","startTime":"2026-03-31T21:37:56.057Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:42:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/ea1ff4ab-dee0-4046-b4c8-8bdacfebfdac - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: B4A98651448C45CEB744AFB0847D578E Ref B: AMS231032609033 Ref C: 2026-03-31T21:42:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku-name --tier --storage-size --version -l --public-access --yes - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002?api-version=2026-01-01-preview - response: - body: - string: '{"sku":{"name":"Standard_D4ds_v4","tier":"GeneralPurpose"},"systemData":{"createdAt":"2026-03-31T21:38:08.2327967Z"},"properties":{"dataEncryption":{"type":"SystemManaged"},"replica":{"role":"Primary","capacity":5},"storage":{"type":"","iops":500,"tier":"P10","storageSizeGB":128,"autoGrow":"Disabled"},"network":{"publicNetworkAccess":"Disabled"},"privateEndpointConnections":[],"authConfig":{"activeDirectoryAuth":"Disabled","passwordAuth":"Enabled"},"fullyQualifiedDomainName":"azuredbclitest-000002.postgres.database.azure.com","version":"16","minorVersion":"13","administratorLogin":"nextgull4","state":"Ready","availabilityZone":"1","backup":{"backupRetentionDays":7,"geoRedundantBackup":"Disabled"},"highAvailability":{"mode":"Disabled","state":"NotEnabled"},"maintenanceWindow":{"customWindow":"Disabled","dayOfWeek":0,"startHour":0,"startMinute":0},"replicationRole":"Primary","replicaCapacity":5},"location":"Canada - Central","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002","name":"azuredbclitest-000002","type":"Microsoft.DBforPostgreSQL/flexibleServers"}' - headers: - cache-control: - - no-cache - content-length: - - '1182' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: D9EF541A01134F7E83DE53669C5938EB Ref B: AMS231032608031 Ref C: 2026-03-31T21:43:00Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/capabilities?api-version=2026-01-01-preview - response: - body: - string: '{"value":[{"name":"FlexibleServerCapabilities","supportedServerEditions":[{"supportedServerSkus":[{"supportedFeatures":[],"name":"Standard_B1ms","vCores":1,"supportedIops":640,"supportedMemoryPerVcoreMb":2048,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B2s","vCores":2,"supportedIops":1280,"supportedMemoryPerVcoreMb":2048,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B2ms","vCores":2,"supportedIops":1920,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B4ms","vCores":4,"supportedIops":2880,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B8ms","vCores":8,"supportedIops":4320,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B12ms","vCores":12,"supportedIops":4320,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B16ms","vCores":16,"supportedIops":4320,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_B20ms","vCores":20,"supportedIops":4320,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]}],"name":"Burstable","defaultSkuName":"Standard_B2s","supportedStorageEditions":[{"name":"ManagedDisk","defaultStorageSizeMb":32768,"supportedStorageMb":[{"supportedIops":120,"storageSizeMb":32768,"defaultIopsTier":"P4","supportedIopsTiers":[{"name":"P4","iops":120},{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":240,"storageSizeMb":65536,"defaultIopsTier":"P6","supportedIopsTiers":[{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":500,"storageSizeMb":131072,"defaultIopsTier":"P10","supportedIopsTiers":[{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":1100,"storageSizeMb":262144,"defaultIopsTier":"P15","supportedIopsTiers":[{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":2300,"storageSizeMb":524288,"defaultIopsTier":"P20","supportedIopsTiers":[{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":5000,"storageSizeMb":1048576,"defaultIopsTier":"P30","supportedIopsTiers":[{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":2097152,"defaultIopsTier":"P40","supportedIopsTiers":[{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4193280,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4194304,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":16000,"storageSizeMb":8388608,"defaultIopsTier":"P60","supportedIopsTiers":[{"name":"P60","iops":16000},{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":18000,"storageSizeMb":16777216,"defaultIopsTier":"P70","supportedIopsTiers":[{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":20000,"storageSizeMb":33553408,"defaultIopsTier":"P80","supportedIopsTiers":[{"name":"P80","iops":20000}]}]},{"name":"ManagedDiskV2","defaultStorageSizeMb":32768,"supportedStorageMb":[{"supportedIops":3000,"supportedMaximumIops":80000,"storageSizeMb":32768,"maximumStorageSizeMb":67108864,"supportedThroughput":125,"supportedMaximumThroughput":1200,"defaultIopsTier":"None","supportedIopsTiers":[{"name":"None","iops":0}]}]}]},{"supportedServerSkus":[{"supportedFeatures":[],"name":"Standard_D2s_v3","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D4s_v3","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D8s_v3","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D16s_v3","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D32s_v3","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D48s_v3","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D64s_v3","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D2ds_v4","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D4ds_v4","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D8ds_v4","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D16ds_v4","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D32ds_v4","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D48ds_v4","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D64ds_v4","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D2ads_v5","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D4ads_v5","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D8ads_v5","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D16ads_v5","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D32ads_v5","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D48ads_v5","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D64ads_v5","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D96ads_v5","vCores":96,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D2ds_v5","vCores":2,"supportedIops":3750,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D4ds_v5","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D8ds_v5","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D16ds_v5","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D32ds_v5","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D48ds_v5","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D64ds_v5","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_D96ds_v5","vCores":96,"supportedIops":80000,"supportedMemoryPerVcoreMb":4096,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]}],"name":"GeneralPurpose","defaultSkuName":"Standard_D4ads_v5","supportedStorageEditions":[{"name":"ManagedDisk","defaultStorageSizeMb":65536,"supportedStorageMb":[{"supportedIops":120,"storageSizeMb":32768,"defaultIopsTier":"P4","supportedIopsTiers":[{"name":"P4","iops":120},{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":240,"storageSizeMb":65536,"defaultIopsTier":"P6","supportedIopsTiers":[{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":500,"storageSizeMb":131072,"defaultIopsTier":"P10","supportedIopsTiers":[{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":1100,"storageSizeMb":262144,"defaultIopsTier":"P15","supportedIopsTiers":[{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":2300,"storageSizeMb":524288,"defaultIopsTier":"P20","supportedIopsTiers":[{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":5000,"storageSizeMb":1048576,"defaultIopsTier":"P30","supportedIopsTiers":[{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":2097152,"defaultIopsTier":"P40","supportedIopsTiers":[{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4193280,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4194304,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":16000,"storageSizeMb":8388608,"defaultIopsTier":"P60","supportedIopsTiers":[{"name":"P60","iops":16000},{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":18000,"storageSizeMb":16777216,"defaultIopsTier":"P70","supportedIopsTiers":[{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":20000,"storageSizeMb":33553408,"defaultIopsTier":"P80","supportedIopsTiers":[{"name":"P80","iops":20000}]}]},{"name":"ManagedDiskV2","defaultStorageSizeMb":65536,"supportedStorageMb":[{"supportedIops":3000,"supportedMaximumIops":80000,"storageSizeMb":32768,"maximumStorageSizeMb":67108864,"supportedThroughput":125,"supportedMaximumThroughput":1200,"defaultIopsTier":"None","supportedIopsTiers":[{"name":"None","iops":0}]}]},{"name":"UltraDisk","defaultStorageSizeMb":65536,"supportedStorageMb":[],"reason":"Specified - Storage Edition not supported in this region."}]},{"supportedServerSkus":[{"supportedFeatures":[],"name":"Standard_E2s_v3","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E4s_v3","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E8s_v3","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E16s_v3","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E32s_v3","vCores":32,"supportedIops":32000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E48s_v3","vCores":48,"supportedIops":51200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E64s_v3","vCores":64,"supportedIops":76800,"supportedMemoryPerVcoreMb":6912,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E2ds_v4","vCores":2,"supportedIops":3200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E4ds_v4","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E8ds_v4","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E16ds_v4","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E20ds_v4","vCores":20,"supportedIops":32000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E32ds_v4","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E48ds_v4","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E64ds_v4","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":6912,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E2ads_v5","vCores":2,"supportedIops":3750,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E4ads_v5","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E8ads_v5","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E16ads_v5","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E20ads_v5","vCores":20,"supportedIops":32000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E32ads_v5","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E48ads_v5","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E64ads_v5","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E96ads_v5","vCores":96,"supportedIops":80000,"supportedMemoryPerVcoreMb":7168,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E2ds_v5","vCores":2,"supportedIops":3750,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E4ds_v5","vCores":4,"supportedIops":6400,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E8ds_v5","vCores":8,"supportedIops":12800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E16ds_v5","vCores":16,"supportedIops":25600,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E20ds_v5","vCores":20,"supportedIops":32000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E32ds_v5","vCores":32,"supportedIops":51200,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E48ds_v5","vCores":48,"supportedIops":76800,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E64ds_v5","vCores":64,"supportedIops":80000,"supportedMemoryPerVcoreMb":8192,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E96ds_v5","vCores":96,"supportedIops":80000,"supportedMemoryPerVcoreMb":7168,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]},{"supportedFeatures":[],"name":"Standard_E96bds_v5","vCores":96,"supportedIops":160000,"supportedMemoryPerVcoreMb":7168,"supportedZones":["1","2","3"],"supportedHaMode":["SameZone","ZoneRedundant"]}],"name":"MemoryOptimized","defaultSkuName":"Standard_E4ads_v5","supportedStorageEditions":[{"name":"ManagedDisk","defaultStorageSizeMb":131072,"supportedStorageMb":[{"supportedIops":120,"storageSizeMb":32768,"defaultIopsTier":"P4","supportedIopsTiers":[{"name":"P4","iops":120},{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":240,"storageSizeMb":65536,"defaultIopsTier":"P6","supportedIopsTiers":[{"name":"P6","iops":240},{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":500,"storageSizeMb":131072,"defaultIopsTier":"P10","supportedIopsTiers":[{"name":"P10","iops":500},{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":1100,"storageSizeMb":262144,"defaultIopsTier":"P15","supportedIopsTiers":[{"name":"P15","iops":1100},{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":2300,"storageSizeMb":524288,"defaultIopsTier":"P20","supportedIopsTiers":[{"name":"P20","iops":2300},{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":5000,"storageSizeMb":1048576,"defaultIopsTier":"P30","supportedIopsTiers":[{"name":"P30","iops":5000},{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":2097152,"defaultIopsTier":"P40","supportedIopsTiers":[{"name":"P40","iops":7500},{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4193280,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":7500,"storageSizeMb":4194304,"defaultIopsTier":"P50","supportedIopsTiers":[{"name":"P50","iops":7500}]},{"supportedIops":16000,"storageSizeMb":8388608,"defaultIopsTier":"P60","supportedIopsTiers":[{"name":"P60","iops":16000},{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":18000,"storageSizeMb":16777216,"defaultIopsTier":"P70","supportedIopsTiers":[{"name":"P70","iops":18000},{"name":"P80","iops":20000}]},{"supportedIops":20000,"storageSizeMb":33553408,"defaultIopsTier":"P80","supportedIopsTiers":[{"name":"P80","iops":20000}]}]},{"name":"ManagedDiskV2","defaultStorageSizeMb":131072,"supportedStorageMb":[{"supportedIops":3000,"supportedMaximumIops":80000,"storageSizeMb":32768,"maximumStorageSizeMb":67108864,"supportedThroughput":125,"supportedMaximumThroughput":1200,"defaultIopsTier":"None","supportedIopsTiers":[{"name":"None","iops":0}]}]},{"name":"UltraDisk","defaultStorageSizeMb":131072,"supportedStorageMb":[],"reason":"Specified - Storage Edition not supported in this region."}]}],"supportedServerVersions":[{"supportedFeatures":[],"name":"11","supportedVersionsToUpgrade":["12","13","14","15","16","17","18"]},{"supportedFeatures":[],"name":"12","supportedVersionsToUpgrade":["13","14","15","16","17","18"]},{"supportedFeatures":[],"name":"13","supportedVersionsToUpgrade":["14","15","16","17","18"]},{"supportedFeatures":[],"name":"14","supportedVersionsToUpgrade":["15","16","17","18"]},{"supportedFeatures":[],"name":"15","supportedVersionsToUpgrade":["16","17","18"]},{"supportedFeatures":[],"name":"16","supportedVersionsToUpgrade":["17","18"]},{"supportedFeatures":[],"name":"17","supportedVersionsToUpgrade":["18"]},{"supportedFeatures":[],"name":"18","supportedVersionsToUpgrade":[]}],"supportedFastProvisioningEditions":[],"supportedFeatures":[{"name":"FastProvisioning","status":"Disabled"},{"name":"ZoneRedundantHa","status":"Enabled"},{"name":"GeoBackup","status":"Enabled"},{"name":"ZoneRedundantHaAndGeoBackup","status":"Enabled"},{"name":"StorageAutoGrowth","status":"Enabled"},{"name":"OnlineResize","status":"Enabled"},{"name":"OfferRestricted","status":"Disabled"},{"name":"IndexTuning","status":"Enabled"},{"name":"Clusters","status":"Enabled"},{"name":"AdaptiveAutoVacuumAutoApply","status":"Disabled"},{"name":"PremiumSSDV2HighAvailability","status":"Disabled"},{"name":"ConfigTuning","status":"Disabled"}],"fastProvisioningSupported":"Disabled","geoBackupSupported":"Enabled","zoneRedundantHaSupported":"Enabled","zoneRedundantHaAndGeoBackupSupported":"Enabled","storageAutoGrowthSupported":"Enabled","onlineResizeSupported":"Enabled","indexTuningSupported":"Enabled"}]}' - headers: - cache-control: - - no-cache - content-length: - - '24402' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/d78ee040-d430-4a0b-bd67-4cc62074a596 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: E4FB529CE02340EB8EA84808A76076FC Ref B: AMS231020512029 Ref C: 2026-03-31T21:43:01Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"value": "report", "source": "user-override"}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - Content-Length: - - '62' - Content-Type: - - application/json - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview - response: - body: - string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-03-31T21:43:04.247Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/1980fb7d-87b7-4323-b45d-915e38e53d8e?api-version=2026-01-01-preview&t=639105901851564273&c=MIIHwzCCBqugAwIBAgIQaTf8Ndc1u3dyzS7Ma-4GsTANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMjAzMTc1MDI5WhcNMjYwNzI5MjM1MDI5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlUao0l5vPPpRAzI44w5plI6GIutBPKCXIiSLE24xiIRh1jRjpm1dR15gzwkRFpBl8tz30HT3Ma3YZqRx6WjMdVg8jO5u68dH1288NIRzWk_4djsitU5GvAk-K_v6n5Brqvsh7I08y9Mg7Don72Rc4Judr_ySrC37eRnfJM31jMbERfSPlzgQPMQdFyypx7Wapz6ml3dJhItDlvT97sYy7ZJprgv3hHZJFNOFudHvKFlCHIJ0uSHQSftb_EOY1EefuZfTQWDfTp0qi_0Y1y1Qa4JXpo0zAn8dAANArSKwdJtrwtAZMJvy5TEi-GXEaI1Uid6aq2sEWKKOCUbra8UZkCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFLzOr0ZIyjqbWkqSnYNQW56qYmizMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS81MS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTEvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS81MS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzUxL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBADxS3FRSxyLS51QQyxrDVBK40sreLsJhcFjgx_uRi7sv704Jpt8X8mk5jlyaWeEwmUIaJgPl7cQUA5g7Bwp1LWwV8B71PGtRlZjeixuHpBJFYxCb54QYMhe1tEyBMQi8-KP7i2H2dZfhs9hU2o7nb8w4p-Zq_bjRubW783e7oj-o9zCt3LWRFyeRQN0y7DcDXho02UBTlXFeCJTjV6gD64CNGxZ4mxAqFbiTkW384GYZkrkEBlhpO1IPRxlsLXhOBI14L_sooBpjo_jWGhGa2m-bFsHAXHtEY93WYuJQ5J_7stLSNhzHkwaGmzh2PDhs0i0vPCDsKeB0ZF0DRVZh61E&s=Fe8Qn6DZpZcB6SxiDrchmQk0kOdk0IUkLnc7yX68zjjh9gtebIcCuWFTOpSod2jQ5U0V8nxFo0p1JOLxvUscmAzi3ogiAI8Qpv2PBXzdKr3TmJFW2Yu3WMD2IdBDXs3u5rgYNnC13Pp_KxlSpuMGcKsVUPLQzlAQHiDo_11mDtWcJuHeQdBZGitZQOppRhM1pEBRxSlopd9cJ_YYcccspOINuCUgPMUiFIE-cYbEFSo2QxOPXCOLg5S8tpcqUAPw0ro8mPYTnFTe75qRM6JQtcfdJifITiCkQxckbz2-e4Oy6l6mXWwRTKhBe-Ta39mfllFPdHkde9Uf50k3-i8o2w&h=cC7A8xbtV14A4WMHzpKvMocGfhLvWNRmTBypPONcJXk - cache-control: - - no-cache - content-length: - - '100' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:04 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/1980fb7d-87b7-4323-b45d-915e38e53d8e?api-version=2026-01-01-preview&t=639105901851564273&c=MIIHwzCCBqugAwIBAgIQaTf8Ndc1u3dyzS7Ma-4GsTANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMjAzMTc1MDI5WhcNMjYwNzI5MjM1MDI5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlUao0l5vPPpRAzI44w5plI6GIutBPKCXIiSLE24xiIRh1jRjpm1dR15gzwkRFpBl8tz30HT3Ma3YZqRx6WjMdVg8jO5u68dH1288NIRzWk_4djsitU5GvAk-K_v6n5Brqvsh7I08y9Mg7Don72Rc4Judr_ySrC37eRnfJM31jMbERfSPlzgQPMQdFyypx7Wapz6ml3dJhItDlvT97sYy7ZJprgv3hHZJFNOFudHvKFlCHIJ0uSHQSftb_EOY1EefuZfTQWDfTp0qi_0Y1y1Qa4JXpo0zAn8dAANArSKwdJtrwtAZMJvy5TEi-GXEaI1Uid6aq2sEWKKOCUbra8UZkCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFLzOr0ZIyjqbWkqSnYNQW56qYmizMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS81MS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTEvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS81MS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzUxL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBADxS3FRSxyLS51QQyxrDVBK40sreLsJhcFjgx_uRi7sv704Jpt8X8mk5jlyaWeEwmUIaJgPl7cQUA5g7Bwp1LWwV8B71PGtRlZjeixuHpBJFYxCb54QYMhe1tEyBMQi8-KP7i2H2dZfhs9hU2o7nb8w4p-Zq_bjRubW783e7oj-o9zCt3LWRFyeRQN0y7DcDXho02UBTlXFeCJTjV6gD64CNGxZ4mxAqFbiTkW384GYZkrkEBlhpO1IPRxlsLXhOBI14L_sooBpjo_jWGhGa2m-bFsHAXHtEY93WYuJQ5J_7stLSNhzHkwaGmzh2PDhs0i0vPCDsKeB0ZF0DRVZh61E&s=AFSF3jjUZ3pyUSb2hA0cuOPesPzPSSlRy3-owVxzTpdkBJ0Kcs-DVEwqR_rFnoqiQBHm6L6seCUK6n936j7DAdfThNS0LK3yoa-8ZjjzqT0fgv_dxv-egfP4FxUq6p4Irz_lX3x4j1oGtPfijefSrV6QEbrsPpG5PeK-vcdm29F97pHGTqEwuL2n325QCPzlfKv8XY5kcP4RKf5EBWsWDXZeJquP6nyq8DMLzRbdzTdvAIkC1xj3KRqRrzac_5Dpb0oQON7BTaVlr0RqYnjUA3zzY7BMJ1yTFNcvT7h1RP_4xbOX_PMw-xqM4kXw4fsZwGysE-5oOEITocBWbqnwVA&h=0PXHl7Ud3kkGYLf-I_DouAgzg6oLJYuKVEI1W-cd8lk - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/fcfdfcbd-322f-4bc2-ba5b-6f73607f74cd - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: 482F34F542BE476D991CAF311ED77775 Ref B: AMS231032609037 Ref C: 2026-03-31T21:43:03Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/1980fb7d-87b7-4323-b45d-915e38e53d8e?api-version=2026-01-01-preview&t=639105901851564273&c=MIIHwzCCBqugAwIBAgIQaTf8Ndc1u3dyzS7Ma-4GsTANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMjAzMTc1MDI5WhcNMjYwNzI5MjM1MDI5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlUao0l5vPPpRAzI44w5plI6GIutBPKCXIiSLE24xiIRh1jRjpm1dR15gzwkRFpBl8tz30HT3Ma3YZqRx6WjMdVg8jO5u68dH1288NIRzWk_4djsitU5GvAk-K_v6n5Brqvsh7I08y9Mg7Don72Rc4Judr_ySrC37eRnfJM31jMbERfSPlzgQPMQdFyypx7Wapz6ml3dJhItDlvT97sYy7ZJprgv3hHZJFNOFudHvKFlCHIJ0uSHQSftb_EOY1EefuZfTQWDfTp0qi_0Y1y1Qa4JXpo0zAn8dAANArSKwdJtrwtAZMJvy5TEi-GXEaI1Uid6aq2sEWKKOCUbra8UZkCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFLzOr0ZIyjqbWkqSnYNQW56qYmizMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS81MS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTEvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS81MS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzUxL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBADxS3FRSxyLS51QQyxrDVBK40sreLsJhcFjgx_uRi7sv704Jpt8X8mk5jlyaWeEwmUIaJgPl7cQUA5g7Bwp1LWwV8B71PGtRlZjeixuHpBJFYxCb54QYMhe1tEyBMQi8-KP7i2H2dZfhs9hU2o7nb8w4p-Zq_bjRubW783e7oj-o9zCt3LWRFyeRQN0y7DcDXho02UBTlXFeCJTjV6gD64CNGxZ4mxAqFbiTkW384GYZkrkEBlhpO1IPRxlsLXhOBI14L_sooBpjo_jWGhGa2m-bFsHAXHtEY93WYuJQ5J_7stLSNhzHkwaGmzh2PDhs0i0vPCDsKeB0ZF0DRVZh61E&s=Fe8Qn6DZpZcB6SxiDrchmQk0kOdk0IUkLnc7yX68zjjh9gtebIcCuWFTOpSod2jQ5U0V8nxFo0p1JOLxvUscmAzi3ogiAI8Qpv2PBXzdKr3TmJFW2Yu3WMD2IdBDXs3u5rgYNnC13Pp_KxlSpuMGcKsVUPLQzlAQHiDo_11mDtWcJuHeQdBZGitZQOppRhM1pEBRxSlopd9cJ_YYcccspOINuCUgPMUiFIE-cYbEFSo2QxOPXCOLg5S8tpcqUAPw0ro8mPYTnFTe75qRM6JQtcfdJifITiCkQxckbz2-e4Oy6l6mXWwRTKhBe-Ta39mfllFPdHkde9Uf50k3-i8o2w&h=cC7A8xbtV14A4WMHzpKvMocGfhLvWNRmTBypPONcJXk - response: - body: - string: '{"name":"1980fb7d-87b7-4323-b45d-915e38e53d8e","status":"InProgress","startTime":"2026-03-31T21:43:04.247Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/6ff8877f-9261-4d2f-a98f-a79bdafd27d9 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 26BCE116F0794D02B550DE748A8273E5 Ref B: AMS231020615007 Ref C: 2026-03-31T21:43:05Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/1980fb7d-87b7-4323-b45d-915e38e53d8e?api-version=2026-01-01-preview&t=639105901851564273&c=MIIHwzCCBqugAwIBAgIQaTf8Ndc1u3dyzS7Ma-4GsTANBgkqhkiG9w0BAQsFADA1MTMwMQYDVQQDEypDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBDVVMgQ0EgMDEwHhcNMjYwMjAzMTc1MDI5WhcNMjYwNzI5MjM1MDI5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlUao0l5vPPpRAzI44w5plI6GIutBPKCXIiSLE24xiIRh1jRjpm1dR15gzwkRFpBl8tz30HT3Ma3YZqRx6WjMdVg8jO5u68dH1288NIRzWk_4djsitU5GvAk-K_v6n5Brqvsh7I08y9Mg7Don72Rc4Judr_ySrC37eRnfJM31jMbERfSPlzgQPMQdFyypx7Wapz6ml3dJhItDlvT97sYy7ZJprgv3hHZJFNOFudHvKFlCHIJ0uSHQSftb_EOY1EefuZfTQWDfTp0qi_0Y1y1Qa4JXpo0zAn8dAANArSKwdJtrwtAZMJvy5TEi-GXEaI1Uid6aq2sEWKKOCUbra8UZkCAwEAAaOCBMIwggS-MIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAMBgNVHRMBAf8EAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAOBgNVHQ8BAf8EBAMCBaAwHQYDVR0OBBYEFLzOr0ZIyjqbWkqSnYNQW56qYmizMB8GA1UdIwQYMBaAFPzkWgovhQ7nRLkHc3jg1EQHohkRMIIBygYDVR0fBIIBwTCCAb0wb6BtoGuGaWh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS81MS9jdXJyZW50LmNybDBxoG-gbYZraHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvY2VudHJhbHVzL2NybHMvY2NtZWNlbnRyYWx1c3BraS9jY21lY2VudHJhbHVzaWNhMDEvNTEvY3VycmVudC5jcmwwYKBeoFyGWmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9jZW50cmFsdXMvY3Jscy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS81MS9jdXJyZW50LmNybDB1oHOgcYZvaHR0cDovL2NjbWVjZW50cmFsdXNwa2kuY2VudHJhbHVzLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWNlbnRyYWx1c2ljYTAxLzUxL2N1cnJlbnQuY3JsMIIBzwYIKwYBBQUHAQEEggHBMIIBvTByBggrBgEFBQcwAoZmaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHQGCCsGAQUFBzAChmhodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZW50cmFsdXMvY2FjZXJ0cy9jY21lY2VudHJhbHVzcGtpL2NjbWVjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBjBggrBgEFBQcwAoZXaHR0cDovL2NybC5taWNyb3NvZnQuY29tL2NlbnRyYWx1cy9jYWNlcnRzL2NjbWVjZW50cmFsdXNwa2kvY2NtZWNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMGwGCCsGAQUFBzAChmBodHRwOi8vY2NtZWNlbnRyYWx1c3BraS5jZW50cmFsdXMucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lY2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBADxS3FRSxyLS51QQyxrDVBK40sreLsJhcFjgx_uRi7sv704Jpt8X8mk5jlyaWeEwmUIaJgPl7cQUA5g7Bwp1LWwV8B71PGtRlZjeixuHpBJFYxCb54QYMhe1tEyBMQi8-KP7i2H2dZfhs9hU2o7nb8w4p-Zq_bjRubW783e7oj-o9zCt3LWRFyeRQN0y7DcDXho02UBTlXFeCJTjV6gD64CNGxZ4mxAqFbiTkW384GYZkrkEBlhpO1IPRxlsLXhOBI14L_sooBpjo_jWGhGa2m-bFsHAXHtEY93WYuJQ5J_7stLSNhzHkwaGmzh2PDhs0i0vPCDsKeB0ZF0DRVZh61E&s=Fe8Qn6DZpZcB6SxiDrchmQk0kOdk0IUkLnc7yX68zjjh9gtebIcCuWFTOpSod2jQ5U0V8nxFo0p1JOLxvUscmAzi3ogiAI8Qpv2PBXzdKr3TmJFW2Yu3WMD2IdBDXs3u5rgYNnC13Pp_KxlSpuMGcKsVUPLQzlAQHiDo_11mDtWcJuHeQdBZGitZQOppRhM1pEBRxSlopd9cJ_YYcccspOINuCUgPMUiFIE-cYbEFSo2QxOPXCOLg5S8tpcqUAPw0ro8mPYTnFTe75qRM6JQtcfdJifITiCkQxckbz2-e4Oy6l6mXWwRTKhBe-Ta39mfllFPdHkde9Uf50k3-i8o2w&h=cC7A8xbtV14A4WMHzpKvMocGfhLvWNRmTBypPONcJXk - response: - body: - string: '{"name":"1980fb7d-87b7-4323-b45d-915e38e53d8e","status":"Succeeded","startTime":"2026-03-31T21:43:04.247Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/16ef6301-c857-48b7-8b5d-0647455da496 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 6DA75040DB4C401CA55CDED3B85DAC1A Ref B: AMS231032607047 Ref C: 2026-03-31T21:43:16Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"report","description":"Configures index optimization - as disabled (''OFF'') or enabled to only emit recommendation. Requires Query - Store to be enabled by setting pg_qs.query_capture_mode to ''TOP'' or ''ALL''.","defaultValue":"off","dataType":"Enumeration","allowedValues":"off,report","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode","name":"index_tuning.mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '763' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/9c946667-0b5d-443b-98b3-c36bf40b606c - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: FB5E96F4CD634825AEA8679CE7017AF8 Ref B: AMS231032609047 Ref C: 2026-03-31T21:43:16Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"none","description":"Sets query capture mode - for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '669' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/5a983e9f-af54-48b3-beb0-7d5546816a65 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: E37FBE71D02A47DBA2973EB1F832C046 Ref B: AMS231032609031 Ref C: 2026-03-31T21:43:17Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"value": "all", "source": "user-override"}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - Content-Length: - - '59' - Content-Type: - - application/json - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview - response: - body: - string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-03-31T21:43:18.107Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/73ac4658-4985-4436-ad51-cf915e9014a1?api-version=2026-01-01-preview&t=639105901981561035&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=ner6gy__DLhYN8luuQloEgYFK9RLnDukTxX7Sy9wpakPvldedMF9kxoZHgpSH1LnpUMnKlZNuhRfGHxHZzofT1YD2gCPg7IkHCs2s4PS6yDQ0P9Uo6lR2Hjz-UtoJuMdQTiyAJqUno-KcqbAJ3ZGKAV5PNgJu657ZUcpJzyzsga-RTmgZ4KXr0Mtiw66O-opXSGtwtt6b_hL5-S4LrAl3O2OXGjRmFY07dT0iuiwrqgX3twn34sz0qrmPdxf9MhYOpmmpKovVakZnn02PMLwxk-eeBNUEznQFOcc7adCSVwCZHndMo0Dv2-4uja38H8besnWrwf6Rm9bO0vnZtu5ow&h=H3HSAFQOqfZwdNRG5DIu7t3s1awaybhIS8XahY5soN4 - cache-control: - - no-cache - content-length: - - '100' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:17 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/73ac4658-4985-4436-ad51-cf915e9014a1?api-version=2026-01-01-preview&t=639105901981717229&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=FKbO0hQjE_ULhBFWUnaz4xo5Z1WDa8n0UusG-7uAlL38xfi2pOT6YCh2KzJ8lQPVRsIBaVuUiutSShXbA_qXWuEha4IWWLDwMc4Zq3O5rIxhtFCgC6qXvHZyH4O-WGMQDOL02HRJzkMfnulrrzD9N2ay8IkniDMwOrUSp7Y-p1z6b-55VZH7lpzQDS4mZ8-RVyoZrPr4kQuNWXzmxyKSjh-KZhSox-rzJdUImt8a9ov6E58Val375ErT--wKWnTO_USqQSG7KKVJYDef43GILuUhf1UnfOZUzNPt2_hWeuXHyn_Qb5-VUUitwgIeWfEdC4NSbTKBrTA--Nw_TTTn8w&h=3p9x_nGbcCHrtX9b8a88wHiyZnyvQEWY1zHa3WT7Mps - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/db54c06b-89f9-4eac-b5e1-50cfa67ce6cb - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: 41DC154BB1FB48C5937E53969948CFE1 Ref B: AMS231032608033 Ref C: 2026-03-31T21:43:17Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/73ac4658-4985-4436-ad51-cf915e9014a1?api-version=2026-01-01-preview&t=639105901981561035&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=ner6gy__DLhYN8luuQloEgYFK9RLnDukTxX7Sy9wpakPvldedMF9kxoZHgpSH1LnpUMnKlZNuhRfGHxHZzofT1YD2gCPg7IkHCs2s4PS6yDQ0P9Uo6lR2Hjz-UtoJuMdQTiyAJqUno-KcqbAJ3ZGKAV5PNgJu657ZUcpJzyzsga-RTmgZ4KXr0Mtiw66O-opXSGtwtt6b_hL5-S4LrAl3O2OXGjRmFY07dT0iuiwrqgX3twn34sz0qrmPdxf9MhYOpmmpKovVakZnn02PMLwxk-eeBNUEznQFOcc7adCSVwCZHndMo0Dv2-4uja38H8besnWrwf6Rm9bO0vnZtu5ow&h=H3HSAFQOqfZwdNRG5DIu7t3s1awaybhIS8XahY5soN4 - response: - body: - string: '{"name":"73ac4658-4985-4436-ad51-cf915e9014a1","status":"InProgress","startTime":"2026-03-31T21:43:18.107Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/0af12840-2e88-47c0-8477-15cffd3dcef6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: B773DAC54F26479DA4CE52E7C8D88892 Ref B: AMS231020512017 Ref C: 2026-03-31T21:43:18Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/73ac4658-4985-4436-ad51-cf915e9014a1?api-version=2026-01-01-preview&t=639105901981561035&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=ner6gy__DLhYN8luuQloEgYFK9RLnDukTxX7Sy9wpakPvldedMF9kxoZHgpSH1LnpUMnKlZNuhRfGHxHZzofT1YD2gCPg7IkHCs2s4PS6yDQ0P9Uo6lR2Hjz-UtoJuMdQTiyAJqUno-KcqbAJ3ZGKAV5PNgJu657ZUcpJzyzsga-RTmgZ4KXr0Mtiw66O-opXSGtwtt6b_hL5-S4LrAl3O2OXGjRmFY07dT0iuiwrqgX3twn34sz0qrmPdxf9MhYOpmmpKovVakZnn02PMLwxk-eeBNUEznQFOcc7adCSVwCZHndMo0Dv2-4uja38H8besnWrwf6Rm9bO0vnZtu5ow&h=H3HSAFQOqfZwdNRG5DIu7t3s1awaybhIS8XahY5soN4 - response: - body: - string: '{"name":"73ac4658-4985-4436-ad51-cf915e9014a1","status":"Succeeded","startTime":"2026-03-31T21:43:18.107Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/f06becb5-273e-4372-b3ee-9392d62eded1 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 64D831E2AAC24C05AA9789B4AD7D22A3 Ref B: AMS231032609011 Ref C: 2026-03-31T21:43:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"all","description":"Sets query capture mode - for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '667' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/0b27667c-3394-4161-8b70-e499050eb9bf - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 54772C59593F4D24AB9E595E2053806B Ref B: AMS231032607023 Ref C: 2026-03-31T21:43:29Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning show - Connection: - - keep-alive - ParameterSetName: - - -g -s - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"report","description":"Configures index optimization - as disabled (''OFF'') or enabled to only emit recommendation. Requires Query - Store to be enabled by setting pg_qs.query_capture_mode to ''TOP'' or ''ALL''.","defaultValue":"off","dataType":"Enumeration","allowedValues":"off,report","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode","name":"index_tuning.mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '763' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/92353ed8-9628-458f-bbe7-6e666492cae2 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: F6B28778D35A49398513A98992D98A74 Ref B: AMS231032607017 Ref C: 2026-03-31T21:43:30Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning show - Connection: - - keep-alive - ParameterSetName: - - -g -s - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"all","description":"Sets query capture mode - for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '667' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/6183e8df-f5c5-49da-9bdd-8516ddfa5a34 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 0A9E4E58A09A46A992874AE5313F1D4C Ref B: AMS231032609039 Ref C: 2026-03-31T21:43:30Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning list-settings - Connection: - - keep-alive - ParameterSetName: - - -g -s - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations?api-version=2026-01-01-preview - response: - body: - string: '{"value":[{"properties":{"value":"on","description":"Use @> operator - to transform MATCH''s filter. Otherwise, use -> operator.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://age.apache.org/age-manual/master/index.html"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/age.enable_containment","name":"age.enable_containment","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Allows - tablespaces directly inside pg_tblspc, for testing.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-ALLOW-IN-PLACE-TABLESPACES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/allow_in_place_tablespaces","name":"allow_in_place_tablespaces","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Allows - modifications of the structure of system tables.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-ALLOW-SYSTEM-TABLE-MODS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/allow_system_table_mods","name":"allow_system_table_mods","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"sha256","description":"The - hash method used for pseudonymizing functions.","defaultValue":"sha256","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.algorithm","name":"anon.algorithm","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"k_anonymity","description":"The - security label provider used for k-anonymity.","defaultValue":"k_anonymity","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.k_anonymity_provider","name":"anon.k_anonymity_provider","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"anon","description":"Define - multiple masking policies (NOT IMPLEMENTED YET).","defaultValue":"anon","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.masking_policies","name":"anon.masking_policies","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"mask","description":"The - schema where the dynamic masking views are stored.","defaultValue":"mask","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.maskschema","name":"anon.maskschema","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Mask - all columns with NULL (or the default value for NOT NULL columns).","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.privacy_by_default","name":"anon.privacy_by_default","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Masking - filters must be in a trusted schema. Activate this option to prevent non-superuser - from using their own masking filters.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.restrict_to_trusted_schemas","name":"anon.restrict_to_trusted_schemas","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"The - salt value used for the pseudonymizing functions.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.salt","name":"anon.salt","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"public","description":"The - schema where the table are masked by the dynamic masking engine.","defaultValue":"public","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.sourceschema","name":"anon.sourceschema","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"A - masking rule cannot change a column data type, unless you disable this. Disabling - the mode is not recommended.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.strict_mode","name":"anon.strict_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"New - masking engine (EXPERIMENTAL).","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://postgresql-anonymizer.readthedocs.io/en/stable/"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/anon.transparent_dynamic_masking","name":"anon.transparent_dynamic_masking","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the application name to be reported in statistics and logs.","defaultValue":"","dataType":"String","allowedValues":"[A-Za-z0-9._-]*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/libpq-connect.html#LIBPQ-CONNECT-APPLICATION-NAME"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/application_name","name":"application_name","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the shell command that will be executed at every restart point.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-ARCHIVE-CLEANUP-COMMAND"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/archive_cleanup_command","name":"archive_cleanup_command","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"BlobLogUpload.sh - %f %p","description":"Sets the shell command that will be called to archive - a WAL file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-ARCHIVE-COMMAND"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/archive_command","name":"archive_command","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the library that will be called to archive a WAL file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-ARCHIVE-LIBRARY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/archive_library","name":"archive_library","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"always","description":"Allows - archiving of WAL files using archive_command.","defaultValue":"off","dataType":"Enumeration","allowedValues":"always,on,off","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-ARCHIVE-MODE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/archive_mode","name":"archive_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"300","description":"Forces - a switch to the next WAL file if a new file has not been started within N - seconds.","defaultValue":"300","dataType":"Integer","allowedValues":"0-1073741823","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-ARCHIVE-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/archive_timeout","name":"archive_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - input of NULL (case insensitive) to be considered as NULL value rather than - the literal String ''NULL''.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-compatible.html#GUC-ARRAY-NULLS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/array_nulls","name":"array_nulls","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"30","description":"Sets - the maximum allowed time to complete client authentication.","defaultValue":"60","dataType":"Integer","allowedValues":"1-600","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-AUTHENTICATION-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/authentication_timeout","name":"authentication_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Use - EXPLAIN ANALYZE for plan logging.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-ANALYZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_analyze","name":"auto_explain.log_analyze","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Log - buffers usage.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-BUFFERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_buffers","name":"auto_explain.log_buffers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"text","description":"EXPLAIN - format to be used for plan logging.","defaultValue":"text","dataType":"Enumeration","allowedValues":"text,xml,json,yaml","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-FORMAT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_format","name":"auto_explain.log_format","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"log","description":"Log - level for the plan.","defaultValue":"log","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,debug,info,notice,warning,log","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-LEVEL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_level","name":"auto_explain.log_level","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Sets - the minimum execution time above which plans will be logged. Zero prints all - plans. -1 turns this feature off.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-MIN-DURATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_min_duration","name":"auto_explain.log_min_duration","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Log - nested statements.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-NESTED-STATEMENTS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_nested_statements","name":"auto_explain.log_nested_statements","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Sets - the maximum length of query parameters to log. Zero logs no query parameters, - -1 logs them in full.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"ms","documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-MIN-DURATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_parameter_max_length","name":"auto_explain.log_parameter_max_length","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Log - modified configuration parameters affecting query planning.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-SETTINGS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_settings","name":"auto_explain.log_settings","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Collect - timing data, not just row counts.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-TIMING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_timing","name":"auto_explain.log_timing","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Include - trigger statistics in plans. This has no effect unless log_analyze is also - set.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-TRIGGERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_triggers","name":"auto_explain.log_triggers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Use - EXPLAIN VERBOSE for plan logging.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-VERBOSE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_verbose","name":"auto_explain.log_verbose","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Log - WAL usage.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-LOG-WAL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.log_wal","name":"auto_explain.log_wal","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1.0","description":"Fraction - of queries to process.","defaultValue":"1.0","dataType":"Numeric","allowedValues":"0.0-1.0","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/auto-explain.html#AUTO-EXPLAIN-CONFIGURATION-PARAMETERS-SAMPLE-RATE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/auto_explain.sample_rate","name":"auto_explain.sample_rate","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Controls - whether the server should run the autovacuum subprocess.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum","name":"autovacuum","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.1","description":"Specifies - a fraction of the table size to add to autovacuum_vacuum_threshold when deciding - whether to trigger a VACUUM.","defaultValue":"0.1","dataType":"Numeric","allowedValues":"0-100","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-ANALYZE-SCALE-FACTOR"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_analyze_scale_factor","name":"autovacuum_analyze_scale_factor","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"50","description":"Sets - the minimum number of inserted, updated or deleted tuples needed to trigger - an ANALYZE in any one table.","defaultValue":"50","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-ANALYZE-THRESHOLD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_analyze_threshold","name":"autovacuum_analyze_threshold","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"200000000","description":"Maximum - age (in transactions) before triggering autovacuum on a table to prevent transaction - ID wraparound.","defaultValue":"200000000","dataType":"Integer","allowedValues":"100000-2000000000","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-FREEZE-MAX-AGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_freeze_max_age","name":"autovacuum_freeze_max_age","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"3","description":"Sets - the maximum number of simultaneously running autovacuum worker processes.","defaultValue":"3","dataType":"Integer","allowedValues":"1-262143","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-MAX-WORKERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_max_workers","name":"autovacuum_max_workers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"400000000","description":"Maximum - age (in multixact) before triggering autovacuum on a table to prevent multixact - wraparound.","defaultValue":"400000000","dataType":"Integer","allowedValues":"10000-2000000000","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-MULTIXACT-FREEZE-MAX-AGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_multixact_freeze_max_age","name":"autovacuum_multixact_freeze_max_age","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"60","description":"Sets - minimum delay between autovacuum runs on any given database.","defaultValue":"60","dataType":"Integer","allowedValues":"1-2147483","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-NAPTIME"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_naptime","name":"autovacuum_naptime","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Sets - cost delay value (milliseconds) that will be used in automatic VACUUM operations.","defaultValue":"2","dataType":"Integer","allowedValues":"-1-100","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-VACUUM-COST-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_vacuum_cost_delay","name":"autovacuum_vacuum_cost_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Sets - cost limit value that will be used in automatic VACUUM operations.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-VACUUM-COST-LIMIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_vacuum_cost_limit","name":"autovacuum_vacuum_cost_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.2","description":"Specifies - a fraction of the table size to add to autovacuum_vacuum_insert_threshold - when deciding whether to trigger a VACUUM.","defaultValue":"0.2","dataType":"Numeric","allowedValues":"0-100","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-VACUUM-INSERT-SCALE-FACTOR"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_vacuum_insert_scale_factor","name":"autovacuum_vacuum_insert_scale_factor","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1000","description":"Specifies - the number of inserted tuples needed to trigger a VACUUM in any one table.","defaultValue":"1000","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-VACUUM-INSERT-THRESHOLD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_vacuum_insert_threshold","name":"autovacuum_vacuum_insert_threshold","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.2","description":"Specifies - a fraction of the table size to add to autovacuum_vacuum_threshold when deciding - whether to trigger a VACUUM.","defaultValue":"0.2","dataType":"Numeric","allowedValues":"0-100","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-VACUUM-SCALE-FACTOR"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_vacuum_scale_factor","name":"autovacuum_vacuum_scale_factor","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"50","description":"Specifies - the minimum number of updated or deleted tuples needed to trigger a VACUUM - in any one table.","defaultValue":"50","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-autovacuum.html#GUC-AUTOVACUUM-VACUUM-THRESHOLD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_vacuum_threshold","name":"autovacuum_vacuum_threshold","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Sets - the maximum memory to be used by each autovacuum worker process.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2097151","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-AUTOVACUUM-WORK-MEM"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/autovacuum_work_mem","name":"autovacuum_work_mem","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"md5,scram-sha-256","description":"Accepted - password authentication method.","defaultValue":"md5,scram-sha-256","dataType":"Set","allowedValues":"md5,scram-sha-256","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274147"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.accepted_password_auth_method","name":"azure.accepted_password_auth_method","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Create - temp tablespace on ephemeral disk.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.enable_temp_tablespaces_on_local_ssd","name":"azure.enable_temp_tablespaces_on_local_ssd","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Specifies - which extensions are allowed to be created in the server.","defaultValue":"","dataType":"Set","allowedValues":",address_standardizer,address_standardizer_data_us,age,amcheck,anon,azure_ai,azure_storage,bloom,btree_gin,btree_gist,citext,credcheck,cube,dblink,dict_int,dict_xsyn,earthdistance,fuzzystrmatch,hll,hstore,hypopg,intagg,intarray,ip4r,isn,lo,login_hook,ltree,oracle_fdw,orafce,pageinspect,pg_buffercache,pg_cron,pg_diskann,pg_duckdb,pg_freespacemap,pg_hint_plan,pg_ivm,pg_partman,pg_prewarm,pg_repack,pg_squeeze,pg_stat_statements,pg_trgm,pg_visibility,pgaudit,pgcrypto,pglogical,pgrouting,pgrowlocks,pgstattuple,plpgsql,plv8,postgis,postgis_raster,postgis_sfcgal,postgis_tiger_geocoder,postgis_topology,postgres_fdw,postgres_protobuf,semver,session_variable,sslinfo,tablefunc,tdigest,tds_fdw,timescaledb,topn,tsm_system_rows,tsm_system_time,unaccent,uuid-ossp,vector","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274269"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.extensions","name":"azure.extensions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Sepcifies - the flag indicating if mirroring is enabled on server.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.fabric_mirror_enabled","name":"azure.fabric_mirror_enabled","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"When - set to on, this parameter will enable the use of the binary format for copying - data during migration.","defaultValue":"off","dataType":"Boolean","allowedValues":"on, - off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://aka.ms/migration_parameters"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.migration_copy_with_binary","name":"azure.migration_copy_with_binary","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"When - set to on, this parameter will skip the analyze phase (`vacuumdb --analyze-only`) - during the migration.","defaultValue":"off","dataType":"Boolean","allowedValues":"on, - off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://aka.ms/migration_parameters"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.migration_skip_analyze","name":"azure.migration_skip_analyze","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"When - set to on, this parameter will skip the migration of extensions.","defaultValue":"off","dataType":"Boolean","allowedValues":"on, - off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://aka.ms/migration_parameters"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.migration_skip_extensions","name":"azure.migration_skip_extensions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"When - set to on, this parameter will skip the migration of large objects such as - BLOBs.","defaultValue":"off","dataType":"Boolean","allowedValues":"on, off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://aka.ms/migration_parameters"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.migration_skip_large_objects","name":"azure.migration_skip_large_objects","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"When - set to on, this parameter will exclude user roles from the migration process.","defaultValue":"on","dataType":"Boolean","allowedValues":"on, - off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://aka.ms/migration_parameters"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.migration_skip_role_user","name":"azure.migration_skip_role_user","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"20480","description":"When - set, this parameter specifies the size at which tables will be partitioned - during migration.","defaultValue":"20480","dataType":"Integer","allowedValues":"1-204800","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"MB","documentationLink":"https://aka.ms/migration_parameters"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.migration_table_split_size","name":"azure.migration_table_split_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"A - unique identifier for a service principal in Azure, used to grant permissions - and access to resources within a tenant.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.service_principal_id","name":"azure.service_principal_id","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"A - unique identifier for the tenant in which a service principal is created, - ensuring the necessary permissions and access to resources within that tenant.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.service_principal_tenant_id","name":"azure.service_principal_tenant_id","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Specifies - if this is a server created for migrating from Azure Database for PostgreSQL - Single Server to Flexible Server.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure.single_to_flex_migration","name":"azure.single_to_flex_migration","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"16","description":"Buffer - size, in megabytes, for change batches. These buffers are used to temporarily - store CDC changes before they are written to disk.","defaultValue":"16","dataType":"Integer","allowedValues":"1-100","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_cdc.change_batch_buffer_size","name":"azure_cdc.change_batch_buffer_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"30","description":"Maximum - time, in seconds, to wait before a batch of changes is ready to be exported.","defaultValue":"30","dataType":"Integer","allowedValues":"10-60","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_cdc.change_batch_export_timeout","name":"azure_cdc.change_batch_export_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"3","description":"Maximum - number of parallel fabric mirrors that can be run at the same time.","defaultValue":"3","dataType":"Integer","allowedValues":"1-6","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_cdc.max_fabric_mirrors","name":"azure_cdc.max_fabric_mirrors","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"3","description":"Maximum - number of workers launched for snapshot export. Each worker exports one table - at a time.","defaultValue":"3","dataType":"Integer","allowedValues":"0-100","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_cdc.max_snapshot_workers","name":"azure_cdc.max_snapshot_workers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"100","description":"Buffer - size, in megabytes, for upload to Onelake. Onelake uploads files in chunks, - buffering the data in memory up to this limit.","defaultValue":"100","dataType":"Integer","allowedValues":"1-1024","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"megabytes"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_cdc.onelake_buffer_size","name":"azure_cdc.onelake_buffer_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"zstd","description":"Compression - algorithm to use for parquet files. Determines the compression algorithm to - use for parquet files. Supported values are ''uncompressed'', ''snappy'', - ''gzip'', and ''zstd''.","defaultValue":"zstd","dataType":"Enumeration","allowedValues":"uncompressed,snappy,gzip,zstd","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_cdc.parquet_compression","name":"azure_cdc.parquet_compression","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1000","description":"Maximum - size (in MB) of the initial snapshot buffer. Per table, up to this much data - is buffered before sent to Fabric. Keep in mind that azure_cdc.snapshot_buffer_size*azure_cdc.max_snapshot_workers - is the total memory buffer used during initial snapshot.","defaultValue":"1000","dataType":"Integer","allowedValues":"10-4000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_cdc.snapshot_buffer_size","name":"azure_cdc.snapshot_buffer_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"180","description":"Maximum - time, in minutes, to wait before reporting an error when exporting a snapshot - of a database.","defaultValue":"180","dataType":"Integer","allowedValues":"0-1440","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_cdc.snapshot_export_timeout","name":"azure_cdc.snapshot_export_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Allows - accessing Azure Storage Blob service from azure_storage extension.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2323791"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_storage.allow_network_access","name":"azure_storage.allow_network_access","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"512","description":"Size - of blob block, in megabytes, for PUT blob operations.","defaultValue":"512","dataType":"Integer","allowedValues":"1-4000","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"megabytes","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2323791"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_storage.blob_block_size_mb","name":"azure_storage.blob_block_size_mb","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"log","description":"Log - level used by the azure_storage extension.","defaultValue":"log","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,debug,log,info,notice,warning,error","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2323791"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_storage.log_level","name":"azure_storage.log_level","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Allows - all users to access data in storage accounts for which there are no credentials, - and the storage account access is configured as public.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2323791"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/azure_storage.public_account_access","name":"azure_storage.public_account_access","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"256","description":"Number - of pages after which previously performed writes are flushed to disk.","defaultValue":"256","dataType":"Integer","allowedValues":"0-256","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-BACKEND-FLUSH-AFTER"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/backend_flush_after","name":"backend_flush_after","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"safe_encoding","description":"Sets - whether \"\\''\" is allowed in string literals.","defaultValue":"safe_encoding","dataType":"Enumeration","allowedValues":"safe_encoding,on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-compatible.html#GUC-BACKSLASH-QUOTE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/backslash_quote","name":"backslash_quote","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Log - backtrace for errors in these functions.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-BACKTRACE-FUNCTIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/backtrace_functions","name":"backtrace_functions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"20","description":"Specifies - the delay between activity rounds for the background writer. In each round - the writer issues writes for some number of dirty buffers.","defaultValue":"20","dataType":"Integer","allowedValues":"10-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-BGWRITER-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/bgwriter_delay","name":"bgwriter_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"64","description":"Number - of pages after which previously performed writes by the background writer - are flushed to disk.","defaultValue":"64","dataType":"Integer","allowedValues":"0-256","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-BGWRITER-FLUSH-AFTER"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/bgwriter_flush_after","name":"bgwriter_flush_after","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"100","description":"In - each round, no more than this many buffers will be written by the background - writer.","defaultValue":"100","dataType":"Integer","allowedValues":"0-1073741823","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-BGWRITER-LRU-MAXPAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/bgwriter_lru_maxpages","name":"bgwriter_lru_maxpages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"The - average recent need of buffers is multiplied by bgwriter_lru_multiplier to - arrive at an estimate of the number of buffers that will be needed during - the next round.","defaultValue":"2","dataType":"Numeric","allowedValues":"0-10","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-BGWRITER-LRU-MULTIPLIER"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/bgwriter_lru_multiplier","name":"bgwriter_lru_multiplier","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"8192","description":"Shows - the size of a disk block.","defaultValue":"8192","dataType":"Integer","allowedValues":"8192-8192","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-BLOCK-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/block_size","name":"block_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - advertising the server via Bonjour.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-BONJOUR"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/bonjour","name":"bonjour","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the Bonjour service name.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-BONJOUR-NAME"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/bonjour_name","name":"bonjour_name","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"hex","description":"Sets - the output format for values of type bytea. Valid values are hex (the default) - and escape (the traditional PostgreSQL format).","defaultValue":"hex","dataType":"Enumeration","allowedValues":"escape,hex","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-BYTEA-OUTPUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/bytea_output","name":"bytea_output","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Checks - function bodies during CREATE FUNCTION.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-CHECK-FUNCTION-BODIES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/check_function_bodies","name":"check_function_bodies","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.9","description":"Specifies - the target of checkpoint completion, as a fraction of total time between checkpoints.","defaultValue":"0.9","dataType":"Numeric","allowedValues":"0-1","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-CHECKPOINT-COMPLETION-TARGET"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/checkpoint_completion_target","name":"checkpoint_completion_target","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"32","description":"Number - of pages after which previously performed writes are flushed to disk.","defaultValue":"32","dataType":"Integer","allowedValues":"0-256","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-CHECKPOINT-FLUSH-AFTER"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/checkpoint_flush_after","name":"checkpoint_flush_after","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"600","description":"Maximum - time between automatic WAL checkpoints, in seconds. The valid range is between - 30 seconds and one day.","defaultValue":"600","dataType":"Integer","allowedValues":"30-86400","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-CHECKPOINT-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/checkpoint_timeout","name":"checkpoint_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"30","description":"Writes - a warning message if checkpoints caused by the filling of WAL segment more - frequently than this.","defaultValue":"30","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-CHECKPOINT-WARNING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/checkpoint_warning","name":"checkpoint_warning","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the time interval between checks for disconnection while running queries.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-CLIENT-CONNECTION-CHECK-INTERVAL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/client_connection_check_interval","name":"client_connection_check_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"UTF8","description":"Sets - the client-side encoding (character set). The default is to use the database - encoding.","defaultValue":"UTF8","dataType":"Enumeration","allowedValues":"BIG5,EUC_CN,EUC_JP,EUC_JIS_2004,EUC_KR,EUC_TW,GB18030,GBK,ISO_8859_5,ISO_8859_6,ISO_8859_7,ISO_8859_8,JOHAB,KOI8R,KOI8U,LATIN1,LATIN2,LATIN3,LATIN4,LATIN5,LATIN6,LATIN7,LATIN8,LATIN9,LATIN10,MULE_INTERNAL,SJIS,SHIFT_JIS_2004,SQL_ASCII,UHC,UTF8,WIN866,WIN874,WIN1250,WIN1251,WIN1252,WIN1253,WIN1254,WIN1255,WIN1256,WIN1257,WIN1258","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-CLIENT-ENCODING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/client_encoding","name":"client_encoding","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"notice","description":"Controls - the message levels that are sent to the client.","defaultValue":"notice","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,log,notice,warning,error","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-CLIENT-MIN-MESSAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/client_min_messages","name":"client_min_messages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the name of the cluster, which is included in the process title.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cluster_name","name":"cluster_name","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the delay in microseconds between transaction commit and flushing WAL to disk.","defaultValue":"0","dataType":"Integer","allowedValues":"0-100000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"microseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-COMMIT-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/commit_delay","name":"commit_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"5","description":"Sets - the minimum concurrent open transactions before performing commit_delay.","defaultValue":"5","dataType":"Integer","allowedValues":"0-1000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-COMMIT-SIBLINGS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/commit_siblings","name":"commit_siblings","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"auto","description":"Enables - in-core computation of query identifiers.","defaultValue":"auto","dataType":"Enumeration","allowedValues":"auto,regress,on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-COMPUTE-QUERY-ID"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/compute_query_id","name":"compute_query_id","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"/datadrive/pg/data/postgresql.conf","description":"Sets - the server''s main configuration file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-file-locations.html#GUC-CONFIG-FILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/config_file","name":"config_file","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2000","description":"Max - login tokens per bucket.","defaultValue":"2000","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/connection_throttle.bucket_limit","name":"connection_throttle.bucket_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - temporary connection throttling per IP for too many login failures.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/connection_throttle.enable","name":"connection_throttle.enable","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.8","description":"The - factor bias for calculating number of tokens for an IP''s bucket.","defaultValue":"0.8","dataType":"Numeric","allowedValues":"0.0-0.9","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/connection_throttle.factor_bias","name":"connection_throttle.factor_bias","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"500","description":"Max - number of entries in the login failures hash table.","defaultValue":"500","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/connection_throttle.hash_entries_max","name":"connection_throttle.hash_entries_max","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"120","description":"Time - between resetting the login bucket.","defaultValue":"120","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"seconds"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/connection_throttle.reset_time","name":"connection_throttle.reset_time","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Factor - to increase number of tokens by for IPs with low failure rate.","defaultValue":"2","dataType":"Numeric","allowedValues":"1.0-100.0","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/connection_throttle.restore_factor","name":"connection_throttle.restore_factor","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"20","description":"Time - between updating the login bucket.","defaultValue":"20","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"seconds"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/connection_throttle.update_time","name":"connection_throttle.update_time","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"partition","description":"Controls - the query planner''s use of table constraints to optimize queries.","defaultValue":"partition","dataType":"Enumeration","allowedValues":"partition,on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-CONSTRAINT-EXCLUSION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/constraint_exclusion","name":"constraint_exclusion","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.005","description":"Sets - the planner''s estimate of the cost of processing each index entry during - an index scan.","defaultValue":"0.005","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-CPU-INDEX-TUPLE-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cpu_index_tuple_cost","name":"cpu_index_tuple_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.0025","description":"Sets - the planner''s estimate of the cost of processing each operator or function - executed during a query.","defaultValue":"0.0025","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-CPU-OPERATOR-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cpu_operator_cost","name":"cpu_operator_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.01","description":"Sets - the planner''s estimate of the cost of processing each row during a query.","defaultValue":"0.01","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-CPU-TUPLE-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cpu_tuple_cost","name":"cpu_tuple_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - whether a CREATEROLE user automatically grants the role to themselves, and - with which options.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-CREATEROLE-SELF-GRANT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/createrole_self_grant","name":"createrole_self_grant","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Milliseconds - to delay before reporting authentication failure.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.auth_delay_ms","name":"credcheck.auth_delay_ms","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1024","description":"Maximum - of entries in the auth failure cache.","defaultValue":"1024","dataType":"Integer","allowedValues":"1-2097151","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.auth_failure_cache_size","name":"credcheck.auth_failure_cache_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Allow - encrypted password to be used or throw an error.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.encrypted_password_allowed","name":"credcheck.encrypted_password_allowed","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"65535","description":"Maximum - of entries in the password history.","defaultValue":"65535","dataType":"Integer","allowedValues":"1-2097151","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.history_max_size","name":"credcheck.history_max_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Maximum - number of authentication failures before the user login account is invalidated.","defaultValue":"0","dataType":"Integer","allowedValues":"0-64","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.max_auth_failure","name":"credcheck.max_auth_failure","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Prevent - exposing the password in error messages logged.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.no_password_logging","name":"credcheck.no_password_logging","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Password - should contain these characters","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_contain","name":"credcheck.password_contain","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Password - contains username","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_contain_username","name":"credcheck.password_contain_username","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Ignore - case while password checking","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_ignore_case","name":"credcheck.password_ignore_case","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - password digits","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_min_digit","name":"credcheck.password_min_digit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1","description":"Minimum - password length","defaultValue":"1","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_min_length","name":"credcheck.password_min_length","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - password lowercase letters","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_min_lower","name":"credcheck.password_min_lower","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - password characters repeat","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_min_repeat","name":"credcheck.password_min_repeat","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - special characters","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_min_special","name":"credcheck.password_min_special","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - password uppercase letters","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_min_upper","name":"credcheck.password_min_upper","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Password - should not contain these characters","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_not_contain","name":"credcheck.password_not_contain","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - number of password changes before permitting reuse","defaultValue":"0","dataType":"Integer","allowedValues":"0-100","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_reuse_history","name":"credcheck.password_reuse_history","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - number of days elapsed before permitting reuse","defaultValue":"0","dataType":"Integer","allowedValues":"0-730","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_reuse_interval","name":"credcheck.password_reuse_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Force - use of VALID UNTIL clause in CREATE ROLE statement with a maximum number of - days","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_valid_max","name":"credcheck.password_valid_max","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Force - use of VALID UNTIL clause in CREATE ROLE statement with a minimum number of - days","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.password_valid_until","name":"credcheck.password_valid_until","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Restore - superuser access when they have been banned.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.reset_superuser","name":"credcheck.reset_superuser","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Username - should contain these characters","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_contain","name":"credcheck.username_contain","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Username - contains password","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_contain_password","name":"credcheck.username_contain_password","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Ignore - case while username checking","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_ignore_case","name":"credcheck.username_ignore_case","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - username digits","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_min_digit","name":"credcheck.username_min_digit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1","description":"Minimum - username length","defaultValue":"1","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_min_length","name":"credcheck.username_min_length","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - username lowercase letters","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_min_lower","name":"credcheck.username_min_lower","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - username characters repeat","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_min_repeat","name":"credcheck.username_min_repeat","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - username special characters","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_min_special","name":"credcheck.username_min_special","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Minimum - username uppercase letters","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_min_upper","name":"credcheck.username_min_upper","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Username - should not contain these characters","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.username_not_contain","name":"credcheck.username_not_contain","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Comma - separated list of usernames to exclude from password policy check.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.whitelist","name":"credcheck.whitelist","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Comma - separated list of usernames to exclude from max authentication failure check.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/HexaCluster/credcheck/blob/master/README.md#checks"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/credcheck.whitelist_auth_failure","name":"credcheck.whitelist_auth_failure","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"postgres","description":"Sets - the database in which pg_cron metadata is kept.","defaultValue":"postgres","dataType":"String","allowedValues":"[A-Za-z0-9_]+","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.database_name","name":"cron.database_name","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Allow - jobs to be scheduled as superuser.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.enable_superuser_jobs","name":"cron.enable_superuser_jobs","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"/tmp","description":"Hostname - to connect to postgres. This setting has no effect when background workers - are used.","defaultValue":"postgres","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.host","name":"cron.host","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Launch - jobs that are defined as active.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.launch_active_jobs","name":"cron.launch_active_jobs","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"warning","description":"log_min_messages - for the launcher bgworker.","defaultValue":"error","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,debug,info,notice,warning,error,log,fatal,panic","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.log_min_messages","name":"cron.log_min_messages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Log - all jobs runs into the job_run_details table.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.log_run","name":"cron.log_run","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Log - all cron statements prior to execution.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.log_statement","name":"cron.log_statement","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"32","description":"Sets - the maximum number of jobs that can run concurrently. This value is limited - by max_connections.","defaultValue":"32","dataType":"Integer","allowedValues":"0-5000","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.max_running_jobs","name":"cron.max_running_jobs","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"GMT","description":"Specify - timezone used for cron schedule.","defaultValue":"GMT","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.timezone","name":"cron.timezone","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Use - background workers instead of client sessions.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/citusdata/pg_cron"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cron.use_background_workers","name":"cron.use_background_workers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.1","description":"Sets - the planner''s estimate of the fraction of a cursor''s rows that will be retrieved.","defaultValue":"0.1","dataType":"Numeric","allowedValues":"0-1","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-CURSOR-TUPLE-FRACTION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/cursor_tuple_fraction","name":"cursor_tuple_fraction","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Shows - whether data checksums are turned on for this cluster.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-DATA-CHECKSUMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/data_checksums","name":"data_checksums","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"/datadrive/pg/data","description":"Sets - the server''s data directory.","defaultValue":"","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-file-locations.html#GUC-DATA-DIRECTORY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/data_directory","name":"data_directory","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0700","description":"Shows - the mode of the data directory.","defaultValue":"448","dataType":"Integer","allowedValues":"0-511","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-DATA-DIRECTORY-MODE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/data_directory_mode","name":"data_directory_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Whether - to continue running after a failure to sync data files.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-error-handling.html#GUC-DATA-SYNC-RETRY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/data_sync_retry","name":"data_sync_retry","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"ISO, - MDY","description":"Sets the display format for date and time values.","defaultValue":"ISO, - MDY","dataType":"String","allowedValues":"(ISO|POSTGRES|SQL|GERMAN)(, (DMY|MDY|YMD))?","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-DATESTYLE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/DateStyle","name":"DateStyle","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - per-database user names.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-DB-USER-NAMESPACE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/db_user_namespace","name":"db_user_namespace","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1000","description":"Sets - the amount of time, in milliseconds, to wait on a lock before checking for - deadlock.","defaultValue":"1000","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-locks.html#GUC-DEADLOCK-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/deadlock_timeout","name":"deadlock_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Shows - whether the running server has assertion checks enabled.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/debug_assertions","name":"debug_assertions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Aggressively - flush system caches for debugging purposes.","defaultValue":"0","dataType":"Integer","allowedValues":"0-0","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-DEBUG-DISCARD-CACHES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/debug_discard_caches","name":"debug_discard_caches","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Use - direct I/O for file access.","defaultValue":"","dataType":"String","allowedValues":"^(|data|wal|wal_init)$","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-DEBUG-IO-DIRECT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/debug_io_direct","name":"debug_io_direct","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"buffered","description":"Forces - immediate streaming or serialization of changes in large transactions. On - the publisher, it allows streaming or serializing each change in logical decoding. - On the subscriber, it allows serialization of all changes to files and notifies - the parallel apply workers to read and apply them at the end of the transaction.","defaultValue":"buffered","dataType":"Enumeration","allowedValues":"buffered,immediate","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-DEBUG-LOGICAL-REPLICATION-STREAMING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/debug_logical_replication_streaming","name":"debug_logical_replication_streaming","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Forces - use of parallel query facilities.","defaultValue":"off","dataType":"Enumeration","allowedValues":"off,on,regress","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-DEBUG-PARALLEL-QUERY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/debug_parallel_query","name":"debug_parallel_query","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Indents - parse and plan tree displays.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-DEBUG-PRETTY-PRINT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/debug_pretty_print","name":"debug_pretty_print","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Logs - each query''s parse tree.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-DEBUG-PRINT-PARSE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/debug_print_parse","name":"debug_print_parse","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Logs - each query''s execution plan.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-DEBUG-PRINT-PARSE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/debug_print_plan","name":"debug_print_plan","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Logs - each query''s rewritten parse tree.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-DEBUG-PRINT-PARSE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/debug_print_rewritten","name":"debug_print_rewritten","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"100","description":"Sets - the default statistics target for table columns without a column-specific - target.","defaultValue":"100","dataType":"Integer","allowedValues":"1-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-DEFAULT-STATISTICS-TARGET"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/default_statistics_target","name":"default_statistics_target","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"heap","description":"Sets - the default table access method for new tables.","defaultValue":"heap","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-DEFAULT-TABLE-ACCESS-METHOD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/default_table_access_method","name":"default_table_access_method","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the default tablespace to create tables and indexes in.","defaultValue":"","dataType":"String","allowedValues":"[A-Za-z._]*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-DEFAULT-TABLESPACE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/default_tablespace","name":"default_tablespace","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"pg_catalog.english","description":"Selects - the text search configuration that is used by those variants of the text search - functions that do not have an explicit argument specifying it.","defaultValue":"pg_catalog.english","dataType":"String","allowedValues":"[A-Za-z._]+","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-DEFAULT-TEXT-SEARCH-CONFIG"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/default_text_search_config","name":"default_text_search_config","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"lz4","description":"Sets - the default compression method for compressible values.","defaultValue":"pglz","dataType":"Enumeration","allowedValues":"lz4,pglz","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-DEFAULT-TOAST-COMPRESSION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/default_toast_compression","name":"default_toast_compression","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"This - parameter controls the default deferrable status of each new transaction. - It has no effect on read-write transactions or those operating at isolation - levels lower than serializable.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-DEFAULT-TRANSACTION-DEFERRABLE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/default_transaction_deferrable","name":"default_transaction_deferrable","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"read - committed","description":"This parameter controls the default isolation level - of each new transaction. The default is ''read committed''.","defaultValue":"read - committed","dataType":"Enumeration","allowedValues":"serializable,repeatable - read,read committed,read uncommitted","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-DEFAULT-TRANSACTION-ISOLATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/default_transaction_isolation","name":"default_transaction_isolation","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Sets - the default read-only status of each new transaction.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-DEFAULT-TRANSACTION-READ-ONLY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/default_transaction_read_only","name":"default_transaction_read_only","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Disable - installing community extensions.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.allow_community_extensions","name":"duckdb.allow_community_extensions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Allow - DuckDB to load extensions with invalid or missing signatures.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.allow_unsigned_extensions","name":"duckdb.allow_unsigned_extensions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Whether - known extensions are allowed to be automatically installed when a DuckDB query - depends on them.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.autoinstall_known_extensions","name":"duckdb.autoinstall_known_extensions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Whether - known extensions are allowed to be automatically loaded when a DuckDB query - depends on them.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.autoload_known_extensions","name":"duckdb.autoload_known_extensions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"LocalFileSystem","description":"Disable - specific file systems preventing access (e.g., LocalFileSystem).","defaultValue":"LocalFileSystem","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.disabled_filesystems","name":"duckdb.disabled_filesystems","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Allow - the DuckDB to access external state.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.enable_external_access","name":"duckdb.enable_external_access","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Force - queries to use DuckDB execution.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.force_execution","name":"duckdb.force_execution","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1024","description":"The - maximum memory DuckDB can use (e.g., 1GB).","defaultValue":"1024","dataType":"Integer","allowedValues":"1024-688128","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"MB","documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.max_memory","name":"duckdb.max_memory","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Maximum - number of PostgreSQL workers used for a single Postgres scan.","defaultValue":"2","dataType":"Integer","allowedValues":"0-1024","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.max_workers_per_postgres_scan","name":"duckdb.max_workers_per_postgres_scan","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1024","description":"The - maximum memory DuckDB can use (e.g., 1GB), alias for duckdb.max_memory","defaultValue":"1024","dataType":"Integer","allowedValues":"1024-688128","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"MB","documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.memory_limit","name":"duckdb.memory_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"azure_pg_duckdb_admin","description":"Which - postgres role should be allowed to use DuckDB execution, use the secrets and - create MotherDuck tables. Defaults to superusers only.","defaultValue":"","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.postgres_role","name":"duckdb.postgres_role","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Maximum - number of DuckDB threads per Postgres backend.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-96","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.threads","name":"duckdb.threads","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Maximum - number of DuckDB threads per Postgres backend, alias for duckdb.threads.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-96","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/duckdb/pg_duckdb"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/duckdb.worker_threads","name":"duckdb.worker_threads","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"$libdir","description":"Sets - the path for dynamically loadable modules.","defaultValue":"$libdir","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-DYNAMIC-LIBRARY-PATH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/dynamic_library_path","name":"dynamic_library_path","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"posix","description":"Selects - the dynamic shared memory implementation used.","defaultValue":"posix","dataType":"Enumeration","allowedValues":"posix,sysv,mmap","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-DYNAMIC-SHARED-MEMORY-TYPE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/dynamic_shared_memory_type","name":"dynamic_shared_memory_type","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1572864","description":"Sets - the planner''s assumption about the size of the disk cache.","defaultValue":"1572864","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-EFFECTIVE-CACHE-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/effective_cache_size","name":"effective_cache_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1","description":"Sets - the number of concurrent disk I/O operations that PostgreSQL expects can be - executed simultaneously.","defaultValue":"1","dataType":"Integer","allowedValues":"0-1000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-EFFECTIVE-IO-CONCURRENCY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/effective_io_concurrency","name":"effective_io_concurrency","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of async append plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-ASYNC-APPEND"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_async_append","name":"enable_async_append","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of bitmap-scan plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-BITMAPSCAN"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_bitmapscan","name":"enable_bitmapscan","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of gather merge plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-GATHERMERGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_gathermerge","name":"enable_gathermerge","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of hashed aggregation plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-HASHAGG"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_hashagg","name":"enable_hashagg","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of hash join plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-HASHJOIN"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_hashjoin","name":"enable_hashjoin","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of incremental sort steps.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-INCREMENTAL-SORT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_incremental_sort","name":"enable_incremental_sort","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of index-only-scan plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-INDEXONLYSCAN"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_indexonlyscan","name":"enable_indexonlyscan","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of index-scan plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-INDEXSCAN"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_indexscan","name":"enable_indexscan","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of materialization.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-MATERIAL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_material","name":"enable_material","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of memoization.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-MEMOIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_memoize","name":"enable_memoize","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of merge join plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-MERGEJOIN"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_mergejoin","name":"enable_mergejoin","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of nested loop join plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-NESTLOOP"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_nestloop","name":"enable_nestloop","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of parallel append plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-PARALLEL-APPEND"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_parallel_append","name":"enable_parallel_append","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of parallel hash plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-PARALLEL-HASH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_parallel_hash","name":"enable_parallel_hash","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - plan-time and execution-time partition pruning.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-PARTITION-PRUNING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_partition_pruning","name":"enable_partition_pruning","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - or disables the query planner''s use of partitionwise grouping or aggregation, - which allows grouping or aggregation on a partitioned tables performed separately - for each partition.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-PARTITIONWISE-AGGREGATE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_partitionwise_aggregate","name":"enable_partitionwise_aggregate","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - or disables the query planner''s use of partitionwise join, which allows a - join between partitioned tables to be performed by joining the matching partitions.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-PARTITIONWISE-JOIN"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_partitionwise_join","name":"enable_partitionwise_join","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s ability to produce plans that provide presorted input for ORDER - BY / DISTINCT aggregate functions. Allows the query planner to build plans - that provide presorted input for aggregate functions with an ORDER BY / DISTINCT - clause. When disabled, implicit sorts are always performed during execution.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-PRESORTED-AGGREGATE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_presorted_aggregate","name":"enable_presorted_aggregate","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of sequential-scan plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-SEQSCAN"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_seqscan","name":"enable_seqscan","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of explicit sort steps.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-SORT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_sort","name":"enable_sort","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - the planner''s use of TID scan plans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-ENABLE-TIDSCAN"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/enable_tidscan","name":"enable_tidscan","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Warns - about backslash escapes in ordinary string literals.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-compatible.html#GUC-ESCAPE-STRING-WARNING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/escape_string_warning","name":"escape_string_warning","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"PostgreSQL","description":"Sets - the application name used to identify PostgreSQL messages in the event log.","defaultValue":"PostgreSQL","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-EVENT-SOURCE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/event_source","name":"event_source","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Terminates - session on any error.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-error-handling.html#GUC-EXIT-ON-ERROR"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/exit_on_error","name":"exit_on_error","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Writes - the postmaster PID to the specified file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-file-locations.html#GUC-EXTERNAL-PID-FILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/external_pid_file","name":"external_pid_file","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1","description":"Sets - the number of digits displayed for floating-point values.","defaultValue":"1","dataType":"Integer","allowedValues":"-15-3","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-EXTRA-FLOAT-DIGITS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/extra_float_digits","name":"extra_float_digits","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"8","description":"The - planner will merge sub-queries into upper queries upto this limit in FROM - clause. Smaller values reduce planning time but might yield inferior query - plans.","defaultValue":"8","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-FROM-COLLAPSE-LIMIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/from_collapse_limit","name":"from_collapse_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Forces - synchronization of updates to disk.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-FSYNC"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/fsync","name":"fsync","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Writes - full pages to WAL when first modified after a checkpoint.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-FULL-PAGE-WRITES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/full_page_writes","name":"full_page_writes","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - genetic query optimization.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-GEQO"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/geqo","name":"geqo","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"5","description":"GEQO: - effort is used to set the default for other GEQO parameters.","defaultValue":"5","dataType":"Integer","allowedValues":"1-10","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-GEQO-EFFORT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/geqo_effort","name":"geqo_effort","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"GEQO: - number of iterations of the algorithm.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-GEQO-GENERATIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/geqo_generations","name":"geqo_generations","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"GEQO: - number of individuals in the population.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-GEQO-POOL-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/geqo_pool_size","name":"geqo_pool_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"GEQO: - seed for random path selection.","defaultValue":"0","dataType":"Numeric","allowedValues":"0-1","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-GEQO-SEED"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/geqo_seed","name":"geqo_seed","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"GEQO: - selective pressure within the population.","defaultValue":"2","dataType":"Numeric","allowedValues":"1.5-2","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-GEQO-SELECTION-BIAS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/geqo_selection_bias","name":"geqo_selection_bias","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"12","description":"Sets - the threshold of FROM items beyond which GEQO is used.","defaultValue":"12","dataType":"Integer","allowedValues":"2-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-GEQO-THRESHOLD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/geqo_threshold","name":"geqo_threshold","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the maximum allowed result for exact search by GIN.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-GIN-FUZZY-SEARCH-LIMIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/gin_fuzzy_search_limit","name":"gin_fuzzy_search_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"4096","description":"Sets - the maximum size of the pending list for GIN index.","defaultValue":"4096","dataType":"Integer","allowedValues":"64-2097151","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-GIN-PENDING-LIST-LIMIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/gin_pending_list_limit","name":"gin_pending_list_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Sets - whether GSSAPI delegation should be accepted from the client.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-GSS-ACCEPT-DELEGATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/gss_accept_delegation","name":"gss_accept_delegation","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Multiple - of work_mem to use for hash tables.","defaultValue":"2","dataType":"Numeric","allowedValues":"1-1000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-HASH-MEM-MULTIPLIER"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/hash_mem_multiplier","name":"hash_mem_multiplier","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"/datadrive/pg/data/pg_hba.conf","description":"Sets - the server''s \"hba\" configuration file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-file-locations.html#GUC-HBA-FILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/hba_file","name":"hba_file","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Allows - connections and queries during recovery.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-HOT-STANDBY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/hot_standby","name":"hot_standby","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables/disables - the option whether hot standby needs to send feedback to the primary or upstream - standby about queries currently executing on the standby.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-HOT-STANDBY-FEEDBACK"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/hot_standby_feedback","name":"hot_standby_feedback","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"The - size of huge page that should be requested.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-HUGE-PAGE-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/huge_page_size","name":"huge_page_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"try","description":"Enables/disables - the use of huge memory pages. This setting is not applicable to servers having - less than 4 vCores.","defaultValue":"try","dataType":"Enumeration","allowedValues":"on,off,try","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-HUGE-PAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/huge_pages","name":"huge_pages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"warning","description":"Log - level for reporting invalid ICU locale strings.","defaultValue":"warning","dataType":"Enumeration","allowedValues":"disabled,debug5,debug4,debug3,debug2,debug1,debug,log,info,notice,warning,error","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-ICU-VALIDATION-LEVEL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/icu_validation_level","name":"icu_validation_level","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"/datadrive/pg/data/pg_ident.conf","description":"Sets - the server''s \"ident\" configuration file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-file-locations.html#GUC-IDENT-FILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ident_file","name":"ident_file","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the maximum allowed duration of any idling transaction.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-IDLE-IN-TRANSACTION-SESSION-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/idle_in_transaction_session_timeout","name":"idle_in_transaction_session_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the maximum allowed idle time between queries, when not in a transaction.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-IDLE-SESSION-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/idle_session_timeout","name":"idle_session_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Continues - processing after a checksum failure.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-IGNORE-CHECKSUM-FAILURE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ignore_checksum_failure","name":"ignore_checksum_failure","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Continues - recovery after an invalid pages failure.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-IGNORE-INVALID-PAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ignore_invalid_pages","name":"ignore_invalid_pages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Disables - reading from system indexes.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-IGNORE-SYSTEM-INDEXES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ignore_system_indexes","name":"ignore_system_indexes","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Shows - whether hot standby is currently active.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-IN-HOT-STANDBY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/in_hot_standby","name":"in_hot_standby","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"720","description":"Sets - the frequency at which each index optimization session is triggered when index_tuning.mode - is set to ''REPORT''.","defaultValue":"720","dataType":"Integer","allowedValues":"60-10080","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"minutes","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.analysis_interval","name":"index_tuning.analysis_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Maximum - number of columns that can be part of the index key for any recommended index.","defaultValue":"2","dataType":"Integer","allowedValues":"1-10","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.max_columns_per_index","name":"index_tuning.max_columns_per_index","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10","description":"Maximum - number of indexes that can be recommended for each database during one optimization - session.","defaultValue":"10","dataType":"Integer","allowedValues":"1-25","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.max_index_count","name":"index_tuning.max_index_count","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10","description":"Maximum - number of indexes that can be recommended for each table.","defaultValue":"10","dataType":"Integer","allowedValues":"1-25","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.max_indexes_per_table","name":"index_tuning.max_indexes_per_table","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"25","description":"Number - of slowest queries per database for which indexes can be recommended.","defaultValue":"25","dataType":"Integer","allowedValues":"5-100","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.max_queries_per_database","name":"index_tuning.max_queries_per_database","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.1","description":"Acceptable - regression introduced by a recommended index on any of the queries analyzed - during one optimization session.","defaultValue":"0.1","dataType":"Numeric","allowedValues":"0.05-0.2","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"percentage","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.max_regression_factor","name":"index_tuning.max_regression_factor","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.1","description":"Maximum - total size, in percentage of total disk space, that all recommended indexes - for any given database can use.","defaultValue":"0.1","dataType":"Numeric","allowedValues":"0-1.0","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"percentage","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.max_total_size_factor","name":"index_tuning.max_total_size_factor","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.2","description":"Cost - improvement that a recommended index must provide to at least one of the queries - analyzed during one optimization session.","defaultValue":"0.2","dataType":"Numeric","allowedValues":"0-20.0","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"percentage","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.min_improvement_factor","name":"index_tuning.min_improvement_factor","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"report","description":"Configures - index optimization as disabled (''OFF'') or enabled to only emit recommendation. - Requires Query Store to be enabled by setting pg_qs.query_capture_mode to - ''TOP'' or ''ALL''.","defaultValue":"off","dataType":"Enumeration","allowedValues":"off,report","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode","name":"index_tuning.mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1000","description":"Minimum - number of daily average DML operations affecting the table, so that their - unused indexes are considered for dropping.","defaultValue":"1000","dataType":"Integer","allowedValues":"0-9999999","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_dml_per_table","name":"index_tuning.unused_dml_per_table","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"35","description":"Minimum - number of days the index has not been used, based on system statistics, so - that it is considered for dropping.","defaultValue":"35","dataType":"Integer","allowedValues":"30-720","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"days","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_min_period","name":"index_tuning.unused_min_period","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1000","description":"Minimum - number of daily average read operations affecting the table, so that their - unused indexes are considered for dropping.","defaultValue":"1000","dataType":"Integer","allowedValues":"0-9999999","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_reads_per_table","name":"index_tuning.unused_reads_per_table","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Shows - whether datetimes are integer based.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-INTEGER-DATETIMES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/integer_datetimes","name":"integer_datetimes","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - intelligent tuning","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274150"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/intelligent_tuning","name":"intelligent_tuning","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"none","description":"Specifies - which metrics will be adjusted by intelligent tuning.","defaultValue":"none","dataType":"Set","allowedValues":"none,Storage-checkpoint_completion_target,Storage-min_wal_size,Storage-max_wal_size,Storage-bgwriter_delay,tuning-autovacuum,all","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274150"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/intelligent_tuning.metric_targets","name":"intelligent_tuning.metric_targets","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"postgres","description":"Sets - the display format for interval values.","defaultValue":"postgres","dataType":"Enumeration","allowedValues":"postgres,postgres_verbose,sql_standard,iso_8601","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-INTERVALSTYLE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/IntervalStyle","name":"IntervalStyle","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Determines - whether JIT compilation may be used by PostgreSQL.","defaultValue":"off","dataType":"Boolean","allowedValues":"on, - off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-JIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit","name":"jit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"100000","description":"Sets - the query cost above which JIT compilation is activated, if enabled.","defaultValue":"100000","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-JIT-ABOVE-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit_above_cost","name":"jit_above_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Register - JIT-compiled functions with debugger.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-JIT-DEBUGGING-SUPPORT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit_debugging_support","name":"jit_debugging_support","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Write - out LLVM bitcode to facilitate JIT debugging.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-JIT-DUMP-BITCODE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit_dump_bitcode","name":"jit_dump_bitcode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Allow - JIT compilation of expressions.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-JIT-EXPRESSIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit_expressions","name":"jit_expressions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"500000","description":"Sets - the query cost above which JIT compilation attempts to inline functions and - operators.","defaultValue":"500000","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-JIT-INLINE-ABOVE-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit_inline_above_cost","name":"jit_inline_above_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"500000","description":"Sets - the query cost above which JIT compilation applies expensive optimizations.","defaultValue":"500000","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-JIT-OPTIMIZE-ABOVE-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit_optimize_above_cost","name":"jit_optimize_above_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Register - JIT-compiled functions with perf profiler.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-JIT-PROFILING-SUPPORT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit_profiling_support","name":"jit_profiling_support","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"llvmjit","description":"JIT - provider to use.","defaultValue":"llvmjit","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-JIT-PROVIDER"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit_provider","name":"jit_provider","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Allow - JIT compilation of tuple deforming.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-JIT-TUPLE-DEFORMING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/jit_tuple_deforming","name":"jit_tuple_deforming","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"8","description":"Sets - the FROM-list size beyond which JOIN constructs are not flattened.","defaultValue":"8","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-JOIN-COLLAPSE-LIMIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/join_collapse_limit","name":"join_collapse_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Sets - whether Kerberos and GSSAPI user names should be treated as case-insensitive.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-KRB-CASEINS-USERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/krb_caseins_users","name":"krb_caseins_users","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the location of the Kerberos server key file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-KRB-SERVER-KEYFILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/krb_server_keyfile","name":"krb_server_keyfile","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"en_US.utf8","description":"Sets - the language in which messages are displayed.","defaultValue":"","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-LC-MESSAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/lc_messages","name":"lc_messages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"en_US.utf-8","description":"Sets - the locale for formatting monetary amounts.","defaultValue":"en_US.utf-8","dataType":"String","allowedValues":"[A-Za-z0-9._ - -]+","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-LC-MONETARY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/lc_monetary","name":"lc_monetary","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"en_US.utf-8","description":"Sets - the locale for formatting numbers.","defaultValue":"en_US.utf-8","dataType":"String","allowedValues":"[A-Za-z0-9._ - -]+","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-LC-NUMERIC"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/lc_numeric","name":"lc_numeric","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"en_US.utf8","description":"Sets - the locale for formatting date and time values.","defaultValue":"C","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-LC-TIME"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/lc_time","name":"lc_time","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"*","description":"Sets - the host name or IP address(es) to listen to.","defaultValue":"localhost","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-LISTEN-ADDRESSES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/listen_addresses","name":"listen_addresses","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - backward compatibility mode for privilege checks on large objects.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-compatible.html#GUC-LO-COMPAT-PRIVILEGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/lo_compat_privileges","name":"lo_compat_privileges","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Lists - unprivileged shared libraries to preload into each backend.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-LOCAL-PRELOAD-LIBRARIES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/local_preload_libraries","name":"local_preload_libraries","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the maximum allowed duration (in milliseconds) of any wait for a lock. 0 turns - this off.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-LOCK-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/lock_timeout","name":"lock_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"600000","description":"Sets - the minimum execution time above which autovacuum actions will be logged.","defaultValue":"600000","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-AUTOVACUUM-MIN-DURATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_autovacuum_min_duration","name":"log_autovacuum_min_duration","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Logs - each checkpoint.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-CHECKPOINTS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_checkpoints","name":"log_checkpoints","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Causes - each attempted connection to the server to be logged, as well as successful - completion of client authentication.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-CONNECTIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_connections","name":"log_connections","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"stderr","description":"Sets - the destination for server log output.","defaultValue":"stderr","dataType":"Enumeration","allowedValues":"stderr,csvlog","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-DESTINATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_destination","name":"log_destination","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"log","description":"Sets - the destination directory for log files.","defaultValue":"log","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-DIRECTORY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_directory","name":"log_directory","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Logs - end of a session, including duration.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-DISCONNECTIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_disconnections","name":"log_disconnections","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Logs - the duration of each completed SQL statement.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-DURATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_duration","name":"log_duration","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"default","description":"Controls - the amount of detail written in the server log for each message that is logged.","defaultValue":"default","dataType":"Enumeration","allowedValues":"terse,default,verbose","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-ERROR-VERBOSITY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_error_verbosity","name":"log_error_verbosity","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Writes - executor performance statistics to the server log.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-LOG-STATEMENT-STATS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_executor_stats","name":"log_executor_stats","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0600","description":"Sets - the file permissions for log files.","defaultValue":"384","dataType":"Integer","allowedValues":"0-511","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-FILE-MODE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_file_mode","name":"log_file_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"postgresql-%Y-%m-%d_%H%M%S.log","description":"Sets - the file name pattern for log files.","defaultValue":"postgresql-%Y-%m-%d_%H%M%S.log","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-FILENAME"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_filename","name":"log_filename","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Logs - the host name in the connection logs.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-HOSTNAME"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_hostname","name":"log_hostname","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"%t-%c-","description":"Sets - the printf-style string that is output at the beginning of each log line.","defaultValue":"%t-%c-","dataType":"String","allowedValues":"[^'']*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-LINE-PREFIX"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_line_prefix","name":"log_line_prefix","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Controls - whether a log message is produced when a session waits longer than deadlock_timeout - to acquire a lock.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-LOCK-WAITS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_lock_waits","name":"log_lock_waits","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Sets - the minimum execution time above which a sample of statements will be logged. - Sampling is determined by log_statement_sample_rate.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-MIN-DURATION-SAMPLE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_min_duration_sample","name":"log_min_duration_sample","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Sets - the minimum execution time (in milliseconds) above which statements will be - logged. -1 disables logging statement durations.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-MIN-DURATION-STATEMENT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_min_duration_statement","name":"log_min_duration_statement","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"error","description":"Causes - all statements generating error at or above this level to be logged.","defaultValue":"error","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-MIN-ERROR-STATEMENT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_min_error_statement","name":"log_min_error_statement","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"warning","description":"Controls - which message levels are written to the server log.","defaultValue":"warning","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-MIN-MESSAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_min_messages","name":"log_min_messages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Sets - the maximum length in bytes of data logged for bind parameter values when - logging statements.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-1073741823","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"bytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-PARAMETER-MAX-LENGTH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_parameter_max_length","name":"log_parameter_max_length","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the maximum length in bytes of data logged for bind parameter values when - logging statements, on error.","defaultValue":"0","dataType":"Integer","allowedValues":"-1-1073741823","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"bytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-PARAMETER-MAX-LENGTH-ON-ERROR"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_parameter_max_length_on_error","name":"log_parameter_max_length_on_error","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Writes - parser performance statistics to the server log.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-LOG-STATEMENT-STATS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_parser_stats","name":"log_parser_stats","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Writes - planner performance statistics to the server log.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-LOG-STATEMENT-STATS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_planner_stats","name":"log_planner_stats","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Controls - whether a log message is produced when the startup process waits longer than - deadlock_timeout for recovery conflicts.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-RECOVERY-CONFLICT-WAITS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_recovery_conflict_waits","name":"log_recovery_conflict_waits","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Logs - each replication command.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-REPLICATION-COMMANDS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_replication_commands","name":"log_replication_commands","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"60","description":"Sets - the amount of time to wait before forcing log file rotation.","defaultValue":"1440","dataType":"Integer","allowedValues":"0-35791394","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"minutes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-ROTATION-AGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_rotation_age","name":"log_rotation_age","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"102400","description":"Sets - the maximum size a log file can reach before being rotated.","defaultValue":"10240","dataType":"Integer","allowedValues":"0-2097151","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-ROTATION-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_rotation_size","name":"log_rotation_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10000","description":"Time - between progress updates for long-running startup operations.","defaultValue":"10000","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-STARTUP-PROGRESS-INTERVAL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_startup_progress_interval","name":"log_startup_progress_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"none","description":"Sets - the type of statements logged.","defaultValue":"none","dataType":"Enumeration","allowedValues":"none,ddl,mod,all","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-STATEMENT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_statement","name":"log_statement","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1","description":"Fraction - of statements exceeding log_min_duration_sample to be logged.","defaultValue":"1","dataType":"Numeric","allowedValues":"0-1","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-STATEMENT-SAMPLE-RATE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_statement_sample_rate","name":"log_statement_sample_rate","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"For - each query, writes cumulative performance statistics to the server log.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-LOG-STATEMENT-STATS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_statement_stats","name":"log_statement_stats","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Logs - the use of temporary files larger than this number of kilobytes.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-TEMP-FILES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_temp_files","name":"log_temp_files","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"UTC","description":"Sets - the time zone to use in log messages.","defaultValue":"GMT","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-TIMEZONE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_timezone","name":"log_timezone","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the fraction of transactions from which to log all statements.","defaultValue":"0","dataType":"Numeric","allowedValues":"0-1","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-TRANSACTION-SAMPLE-RATE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_transaction_sample_rate","name":"log_transaction_sample_rate","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Truncate - existing log files of same name during log rotation.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOG-TRUNCATE-ON-ROTATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/log_truncate_on_rotation","name":"log_truncate_on_rotation","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - or disables server logs functionality.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274270"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/logfiles.download_enable","name":"logfiles.download_enable","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"3","description":"Sets - the retention period window in days for server logs - after this time data - will be deleted.","defaultValue":"3","dataType":"Integer","allowedValues":"1-7","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274270"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/logfiles.retention_days","name":"logfiles.retention_days","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Start - a subprocess to capture stderr output and/or csvlogs into log files.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-LOGGING-COLLECTOR"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/logging_collector","name":"logging_collector","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"65536","description":"Sets - the maximum memory to be used for logical decoding.","defaultValue":"65536","dataType":"Integer","allowedValues":"64-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-LOGICAL-DECODING-WORK-MEM"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/logical_decoding_work_mem","name":"logical_decoding_work_mem","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10","description":"A - variant of effective_io_concurrency that is used for maintenance work.","defaultValue":"10","dataType":"Integer","allowedValues":"0-1000","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MAINTENANCE-IO-CONCURRENCY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/maintenance_io_concurrency","name":"maintenance_io_concurrency","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"274432","description":"Sets - the maximum memory to be used for maintenance operations such as VACUUM, Create - Index.","defaultValue":"274432","dataType":"Integer","allowedValues":"1024-2097151","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MAINTENANCE-WORK-MEM"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/maintenance_work_mem","name":"maintenance_work_mem","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1718","description":"Sets - the maximum number of concurrent connections to the database server.","defaultValue":"1718","dataType":"Integer","allowedValues":"25-5000","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-MAX-CONNECTIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_connections","name":"max_connections","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1000","description":"Sets - the maximum number of simultaneously open files for each server process.","defaultValue":"1000","dataType":"Integer","allowedValues":"64-2147483647","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MAX-FILES-PER-PROCESS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_files_per_process","name":"max_files_per_process","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"100","description":"Shows - the maximum number of function arguments.","defaultValue":"100","dataType":"Integer","allowedValues":"100-100","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-MAX-FUNCTION-ARGS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_function_args","name":"max_function_args","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"63","description":"Shows - the maximum identifier length.","defaultValue":"63","dataType":"Integer","allowedValues":"63-63","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-MAX-IDENTIFIER-LENGTH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_identifier_length","name":"max_identifier_length","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"32","description":"Shows - the maximum number of index keys.","defaultValue":"32","dataType":"Integer","allowedValues":"32-32","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-MAX-INDEX-KEYS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_index_keys","name":"max_index_keys","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"64","description":"Sets - the maximum number of locks can be taken per transaction. When running a replica - server, you must set this parameter to the same or higher value than on the - master server.","defaultValue":"64","dataType":"Integer","allowedValues":"10-8388608","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-locks.html#GUC-MAX-LOCKS-PER-TRANSACTION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_locks_per_transaction","name":"max_locks_per_transaction","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"4","description":"Specifies - maximum number of logical replication workers. This includes both apply workers - and table synchronization workers.","defaultValue":"4","dataType":"Integer","allowedValues":"0-262143","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-MAX-LOGICAL-REPLICATION-WORKERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_logical_replication_workers","name":"max_logical_replication_workers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Sets - the maximum number of parallel apply workers that can be used per subscription - in logical replication.","defaultValue":"2","dataType":"Integer","allowedValues":"0-1024","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_parallel_apply_workers_per_subscription","name":"max_parallel_apply_workers_per_subscription","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Sets - the maximum number of parallel processes per maintenance operation.","defaultValue":"2","dataType":"Integer","allowedValues":"0-64","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MAX-PARALLEL-MAINTENANCE-WORKERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_parallel_maintenance_workers","name":"max_parallel_maintenance_workers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"8","description":"Sets - the maximum number of workers than can be supported for parallel operations.","defaultValue":"8","dataType":"Integer","allowedValues":"0-1024","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MAX-PARALLEL-WORKERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_parallel_workers","name":"max_parallel_workers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Sets - the maximum number of parallel processes per executor node.","defaultValue":"2","dataType":"Integer","allowedValues":"0-1024","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MAX-PARALLEL-WORKERS-PER-GATHER"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_parallel_workers_per_gather","name":"max_parallel_workers_per_gather","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Sets - the maximum number of predicate-locked tuples per page.","defaultValue":"2","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-locks.html#GUC-MAX-PRED-LOCKS-PER-PAGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_pred_locks_per_page","name":"max_pred_locks_per_page","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-2","description":"Sets - the maximum number of predicate-locked pages and tuples per relation.","defaultValue":"-2","dataType":"Integer","allowedValues":"-2147483648-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-locks.html#GUC-MAX-PRED-LOCKS-PER-RELATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_pred_locks_per_relation","name":"max_pred_locks_per_relation","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"64","description":"Sets - the maximum number of predicate locks per transaction.","defaultValue":"64","dataType":"Integer","allowedValues":"10-2147483647","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-locks.html#GUC-MAX-PRED-LOCKS-PER-TRANSACTION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_pred_locks_per_transaction","name":"max_pred_locks_per_transaction","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the maximum number of simultaneously prepared transactions. When running a - replica server, you must set this parameter to the same or higher value than - on the primary server.","defaultValue":"0","dataType":"Integer","allowedValues":"0-262143","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MAX-PREPARED-TRANSACTIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_prepared_transactions","name":"max_prepared_transactions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10","description":"Specifies - the maximum number of replication slots that the server can support.","defaultValue":"10","dataType":"Integer","allowedValues":"2-262143","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-MAX-REPLICATION-SLOTS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_replication_slots","name":"max_replication_slots","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Sets - the maximum WAL size that can be reserved by replication slots.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"megabytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-MAX-SLOT-WAL-KEEP-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_slot_wal_keep_size","name":"max_slot_wal_keep_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2048","description":"Sets - the maximum stack depth, in kilobytes.","defaultValue":"100","dataType":"Integer","allowedValues":"100-2147483647","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MAX-STACK-DEPTH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_stack_depth","name":"max_stack_depth","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"30000","description":"Sets - the maximum delay before canceling queries that conflict when a hot standby - server is processing archived WAL data.","defaultValue":"30000","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-MAX-STANDBY-ARCHIVE-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_standby_archive_delay","name":"max_standby_archive_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"30000","description":"Sets - the maximum delay before canceling queries that conflict when a hot standby - server is processing streamed WAL data.","defaultValue":"30000","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-MAX-STANDBY-STREAMING-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_standby_streaming_delay","name":"max_standby_streaming_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Maximum - number of table synchronization workers per subscription.","defaultValue":"2","dataType":"Integer","allowedValues":"0-262143","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-MAX-SYNC-WORKERS-PER-SUBSCRIPTION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_sync_workers_per_subscription","name":"max_sync_workers_per_subscription","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10","description":"Sets - the maximum number of simultaneously running WAL sender processes.","defaultValue":"10","dataType":"Integer","allowedValues":"5-100","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-MAX-WAL-SENDERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_wal_senders","name":"max_wal_senders","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"12288","description":"Maximum - size to let the WAL grow before triggering automatic checkpoint.","defaultValue":"12288","dataType":"Integer","allowedValues":"32-65536","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"megabytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-MAX-WAL-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_wal_size","name":"max_wal_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"8","description":"Sets - the maximum number of background processes that the system can support.","defaultValue":"8","dataType":"Integer","allowedValues":"0-262143","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MAX-WORKER-PROCESSES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/max_worker_processes","name":"max_worker_processes","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - metrics collection for all table statistics within a database","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274151"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/metrics.autovacuum_diagnostics","name":"metrics.autovacuum_diagnostics","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - metrics collection for database and activity statistics","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274151"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/metrics.collector_database_activity","name":"metrics.collector_database_activity","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - metrics collection for PgBouncer.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274151"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/metrics.pgbouncer_diagnostics","name":"metrics.pgbouncer_diagnostics","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Amount - of dynamic shared memory reserved at startup.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"megabytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-MIN-DYNAMIC-SHARED-MEMORY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/min_dynamic_shared_memory","name":"min_dynamic_shared_memory","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"64","description":"Sets - the minimum amount of index data for a parallel scan.","defaultValue":"64","dataType":"Integer","allowedValues":"0-715827882","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-MIN-PARALLEL-INDEX-SCAN-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/min_parallel_index_scan_size","name":"min_parallel_index_scan_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1024","description":"Sets - the minimum amount of table data that must be scanned for a parallel scan - to be considered.","defaultValue":"1024","dataType":"Integer","allowedValues":"0-715827882","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-MIN-PARALLEL-TABLE-SCAN-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/min_parallel_table_scan_size","name":"min_parallel_table_scan_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"80","description":"Sets - the minimum size to shrink the WAL to.","defaultValue":"80","dataType":"Integer","allowedValues":"32-2097151","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"megabytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-MIN-WAL-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/min_wal_size","name":"min_wal_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Time - before a snapshot is too old to read pages changed after the snapshot was - taken.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-86400","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"minutes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-OLD-SNAPSHOT-THRESHOLD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/old_snapshot_threshold","name":"old_snapshot_threshold","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Controls - whether Gather and Gather Merge also run subplans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-PARALLEL-LEADER-PARTICIPATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/parallel_leader_participation","name":"parallel_leader_participation","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1000","description":"Sets - the planner''s estimate of the cost of starting up worker processes for parallel - query.","defaultValue":"1000","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-PARALLEL-SETUP-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/parallel_setup_cost","name":"parallel_setup_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0.1","description":"Sets - the planner''s estimate of the cost of passing each tuple (row) from worker - to master backend.","defaultValue":"0.1","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-PARALLEL-TUPLE-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/parallel_tuple_cost","name":"parallel_tuple_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"scram-sha-256","description":"Determines - the algorithm to use to encrypt the password.","defaultValue":"scram-sha-256","dataType":"Enumeration","allowedValues":"md5,scram-sha-256","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-PASSWORD-ENCRYPTION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/password_encryption","name":"password_encryption","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"whether - to drop extra slots on standby that don''t match pg_failover_slots.synchronize_slot_names.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/EnterpriseDB/pg_failover_slots"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_failover_slots.drop_extra_slots","name":"pg_failover_slots.drop_extra_slots","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"connection - string to the primary server for synchronization logical slots on standby. - if empty, uses the defaults to primary_conninfo.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/EnterpriseDB/pg_failover_slots"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_failover_slots.primary_dsn","name":"pg_failover_slots.primary_dsn","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"azure_standby_, - wal_replica_","description":"list of names of slot that must confirm changes - before they''re sent by the decoding plugin. List of physical replication - slots that must confirm durable flush of a given lsn before commits up to - that lsn may be replicated to logical peers by the output plugin. Imposes - ordering of physical replication before logical replication.","defaultValue":"azure_standby_, - wal_replica_","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/EnterpriseDB/pg_failover_slots"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_failover_slots.standby_slot_names","name":"pg_failover_slots.standby_slot_names","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1","description":"Number - of slots from pg_failover_slots.standby_slot_names that must confirm lsn. - Modifies behaviour of pg_failover_slots.standby_slot_names so to allow logical - replication of a transaction after at least pg_failover_slots.standby_slots_min_confirmed - physical peers have confirmed the transaction as durably flushed. The value - -1 (default) means all entries in pg_failover_slots.standby_slot_namesmust - confirm the write. The value 0 causes pg_failover_slots.standby_slots_min_confirmedto - be effectively ignored.","defaultValue":"1","dataType":"Integer","allowedValues":"-1-100","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/EnterpriseDB/pg_failover_slots"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_failover_slots.standby_slots_min_confirmed","name":"pg_failover_slots.standby_slots_min_confirmed","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"name_like:%%","description":"list - of slots to synchronize from primary to physical standby.","defaultValue":"name_like:%%","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/EnterpriseDB/pg_failover_slots"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_failover_slots.synchronize_slot_names","name":"pg_failover_slots.synchronize_slot_names","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1.0.1","description":"pg_failover_slots - module version.","defaultValue":"1.0.1","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/EnterpriseDB/pg_failover_slots"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_failover_slots.version","name":"pg_failover_slots.version","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"whether - to wait for an inactive replication slots on primary to catchup with standby.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/EnterpriseDB/pg_failover_slots"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_failover_slots.wait_for_inactive_slots","name":"pg_failover_slots.wait_for_inactive_slots","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Logs - results of hint parsing.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ossc-db/pg_hint_plan/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_hint_plan.debug_print","name":"pg_hint_plan.debug_print","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Force - planner to use plans specified in the hint comment preceding to the query.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ossc-db/pg_hint_plan/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_hint_plan.enable_hint","name":"pg_hint_plan.enable_hint","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Let - pg_hint_plan look up the hint table.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ossc-db/pg_hint_plan/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_hint_plan.enable_hint_table","name":"pg_hint_plan.enable_hint_table","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Read - hints from anywhere in a query. This option lets pg_hint_plan ignore syntax - so be cautious for false reads.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ossc-db/pg_hint_plan/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_hint_plan.hints_anywhere","name":"pg_hint_plan.hints_anywhere","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"log","description":"Message - level of debug messages.","defaultValue":"log","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,debug,log,info,notice,warning,error","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ossc-db/pg_hint_plan/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_hint_plan.message_level","name":"pg_hint_plan.message_level","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"info","description":"Message - level of parse errors.","defaultValue":"info","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,debug,log,info,notice,warning,error","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ossc-db/pg_hint_plan/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_hint_plan.parse_messages","name":"pg_hint_plan.parse_messages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Same - purpose as the p_analyze argument to run_maintenance().","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgpartman/pg_partman"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_partman_bgw.analyze","name":"pg_partman_bgw.analyze","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Required. - The database(s) that run_maintenance() will run on. If more than one, use - a comma separated list. If not set, BGW will do nothing.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgpartman/pg_partman"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_partman_bgw.dbname","name":"pg_partman_bgw.dbname","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"3600","description":"Number - of seconds between calls to run_maintenance().","defaultValue":"3600","dataType":"Integer","allowedValues":"1-315360000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://github.com/pgpartman/pg_partman"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_partman_bgw.interval","name":"pg_partman_bgw.interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Same - purpose as the p_jobmon argument to run_maintenance().","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgpartman/pg_partman"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_partman_bgw.jobmon","name":"pg_partman_bgw.jobmon","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"How - long to wait between each partition set when running maintenance (in seconds).","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"s","documentationLink":"https://github.com/pgpartman/pg_partman"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_partman_bgw.maintenance_wait","name":"pg_partman_bgw.maintenance_wait","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"The - role that run_maintenance() will run as. Default is postgres. Only a single - role name is allowed.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgpartman/pg_partman"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_partman_bgw.role","name":"pg_partman_bgw.role","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Starts - the autoprewarm worker.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgprewarm.html#PGPREWARM-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_prewarm.autoprewarm","name":"pg_prewarm.autoprewarm","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"300","description":"Sets - the interval between dumps of shared buffers. If set to zero, time-based dumping - is disabled.","defaultValue":"300","dataType":"Integer","allowedValues":"0-2147483","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgprewarm.html#PGPREWARM-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_prewarm.autoprewarm_interval","name":"pg_prewarm.autoprewarm_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"15","description":"Sets - the query_store capture interval in minutes for pg_qs - this is the frequency - of data persistence.","defaultValue":"15","dataType":"Integer","allowedValues":"1-30","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"min","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.interval_length_minutes","name":"pg_qs.interval_length_minutes","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Internal - Use Only: This parameter is used as a feature override switch. If it shows - as off, Query Store will be disabled despite the value set for pg_qs.query_capture_mode.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.is_enabled_fs","name":"pg_qs.is_enabled_fs","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"500","description":"Specifies - the number of most relevant queries for which query store captures runtime - statistics at each interval.","defaultValue":"500","dataType":"Integer","allowedValues":"100-500","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.max_captured_queries","name":"pg_qs.max_captured_queries","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"7500","description":"Sets - the maximum number of bytes that will be saved for query plan text for pg_qs; - longer plans will be truncated.","defaultValue":"7500","dataType":"Integer","allowedValues":"100-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"bytes","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.max_plan_size","name":"pg_qs.max_plan_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"6000","description":"Sets - the maximum query text length that will be saved; longer queries will be truncated.","defaultValue":"6000","dataType":"Integer","allowedValues":"100-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"bytes","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.max_query_text_length","name":"pg_qs.max_query_text_length","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"capture_parameterless_only","description":"Whether - and when to capture query positional parameters.","defaultValue":"capture_parameterless_only","dataType":"Enumeration","allowedValues":"capture_parameterless_only,capture_first_sample","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.parameters_capture_mode","name":"pg_qs.parameters_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"all","description":"Sets - query capture mode for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"7","description":"Sets - the retention period window in days for pg_qs - after this time data will - be deleted.","defaultValue":"7","dataType":"Integer","allowedValues":"1-30","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.retention_period_in_days","name":"pg_qs.retention_period_in_days","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Turns - saving query plans on or off for pg_qs ","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.store_query_plans","name":"pg_qs.store_query_plans","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Selects - whether utility commands are tracked by pg_qs.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.track_utility","name":"pg_qs.track_utility","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"5000","description":"Sets - the maximum number of statements tracked by pg_stat_statements.","defaultValue":"5000","dataType":"Integer","allowedValues":"100-2147483647","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgstatstatements.html#PGSTATSTATEMENTS-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_stat_statements.max","name":"pg_stat_statements.max","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Save - pg_stat_statements statistics across server shutdowns.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgstatstatements.html#PGSTATSTATEMENTS-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_stat_statements.save","name":"pg_stat_statements.save","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"none","description":"Controls - which statements are counted by pg_stat_statements.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgstatstatements.html#PGSTATSTATEMENTS-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_stat_statements.track","name":"pg_stat_statements.track","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Selects - whether planning duration is tracked by pg_stat_statements.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgstatstatements.html#PGSTATSTATEMENTS-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_stat_statements.track_planning","name":"pg_stat_statements.track_planning","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Selects - whether utility commands are tracked by pg_stat_statements.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/pgstatstatements.html#PGSTATSTATEMENTS-CONFIG-PARAMS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_stat_statements.track_utility","name":"pg_stat_statements.track_utility","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - synchronization of Entra ID group members.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2338467"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaadauth.enable_group_sync","name":"pgaadauth.enable_group_sync","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"none","description":"Specifies - which classes of statements will be logged by session audit logging.","defaultValue":"none","dataType":"Set","allowedValues":"none,read,write,function,role,ddl,misc,all","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log","name":"pgaudit.log","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Specifies - that session logging should be enabled in the case where all relations in - a statement are in pg_catalog.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log_catalog","name":"pgaudit.log_catalog","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Specifies - whether audit messages should be visible to client.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log_client","name":"pgaudit.log_client","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"log","description":"Specifies - the log level that will be used for log entries.","defaultValue":"log","dataType":"Enumeration","allowedValues":",debug5,debug4,debug3,debug2,debug1,info,notice,warning,log","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log_level","name":"pgaudit.log_level","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Specifies - that audit logging should include the parameters that were passed with the - statement.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log_parameter","name":"pgaudit.log_parameter","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Specifies, - in bytes, the maximum length of variable-length parameters to log. If 0 (the - default), parameters are not checked for size. If set, when the size of the - parameter is longer than the setting, the value in the audit log is replaced - with a placeholder. Note that for character types, the length is in bytes - for the parameter''s encoding, not characters.","defaultValue":"0","dataType":"Integer","allowedValues":"0-1073741823","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log_parameter_max_size","name":"pgaudit.log_parameter_max_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Specifies - whether session audit logging should create a separate log entry for each - relation referenced in a SELECT or DML statement.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log_relation","name":"pgaudit.log_relation","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Specifies - whether logging will include the rows retrieved or affected by a statement.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log_rows","name":"pgaudit.log_rows","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Specifies - whether logging will include the statement text and parameters. Depending - on requirements, the full statement text might not be required in the audit - log.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log_statement","name":"pgaudit.log_statement","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Specifies - whether logging will include the statement text and parameters with the first - log entry for a statement/substatement combination or with every entry.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.log_statement_once","name":"pgaudit.log_statement_once","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Specifies - the master role to use for object audit logging.","defaultValue":"","dataType":"String","allowedValues":"[A-Za-z\\._]*","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/pgaudit/pgaudit/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgaudit.role","name":"pgaudit.role","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"false","description":"Denotes - if pgBouncer service is enabled.","defaultValue":"false","dataType":"Boolean","allowedValues":"true, - false","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.pgbouncer.org/config.html"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgbouncer.enabled","name":"pgbouncer.enabled","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Tells - PGLogical to use batch insert mechanism if possible.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ArmMbedCloud/pglogical"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pglogical.batch_inserts","name":"pglogical.batch_inserts","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"log","description":"Sets - the log level for reporting detected conflicts when the pglogical.conflict_resolution - is set to anything else than error.","defaultValue":"log","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,info,notice,warning,error,log,fatal,panic","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ArmMbedCloud/pglogical"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pglogical.conflict_log_level","name":"pglogical.conflict_log_level","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"apply_remote","description":"Sets - the resolution method for any detected conflicts between local data and incoming - changes.","defaultValue":"apply_remote","dataType":"Enumeration","allowedValues":"error,apply_remote,keep_local,last_update_wins,first_update_wins","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ArmMbedCloud/pglogical"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pglogical.conflict_resolution","name":"pglogical.conflict_resolution","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"connection - options to add to all peer node connections.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ArmMbedCloud/pglogical"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pglogical.extra_connection_options","name":"pglogical.extra_connection_options","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"pglogical - specific synchronous commit value.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ArmMbedCloud/pglogical"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pglogical.synchronous_commit","name":"pglogical.synchronous_commit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Directory - to store dumps for local restore.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ArmMbedCloud/pglogical"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pglogical.temp_directory","name":"pglogical.temp_directory","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Tells - PGLogical to use SPI interface to form actual SQL (INSERT, UPDATE, DELETE) - statements to apply incoming changes instead of using internal low level interface.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://github.com/ArmMbedCloud/pglogical"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pglogical.use_spi","name":"pglogical.use_spi","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Internal - Use Only: This parameter is used as a feature override switch.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_stats.is_enabled_fs","name":"pgms_stats.is_enabled_fs","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"100","description":"Set - the frequency, in milliseconds, at which wait events are sampled.","defaultValue":"100","dataType":"Integer","allowedValues":"1-600000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_wait_sampling.history_period","name":"pgms_wait_sampling.history_period","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Internal - Use Only: This parameter is used as a feature override switch. If it shows - as off, wait sampling will be disabled despite the value set for pgms_wait_sampling.query_capture_mode.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_wait_sampling.is_enabled_fs","name":"pgms_wait_sampling.is_enabled_fs","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"none","description":"Selects - which statements are tracked by the pgms_wait_sampling extension.","defaultValue":"none","dataType":"Enumeration","allowedValues":"all,none","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pgms_wait_sampling.query_capture_mode","name":"pgms_wait_sampling.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"auto","description":"Controls - the planner''s selection of custom or generic plan.","defaultValue":"auto","dataType":"Enumeration","allowedValues":"auto,force_generic_plan,force_custom_plan","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-PLAN-CACHE-MODE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/plan_cache_mode","name":"plan_cache_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"5432","description":"Sets - the TCP port the server listens on.","defaultValue":"5432","dataType":"Integer","allowedValues":"1-65535","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-PORT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/port","name":"port","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the amount of time to wait after authentication on connection startup.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-POST-AUTH-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/post_auth_delay","name":"post_auth_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"DISABLE_ALL","description":"Controls - postgis GDAL enabled driver settings.","defaultValue":"DISABLE_ALL","dataType":"Enumeration","allowedValues":"DISABLE_ALL,ENABLE_ALL","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://postgis.net/docs/postgis_gdal_enabled_drivers.html"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/postgis.gdal_enabled_drivers","name":"postgis.gdal_enabled_drivers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the amount of time to wait before authentication on connection startup.","defaultValue":"0","dataType":"Integer","allowedValues":"0-60","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-PRE-AUTH-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pre_auth_delay","name":"pre_auth_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the connection string to be used to connect to the sending server.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-PRIMARY-CONNINFO"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/primary_conninfo","name":"primary_conninfo","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the name of the replication slot to use on the sending server.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-PRIMARY-SLOT-NAME"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/primary_slot_name","name":"primary_slot_name","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"When - generating SQL fragments, quotes all identifiers.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-compatible.html#GUC-QUOTE-ALL-IDENTIFIERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/quote_all_identifiers","name":"quote_all_identifiers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2","description":"Sets - the planner''s estimate of the cost of a nonsequentially fetched disk page.","defaultValue":"2","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-RANDOM-PAGE-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/random_page_cost","name":"random_page_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the shell command that will be executed once at the end of recovery.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-END-COMMAND"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_end_command","name":"recovery_end_command","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"fsync","description":"Sets - the method for synchronizing the data directory before crash recovery.","defaultValue":"fsync","dataType":"Enumeration","allowedValues":"fsync,syncfs","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-error-handling.html#GUC-RECOVERY-INIT-SYNC-METHOD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_init_sync_method","name":"recovery_init_sync_method","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the minimum delay for applying changes during recovery.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-RECOVERY-MIN-APPLY-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_min_apply_delay","name":"recovery_min_apply_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"try","description":"Prefetch - referenced blocks during recovery.","defaultValue":"try","dataType":"Enumeration","allowedValues":"off,on,try","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-PREFETCH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_prefetch","name":"recovery_prefetch","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Set - to \"immediate\" to end recovery as soon as a consistent state is reached.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-TARGET"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_target","name":"recovery_target","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"pause","description":"Sets - the action to perform upon reaching the recovery target.","defaultValue":"pause","dataType":"Enumeration","allowedValues":"pause,promote,shutdown","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-TARGET-ACTION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_target_action","name":"recovery_target_action","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Sets - whether to include or exclude transaction with recovery target.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-TARGET-INCLUSIVE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_target_inclusive","name":"recovery_target_inclusive","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the LSN of the write-ahead log location up to which recovery will proceed.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-TARGET-LSN"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_target_lsn","name":"recovery_target_lsn","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the named restore point up to which recovery will proceed.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-TARGET-NAME"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_target_name","name":"recovery_target_name","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the time stamp up to which recovery will proceed.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-TARGET-TIME"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_target_time","name":"recovery_target_time","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"latest","description":"Specifies - the timeline to recover into.","defaultValue":"latest","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-TARGET-TIMELINE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_target_timeline","name":"recovery_target_timeline","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the transaction ID up to which recovery will proceed.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-RECOVERY-TARGET-XID"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recovery_target_xid","name":"recovery_target_xid","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10","description":"Sets - the planner''s estimate of the average size of a recursive query''s working - table.","defaultValue":"10","dataType":"Numeric","allowedValues":"0.001-1e+06","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-RECURSIVE-WORKTABLE-FACTOR"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/recursive_worktable_factor","name":"recursive_worktable_factor","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Remove - temporary files after backend crash.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-REMOVE-TEMP-FILES-AFTER-CRASH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/remove_temp_files_after_crash","name":"remove_temp_files_after_crash","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Whether - client connections to the server are required to use some form of secure transport.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2282200"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/require_secure_transport","name":"require_secure_transport","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"5","description":"Sets - the number of connections slots reserved for replication users and super users.","defaultValue":"5","dataType":"Integer","allowedValues":"0-262143","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-RESERVED-CONNECTIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/reserved_connections","name":"reserved_connections","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Reinitialize - server after backend crash.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-error-handling.html#GUC-RESTART-AFTER-CRASH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/restart_after_crash","name":"restart_after_crash","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the shell command that will be called to retrieve an archived WAL file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/restore_command","name":"restore_command","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Prohibits - access to non-system relations of specified kinds.","defaultValue":"","dataType":"String","allowedValues":"^(|foreign-table|view)$","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-RESTRICT-NONSYSTEM-RELATION-KIND"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/restrict_nonsystem_relation_kind","name":"restrict_nonsystem_relation_kind","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - row security.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/row_security","name":"row_security","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"4096","description":"Sets - the iteration count for SCRAM secret generation.","defaultValue":"4096","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/current/runtime-config-connection.html#GUC-SCRAM-ITERATIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/scram_iterations","name":"scram_iterations","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"\"$user\", - public","description":"Sets the schema search order for names that are not - schema-qualified.","defaultValue":"\"$user\", public","dataType":"String","allowedValues":"[A-Za-z0-9.\"$,_ - -]+","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-SEARCH-PATH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/search_path","name":"search_path","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"131072","description":"Shows - the number of pages per disk file.","defaultValue":"131072","dataType":"Integer","allowedValues":"131072-131072","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-SEGMENT-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/segment_size","name":"segment_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Send - SIGABRT not SIGQUIT to child processes after backend crash.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-SEND-ABORT-FOR-CRASH"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/send_abort_for_crash","name":"send_abort_for_crash","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Send - SIGABRT not SIGKILL to stuck child processes.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-SEND-ABORT-FOR-KILL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/send_abort_for_kill","name":"send_abort_for_kill","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1","description":"Sets - the planner''s estimate of the cost of a sequentially fetched disk page.","defaultValue":"1","dataType":"Numeric","allowedValues":"0-1.79769e+308","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-query.html#GUC-SEQ-PAGE-COST"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/seq_page_cost","name":"seq_page_cost","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"UTF8","description":"Shows - the server (database) character set encoding.","defaultValue":"SQL_ASCII","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-SERVER-ENCODING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/server_encoding","name":"server_encoding","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"16.13","description":"Shows - the server version.","defaultValue":"16rc1","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-SERVER-VERSION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/server_version","name":"server_version","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"160013","description":"Shows - the server version as an integer.","defaultValue":"160000","dataType":"Integer","allowedValues":"160000-160000","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-SERVER-VERSION-NUM"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/server_version_num","name":"server_version_num","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Lists - shared libraries to preload into each backend.","defaultValue":"","dataType":"Set","allowedValues":",login_hook","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-SESSION-PRELOAD-LIBRARIES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/session_preload_libraries","name":"session_preload_libraries","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"origin","description":"Controls - firing of replication-related triggers and rules for the current session.","defaultValue":"origin","dataType":"Enumeration","allowedValues":"origin,replica,local","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-SESSION-REPLICATION-ROLE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/session_replication_role","name":"session_replication_role","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"524288","description":"Sets - the number of shared memory buffers used by the server. Unit is 8kb. Allowed - values are inside the range of 10% - 75% of available memory.","defaultValue":"524288","dataType":"Integer","allowedValues":"16-1073741823","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-SHARED-BUFFERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/shared_buffers","name":"shared_buffers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"4325","description":"Shows - the size of the server''s main shared memory area (rounded up to the nearest - MB).","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"megabytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-SHARED-MEMORY-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/shared_memory_size","name":"shared_memory_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2163","description":"Shows - the number of huge pages needed for the main shared memory area.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2147483647","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-SHARED-MEMORY-SIZE-IN-HUGE-PAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/shared_memory_size_in_huge_pages","name":"shared_memory_size_in_huge_pages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"mmap","description":"Selects - the shared memory implementation used for the main shared memory region.","defaultValue":"mmap","dataType":"Enumeration","allowedValues":"sysv,mmap","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-SHARED-MEMORY-TYPE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/shared_memory_type","name":"shared_memory_type","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"pg_cron,pg_stat_statements","description":"Sets - which shared libraries are preloaded at server start.","defaultValue":"pg_cron,pg_stat_statements","dataType":"Set","allowedValues":",age,anon,auto_explain,azure_storage,credcheck,pg_cron,pg_duckdb,pg_failover_slots,pg_hint_plan,pg_ivm,pg_partman_bgw,pg_prewarm,pg_squeeze,pg_stat_statements,pgaudit,pglogical,timescaledb,wal2json","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-SHARED-PRELOAD-LIBRARIES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/shared_preload_libraries","name":"shared_preload_libraries","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"The - maximum time the processed table may be locked exclusively. The source table - is locked exclusively during the final stage of processing. If the lock time - should exceed this value, the lock is released and the final stage is retried - a few more times.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/cybertec-postgresql/pg_squeeze/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/squeeze.max_xlock_time","name":"squeeze.max_xlock_time","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Names - of databases for which background workers start automatically. Comma-separated - list for of databases which squeeze worker starts as soon as the cluster startup - has completed.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/cybertec-postgresql/pg_squeeze/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/squeeze.worker_autostart","name":"squeeze.worker_autostart","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Role - that background workers use to connect to database. If background worker was - launched automatically on cluster startup, it uses this role to initiate database - connection(s).","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/cybertec-postgresql/pg_squeeze/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/squeeze.worker_role","name":"squeeze.worker_role","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1","description":"Maximum - number of squeeze worker processes launched for each database.","defaultValue":"1","dataType":"Integer","allowedValues":"1-8","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/cybertec-postgresql/pg_squeeze/blob/master/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/squeeze.workers_per_database","name":"squeeze.workers_per_database","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - SSL connections.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl","name":"ssl","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"/datadrive/certs/ca.pem","description":"Location - of the SSL certificate authority file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-CA-FILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_ca_file","name":"ssl_ca_file","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"/datadrive/certs/cert.pem","description":"Location - of the SSL server certificate file.","defaultValue":"server.crt","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-CERT-FILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_cert_file","name":"ssl_cert_file","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256","description":"Sets - the list of allowed SSL ciphers.","defaultValue":"HIGH:MEDIUM:+3DES:!aNULL","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-CIPHERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_ciphers","name":"ssl_ciphers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Location - of the SSL certificate revocation list directory.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-CRL-DIR"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_crl_dir","name":"ssl_crl_dir","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Location - of the SSL certificate revocation list file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-CRL-FILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_crl_file","name":"ssl_crl_file","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Location - of the SSL DH parameters file.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-DH-PARAMS-FILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_dh_params_file","name":"ssl_dh_params_file","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"prime256v1","description":"Sets - the curve to use for ECDH.","defaultValue":"prime256v1","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-ECDH-CURVE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_ecdh_curve","name":"ssl_ecdh_curve","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"/datadrive/certs/key.pem","description":"Location - of the SSL server private key file.","defaultValue":"server.key","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-KEY-FILE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_key_file","name":"ssl_key_file","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"OpenSSL","description":"Shows - the name of the SSL library.","defaultValue":"OpenSSL","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-SSL-LIBRARY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_library","name":"ssl_library","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the maximum SSL/TLS protocol version to use.","defaultValue":"","dataType":"Enumeration","allowedValues":",TLSv1.2,TLSv1.3","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-MAX-PROTOCOL-VERSION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_max_protocol_version","name":"ssl_max_protocol_version","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"TLSv1.2","description":"Sets - the minimum SSL/TLS protocol version to use.","defaultValue":"TLSv1.2","dataType":"Enumeration","allowedValues":"TLSv1.2,TLSv1.3","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-MIN-PROTOCOL-VERSION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_min_protocol_version","name":"ssl_min_protocol_version","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Command - to obtain passphrases for SSL.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-PASSPHRASE-COMMAND"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_passphrase_command","name":"ssl_passphrase_command","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Controls - whether ssl_passphrase_command is called during server reload.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-PASSPHRASE-COMMAND-SUPPORTS-RELOAD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_passphrase_command_supports_reload","name":"ssl_passphrase_command_supports_reload","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Give - priority to server ciphersuite order.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SSL-PREFER-SERVER-CIPHERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/ssl_prefer_server_ciphers","name":"ssl_prefer_server_ciphers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Causes - ''...'' strings to treat backslashes literally.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-compatible.html#GUC-STANDARD-CONFORMING-STRINGS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/standard_conforming_strings","name":"standard_conforming_strings","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Sets - the maximum allowed duration (in milliseconds) of any statement. 0 turns this - off.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-STATEMENT-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/statement_timeout","name":"statement_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"cache","description":"Sets - the consistency of accesses to statistics data.","defaultValue":"cache","dataType":"Enumeration","allowedValues":"none,cache,snapshot","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-STATS-FETCH-CONSISTENCY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/stats_fetch_consistency","name":"stats_fetch_consistency","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10","description":"Sets - the number of connection slots reserved for superusers.","defaultValue":"10","dataType":"Integer","allowedValues":"0-262143","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-SUPERUSER-RESERVED-CONNECTIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/superuser_reserved_connections","name":"superuser_reserved_connections","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - synchronized sequential scans.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-compatible.html#GUC-SYNCHRONIZE-SEQSCANS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/synchronize_seqscans","name":"synchronize_seqscans","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Sets - the current transaction''s synchronization level.","defaultValue":"on","dataType":"Enumeration","allowedValues":"local,remote_write,on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-SYNCHRONOUS-COMMIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/synchronous_commit","name":"synchronous_commit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Number - of synchronous standbys and list of names of potential synchronous ones.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-SYNCHRONOUS-STANDBY-NAMES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/synchronous_standby_names","name":"synchronous_standby_names","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"local0","description":"Sets - the syslog \"facility\" to be used when syslog enabled.","defaultValue":"local0","dataType":"Enumeration","allowedValues":"local0,local1,local2,local3,local4,local5,local6,local7","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-SYSLOG-FACILITY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/syslog_facility","name":"syslog_facility","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"postgres","description":"Sets - the program name used to identify PostgreSQL messages in syslog.","defaultValue":"postgres","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-SYSLOG-IDENT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/syslog_ident","name":"syslog_ident","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Add - sequence number to syslog messages to avoid duplicate suppression.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-SYSLOG-SEQUENCE-NUMBERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/syslog_sequence_numbers","name":"syslog_sequence_numbers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Split - messages sent to syslog by lines and to fit into 1024 bytes.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-SYSLOG-SPLIT-MESSAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/syslog_split_messages","name":"syslog_split_messages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"9","description":"Specifies - the number of TCP keepalives that can be lost before the server''s connection - to the client is considered dead.","defaultValue":"9","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-TCP-KEEPALIVES-COUNT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/tcp_keepalives_count","name":"tcp_keepalives_count","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"120","description":"Specifies - the number of seconds of inactivity after which TCP should send a keepalive - message to the client.","defaultValue":"120","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-TCP-KEEPALIVES-IDLE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/tcp_keepalives_idle","name":"tcp_keepalives_idle","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"30","description":"Specifies - the number of seconds after which a TCP keepalive message that is not acknowledged - by the client should be retransmitted.","defaultValue":"30","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-TCP-KEEPALIVES-INTERVAL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/tcp_keepalives_interval","name":"tcp_keepalives_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"Specifies - the amount of time that transmitted data may remain unacknowledged before - the TCP connection is forcibly closed.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-TCP-USER-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/tcp_user_timeout","name":"tcp_user_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1024","description":"Sets - the maximum number of temporary buffers used by each database session.","defaultValue":"1024","dataType":"Integer","allowedValues":"100-1073741823","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-TEMP-BUFFERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/temp_buffers","name":"temp_buffers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"-1","description":"Limits - the total size of all temporary files used by each process.","defaultValue":"-1","dataType":"Integer","allowedValues":"-1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-TEMP-FILE-LIMIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/temp_file_limit","name":"temp_file_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"temptblspace","description":"Sets - the default tablespace(s) to use for temporary tables and sort files if not - specified in the CREATE command.","defaultValue":"","dataType":"String","allowedValues":"[A-Za-z._]*","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-TEMP-TABLESPACES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/temp_tablespaces","name":"temp_tablespaces","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"60000","description":"Launcher - timeout value in milliseconds. Configure the time the launcher waits to look - for new TimescaleDB instances.","defaultValue":"60000","dataType":"Integer","allowedValues":"10-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"ms","documentationLink":"https://github.com/timescale/timescaledb/blob/main/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/timescaledb.bgw_launcher_poll_time","name":"timescaledb.bgw_launcher_poll_time","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Disable - the loading of the actual extension.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/timescale/timescaledb/blob/main/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/timescaledb.disable_load","name":"timescaledb.disable_load","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"16","description":"Maximum - background worker processes allocated to TimescaleDB. Max background worker - processes allocated to TimescaleDB - set to at least 1 + number of databases - in Postgres instance to use background workers.","defaultValue":"16","dataType":"Integer","allowedValues":"0-1000","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"ms","documentationLink":"https://github.com/timescale/timescaledb/blob/main/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/timescaledb.max_background_workers","name":"timescaledb.max_background_workers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Disable - the loading of the actual extension.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://github.com/timescale/timescaledb/blob/main/README.md"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/timescaledb_osm.disable_load","name":"timescaledb_osm.disable_load","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"UTC","description":"Sets - the time zone for displaying and interpreting time stamps.","defaultValue":"UTC","dataType":"String","allowedValues":"[A-Za-z0-9/+_-]+","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-TIMEZONE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/TimeZone","name":"TimeZone","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"Default","description":"Selects - a file of time zone abbreviations.","defaultValue":"","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-TIMEZONE-ABBREVIATIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/timezone_abbreviations","name":"timezone_abbreviations","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Generates - debugging output for LISTEN and NOTIFY.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-TRACE-NOTIFY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/trace_notify","name":"trace_notify","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"log","description":"Enables - logging of recovery-related debugging information.","defaultValue":"log","dataType":"Enumeration","allowedValues":"debug5,debug4,debug3,debug2,debug1,log,notice,warning,error","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-TRACE-RECOVERY-MESSAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/trace_recovery_messages","name":"trace_recovery_messages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Emit - information about resource usage in sorting.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-TRACE-SORT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/trace_sort","name":"trace_sort","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Collects - information about executing commands for each session.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-TRACK-ACTIVITIES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/track_activities","name":"track_activities","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1024","description":"Sets - the amount of memory reserved for pg_stat_activity.query, in bytes.","defaultValue":"1024","dataType":"Integer","allowedValues":"100-102400","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"bytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-TRACK-ACTIVITY-QUERY-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/track_activity_query_size","name":"track_activity_query_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Collects - transaction commit time.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-TRACK-COMMIT-TIMESTAMP"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/track_commit_timestamp","name":"track_commit_timestamp","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Enables - collection of statistics on database activity","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-TRACK-COUNTS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/track_counts","name":"track_counts","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"none","description":"Enables - tracking of function call counts and time used.","defaultValue":"none","dataType":"Enumeration","allowedValues":"none,pl,all","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-TRACK-FUNCTIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/track_functions","name":"track_functions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Enables - timing of database I/O calls.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-TRACK-IO-TIMING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/track_io_timing","name":"track_io_timing","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Collects - timing statistics for WAL I/O activity.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-statistics.html#GUC-TRACK-WAL-IO-TIMING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/track_wal_io_timing","name":"track_wal_io_timing","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Whether - to defer a read-only serializable transaction until it can be executed with - no possible serialization failures.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-TRANSACTION-DEFERRABLE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/transaction_deferrable","name":"transaction_deferrable","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"read - committed","description":"Sets the current transaction''s isolation level.","defaultValue":"read - committed","dataType":"Enumeration","allowedValues":"serializable,repeatable - read,read committed,read uncommitted","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-TRANSACTION-ISOLATION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/transaction_isolation","name":"transaction_isolation","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Sets - the current transaction''s read-only status.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-TRANSACTION-READ-ONLY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/transaction_read_only","name":"transaction_read_only","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"When - on, expressions of the form expr = NULL (or NULL = expr) are treated as expr - IS NULL, that is, they return true if expr evaluates to the null value, and - false otherwise.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-compatible.html#GUC-TRANSFORM-NULL-EQUALS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/transform_null_equals","name":"transform_null_equals","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"/tmp,/tmp/tuning_sockets","description":"Sets - the directories where Unix-domain sockets will be created.","defaultValue":"/tmp","dataType":"String","allowedValues":".*","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-UNIX-SOCKET-DIRECTORIES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/unix_socket_directories","name":"unix_socket_directories","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the owning group of the Unix-domain socket.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-UNIX-SOCKET-GROUP"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/unix_socket_group","name":"unix_socket_group","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0777","description":"Sets - the access permissions of the Unix-domain socket.","defaultValue":"511","dataType":"Integer","allowedValues":"0-511","source":"user-override","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-connection.html#GUC-UNIX-SOCKET-PERMISSIONS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/unix_socket_permissions","name":"unix_socket_permissions","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Updates - the process title to show the active SQL command.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-logging.html#GUC-UPDATE-PROCESS-TITLE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/update_process_title","name":"update_process_title","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"256","description":"Sets - the buffer pool size for VACUUM, ANALYZE, and autovacuum.","defaultValue":"256","dataType":"Integer","allowedValues":"0-16777216","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-VACUUM-BUFFER-USAGE-LIMIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_buffer_usage_limit","name":"vacuum_buffer_usage_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"0","description":"the - amount of time (in milliseconds) that the vacuum process will sleep when the - cost limit has been exceeded.","defaultValue":"0","dataType":"Integer","allowedValues":"0-100","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-VACUUM-COST-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_cost_delay","name":"vacuum_cost_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"200","description":"The - accumulated cost that will cause the vacuuming process to sleep.","defaultValue":"200","dataType":"Integer","allowedValues":"1-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-VACUUM-COST-LIMIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_cost_limit","name":"vacuum_cost_limit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"20","description":"The - estimated cost charged when vacuum modifies a block that was previously clean.","defaultValue":"20","dataType":"Integer","allowedValues":"0-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-VACUUM-COST-PAGE-DIRTY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_cost_page_dirty","name":"vacuum_cost_page_dirty","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1","description":"The - estimated cost for vacuuming a buffer found in the shared buffer cache.","defaultValue":"1","dataType":"Integer","allowedValues":"0-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-VACUUM-COST-PAGE-HIT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_cost_page_hit","name":"vacuum_cost_page_hit","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10","description":"The - estimated cost for vacuuming a buffer that must be read from disk.","defaultValue":"10","dataType":"Integer","allowedValues":"0-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-VACUUM-COST-PAGE-MISS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_cost_page_miss","name":"vacuum_cost_page_miss","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1600000000","description":"Age - at which VACUUM should trigger failsafe to avoid a wraparound outage.","defaultValue":"1600000000","dataType":"Integer","allowedValues":"0-2100000000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-VACUUM-FAILSAFE-AGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_failsafe_age","name":"vacuum_failsafe_age","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"50000000","description":"Specifies - the cutoff age (in transactions) that VACUUM should use to decide whether - to freeze row versions while scanning a table.","defaultValue":"50000000","dataType":"Integer","allowedValues":"0-1000000000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-VACUUM-FREEZE-MIN-AGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_freeze_min_age","name":"vacuum_freeze_min_age","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"150000000","description":"Age - at which VACUUM should scan whole table to freeze tuples.","defaultValue":"150000000","dataType":"Integer","allowedValues":"0-2000000000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-VACUUM-FREEZE-TABLE-AGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_freeze_table_age","name":"vacuum_freeze_table_age","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"1600000000","description":"Multixact - age at which VACUUM should trigger failsafe to avoid a wraparound outage.","defaultValue":"1600000000","dataType":"Integer","allowedValues":"0-2100000000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-VACUUM-FREEZE-TABLE-AGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_multixact_failsafe_age","name":"vacuum_multixact_failsafe_age","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"5000000","description":"Specifies - the cutoff age (in multixacts) that VACUUM should use to decide whether to - replace multixact IDs with a newer transaction ID or multixact ID while scanning - a table.","defaultValue":"5000000","dataType":"Integer","allowedValues":"0-1000000000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-VACUUM-MULTIXACT-FREEZE-MIN-AGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_multixact_freeze_min_age","name":"vacuum_multixact_freeze_min_age","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"150000000","description":"VACUUM - performs a full table scan to freeze rows if the table has reached the age - specified by this setting.","defaultValue":"150000000","dataType":"Integer","allowedValues":"0-2000000000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-VACUUM-MULTIXACT-FREEZE-TABLE-AGE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/vacuum_multixact_freeze_table_age","name":"vacuum_multixact_freeze_table_age","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"8192","description":"Shows - the block size in the write ahead log.","defaultValue":"8192","dataType":"Integer","allowedValues":"8192-8192","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-WAL-BLOCK-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_block_size","name":"wal_block_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2048","description":"Sets - the number of disk-page buffers in shared memory for WAL. Unit is 8kb.","defaultValue":"2048","dataType":"Integer","allowedValues":"-1-262143","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-BUFFERS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_buffers","name":"wal_buffers","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Compresses - full-page writes written in WAL file.","defaultValue":"on","dataType":"Enumeration","allowedValues":"pglz,lz4,on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-COMPRESSION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_compression","name":"wal_compression","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"","description":"Sets - the WAL resource managers for which WAL consistency checks are done.","defaultValue":"","dataType":"String","allowedValues":".*","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-WAL-CONSISTENCY-CHECKING"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_consistency_checking","name":"wal_consistency_checking","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"524288","description":"Buffer - size for reading ahead in the WAL during recovery.","defaultValue":"524288","dataType":"Integer","allowedValues":"65536-1073741823","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"bytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-DECODE-BUFFER-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_decode_buffer_size","name":"wal_decode_buffer_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Writes - zeroes to new WAL files before first use.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-INIT-ZERO"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_init_zero","name":"wal_init_zero","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"400","description":"Sets - the size of WAL files held for standby servers.","defaultValue":"0","dataType":"Integer","allowedValues":"0-2147483647","source":"user-override","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"megabytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-WAL-KEEP-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_keep_size","name":"wal_keep_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"replica","description":"It - determines how much information is written to the WAL.","defaultValue":"replica","dataType":"Enumeration","allowedValues":"replica,logical","source":"system-default","isDynamicConfig":false,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-LEVEL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_level","name":"wal_level","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Writes - full pages to WAL when first modified after a checkpoint, even for a non-critical - modification.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":false,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-LOG-HINTS"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_log_hints","name":"wal_log_hints","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Sets - whether a WAL receiver should create a temporary replication slot if no permanent - slot is configured.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-WAL-RECEIVER-CREATE-TEMP-SLOT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_receiver_create_temp_slot","name":"wal_receiver_create_temp_slot","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"10","description":"Sets - the maximum interval between WAL receiver status reports to the primary.","defaultValue":"10","dataType":"Integer","allowedValues":"0-2147483","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"seconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-WAL-RECEIVER-STATUS-INTERVAL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_receiver_status_interval","name":"wal_receiver_status_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"60000","description":"Sets - the maximum wait time to receive data from the sending server.","defaultValue":"60000","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-WAL-RECEIVER-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_receiver_timeout","name":"wal_receiver_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"on","description":"Recycles - WAL files by renaming them.","defaultValue":"on","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-RECYCLE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_recycle","name":"wal_recycle","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"5000","description":"Sets - the time to wait before retrying to retrieve WAL after a failed attempt.","defaultValue":"5000","dataType":"Integer","allowedValues":"1-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-WAL-RETRIEVE-RETRY-INTERVAL"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_retrieve_retry_interval","name":"wal_retrieve_retry_interval","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"16777216","description":"Shows - the size of write ahead log segments.","defaultValue":"16777216","dataType":"Integer","allowedValues":"1048576-1073741824","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"bytes","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-preset.html#GUC-WAL-SEGMENT-SIZE"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_segment_size","name":"wal_segment_size","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"60000","description":"Sets - the maximum time to wait for WAL replication.","defaultValue":"60000","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-replication.html#GUC-WAL-SENDER-TIMEOUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_sender_timeout","name":"wal_sender_timeout","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"2048","description":"Minimum - size of new file to fsync instead of writing WAL.","defaultValue":"2048","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-SKIP-THRESHOLD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_skip_threshold","name":"wal_skip_threshold","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"fdatasync","description":"Selects - the method used for forcing WAL updates to disk.","defaultValue":"fdatasync","dataType":"Enumeration","allowedValues":"fsync,fdatasync,open_sync,open_datasync","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-SYNC-METHOD"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_sync_method","name":"wal_sync_method","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"200","description":"Time - interval between WAL flushes performed by the WAL writer.","defaultValue":"200","dataType":"Integer","allowedValues":"1-10000","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"milliseconds","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-WRITER-DELAY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_writer_delay","name":"wal_writer_delay","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"128","description":"Amount - of WAL written out by WAL writer that triggers a flush.","defaultValue":"128","dataType":"Integer","allowedValues":"0-2147483647","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"8KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-wal.html#GUC-WAL-WRITER-FLUSH-AFTER"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/wal_writer_flush_after","name":"wal_writer_flush_after","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"4096","description":"Sets - the amount of memory to be used by internal sort operations and hash tables - before writing to temporary disk files.","defaultValue":"4096","dataType":"Integer","allowedValues":"4096-2097151","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"unit":"KB","documentationLink":"https://www.postgresql.org/docs/16/runtime-config-resource.html#GUC-WORK-MEM"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/work_mem","name":"work_mem","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"base64","description":"Sets - how binary values are to be encoded in XML.","defaultValue":"base64","dataType":"Enumeration","allowedValues":"base64,hex","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-XMLBINARY"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/xmlbinary","name":"xmlbinary","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"content","description":"Sets - whether XML data in implicit parsing and serialization operations is to be - considered as documents or content fragments.","defaultValue":"content","dataType":"Enumeration","allowedValues":"content,document","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-client.html#GUC-XMLOPTION"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/xmloption","name":"xmloption","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"},{"properties":{"value":"off","description":"Continues - processing past damaged page headers.","defaultValue":"off","dataType":"Boolean","allowedValues":"on,off","source":"system-default","isDynamicConfig":true,"isReadOnly":true,"isConfigPendingRestart":false,"documentationLink":"https://www.postgresql.org/docs/16/runtime-config-developer.html#GUC-ZERO-DAMAGED-PAGES"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/zero_damaged_pages","name":"zero_damaged_pages","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}]}' - headers: - cache-control: - - no-cache - content-length: - - '389497' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/063c859d-db62-498a-97ff-7abd1924d559 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: E5DE22C8D77F490AAE84EE21C6A556E7 Ref B: AMS231020614029 Ref C: 2026-03-31T21:43:31Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning show-settings - Connection: - - keep-alive - ParameterSetName: - - -g -s -n - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"report","description":"Configures index optimization - as disabled (''OFF'') or enabled to only emit recommendation. Requires Query - Store to be enabled by setting pg_qs.query_capture_mode to ''TOP'' or ''ALL''.","defaultValue":"off","dataType":"Enumeration","allowedValues":"off,report","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode","name":"index_tuning.mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '763' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/55818ce6-e6ad-4e80-8361-40063f6d5299 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: A57A98B8B99C4DC58119C7F948ACD860 Ref B: AMS231020615011 Ref C: 2026-03-31T21:43:32Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server parameter show - Connection: - - keep-alive - ParameterSetName: - - --name -g -s - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"all","description":"Sets query capture mode - for query store. None disables any capturing.","defaultValue":"none","dataType":"Enumeration","allowedValues":"top,all,none","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274607"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/pg_qs.query_capture_mode","name":"pg_qs.query_capture_mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '667' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/b5805e70-addd-401c-b0cf-577f20377b35 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 923186647CF74D178B2B11D87AF65594 Ref B: AMS231032609025 Ref C: 2026-03-31T21:43:33Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning set-settings - Connection: - - keep-alive - ParameterSetName: - - -g -s -n -v - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_reads_per_table?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"1000","description":"Minimum number of daily - average read operations affecting the table, so that their unused indexes - are considered for dropping.","defaultValue":"1000","dataType":"Integer","allowedValues":"0-9999999","source":"system-default","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_reads_per_table","name":"index_tuning.unused_reads_per_table","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '741' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/950794ff-4369-4abb-9040-191d1761ba90 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' - x-msedge-ref: - - 'Ref A: 7CC4BDF483C14E30892A05CFE12779CB Ref B: AMS231020512039 Ref C: 2026-03-31T21:43:33Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"value": "1006", "source": "user-override"}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning set-settings - Connection: - - keep-alive - Content-Length: - - '60' - Content-Type: - - application/json - ParameterSetName: - - -g -s -n -v - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_reads_per_table?api-version=2026-01-01-preview - response: - body: - string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-03-31T21:43:34.58Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/4f4a060d-8acb-49cb-986b-ac1fb3047b59?api-version=2026-01-01-preview&t=639105902148458739&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=h6Nx9xMPCQZhU1wwI6slQtu98BRIsQrELwxJqQXl4qwb7aW_S0oCum5l7QpYSIIQ1rZ62RqS-68XxYMk23hgkWiHaPN9Vrr8aNl_9Pwbhx6S9TmiM7FJ9EdquCYuXxpLS20lqiG313m5y5rIFVe5xPT06HIiuDJ9pXBO_un1v-zi5zRDK3jlyFEnAAYSvLl6FJjLaaeGnRVHCCcTWruAnhEeixpz00w2ayp3OBtGh7oNASGCqmPIyOqRlFu73-5mWXKjYxuUjbQ6HXGKA690v4N-6s3ZpoW4vBHGLAGbpwx21wm6NGZqMp28DkQJkuvclJbYPu862zI4McdjwwqcHQ&h=52O6m0Rxutja-1bZGDd6Av3hQErrs0fw-fy4BXlJA8w - cache-control: - - no-cache - content-length: - - '99' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:33 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/4f4a060d-8acb-49cb-986b-ac1fb3047b59?api-version=2026-01-01-preview&t=639105902148586831&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=Ug2gGLax92PS8d8ydeEe2NDyHHEaZowkKUITccMNufLByQzUSb9r5WbQWXygLT9itI4W3vVsKRN3tZD7BHj5j0FGXn0ydkeBUdX3pA31xvszqp-hDktda7u3xvfF6ghgRFP0xTXPGuID3aB6BClJ_AHG47x4wMfxbgAtJokvfQPmaDtU02Ls9xhXVJWZF-p4Yyi5_UCB41jByCeGJaHV54z2x0Tk5e5QFXOafJXDAkdwAXUsKDd0eGdd5XXuluzLR8bB0nBuUcGjSHD_p_M2JBtWoPGxT07ntzbD8IFd39E-RBjcBCN7wKNccR_DC3N-l4jomrtQJSA87pqFbLUUYQ&h=HaUNxSoVxf4WgDS58-WQFemLyuHQOEdJq5xCjK6dBGU - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/664c6551-85ac-410b-9118-26de4cd66841 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: 6CC6AA879AEB4D1DABFBB0D9C0EDABD0 Ref B: AMS231032608011 Ref C: 2026-03-31T21:43:34Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning set-settings - Connection: - - keep-alive - ParameterSetName: - - -g -s -n -v - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/4f4a060d-8acb-49cb-986b-ac1fb3047b59?api-version=2026-01-01-preview&t=639105902148458739&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=h6Nx9xMPCQZhU1wwI6slQtu98BRIsQrELwxJqQXl4qwb7aW_S0oCum5l7QpYSIIQ1rZ62RqS-68XxYMk23hgkWiHaPN9Vrr8aNl_9Pwbhx6S9TmiM7FJ9EdquCYuXxpLS20lqiG313m5y5rIFVe5xPT06HIiuDJ9pXBO_un1v-zi5zRDK3jlyFEnAAYSvLl6FJjLaaeGnRVHCCcTWruAnhEeixpz00w2ayp3OBtGh7oNASGCqmPIyOqRlFu73-5mWXKjYxuUjbQ6HXGKA690v4N-6s3ZpoW4vBHGLAGbpwx21wm6NGZqMp28DkQJkuvclJbYPu862zI4McdjwwqcHQ&h=52O6m0Rxutja-1bZGDd6Av3hQErrs0fw-fy4BXlJA8w - response: - body: - string: '{"name":"4f4a060d-8acb-49cb-986b-ac1fb3047b59","status":"InProgress","startTime":"2026-03-31T21:43:34.58Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/66914ca9-0bcc-4128-8400-149ffdfbf541 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: D89C05C53C3044C6B1160EE7F1DFE330 Ref B: AMS231022012023 Ref C: 2026-03-31T21:43:35Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning set-settings - Connection: - - keep-alive - ParameterSetName: - - -g -s -n -v - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/4f4a060d-8acb-49cb-986b-ac1fb3047b59?api-version=2026-01-01-preview&t=639105902148458739&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=h6Nx9xMPCQZhU1wwI6slQtu98BRIsQrELwxJqQXl4qwb7aW_S0oCum5l7QpYSIIQ1rZ62RqS-68XxYMk23hgkWiHaPN9Vrr8aNl_9Pwbhx6S9TmiM7FJ9EdquCYuXxpLS20lqiG313m5y5rIFVe5xPT06HIiuDJ9pXBO_un1v-zi5zRDK3jlyFEnAAYSvLl6FJjLaaeGnRVHCCcTWruAnhEeixpz00w2ayp3OBtGh7oNASGCqmPIyOqRlFu73-5mWXKjYxuUjbQ6HXGKA690v4N-6s3ZpoW4vBHGLAGbpwx21wm6NGZqMp28DkQJkuvclJbYPu862zI4McdjwwqcHQ&h=52O6m0Rxutja-1bZGDd6Av3hQErrs0fw-fy4BXlJA8w - response: - body: - string: '{"name":"4f4a060d-8acb-49cb-986b-ac1fb3047b59","status":"Succeeded","startTime":"2026-03-31T21:43:34.58Z"}' - headers: - cache-control: - - no-cache - content-length: - - '106' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/3ae068b0-def5-4a1c-ba2c-8eeda6fe87ae - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: D4F1495BFCEA4FCAABE72B2BA9ED9201 Ref B: AMS231022012007 Ref C: 2026-03-31T21:43:45Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning set-settings - Connection: - - keep-alive - ParameterSetName: - - -g -s -n -v - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_reads_per_table?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"1006","description":"Minimum number of daily - average read operations affecting the table, so that their unused indexes - are considered for dropping.","defaultValue":"1000","dataType":"Integer","allowedValues":"0-9999999","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.unused_reads_per_table","name":"index_tuning.unused_reads_per_table","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '740' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/5ec51334-3341-47f5-9716-8d2ed959e0be - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: E8936608D4E44A0DA3D25698FF22F2AF Ref B: AMS231032607023 Ref C: 2026-03-31T21:43:46Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning list-recommendations - Connection: - - keep-alive - ParameterSetName: - - -g -s - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/tuningOptions/index/recommendations?api-version=2026-01-01-preview - response: - body: - string: '{"value":[]}' - headers: - cache-control: - - no-cache - content-length: - - '12' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/79f1b319-bd34-4796-947e-31e2bbebd7eb - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 86DA32F17C8140E99309BA05990BDAB2 Ref B: AMS231032609031 Ref C: 2026-03-31T21:43:47Z' - status: - code: 200 - message: OK -- request: - body: '{"properties": {"value": "off", "source": "user-override"}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - Content-Length: - - '59' - Content-Type: - - application/json - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview - response: - body: - string: '{"operation":"UpdateOrcasServerParameterManagementOperation","startTime":"2026-03-31T21:43:47.957Z"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eaf4ca45-d7f9-44b9-8759-ac396b0911cc?api-version=2026-01-01-preview&t=639105902279902332&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=IWRnrrllXbyurnjWPAzWpOyg-__CahnZuYWIhhdbBklAt5ToroaemIoB8KCJ-S6Mgsc_FwA5mv4Irf6CGr8c7YN-2vIbnN_ki_Q-XR_zsog3zA3hlpSo4V769s8FkmrT6JF66w2y47rHZISEh41JKQGGNYN4fUsSj9bdqewgjlnEVd0g0FMrDuUPcz_vMPTQ8XjNji5p6NEs7_i1qnKUZYzOy6RkB_SvKuyGT6_ZfLmyWRu_vyXiE5G23ukbgNbXxplI4qwcQfaKTEEJGiIQ9Y8qL1stFTdF6ZoDhlpyuabk80PpWqQngHgzLp7ZXT_ZXWz7oWIa9Ct20yyofPV9Sg&h=Segi7biPFB21VCOGyxTm2YMgQFXwiHHx3Mr87MqZ5Rg - cache-control: - - no-cache - content-length: - - '100' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:47 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/operationResults/eaf4ca45-d7f9-44b9-8759-ac396b0911cc?api-version=2026-01-01-preview&t=639105902279902332&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=lSO2Q_1zAVZKi6A84NDs8vFQ86_ViP3pgYCY724AnDVwj5Z-7oGJD1Bxewmww3uCGyyh8IgL7YcxTIrYvLcYdpWTlEdrXNOaa8Gpnz5NpeoCvZp66DJ4hYX-sN7wQhLnilQQHro9ghM95RqW8bhal3AlnRNgRx8Nrllx_9FjFLiB2TdYxlu3Cn5lMi5k2t1Hdvy67iwZIVT9RqjMAN-O7x9s4VwApvynBJdM6CSF8Z5sZEm5HHZF_NCwm-N2mTLn2EKVT0cshK1Z_jnck4lPRl0FkFroXf1fPIS0C3fMOEs2opZyAbeDLMBvJx-V-3ZpTQ1VAfA0Y57Reeu5GrWDTQ&h=rG0KosE8qP8JCBRPldKUgQTmjD2DmYfet4dEIBF-fUs - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/21b20648-a6b3-4f45-9b72-676ccd3a1686 - x-ms-ratelimit-remaining-subscription-global-writes: - - '11999' - x-ms-ratelimit-remaining-subscription-writes: - - '799' - x-msedge-ref: - - 'Ref A: 38695D2A4D4549FCA828F25D8AD88E64 Ref B: AMS231032607037 Ref C: 2026-03-31T21:43:47Z' - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eaf4ca45-d7f9-44b9-8759-ac396b0911cc?api-version=2026-01-01-preview&t=639105902279902332&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=IWRnrrllXbyurnjWPAzWpOyg-__CahnZuYWIhhdbBklAt5ToroaemIoB8KCJ-S6Mgsc_FwA5mv4Irf6CGr8c7YN-2vIbnN_ki_Q-XR_zsog3zA3hlpSo4V769s8FkmrT6JF66w2y47rHZISEh41JKQGGNYN4fUsSj9bdqewgjlnEVd0g0FMrDuUPcz_vMPTQ8XjNji5p6NEs7_i1qnKUZYzOy6RkB_SvKuyGT6_ZfLmyWRu_vyXiE5G23ukbgNbXxplI4qwcQfaKTEEJGiIQ9Y8qL1stFTdF6ZoDhlpyuabk80PpWqQngHgzLp7ZXT_ZXWz7oWIa9Ct20yyofPV9Sg&h=Segi7biPFB21VCOGyxTm2YMgQFXwiHHx3Mr87MqZ5Rg - response: - body: - string: '{"name":"eaf4ca45-d7f9-44b9-8759-ac396b0911cc","status":"InProgress","startTime":"2026-03-31T21:43:47.957Z"}' - headers: - cache-control: - - no-cache - content-length: - - '108' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/dc7d2c8a-0062-4b56-b486-1e9a0d4bc5b6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 08E94081263344849DDD817DF05F37A5 Ref B: AMS231032607039 Ref C: 2026-03-31T21:43:48Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforPostgreSQL/locations/canadacentral/azureAsyncOperation/eaf4ca45-d7f9-44b9-8759-ac396b0911cc?api-version=2026-01-01-preview&t=639105902279902332&c=MIIHlDCCBnygAwIBAgIQKKjplgwMQSaep8IFYd6aujANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBFVVMyIENBIDAxMB4XDTI2MDIxODE5NTczOVoXDTI2MDgxNDAxNTczOVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDH3lHezd1jN-Q7GiBIuEvyrCXT3IkQ0gXovFQxd7raGgyusLyVDUAAVKJUURO5aA5pG8Ly7skeqTwiIk12VITfV-CL3Ti4jcifOmCc9lTpJMT84TgR_e3SSwbH6ugYXNA94tY5TSiHd8N6iUv277xSiUUUEqmz9oltk32GfYgwXZ7TXQ_CtHthYrYiFNBE8b56xsYnEHUAQ4ARd0vVIfF6uYBKRlxSWw7r3k-FeBf3w_oVo5dlksrMW1dW9ifsUhOl7k_zOibz8NMTOmtOKCUcDkf-QCQWMvdKZANqf2mehdkIJzq9jXXn0Fdxks35B53hrRd6uDOuTc-8J55WvShNAgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBRYlNrT1QX5I5zS3xvtBhE5TOeISzAfBgNVHSMEGDAWgBT87D7bqnwfgh4FuKEG-UPnArMKuTCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L2Vhc3R1czIvY3Jscy9jY21lZWFzdHVzMnBraS9jY21lZWFzdHVzMmljYTAxLzY0L2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vZWFzdHVzMi9jcmxzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvNjQvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21lZWFzdHVzMnBraS5lYXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZWVhc3R1czJpY2EwMS82NC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvZWFzdHVzMi9jYWNlcnRzL2NjbWVlYXN0dXMycGtpL2NjbWVlYXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9lYXN0dXMyL2NhY2VydHMvY2NtZWVhc3R1czJwa2kvY2NtZWVhc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWVlYXN0dXMycGtpLmVhc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21lZWFzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAF9HWFfM18c_8F6HsZljPAIucL-GTRHyZ99Aszi1Oj0linApfv0rtur0YoiCU5RkyeTwHYpMEblSzqxZRxdHVlP32L2Vh0F5w6qnTqAzmvb5qhhYzk5JxZlUHd-cJIyPMLdVJpMra8pYcokTtPTj_uQYIkvtHqUq-gyBLMwCfHbndSKFRTUrXbP6yYKeI4gzhksZkd1psp9ts6TBXxPG-f4TmDJy6k8Z2RGZYAaTfbPAYdjX96IdxJAHCaFFSV9D3W8rFQOdnx9IwHaWngdV3l4Yra0Th1RmzCLQmsnhgv3oLxVxFsVOarjtCtNnDLc8kyeh7tVeEm2omgAOfUFnFP&s=IWRnrrllXbyurnjWPAzWpOyg-__CahnZuYWIhhdbBklAt5ToroaemIoB8KCJ-S6Mgsc_FwA5mv4Irf6CGr8c7YN-2vIbnN_ki_Q-XR_zsog3zA3hlpSo4V769s8FkmrT6JF66w2y47rHZISEh41JKQGGNYN4fUsSj9bdqewgjlnEVd0g0FMrDuUPcz_vMPTQ8XjNji5p6NEs7_i1qnKUZYzOy6RkB_SvKuyGT6_ZfLmyWRu_vyXiE5G23ukbgNbXxplI4qwcQfaKTEEJGiIQ9Y8qL1stFTdF6ZoDhlpyuabk80PpWqQngHgzLp7ZXT_ZXWz7oWIa9Ct20yyofPV9Sg&h=Segi7biPFB21VCOGyxTm2YMgQFXwiHHx3Mr87MqZ5Rg - response: - body: - string: '{"name":"eaf4ca45-d7f9-44b9-8759-ac396b0911cc","status":"Succeeded","startTime":"2026-03-31T21:43:47.957Z"}' - headers: - cache-control: - - no-cache - content-length: - - '107' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/uksouth/866564a0-8995-4c56-a227-8b470d3126d6 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 2D4E558149C04289B2B1B93943A9D1DA Ref B: AMS231032607007 Ref C: 2026-03-31T21:43:58Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning update - Connection: - - keep-alive - ParameterSetName: - - -g -s --enabled - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"off","description":"Configures index optimization - as disabled (''OFF'') or enabled to only emit recommendation. Requires Query - Store to be enabled by setting pg_qs.query_capture_mode to ''TOP'' or ''ALL''.","defaultValue":"off","dataType":"Enumeration","allowedValues":"off,report","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode","name":"index_tuning.mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '760' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:43:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/8555cd30-05c9-485b-9ba0-a42e98853377 - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: AABE9433F7CC463E9ABA1896446C4885 Ref B: AMS231032609037 Ref C: 2026-03-31T21:43:59Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - postgres flexible-server index-tuning show-settings - Connection: - - keep-alive - ParameterSetName: - - -g -s -n - User-Agent: - - AZURECLI/2.85.0 azsdk-python-core/1.38.0 Python/3.13.12 (Windows-11-10.0.26200-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode?api-version=2026-01-01-preview - response: - body: - string: '{"properties":{"value":"off","description":"Configures index optimization - as disabled (''OFF'') or enabled to only emit recommendation. Requires Query - Store to be enabled by setting pg_qs.query_capture_mode to ''TOP'' or ''ALL''.","defaultValue":"off","dataType":"Enumeration","allowedValues":"off,report","source":"user-override","isDynamicConfig":true,"isReadOnly":false,"isConfigPendingRestart":false,"documentationLink":"https://go.microsoft.com/fwlink/?linkid=2274149"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.DBforPostgreSQL/flexibleServers/azuredbclitest-000002/configurations/index_tuning.mode","name":"index_tuning.mode","type":"Microsoft.DBforPostgreSQL/flexibleServers/configurations"}' - headers: - cache-control: - - no-cache - content-length: - - '760' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 31 Mar 2026 21:44:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=15659232-7461-4854-b909-7dff9a1e844c/canadacentral/b5bdc501-64e4-4c6a-b41b-6ecd0bd9039b - x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' - x-msedge-ref: - - 'Ref A: 948A4E366F3B4BDC8CC8AE91C6D59770 Ref B: AMS231020615017 Ref C: 2026-03-31T21:44:00Z' - status: - code: 200 - message: OK -version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/test_postgres_flexible_commands_autonomous_tuning.py b/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/test_postgres_flexible_commands_autonomous_tuning.py index 64f742fa50c..cdaa4e5c520 100644 --- a/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/test_postgres_flexible_commands_autonomous_tuning.py +++ b/src/azure-cli/azure/cli/command_modules/postgresql/tests/latest/test_postgres_flexible_commands_autonomous_tuning.py @@ -2,9 +2,6 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -import os -import time - from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.cli.testsdk import ( JMESPathCheck, @@ -13,62 +10,6 @@ ScenarioTest) from .constants import DEFAULT_LOCATION, SERVER_NAME_PREFIX, SERVER_NAME_MAX_LENGTH -class FlexibleServerIndexTuningOptionsResourceMgmtScenarioTest(ScenarioTest): - - @AllowLargeResponse() - @ResourceGroupPreparer(location=DEFAULT_LOCATION) - def test_postgres_flexible_server_index_tuning_options(self, resource_group): - self._test_index_tuning_options_mgmt(resource_group) - - def _test_index_tuning_options_mgmt(self, resource_group): - - # Create server with at least 4 vCores and running PostgreSQL major version of 13 or later - location = DEFAULT_LOCATION - server_name = self.create_random_name(SERVER_NAME_PREFIX, SERVER_NAME_MAX_LENGTH) - version = '16' - storage_size = 128 - sku_name = 'Standard_D4ds_v4' - tier = 'GeneralPurpose' - - self.cmd('postgres flexible-server create -g {} -n {} --sku-name {} --tier {} --storage-size {} --version {} -l {} --public-access none --yes'.format( - resource_group, server_name, sku_name, tier, storage_size, version, location)) - - # Enable index tuning for server - self.cmd('postgres flexible-server index-tuning update -g {} -s {} --enabled True'.format(resource_group, server_name), - checks=NoneCheck()) - - # Show that index tuning is enabled - self.cmd('postgres flexible-server index-tuning show -g {} -s {}'.format(resource_group, server_name), - checks=NoneCheck()) - - # List settings associated with index tuning for server - self.cmd('postgres flexible-server index-tuning list-settings -g {} -s {}'.format(resource_group, server_name), - checks=[JMESPathCheck('type(@)', 'array')]) - - # Show properties of index tuning setting for server - self.cmd('postgres flexible-server index-tuning show-settings -g {} -s {} -n {}'.format(resource_group, server_name, 'mode'), - checks=[JMESPathCheck('value', 'report')]) - self.cmd('postgres flexible-server parameter show --name {} -g {} -s {}'.format('pg_qs.query_capture_mode', resource_group, server_name), - checks=[JMESPathCheck('value', 'all')]) - - # Set new value of index tuning setting for server - value = '1006' - self.cmd('postgres flexible-server index-tuning set-settings -g {} -s {} -n {} -v {}'.format(resource_group, server_name, - 'unused_reads_per_table', value), - checks=[JMESPathCheck('value', value)]) - - # List recommendations associated with index tuning for server - self.cmd('postgres flexible-server index-tuning list-recommendations -g {} -s {}'.format(resource_group, server_name), - checks=[JMESPathCheck('type(@)', 'array')]) - - # Disable index tuning for server - self.cmd('postgres flexible-server index-tuning update -g {} -s {} --enabled False'.format(resource_group, server_name), - checks=NoneCheck()) - - # Show properties of index tuning setting for server - self.cmd('postgres flexible-server index-tuning show-settings -g {} -s {} -n {}'.format(resource_group, server_name, 'mode'), - checks=[JMESPathCheck('value', 'off')]) - class FlexibleServerAutonomousTuningOptionsResourceMgmtScenarioTest(ScenarioTest): @AllowLargeResponse() @@ -105,7 +46,7 @@ def _test_autonomous_tuning_options_mgmt(self, resource_group): self.cmd('postgres flexible-server autonomous-tuning show-settings -g {} -s {} -n {}'.format(resource_group, server_name, 'mode'), checks=[JMESPathCheck('value', 'report')]) self.cmd('postgres flexible-server parameter show --name {} -g {} -s {}'.format('pg_qs.query_capture_mode', resource_group, server_name), - checks=[JMESPathCheck('value', 'all')]) + checks=[JMESPathCheck('value', 'top')]) # Set new value of autonomous tuning setting for server value = '1006' @@ -127,4 +68,6 @@ def _test_autonomous_tuning_options_mgmt(self, resource_group): # Show properties of autonomous tuning setting for server self.cmd('postgres flexible-server autonomous-tuning show-settings -g {} -s {} -n {}'.format(resource_group, server_name, 'mode'), - checks=[JMESPathCheck('value', 'off')]) \ No newline at end of file + checks=[JMESPathCheck('value', 'off')]) + self.cmd('postgres flexible-server parameter show --name {} -g {} -s {}'.format('pg_qs.query_capture_mode', resource_group, server_name), + checks=[JMESPathCheck('value', 'top')]) \ No newline at end of file