Skip to content

Commit

Permalink
CodeGen from PR 12767 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
EventGrid: Fix multiple linter and swagger correctness/completeness issues for latest preview and stable API versions (Azure#12767)

* fix example

* Fix multiple linter and swagger correctness/completeness issues for latest preview and stable api version

* Fix format

* fix examples

* fix validation model errors

* fix validation model errors

* fix example

* remove default

* revert 2020-06 changes

* fix eventgrid swagger file with multiple linter and correctness fixes

* fix 2020-06-01 stable swagger

* fix 2020-06-01 stable swagger -- part 2

* fix format

* fix prettier check

* additional format fix

* fix examples and wrong response code

* fix validator

* fix validator

Co-authored-by: Ashraf Hamad <ahamad@ntdev.microsoft.com>
  • Loading branch information
SDKAuto and Ashraf Hamad committed Feb 20, 2021
1 parent 8a86351 commit 8f9112d
Show file tree
Hide file tree
Showing 41 changed files with 10,956 additions and 1,451 deletions.
2 changes: 1 addition & 1 deletion sdk/eventgrid/arm-eventgrid/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020 Microsoft
Copyright (c) 2021 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
9 changes: 4 additions & 5 deletions sdk/eventgrid/arm-eventgrid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install @azure/arm-eventgrid

### How to use

#### nodejs - Authentication, client creation and get domains as an example written in TypeScript.
#### nodejs - client creation and get domains as an example written in TypeScript.

##### Install @azure/ms-rest-nodeauth

Expand All @@ -26,11 +26,10 @@ npm install @azure/ms-rest-nodeauth@"^3.0.0"

##### Sample code

While the below sample uses the interactive login, other authentication options can be found in the [README.md file of @azure/ms-rest-nodeauth](https://www.npmjs.com/package/@azure/ms-rest-nodeauth) package
```typescript
import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { EventGridManagementClient, EventGridManagementModels, EventGridManagementMappers } from "@azure/arm-eventgrid";
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
const { EventGridManagementClient } = require("@azure/arm-eventgrid");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

msRestNodeAuth.interactiveLogin().then((creds) => {
Expand Down
4 changes: 2 additions & 2 deletions sdk/eventgrid/arm-eventgrid/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const config = {
"@azure/ms-rest-azure-js": "msRestAzure"
},
banner: `/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down
25 changes: 20 additions & 5 deletions sdk/eventgrid/arm-eventgrid/src/eventGridManagementClient.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
Expand All @@ -19,11 +18,19 @@ class EventGridManagementClient extends EventGridManagementClientContext {
// Operation groups
domains: operations.Domains;
domainTopics: operations.DomainTopics;
eventChannels: operations.EventChannels;
eventSubscriptions: operations.EventSubscriptions;
systemTopicEventSubscriptions: operations.SystemTopicEventSubscriptions;
partnerTopicEventSubscriptions: operations.PartnerTopicEventSubscriptions;
operations: operations.Operations;
topics: operations.Topics;
partnerNamespaces: operations.PartnerNamespaces;
partnerRegistrations: operations.PartnerRegistrations;
partnerTopics: operations.PartnerTopics;
privateEndpointConnections: operations.PrivateEndpointConnections;
privateLinkResources: operations.PrivateLinkResources;
systemTopics: operations.SystemTopics;
topics: operations.Topics;
extensionTopics: operations.ExtensionTopics;
topicTypes: operations.TopicTypes;

/**
Expand All @@ -37,11 +44,19 @@ class EventGridManagementClient extends EventGridManagementClientContext {
super(credentials, subscriptionId, options);
this.domains = new operations.Domains(this);
this.domainTopics = new operations.DomainTopics(this);
this.eventChannels = new operations.EventChannels(this);
this.eventSubscriptions = new operations.EventSubscriptions(this);
this.systemTopicEventSubscriptions = new operations.SystemTopicEventSubscriptions(this);
this.partnerTopicEventSubscriptions = new operations.PartnerTopicEventSubscriptions(this);
this.operations = new operations.Operations(this);
this.topics = new operations.Topics(this);
this.partnerNamespaces = new operations.PartnerNamespaces(this);
this.partnerRegistrations = new operations.PartnerRegistrations(this);
this.partnerTopics = new operations.PartnerTopics(this);
this.privateEndpointConnections = new operations.PrivateEndpointConnections(this);
this.privateLinkResources = new operations.PrivateLinkResources(this);
this.systemTopics = new operations.SystemTopics(this);
this.topics = new operations.Topics(this);
this.extensionTopics = new operations.ExtensionTopics(this);
this.topicTypes = new operations.TopicTypes(this);
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
Expand Down Expand Up @@ -45,7 +44,7 @@ export class EventGridManagementClientContext extends msRestAzure.AzureServiceCl

super(credentials, options);

this.apiVersion = '2020-06-01';
this.apiVersion = '2020-10-15-preview';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
32 changes: 30 additions & 2 deletions sdk/eventgrid/arm-eventgrid/src/models/domainTopicsMappers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand All @@ -15,41 +15,69 @@ export {
CloudError,
ConnectionState,
DeadLetterDestination,
DeadLetterWithResourceIdentity,
DeliveryAttributeMapping,
DeliveryWithResourceIdentity,
Domain,
DomainTopic,
DomainTopicsListResult,
DynamicDeliveryAttributeMapping,
EventChannel,
EventChannelDestination,
EventChannelFilter,
EventChannelSource,
EventHubEventSubscriptionDestination,
EventSubscription,
EventSubscriptionDestination,
EventSubscriptionFilter,
EventSubscriptionIdentity,
EventType,
ExtendedLocation,
ExtensionTopic,
HybridConnectionEventSubscriptionDestination,
IdentityInfo,
InboundIpRule,
InputSchemaMapping,
IsNotNullAdvancedFilter,
IsNullOrUndefinedAdvancedFilter,
JsonField,
JsonFieldWithDefault,
JsonInputSchemaMapping,
NumberGreaterThanAdvancedFilter,
NumberGreaterThanOrEqualsAdvancedFilter,
NumberInAdvancedFilter,
NumberInRangeAdvancedFilter,
NumberLessThanAdvancedFilter,
NumberLessThanOrEqualsAdvancedFilter,
NumberNotInAdvancedFilter,
NumberNotInRangeAdvancedFilter,
PartnerNamespace,
PartnerRegistration,
PartnerTopic,
PartnerTopicType,
PrivateEndpoint,
PrivateEndpointConnection,
Resource,
ResourceSku,
RetryPolicy,
ServiceBusQueueEventSubscriptionDestination,
ServiceBusTopicEventSubscriptionDestination,
StaticDeliveryAttributeMapping,
StorageBlobDeadLetterDestination,
StorageQueueEventSubscriptionDestination,
StringBeginsWithAdvancedFilter,
StringContainsAdvancedFilter,
StringEndsWithAdvancedFilter,
StringInAdvancedFilter,
StringNotBeginsWithAdvancedFilter,
StringNotContainsAdvancedFilter,
StringNotEndsWithAdvancedFilter,
StringNotInAdvancedFilter,
SystemData,
SystemTopic,
Topic,
TopicTypeInfo,
TrackedResource,
UserIdentityProperties,
WebHookEventSubscriptionDestination
} from "../models/mappers";
32 changes: 30 additions & 2 deletions sdk/eventgrid/arm-eventgrid/src/models/domainsMappers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand All @@ -15,44 +15,72 @@ export {
CloudError,
ConnectionState,
DeadLetterDestination,
DeadLetterWithResourceIdentity,
DeliveryAttributeMapping,
DeliveryWithResourceIdentity,
Domain,
DomainRegenerateKeyRequest,
DomainSharedAccessKeys,
DomainsListResult,
DomainTopic,
DomainUpdateParameters,
DynamicDeliveryAttributeMapping,
EventChannel,
EventChannelDestination,
EventChannelFilter,
EventChannelSource,
EventHubEventSubscriptionDestination,
EventSubscription,
EventSubscriptionDestination,
EventSubscriptionFilter,
EventSubscriptionIdentity,
EventType,
ExtendedLocation,
ExtensionTopic,
HybridConnectionEventSubscriptionDestination,
IdentityInfo,
InboundIpRule,
InputSchemaMapping,
IsNotNullAdvancedFilter,
IsNullOrUndefinedAdvancedFilter,
JsonField,
JsonFieldWithDefault,
JsonInputSchemaMapping,
NumberGreaterThanAdvancedFilter,
NumberGreaterThanOrEqualsAdvancedFilter,
NumberInAdvancedFilter,
NumberInRangeAdvancedFilter,
NumberLessThanAdvancedFilter,
NumberLessThanOrEqualsAdvancedFilter,
NumberNotInAdvancedFilter,
NumberNotInRangeAdvancedFilter,
PartnerNamespace,
PartnerRegistration,
PartnerTopic,
PartnerTopicType,
PrivateEndpoint,
PrivateEndpointConnection,
Resource,
ResourceSku,
RetryPolicy,
ServiceBusQueueEventSubscriptionDestination,
ServiceBusTopicEventSubscriptionDestination,
StaticDeliveryAttributeMapping,
StorageBlobDeadLetterDestination,
StorageQueueEventSubscriptionDestination,
StringBeginsWithAdvancedFilter,
StringContainsAdvancedFilter,
StringEndsWithAdvancedFilter,
StringInAdvancedFilter,
StringNotBeginsWithAdvancedFilter,
StringNotContainsAdvancedFilter,
StringNotEndsWithAdvancedFilter,
StringNotInAdvancedFilter,
SystemData,
SystemTopic,
Topic,
TopicTypeInfo,
TrackedResource,
UserIdentityProperties,
WebHookEventSubscriptionDestination
} from "../models/mappers";
83 changes: 83 additions & 0 deletions sdk/eventgrid/arm-eventgrid/src/models/eventChannelsMappers.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
discriminators,
AdvancedFilter,
AzureFunctionEventSubscriptionDestination,
BaseResource,
BoolEqualsAdvancedFilter,
CloudError,
ConnectionState,
DeadLetterDestination,
DeadLetterWithResourceIdentity,
DeliveryAttributeMapping,
DeliveryWithResourceIdentity,
Domain,
DomainTopic,
DynamicDeliveryAttributeMapping,
EventChannel,
EventChannelDestination,
EventChannelFilter,
EventChannelsListResult,
EventChannelSource,
EventHubEventSubscriptionDestination,
EventSubscription,
EventSubscriptionDestination,
EventSubscriptionFilter,
EventSubscriptionIdentity,
EventType,
ExtendedLocation,
ExtensionTopic,
HybridConnectionEventSubscriptionDestination,
IdentityInfo,
InboundIpRule,
InputSchemaMapping,
IsNotNullAdvancedFilter,
IsNullOrUndefinedAdvancedFilter,
JsonField,
JsonFieldWithDefault,
JsonInputSchemaMapping,
NumberGreaterThanAdvancedFilter,
NumberGreaterThanOrEqualsAdvancedFilter,
NumberInAdvancedFilter,
NumberInRangeAdvancedFilter,
NumberLessThanAdvancedFilter,
NumberLessThanOrEqualsAdvancedFilter,
NumberNotInAdvancedFilter,
NumberNotInRangeAdvancedFilter,
PartnerNamespace,
PartnerRegistration,
PartnerTopic,
PartnerTopicType,
PrivateEndpoint,
PrivateEndpointConnection,
Resource,
ResourceSku,
RetryPolicy,
ServiceBusQueueEventSubscriptionDestination,
ServiceBusTopicEventSubscriptionDestination,
StaticDeliveryAttributeMapping,
StorageBlobDeadLetterDestination,
StorageQueueEventSubscriptionDestination,
StringBeginsWithAdvancedFilter,
StringContainsAdvancedFilter,
StringEndsWithAdvancedFilter,
StringInAdvancedFilter,
StringNotBeginsWithAdvancedFilter,
StringNotContainsAdvancedFilter,
StringNotEndsWithAdvancedFilter,
StringNotInAdvancedFilter,
SystemData,
SystemTopic,
Topic,
TopicTypeInfo,
TrackedResource,
UserIdentityProperties,
WebHookEventSubscriptionDestination
} from "../models/mappers";
Loading

0 comments on commit 8f9112d

Please sign in to comment.