
com.azure.resourcemanager.deviceupdate.models.Account Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.deviceupdate.models;
import com.azure.core.management.Region;
import com.azure.core.management.SystemData;
import com.azure.core.util.Context;
import com.azure.resourcemanager.deviceupdate.fluent.models.AccountInner;
import com.azure.resourcemanager.deviceupdate.fluent.models.PrivateEndpointConnectionInner;
import java.util.List;
import java.util.Map;
/**
* An immutable client-side representation of Account.
*/
public interface Account {
/**
* Gets the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: The name of the resource.
*
* @return the name value.
*/
String name();
/**
* Gets the type property: The type of the resource.
*
* @return the type value.
*/
String type();
/**
* Gets the location property: The geo-location where the resource lives.
*
* @return the location value.
*/
String location();
/**
* Gets the tags property: Resource tags.
*
* @return the tags value.
*/
Map tags();
/**
* Gets the identity property: The type of identity used for the resource.
*
* @return the identity value.
*/
ManagedServiceIdentity identity();
/**
* Gets the systemData property: Azure Resource Manager metadata containing createdBy and modifiedBy information.
*
* @return the systemData value.
*/
SystemData systemData();
/**
* Gets the provisioningState property: Provisioning state.
*
* @return the provisioningState value.
*/
ProvisioningState provisioningState();
/**
* Gets the hostname property: API host name.
*
* @return the hostname value.
*/
String hostname();
/**
* Gets the publicNetworkAccess property: Whether or not public network access is allowed for the account.
*
* @return the publicNetworkAccess value.
*/
PublicNetworkAccess publicNetworkAccess();
/**
* Gets the privateEndpointConnections property: List of private endpoint connections associated with the account.
*
* @return the privateEndpointConnections value.
*/
List privateEndpointConnections();
/**
* Gets the sku property: Device Update Sku.
*
* @return the sku value.
*/
Sku sku();
/**
* Gets the encryption property: CMK encryption at rest properties.
*
* @return the encryption value.
*/
Encryption encryption();
/**
* Gets the locations property: Device Update account primary and failover location details.
*
* @return the locations value.
*/
List locations();
/**
* Gets the region of the resource.
*
* @return the region of the resource.
*/
Region region();
/**
* Gets the name of the resource region.
*
* @return the name of the resource region.
*/
String regionName();
/**
* Gets the name of the resource group.
*
* @return the name of the resource group.
*/
String resourceGroupName();
/**
* Gets the inner com.azure.resourcemanager.deviceupdate.fluent.models.AccountInner object.
*
* @return the inner object.
*/
AccountInner innerModel();
/**
* The entirety of the Account definition.
*/
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithLocation,
DefinitionStages.WithResourceGroup, DefinitionStages.WithCreate {
}
/**
* The Account definition stages.
*/
interface DefinitionStages {
/**
* The first stage of the Account definition.
*/
interface Blank extends WithLocation {
}
/**
* The stage of the Account definition allowing to specify location.
*/
interface WithLocation {
/**
* Specifies the region for the resource.
*
* @param location The geo-location where the resource lives.
* @return the next definition stage.
*/
WithResourceGroup withRegion(Region location);
/**
* Specifies the region for the resource.
*
* @param location The geo-location where the resource lives.
* @return the next definition stage.
*/
WithResourceGroup withRegion(String location);
}
/**
* The stage of the Account definition allowing to specify parent resource.
*/
interface WithResourceGroup {
/**
* Specifies resourceGroupName.
*
* @param resourceGroupName The resource group name.
* @return the next definition stage.
*/
WithCreate withExistingResourceGroup(String resourceGroupName);
}
/**
* The stage of the Account definition which contains all the minimum required properties for the resource to be
* created, but also allows for any other optional properties to be specified.
*/
interface WithCreate
extends DefinitionStages.WithTags, DefinitionStages.WithIdentity, DefinitionStages.WithPublicNetworkAccess,
DefinitionStages.WithPrivateEndpointConnections, DefinitionStages.WithSku, DefinitionStages.WithEncryption {
/**
* Executes the create request.
*
* @return the created resource.
*/
Account create();
/**
* Executes the create request.
*
* @param context The context to associate with this operation.
* @return the created resource.
*/
Account create(Context context);
}
/**
* The stage of the Account definition allowing to specify tags.
*/
interface WithTags {
/**
* Specifies the tags property: Resource tags..
*
* @param tags Resource tags.
* @return the next definition stage.
*/
WithCreate withTags(Map tags);
}
/**
* The stage of the Account definition allowing to specify identity.
*/
interface WithIdentity {
/**
* Specifies the identity property: The type of identity used for the resource..
*
* @param identity The type of identity used for the resource.
* @return the next definition stage.
*/
WithCreate withIdentity(ManagedServiceIdentity identity);
}
/**
* The stage of the Account definition allowing to specify publicNetworkAccess.
*/
interface WithPublicNetworkAccess {
/**
* Specifies the publicNetworkAccess property: Whether or not public network access is allowed for the
* account..
*
* @param publicNetworkAccess Whether or not public network access is allowed for the account.
* @return the next definition stage.
*/
WithCreate withPublicNetworkAccess(PublicNetworkAccess publicNetworkAccess);
}
/**
* The stage of the Account definition allowing to specify privateEndpointConnections.
*/
interface WithPrivateEndpointConnections {
/**
* Specifies the privateEndpointConnections property: List of private endpoint connections associated with
* the account..
*
* @param privateEndpointConnections List of private endpoint connections associated with the account.
* @return the next definition stage.
*/
WithCreate withPrivateEndpointConnections(List privateEndpointConnections);
}
/**
* The stage of the Account definition allowing to specify sku.
*/
interface WithSku {
/**
* Specifies the sku property: Device Update Sku.
*
* @param sku Device Update Sku.
* @return the next definition stage.
*/
WithCreate withSku(Sku sku);
}
/**
* The stage of the Account definition allowing to specify encryption.
*/
interface WithEncryption {
/**
* Specifies the encryption property: CMK encryption at rest properties.
*
* @param encryption CMK encryption at rest properties.
* @return the next definition stage.
*/
WithCreate withEncryption(Encryption encryption);
}
}
/**
* Begins update for the Account resource.
*
* @return the stage of resource update.
*/
Account.Update update();
/**
* The template for Account update.
*/
interface Update extends UpdateStages.WithTags, UpdateStages.WithIdentity {
/**
* Executes the update request.
*
* @return the updated resource.
*/
Account apply();
/**
* Executes the update request.
*
* @param context The context to associate with this operation.
* @return the updated resource.
*/
Account apply(Context context);
}
/**
* The Account update stages.
*/
interface UpdateStages {
/**
* The stage of the Account update allowing to specify tags.
*/
interface WithTags {
/**
* Specifies the tags property: List of key value pairs that describe the resource. This will overwrite the
* existing tags..
*
* @param tags List of key value pairs that describe the resource. This will overwrite the existing tags.
* @return the next definition stage.
*/
Update withTags(Map tags);
}
/**
* The stage of the Account update allowing to specify identity.
*/
interface WithIdentity {
/**
* Specifies the identity property: The type of identity used for the resource..
*
* @param identity The type of identity used for the resource.
* @return the next definition stage.
*/
Update withIdentity(ManagedServiceIdentity identity);
}
}
/**
* Refreshes the resource to sync with Azure.
*
* @return the refreshed resource.
*/
Account refresh();
/**
* Refreshes the resource to sync with Azure.
*
* @param context The context to associate with this operation.
* @return the refreshed resource.
*/
Account refresh(Context context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy