Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Fix serviceOperation version for 2023-06-01-preview #25875

Merged
merged 5 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions specification/mysql/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,31 @@ suppressions:
reason: This will be fixed in new versions.
```

### Tag: package-flexibleserver-2023-06-01-preview-new
xiaoxuqi-ms marked this conversation as resolved.
Show resolved Hide resolved

These settings apply only when `--tag=package-flexibleserver-2023-06-01-preview-new` is specified on the command line.

``` yaml $(tag) == 'package-flexibleserver-2023-06-01-preview-new'
input-file:
- Microsoft.DBforMySQL/AAD/preview/2023-06-01-preview/AzureADAdministrator.json
- Microsoft.DBforMySQL/Backups/preview/2023-06-01-preview/Backups.json
- Microsoft.DBforMySQL/Backups/preview/2023-06-01-preview/BackupAndExport.json
- Microsoft.DBforMySQL/Configurations/preview/2023-06-01-preview/Configurations.json
- Microsoft.DBforMySQL/Databases/preview/2023-06-01-preview/Databases.json
- Microsoft.DBforMySQL/Firewall/preview/2023-06-01-preview/FirewallRules.json
- Microsoft.DBforMySQL/FlexibleServers/preview/2023-06-01-preview/FlexibleServers.json
- Microsoft.DBforMySQL/LogFiles/preview/2023-06-01-preview/LogFiles.json
- Microsoft.DBforMySQL/ServiceOperations/preview/2021-12-01-preview/ServiceOperations.json
- Microsoft.DBforMySQL/common-types/v1/common-types.json
suppressions:
- code: PostOperationAsyncResponseValidation
from: FlexibleServers.json
reason: This check is optional.
- code: PropertiesTypeObjectNoDefinition
from: common-types.json
reason: This will be fixed in new versions.
```

### Tag: package-flexibleserver-2023-06-30-privatelink

These settings apply only when `--tag=package-flexibleserver-2023-06-30-privatelink` is specified on the command line.
Expand Down
18 changes: 4 additions & 14 deletions specification/mysql/resource-manager/readme.python.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,16 @@ Generate all API versions currently shipped for this package
```yaml $(python)
clear-output-folder: true
batch:
- tag: package-flexibleserver-2023-06-01-preview
xiaoxuqi-ms marked this conversation as resolved.
Show resolved Hide resolved
- tag: package-flexibleserver-2023-06-01-preview-new
- tag: package-2020-01-01
```

### Tag: package-flexibleserver-2023-06-01-preview and python
### Tag: package-flexibleserver-2023-06-01-preview-new and python

These settings apply only when `--tag=package-flexibleserver-2023-06-01-preview --python` is specified on the command line.
These settings apply only when `--tag=package-flexibleserver-2023-06-01-preview-new --python` is specified on the command line.
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.

``` yaml $(tag) == 'package-flexibleserver-2023-06-01-preview' && $(python)
namespace: azure.mgmt.rdbms.mysql_flexibleservers
output-folder: $(python-sdks-folder)/rdbms/azure-mgmt-rdbms/azure/mgmt/rdbms/mysql_flexibleservers
```

### Tag: package-flexibleserver-2022-09-30-preview and python

These settings apply only when `--tag=package-flexibleserver-2022-09-30-preview --python` is specified on the command line.
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.

``` yaml $(tag) == 'package-flexibleserver-2022-09-30-preview' && $(python)
``` yaml $(tag) == 'package-flexibleserver-2023-06-01-preview-new' && $(python)
namespace: azure.mgmt.rdbms.mysql_flexibleservers
output-folder: $(python-sdks-folder)/rdbms/azure-mgmt-rdbms/azure/mgmt/rdbms/mysql_flexibleservers
```
Expand Down