Interface AuthorizationRule<RuleT extends AuthorizationRule<RuleT>>
-
- Type Parameters:
RuleT- the specific rule type
- All Superinterfaces:
GroupableResource<ServiceBusManager,SBAuthorizationRuleInner>,HasId,HasInnerModel<SBAuthorizationRuleInner>,HasManager<ServiceBusManager>,HasName,HasResourceGroup,IndependentChild<ServiceBusManager>,IndependentChildResource<ServiceBusManager,SBAuthorizationRuleInner>,Indexable,Refreshable<RuleT>,Resource
- All Known Subinterfaces:
NamespaceAuthorizationRule,QueueAuthorizationRule,TopicAuthorizationRule
public interface AuthorizationRule<RuleT extends AuthorizationRule<RuleT>> extends IndependentChildResource<ServiceBusManager,SBAuthorizationRuleInner>, Refreshable<RuleT>
Type representing authorization rule.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceAuthorizationRule.DefinitionStagesGrouping of commons authorization rule definition stages shared between different Service Bus entities (namespace, queue, topic, subscription) access rules.static interfaceAuthorizationRule.UpdateStagesGrouping of commons authorization rule update stages shared between different Service Bus entities (namespace, queue, topic, subscription) access rules.-
Nested classes/interfaces inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.Resource
Resource.DefinitionWithRegion<T extends Object>, Resource.DefinitionWithTags<T extends Object>, Resource.UpdateWithTags<T extends Object>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AuthorizationKeysgetKeys()Mono<AuthorizationKeys>getKeysAsync()AuthorizationKeysregenerateKey(KeyType keyType)Regenerates primary or secondary keys.AuthorizationKeysregenerateKey(RegenerateAccessKeyParameters regenerateAccessKeyParameters)Regenerates primary or secondary keys.Mono<AuthorizationKeys>regenerateKeyAsync(KeyType keyType)Regenerates primary or secondary keys.Mono<AuthorizationKeys>regenerateKeyAsync(RegenerateAccessKeyParameters regenerateAccessKeyParameters)Regenerates primary or secondary keys.List<AccessRights>rights()-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel
innerModel
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager
manager
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasName
name
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.HasResourceGroup
resourceGroupName
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.model.Refreshable
refresh, refreshAsync
-
Methods inherited from interface com.azure.resourcemanager.resources.fluentcore.arm.models.Resource
region, regionName, tags, type
-
-
-
-
Method Detail
-
rights
List<AccessRights> rights()
- Returns:
- rights associated with the rule
-
getKeysAsync
Mono<AuthorizationKeys> getKeysAsync()
- Returns:
- a representation of the deferred computation of this call, returning the primary, secondary keys and the connection strings
-
getKeys
AuthorizationKeys getKeys()
- Returns:
- the primary, secondary keys and connection strings
-
regenerateKeyAsync
Mono<AuthorizationKeys> regenerateKeyAsync(RegenerateAccessKeyParameters regenerateAccessKeyParameters)
Regenerates primary or secondary keys.- Parameters:
regenerateAccessKeyParameters- the parameters for the key to regenerate- Returns:
- a representation of the deferred computation of this call, returning the primary, secondary keys and the connection strings
-
regenerateKey
AuthorizationKeys regenerateKey(RegenerateAccessKeyParameters regenerateAccessKeyParameters)
Regenerates primary or secondary keys.- Parameters:
regenerateAccessKeyParameters- the parameters for the key to regenerate- Returns:
- primary, secondary keys and connection strings
-
regenerateKey
AuthorizationKeys regenerateKey(KeyType keyType)
Regenerates primary or secondary keys.- Parameters:
keyType- the type for the key to regenerate- Returns:
- primary, secondary keys and connection strings
-
regenerateKeyAsync
Mono<AuthorizationKeys> regenerateKeyAsync(KeyType keyType)
Regenerates primary or secondary keys.- Parameters:
keyType- the type for the key to regenerate- Returns:
- a representation of the deferred computation of this call, returning the primary, secondary keys and the connection strings
-
-