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

Confluent added stable version #12362

Merged
merged 23 commits into from
Jan 14, 2021
Merged
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
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
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@
],
"summary": "Create Confluent Marketplace agreement in the subscription.",
"operationId": "MarketplaceAgreements_Create",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
Expand All @@ -89,6 +92,7 @@
{
"in": "body",
"name": "body",
"description": "Confluent Marketplace Agreement resource",
"schema": {
"$ref": "#/definitions/ConfluentAgreementResource"
}
Expand Down Expand Up @@ -516,13 +520,14 @@
"readOnly": true
},
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/ConfluentAgreementProperties",
"description": "Represents the properties of the resource."
}
}
},
"ConfluentAgreementResourceListResponse": {
"description": "Response of a agreements operation.",
"description": "Response of a list operation.",
"type": "object",
"properties": {
"value": {
Expand Down Expand Up @@ -571,6 +576,10 @@
"display": {
"description": "The object that represents the operation.",
"$ref": "#/definitions/OperationDisplay"
},
"isDataAction": {
"description": "Indicates whether the operation is a data action",
"type": "boolean"
Comment on lines +580 to +582
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this intended? I don't see this change in the private pr. It's a breaking change even if it's a preview version.
https://github.com/microsoft/api-guidelines/blob/vNext/azure/Guidelines.md#api-changes-that-require-a-version-change

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see the changes approved. Thanks.

}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"body": {
"value": [
{
"id": "id1",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Confluent/agreements/default",
"name": "planid1",
"type": "Microsoft.MarketplaceOrdering/offertypes",
"type": "Microsoft.Confluent/agreements",
"properties": {
"publisher": "pubid1",
"product": "offid1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"value": [
{
"name": "Microsoft.Confluent/organizations/Read",
"isDataAction": false,
"display": {
"provider": "Microsoft.Confluent",
"resource": "organizations",
Expand All @@ -17,6 +18,7 @@
},
{
"name": "Microsoft.Confluent/organizations/Write",
"isDataAction": false,
"display": {
"provider": "Microsoft.Confluent",
"resource": "organizations",
Expand All @@ -26,6 +28,7 @@
},
{
"name": "Microsoft.Confluent/organizations/Delete",
"isDataAction": false,
"display": {
"provider": "Microsoft.Confluent",
"resource": "organizations",
Expand Down
Loading