Skip to content
Closed
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
2 changes: 2 additions & 0 deletions sdk/eventhub/arm-eventhub/src/eventHubManagementClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class EventHubManagementClient extends EventHubManagementClientContext {
eventHubs: operations.EventHubs;
disasterRecoveryConfigs: operations.DisasterRecoveryConfigs;
consumerGroups: operations.ConsumerGroups;
schemaRegistry: operations.SchemaRegistry;

/**
* Initializes a new instance of the EventHubManagementClient class.
Expand All @@ -50,6 +51,7 @@ class EventHubManagementClient extends EventHubManagementClientContext {
this.eventHubs = new operations.EventHubs(this);
this.disasterRecoveryConfigs = new operations.DisasterRecoveryConfigs(this);
this.consumerGroups = new operations.ConsumerGroups(this);
this.schemaRegistry = new operations.SchemaRegistry(this);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class EventHubManagementClientContext extends msRestAzure.AzureServiceCli

super(credentials, options);

this.apiVersion = '2021-06-01-preview';
this.apiVersion = '2021-11-01';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
4 changes: 4 additions & 0 deletions sdk/eventhub/arm-eventhub/src/models/clustersMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ export {
EHNamespaceIdContainer,
EHNamespaceIdListResult,
Encryption,
ErrorAdditionalInfo,
ErrorDetail,
ErrorResponse,
Eventhub,
Identity,
Expand All @@ -32,7 +34,9 @@ export {
NWRuleSetVirtualNetworkRules,
PrivateEndpoint,
PrivateEndpointConnection,
ProxyResource,
Resource,
SchemaGroup,
Sku,
Subnet,
SystemData,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@

export {
ClusterQuotaConfigurationProperties,
ErrorAdditionalInfo,
ErrorDetail,
ErrorResponse
} from "../models/mappers";
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ export {
Destination,
EHNamespace,
Encryption,
ErrorAdditionalInfo,
ErrorDetail,
ErrorResponse,
Eventhub,
Identity,
Expand All @@ -28,7 +30,9 @@ export {
NWRuleSetVirtualNetworkRules,
PrivateEndpoint,
PrivateEndpointConnection,
ProxyResource,
Resource,
SchemaGroup,
Sku,
Subnet,
SystemData,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ export {
Destination,
EHNamespace,
Encryption,
ErrorAdditionalInfo,
ErrorDetail,
ErrorResponse,
Eventhub,
Identity,
Expand All @@ -32,7 +34,9 @@ export {
NWRuleSetVirtualNetworkRules,
PrivateEndpoint,
PrivateEndpointConnection,
ProxyResource,
Resource,
SchemaGroup,
Sku,
Subnet,
SystemData,
Expand Down
4 changes: 4 additions & 0 deletions sdk/eventhub/arm-eventhub/src/models/eventHubsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ export {
Destination,
EHNamespace,
Encryption,
ErrorAdditionalInfo,
ErrorDetail,
ErrorResponse,
Eventhub,
EventHubListResult,
Expand All @@ -30,8 +32,10 @@ export {
NWRuleSetVirtualNetworkRules,
PrivateEndpoint,
PrivateEndpointConnection,
ProxyResource,
RegenerateAccessKeyParameters,
Resource,
SchemaGroup,
Sku,
Subnet,
SystemData,
Expand Down
Loading