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. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.storage; import com.microsoft.azure.management.apigeneration.Beta; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasManager; import com.microsoft.azure.management.resources.fluentcore.model.Appliable; import com.microsoft.azure.management.resources.fluentcore.model.Creatable; import com.microsoft.azure.management.resources.fluentcore.model.HasInner; import com.microsoft.azure.management.resources.fluentcore.model.Indexable; import com.microsoft.azure.management.resources.fluentcore.model.Refreshable; import com.microsoft.azure.management.resources.fluentcore.model.Updatable; import com.microsoft.azure.management.storage.implementation.BlobServicePropertiesInner; import com.microsoft.azure.management.storage.implementation.StorageManager; import java.util.List;
Type representing BlobServiceProperties.
/** * Type representing BlobServiceProperties. */
@Fluent @Beta public interface BlobServiceProperties extends HasInner<BlobServicePropertiesInner>, Indexable, Refreshable<BlobServiceProperties>, Updatable<BlobServiceProperties.Update>, HasManager<StorageManager> {
Returns:the cors value.
/** * @return the cors value. */
CorsRules cors();
Returns:the defaultServiceVersion value.
/** * @return the defaultServiceVersion value. */
String defaultServiceVersion();
Returns:the deleteRetentionPolicy value.
/** * @return the deleteRetentionPolicy value. */
DeleteRetentionPolicy deleteRetentionPolicy();
Returns:the id value.
/** * @return the id value. */
String id();
Returns:the name value.
/** * @return the name value. */
String name();
Returns:the type value.
/** * @return the type value. */
String type();
The entirety of the BlobServiceProperties definition.
/** * The entirety of the BlobServiceProperties definition. */
interface Definition extends DefinitionStages.Blank, DefinitionStages.WithStorageAccount, DefinitionStages.WithCreate { }
Grouping of BlobServiceProperties definition stages.
/** * Grouping of BlobServiceProperties definition stages. */
interface DefinitionStages {
The first stage of a BlobServiceProperties definition.
/** * The first stage of a BlobServiceProperties definition. */
interface Blank extends WithStorageAccount { }
The stage of the blobserviceproperties definition allowing to specify StorageAccount.
/** * The stage of the blobserviceproperties definition allowing to specify StorageAccount. */
interface WithStorageAccount {
Specifies resourceGroupName, accountName.
Params:
  • resourceGroupName – The name of the resource group within the user's subscription. The name is case insensitive
  • accountName – The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only
Returns:the next definition stage
/** * Specifies resourceGroupName, accountName. * * @param resourceGroupName The name of the resource group within the user's subscription. The name is case insensitive * @param accountName The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only * @return the next definition stage */
WithCreate withExistingStorageAccount(String resourceGroupName, String accountName); }
The stage of the blobserviceproperties definition allowing to specify Cors.
/** * The stage of the blobserviceproperties definition allowing to specify Cors. */
interface WithCors {
Specifies all of the CORS rules.
Params:
  • corsRules – Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service
Returns:the next definition stage
/** * Specifies all of the CORS rules. * * @param corsRules Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service * @return the next definition stage */
WithCreate withCORSRules(List<CorsRule> corsRules);
Specifies a single CORS rule.
Params:
  • corsRule – a single CORS rule
Returns:the next definition stage
/** * Specifies a single CORS rule. * * @param corsRule a single CORS rule * @return the next definition stage */
WithCreate withCORSRule(CorsRule corsRule); }
The stage of the blobserviceproperties definition allowing to specify DefaultServiceVersion.
/** * The stage of the blobserviceproperties definition allowing to specify DefaultServiceVersion. */
interface WithDefaultServiceVersion {
Specifies defaultServiceVersion.
Params:
  • defaultServiceVersion – DefaultServiceVersion indicates the default version to use for requests to the Blob service if an incoming request’s version is not specified. Possible values include version 2008-10-27 and all more recent versions
Returns:the next definition stage
/** * Specifies defaultServiceVersion. * * @param defaultServiceVersion DefaultServiceVersion indicates the default version to use for requests to the Blob service if an incoming request’s version is not specified. Possible values include version 2008-10-27 and all more recent versions * @return the next definition stage */
WithCreate withDefaultServiceVersion(String defaultServiceVersion); }
The stage of the blobserviceproperties definition allowing to specify DeleteRetentionPolicy.
/** * The stage of the blobserviceproperties definition allowing to specify DeleteRetentionPolicy. */
interface WithDeleteRetentionPolicy {
Specifies deleteRetentionPolicy.
Params:
  • deleteRetentionPolicy – The blob service properties for soft delete
Returns:the next definition stage
/** * Specifies deleteRetentionPolicy. * * @param deleteRetentionPolicy The blob service properties for soft delete * @return the next definition stage */
WithCreate withDeleteRetentionPolicy(DeleteRetentionPolicy deleteRetentionPolicy);
Specifies that the delete retention policy is enabled for soft delete.
Params:
  • numDaysEnabled – number of days after soft delete that the blob service properties will actually be deleted
Returns:the next definition stage
/** * Specifies that the delete retention policy is enabled for soft delete. * * @param numDaysEnabled number of days after soft delete that the blob service properties will actually be deleted * @return the next definition stage */
WithCreate withDeleteRetentionPolicyEnabled(int numDaysEnabled);
Specifies that the delete retention policy is disabled.
Returns:the next definition stage
/** * Specifies that the delete retention policy is disabled. * * @return the next definition stage */
WithCreate withDeleteRetentionPolicyDisabled(); }
The stage of the definition which contains all the minimum required inputs for the resource to be created (via Creatable<BlobServiceProperties>.create()), but also allows for any other optional settings to be specified.
/** * The stage of the definition which contains all the minimum required inputs for * the resource to be created (via {@link WithCreate#create()}), but also allows * for any other optional settings to be specified. */
interface WithCreate extends Creatable<BlobServiceProperties>, DefinitionStages.WithCors, DefinitionStages.WithDefaultServiceVersion, DefinitionStages.WithDeleteRetentionPolicy { } }
The template for a BlobServiceProperties update operation, containing all the settings that can be modified.
/** * The template for a BlobServiceProperties update operation, containing all the settings that can be modified. */
interface Update extends Appliable<BlobServiceProperties>, UpdateStages.WithCors, UpdateStages.WithDefaultServiceVersion, UpdateStages.WithDeleteRetentionPolicy { }
Grouping of BlobServiceProperties update stages.
/** * Grouping of BlobServiceProperties update stages. */
interface UpdateStages {
The stage of the blobserviceproperties update allowing to specify Cors.
/** * The stage of the blobserviceproperties update allowing to specify Cors. */
interface WithCors {
Specifies all of the CORS rules.
Params:
  • corsRules – Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service
Returns:the next update stage
/** * Specifies all of the CORS rules. * * @param corsRules Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service * @return the next update stage */
Update withCORSRules(List<CorsRule> corsRules);
Specifies a single CORS rule.
Params:
  • corsRule – a single CORS rule
Returns:the next update stage
/** * Specifies a single CORS rule. * * @param corsRule a single CORS rule * @return the next update stage */
Update withCORSRule(CorsRule corsRule); }
The stage of the blobserviceproperties update allowing to specify DefaultServiceVersion.
/** * The stage of the blobserviceproperties update allowing to specify DefaultServiceVersion. */
interface WithDefaultServiceVersion {
Specifies defaultServiceVersion.
Params:
  • defaultServiceVersion – DefaultServiceVersion indicates the default version to use for requests to the Blob service if an incoming request’s version is not specified. Possible values include version 2008-10-27 and all more recent versions
Returns:the next update stage
/** * Specifies defaultServiceVersion. * * @param defaultServiceVersion DefaultServiceVersion indicates the default version to use for requests to the Blob service if an incoming request’s version is not specified. Possible values include version 2008-10-27 and all more recent versions * @return the next update stage */
Update withDefaultServiceVersion(String defaultServiceVersion); }
The stage of the blobserviceproperties update allowing to specify DeleteRetentionPolicy.
/** * The stage of the blobserviceproperties update allowing to specify DeleteRetentionPolicy. */
interface WithDeleteRetentionPolicy {
Specifies deleteRetentionPolicy.
Params:
  • deleteRetentionPolicy – The blob service properties for soft delete
Returns:the next update stage
/** * Specifies deleteRetentionPolicy. * * @param deleteRetentionPolicy The blob service properties for soft delete * @return the next update stage */
Update withDeleteRetentionPolicy(DeleteRetentionPolicy deleteRetentionPolicy);
Specifies that the delete retention policy is enabled for soft delete.
Params:
  • numDaysEnabled – number of days after soft delete that the blob service properties will actually be deleted
Returns:the next update stage
/** * Specifies that the delete retention policy is enabled for soft delete. * * @param numDaysEnabled number of days after soft delete that the blob service properties will actually be deleted * @return the next update stage */
Update withDeleteRetentionPolicyEnabled(int numDaysEnabled);
Specifies that the delete retention policy is disabled.
Returns:the next update stage
/** * Specifies that the delete retention policy is disabled. * * @return the next update stage */
Update withDeleteRetentionPolicyDisabled(); } } }