Skip to content

Commit

Permalink
Fixing spellcheck and updating readme files (#17071)
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnasriSomepalli authored Dec 16, 2021
1 parent 6ed2237 commit f2b41af
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@
]
},
{
"filename": "**/specification/confluent/resource-manager/Microsoft.Confluent/preview/*/confluent.json",
"filename": "**/specification/confluent/resource-manager/Microsoft.Confluent/*/*/confluent.json",
"words": [
"orgvalidate"
]
Expand Down
10 changes: 10 additions & 0 deletions specification/confluent/resource-manager/readme.go.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,22 @@ azure-arm: true
``` yaml $(go) && $(multiapi)
batch:
- tag: package-2021-12-01
- tag: package-preview-2021-09
- tag: package-2020-03-01
- tag: package-2020-03-01-preview
- tag: package-2021-03-01-preview
```
### Tag: package-2021-12-01 and go
These settings apply only when `--tag=package-2021-12-01 --go` is specified on the command line.
Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.

``` yaml $(tag) == 'package-2021-12-01' && $(go)
output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2021-12-01/$(namespace)
```

### Tag: package-preview-2021-09 and go

These settings apply only when `--tag=package-preview-2021-09 --go` is specified on the command line.
Expand Down
14 changes: 14 additions & 0 deletions specification/confluent/resource-manager/readme.java.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,25 @@ output-folder: $(azure-libraries-for-java-folder)/azure-mgmt-confluent
``` yaml $(java) && $(multiapi)
batch:
- tag: package-2021-12-01
- tag: package-2020-03-01
- tag: package-2020-03-01-preview
- tag: package-2021-03-01-preview
```
### Tag: package-2021-12-01 and java
These settings apply only when `--tag=package-2021-12-01 --java` is specified on the command line.
Please also specify `--azure-libraries-for-java=<path to the root directory of your azure-sdk-for-java clone>`.

``` yaml $(tag) == 'package-2021-12-01' && $(java) && $(multiapi)
java:
namespace: com.microsoft.azure.management.confluent.v2021_12_01
output-folder: $(azure-libraries-for-java-folder)/sdk/confluent/mgmt-v2021_12_01
regenerate-manager: true
generate-interface: true
```

### Tag: package-2020-03-01 and java

These settings apply only when `--tag=package-2020-03-01 --java` is specified on the command line.
Expand Down
8 changes: 4 additions & 4 deletions specification/confluent/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ These are the global settings for the Confluent API.
title: ConfluentManagementClient
openapi-type: arm
openapi-subtype: rpaas
tag: package-2021-12
tag: package-2021-12-01
```
### Tag: package-2021-12
### Tag: package-2021-12-01
These settings apply only when `--tag=package-2021-12` is specified on the command line.
These settings apply only when `--tag=package-2021-12-01` is specified on the command line.

```yaml $(tag) == 'package-2021-12'
```yaml $(tag) == 'package-2021-12-01'
input-file:
- Microsoft.Confluent/stable/2021-12-01/confluent.json
```
Expand Down
11 changes: 11 additions & 0 deletions specification/confluent/resource-manager/readme.ruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,21 @@ azure-arm: true
``` yaml $(ruby) && $(multiapi)
batch:
- tag: package-2021-12-01
- tag: package-2020-03-01
- tag: package-2020-03-01-preview
```
### Tag: package-2021-12-01 and ruby
These settings apply only when `--tag=package-2021-12-01 --ruby` is specified on the command line.
Please also specify `--ruby-sdks-folder=<path to the root directory of your azure-sdk-for-ruby clone>`.

```yaml $(tag) == 'package-2021-12-01' && $(ruby)
namespace: "Azure::Confluent::Mgmt::V2021_12_01"
output-folder: $(ruby-sdks-folder)/management/azure_mgmt_confluent/lib
```

### Tag: package-2020-03-01 and ruby

These settings apply only when `--tag=package-2020-03-01 --ruby` is specified on the command line.
Expand Down

0 comments on commit f2b41af

Please sign in to comment.