diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/pom.xml b/sdk/resourcemanager/azure-resourcemanager-eventhubs/pom.xml
index 2985e52050ff..96415575059c 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/pom.xml
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/pom.xml
@@ -46,7 +46,6 @@
--add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
- -
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/EventHubsManager.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/EventHubsManager.java
index b9ec14ae120c..039eaabf277f 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/EventHubsManager.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/EventHubsManager.java
@@ -112,6 +112,8 @@ private EventHubsManager(HttpPipeline httpPipeline, AzureProfile profile) {
}
/**
+ * Gets entry point to manage EventHub namespaces.
+ *
* @return entry point to manage EventHub namespaces
*/
public EventHubNamespaces namespaces() {
@@ -122,6 +124,8 @@ public EventHubNamespaces namespaces() {
}
/**
+ * Gets entry point to manage event hubs.
+ *
* @return entry point to manage event hubs
*/
public EventHubs eventHubs() {
@@ -132,6 +136,8 @@ public EventHubs eventHubs() {
}
/**
+ * Gets entry point to manage event hub consumer groups.
+ *
* @return entry point to manage event hub consumer groups
*/
public EventHubConsumerGroups consumerGroups() {
@@ -142,6 +148,8 @@ public EventHubConsumerGroups consumerGroups() {
}
/**
+ * Gets entry point to manage disaster recovery pairing of event hub namespaces.
+ *
* @return entry point to manage disaster recovery pairing of event hub namespaces.
*/
public EventHubDisasterRecoveryPairings eventHubDisasterRecoveryPairings() {
@@ -152,6 +160,8 @@ public EventHubDisasterRecoveryPairings eventHubDisasterRecoveryPairings() {
}
/**
+ * Gets entry point to manage event hub authorization rules.
+ *
* @return entry point to manage event hub authorization rules.
*/
public EventHubAuthorizationRules eventHubAuthorizationRules() {
@@ -162,6 +172,8 @@ public EventHubAuthorizationRules eventHubAuthorizationRules() {
}
/**
+ * Gets entry point to manage event hub namespace authorization rules.
+ *
* @return entry point to manage event hub namespace authorization rules.
*/
public EventHubNamespaceAuthorizationRules namespaceAuthorizationRules() {
@@ -172,6 +184,8 @@ public EventHubNamespaceAuthorizationRules namespaceAuthorizationRules() {
}
/**
+ * Gets entry point to manage disaster recovery pairing authorization rules.
+ *
* @return entry point to manage disaster recovery pairing authorization rules.
*/
public DisasterRecoveryPairingAuthorizationRules disasterRecoveryPairingAuthorizationRules() {
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/AuthorizationRule.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/AuthorizationRule.java
index 6d62beecb229..39154a7899e9 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/AuthorizationRule.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/AuthorizationRule.java
@@ -21,17 +21,23 @@
public interface AuthorizationRule>
extends NestedResource, HasInnerModel, HasManager, Refreshable {
/**
+ * Gets rights associated with the authorization rule.
+ *
* @return rights associated with the authorization rule
*/
List rights();
/**
+ * Gets a representation of the deferred computation.
+ *
* @return a representation of the deferred computation of this call,
* returning access keys (primary, secondary) and the connection strings
*/
Mono getKeysAsync();
/**
+ * Gets the access keys (primary, secondary) and the connection strings.
+ *
* @return the access keys (primary, secondary) and the connection strings
*/
EventHubAuthorizationKey getKeys();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/DisasterRecoveryPairingAuthorizationKey.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/DisasterRecoveryPairingAuthorizationKey.java
index 5f49523501e6..db9d62d0a1d9 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/DisasterRecoveryPairingAuthorizationKey.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/DisasterRecoveryPairingAuthorizationKey.java
@@ -12,31 +12,43 @@
@Fluent
public interface DisasterRecoveryPairingAuthorizationKey extends HasInnerModel {
/**
+ * Gets primary access key.
+ *
* @return primary access key
*/
String primaryKey();
/**
+ * Gets secondary access key.
+ *
* @return secondary access key
*/
String secondaryKey();
/**
+ * Gets primary connection string.
+ *
* @return primary connection string
*/
String primaryConnectionString();
/**
+ * Gets secondary connection string.
+ *
* @return secondary connection string
*/
String secondaryConnectionString();
/**
+ * Gets alias primary connection string.
+ *
* @return alias primary connection string
*/
String aliasPrimaryConnectionString();
/**
+ * Gets alias secondary connection string.
+ *
* @return alias secondary connection string
*/
String aliasSecondaryConnectionString();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/DisasterRecoveryPairingAuthorizationRule.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/DisasterRecoveryPairingAuthorizationRule.java
index 73519c74dd6a..3d3e1f36b155 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/DisasterRecoveryPairingAuthorizationRule.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/DisasterRecoveryPairingAuthorizationRule.java
@@ -19,16 +19,22 @@
public interface DisasterRecoveryPairingAuthorizationRule
extends HasName, HasInnerModel, HasManager {
/**
+ * Gets rights associated with the rule.
+ *
* @return rights associated with the rule
*/
List rights();
/**
+ * Gets an observable that emits a single entity containing access keys (primary and secondary).
+ *
* @return an observable that emits a single entity containing access keys (primary and secondary)
*/
Mono getKeysAsync();
/**
+ * Gets entity containing access keys (primary and secondary).
+ *
* @return entity containing access keys (primary and secondary)
*/
DisasterRecoveryPairingAuthorizationKey getKeys();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHub.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHub.java
index f9af6277951b..0ec8d627ab24 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHub.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHub.java
@@ -24,71 +24,99 @@
public interface EventHub extends NestedResource, HasManager, Refreshable,
Updatable, HasInnerModel {
/**
+ * Gets the resource group of the parent namespace.
+ *
* @return the resource group of the parent namespace
*/
String namespaceResourceGroupName();
/**
+ * Gets name of the parent namespace.
+ *
* @return name of the parent namespace
*/
String namespaceName();
/**
+ * Checks whether the data capture enabled for the event hub events.
+ *
* @return true if the data capture enabled for the event hub events, false otherwise
*/
boolean isDataCaptureEnabled();
/**
+ * Gets configured window in seconds to be used for event capturing when capturing is enabled.
+ *
* @return configured window in seconds to be used for event capturing when capturing is enabled
*/
int dataCaptureWindowSizeInSeconds();
/**
+ * Gets configured window in MB to be used for event capturing when capturing is enabled.
+ *
* @return configured window in MB to be used for event capturing when capturing is enabled
*/
int dataCaptureWindowSizeInMB();
/**
+ * Checks whether to skip empty archives when capturing is enabled.
+ *
* @return whether to skip empty archives when capturing is enabled
*/
boolean dataCaptureSkipEmptyArchives();
/**
+ * Gets the format file name that stores captured data when capturing is enabled.
+ *
* @return the format file name that stores captured data when capturing is enabled
*/
String dataCaptureFileNameFormat();
/**
+ * Gets description of the destination where captured data will be stored.
+ *
* @return description of the destination where captured data will be stored
*/
Destination captureDestination();
/**
+ * Gets the partition identifiers.
+ *
* @return the partition identifiers
*/
Set partitionIds();
/**
+ * Gets retention period of events in days.
+ *
* @return retention period of events in days
*/
int messageRetentionPeriodInDays();
/**
+ * Gets consumer group in the event hub.
+ *
* @return consumer group in the event hub
*/
PagedFlux listConsumerGroupsAsync();
/**
+ * Gets authorization rules enabled for the event hub.
+ *
* @return authorization rules enabled for the event hub
*/
PagedFlux listAuthorizationRulesAsync();
/**
+ * Gets consumer group in the event hub.
+ *
* @return consumer group in the event hub
*/
PagedIterable listConsumerGroups();
/**
+ * Gets authorization rules enabled for the event hub.
+ *
* @return authorization rules enabled for the event hub
*/
PagedIterable listAuthorizationRules();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubAuthorizationKey.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubAuthorizationKey.java
index 89eb1dc4eba9..4ecc9e5ad311 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubAuthorizationKey.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubAuthorizationKey.java
@@ -12,21 +12,29 @@
@Fluent
public interface EventHubAuthorizationKey extends HasInnerModel {
/**
+ * Gets primary access key.
+ *
* @return primary access key
*/
String primaryKey();
/**
+ * Gets secondary access key.
+ *
* @return secondary access key
*/
String secondaryKey();
/**
+ * Gets primary connection string.
+ *
* @return primary connection string
*/
String primaryConnectionString();
/**
+ * Gets secondary connection string.
+ *
* @return secondary connection string
*/
String secondaryConnectionString();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubAuthorizationRule.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubAuthorizationRule.java
index 74035f7cb673..5fd6f32ddc83 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubAuthorizationRule.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubAuthorizationRule.java
@@ -12,16 +12,22 @@
@Fluent
public interface EventHubAuthorizationRule extends AuthorizationRule {
/**
+ * Gets the resource group of the namespace where parent event hub resides.
+ *
* @return the resource group of the namespace where parent event hub resides
*/
String namespaceResourceGroupName();
/**
+ * Gets the namespace name of parent event hub.
+ *
* @return the namespace name of parent event hub
*/
String namespaceName();
/**
+ * Gets the name of the parent event hub.
+ *
* @return the name of the parent event hub
*/
String eventHubName();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubConsumerGroup.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubConsumerGroup.java
index eedbc35fe813..6426a245074e 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubConsumerGroup.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubConsumerGroup.java
@@ -21,31 +21,43 @@
public interface EventHubConsumerGroup extends NestedResource, HasManager,
Refreshable, HasInnerModel, Updatable {
/**
+ * Gets the resource group of the namespace where parent event hub resides.
+ *
* @return the resource group of the namespace where parent event hub resides
*/
String namespaceResourceGroupName();
/**
+ * Gets the namespace name of parent event hub.
+ *
* @return the namespace name of parent event hub
*/
String namespaceName();
/**
+ * Gets the name of the parent event hub.
+ *
* @return the name of the parent event hub
*/
String eventHubName();
/**
+ * Gets creation time of the consumer group.
+ *
* @return creation time of the consumer group
*/
OffsetDateTime createdAt();
/**
+ * Gets last modified time of the consumer group.
+ *
* @return last modified time of the consumer group
*/
OffsetDateTime updatedAt();
/**
+ * Gets user metadata associated with the consumer group.
+ *
* @return user metadata associated with the consumer group
*/
String userMetadata();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubDisasterRecoveryPairing.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubDisasterRecoveryPairing.java
index 70152068bc48..b9650d069bdd 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubDisasterRecoveryPairing.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubDisasterRecoveryPairing.java
@@ -23,26 +23,36 @@ public interface EventHubDisasterRecoveryPairing
extends NestedResource, HasManager, Refreshable,
Updatable, HasInnerModel {
/**
+ * Gets primary event hub namespace resource group.
+ *
* @return primary event hub namespace resource group
*/
String primaryNamespaceResourceGroupName();
/**
+ * Gets primary event hub namespace in the pairing.
+ *
* @return primary event hub namespace in the pairing
*/
String primaryNamespaceName();
/**
+ * Gets secondary event hub namespace in the pairing.
+ *
* @return secondary event hub namespace in the pairing
*/
String secondaryNamespaceId();
/**
+ * Gets the namespace role.
+ *
* @return the namespace role
*/
RoleDisasterRecovery namespaceRole();
/**
+ * Gets provisioning state of the pairing.
+ *
* @return provisioning state of the pairing
*/
ProvisioningStateDR provisioningState();
@@ -72,11 +82,15 @@ public interface EventHubDisasterRecoveryPairing
void failOver();
/**
+ * Gets the authorization rules for the event hub disaster recovery pairing.
+ *
* @return the authorization rules for the event hub disaster recovery pairing
*/
PagedFlux listAuthorizationRulesAsync();
/**
+ * Gets the authorization rules for the event hub disaster recovery pairing.
+ *
* @return the authorization rules for the event hub disaster recovery pairing
*/
PagedIterable listAuthorizationRules();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubDisasterRecoveryPairings.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubDisasterRecoveryPairings.java
index 323f18bf64a3..7930c01ddcf2 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubDisasterRecoveryPairings.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubDisasterRecoveryPairings.java
@@ -20,6 +20,8 @@ public interface EventHubDisasterRecoveryPairings
extends SupportsCreating, SupportsDeletingById,
SupportsGettingById, HasManager {
/**
+ * Gets entry point to manage authorization rules of a disaster recovery pairing.
+ *
* @return entry point to manage authorization rules of a disaster recovery pairing.
*/
DisasterRecoveryPairingAuthorizationRules authorizationRules();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespace.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespace.java
index 530b9a469ffa..53c6cfb1b9cd 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespace.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespace.java
@@ -23,66 +23,92 @@
public interface EventHubNamespace extends GroupableResource,
Refreshable, Updatable {
/**
+ * Gets namespace sku.
+ *
* @return namespace sku
*/
EventHubNamespaceSkuType sku();
/**
+ * Gets resource id of the Azure Insights metrics associated with the namespace.
+ *
* @return resource id of the Azure Insights metrics associated with the namespace
*/
String azureInsightMetricId();
/**
+ * Gets the service bus endpoint associated with the namespace.
+ *
* @return the service bus endpoint associated with the namespace
*/
String serviceBusEndpoint();
/**
+ * Gets namespace created time.
+ *
* @return namespace created time
*/
OffsetDateTime createdAt();
/**
+ * Gets namespace last modified time.
+ *
* @return namespace last modified time
*/
OffsetDateTime updatedAt();
/**
+ * Gets provisioning state of the namespace.
+ *
* @return provisioning state of the namespace
*/
String provisioningState();
/**
+ * Checks whether auto-scale is enabled for the namespace.
+ *
* @return true if auto-scale is enabled for the namespace, false otherwise
*/
boolean isAutoScaleEnabled();
/**
+ * Gets current throughput units set for the namespace.
+ *
* @return current throughput units set for the namespace
*/
int currentThroughputUnits();
/**
+ * Gets maximum throughput unit that auto-scalar is allowed to set.
+ *
* @return maximum throughput unit that auto-scalar is allowed to set
*/
int throughputUnitsUpperLimit();
/**
+ * Gets the event hubs in the namespace.
+ *
* @return the event hubs in the namespace
*/
PagedFlux listEventHubsAsync();
/**
+ * Gets the authorization rules for the event hub namespace.
+ *
* @return the authorization rules for the event hub namespace
*/
PagedFlux listAuthorizationRulesAsync();
/**
+ * Gets list of event hubs in the namespace.
+ *
* @return list of event hubs in the namespace
*/
PagedIterable listEventHubs();
/**
+ * Gets list of authorization rules for the event hub namespace.
+ *
* @return list of authorization rules for the event hub namespace
*/
PagedIterable listAuthorizationRules();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaceAuthorizationRule.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaceAuthorizationRule.java
index ec1ef7fe2914..cb05212dbea6 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaceAuthorizationRule.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaceAuthorizationRule.java
@@ -12,11 +12,15 @@
@Fluent
public interface EventHubNamespaceAuthorizationRule extends AuthorizationRule {
/**
+ * Gets the resource group of the namespace where parent event hub resides.
+ *
* @return the resource group of the namespace where parent event hub resides.
*/
String namespaceResourceGroupName();
/**
+ * Gets the name of the event hub namespace.
+ *
* @return the name of the event hub namespace.
*/
String namespaceName();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaceSkuType.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaceSkuType.java
index 513a70ba4649..d2045227e606 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaceSkuType.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaceSkuType.java
@@ -47,13 +47,17 @@ public Sku innerModel() {
}
/**
- * @return sku tier
+ * Gets sku name.
+ *
+ * @return sku name
*/
public SkuName name() {
return this.sku.name();
}
/**
+ * Gets sku tier.
+ *
* @return sku tier
*/
public SkuTier tier() {
@@ -61,6 +65,8 @@ public SkuTier tier() {
}
/**
+ * Gets sku capacity.
+ *
* @return sku capacity
*/
public int capacity() {
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaces.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaces.java
index 2463a30a37b8..8ada3bdadc11 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaces.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubNamespaces.java
@@ -25,11 +25,15 @@ public interface EventHubNamespaces
SupportsGettingById, SupportsDeletingById, SupportsDeletingByResourceGroup,
SupportsBatchCreation, SupportsBatchDeletion, HasManager {
/**
+ * Gets entry point to manage authorization rules of event hub namespaces.
+ *
* @return entry point to manage authorization rules of event hub namespaces.
*/
EventHubNamespaceAuthorizationRules authorizationRules();
/**
+ * Gets entry point to manage event hubs of event hub namespaces.
+ *
* @return entry point to manage event hubs of event hub namespaces.
*/
EventHubs eventHubs();
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubs.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubs.java
index 51af2a7b369b..a4d805693aa3 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubs.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/EventHubs.java
@@ -19,11 +19,15 @@
public interface EventHubs extends SupportsCreating, SupportsDeletingById,
SupportsGettingById, HasManager {
/**
+ * Gets entry point to manage authorization rules of event hubs..
+ *
* @return entry point to manage authorization rules of event hubs.
*/
EventHubAuthorizationRules authorizationRules();
/**
+ * Gets entry point to manage consumer group of event hubs.
+ *
* @return entry point to manage consumer group of event hubs.
*/
diff --git a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/NestedResource.java b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/NestedResource.java
index a959199a3c4d..3c02da61767e 100644
--- a/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/NestedResource.java
+++ b/sdk/resourcemanager/azure-resourcemanager-eventhubs/src/main/java/com/azure/resourcemanager/eventhubs/models/NestedResource.java
@@ -12,16 +12,21 @@
@Fluent
public interface NestedResource extends Indexable {
/**
+ * Gets resource id.
+ *
* @return resource id.
*/
String id();
/**
+ * Gets the resource name.
+ *
* @return the resource name.
*/
String name();
/**
+ * Gets the resource type.
*
* @return the resource type.
*/