コード例 #1
0
 internal StorageAccount(string id, string name, string type, IDictionary <string, string> tags, string location, Sku sku, Kind?kind, Identity identity, ProvisioningState?provisioningState, Endpoints primaryEndpoints, string primaryLocation, AccountStatus?statusOfPrimary, DateTimeOffset?lastGeoFailoverTime, string secondaryLocation, AccountStatus?statusOfSecondary, DateTimeOffset?creationTime, CustomDomain customDomain, Endpoints secondaryEndpoints, Encryption encryption, AccessTier?accessTier, AzureFilesIdentityBasedAuthentication azureFilesIdentityBasedAuthentication, bool?enableHttpsTrafficOnly, NetworkRuleSet networkRuleSet, bool?isHnsEnabled, GeoReplicationStats geoReplicationStats, bool?failoverInProgress, LargeFileSharesState?largeFileSharesState, IReadOnlyList <PrivateEndpointConnection> privateEndpointConnections, RoutingPreference routingPreference, BlobRestoreStatus blobRestoreStatus) : base(id, name, type, tags, location)
 {
     Sku                 = sku;
     Kind                = kind;
     Identity            = identity;
     ProvisioningState   = provisioningState;
     PrimaryEndpoints    = primaryEndpoints;
     PrimaryLocation     = primaryLocation;
     StatusOfPrimary     = statusOfPrimary;
     LastGeoFailoverTime = lastGeoFailoverTime;
     SecondaryLocation   = secondaryLocation;
     StatusOfSecondary   = statusOfSecondary;
     CreationTime        = creationTime;
     CustomDomain        = customDomain;
     SecondaryEndpoints  = secondaryEndpoints;
     Encryption          = encryption;
     AccessTier          = accessTier;
     AzureFilesIdentityBasedAuthentication = azureFilesIdentityBasedAuthentication;
     EnableHttpsTrafficOnly     = enableHttpsTrafficOnly;
     NetworkRuleSet             = networkRuleSet;
     IsHnsEnabled               = isHnsEnabled;
     GeoReplicationStats        = geoReplicationStats;
     FailoverInProgress         = failoverInProgress;
     LargeFileSharesState       = largeFileSharesState;
     PrivateEndpointConnections = privateEndpointConnections;
     RoutingPreference          = routingPreference;
     BlobRestoreStatus          = blobRestoreStatus;
 }
コード例 #2
0
 internal StorageAccountCreateParameters(Sku sku, Kind kind, string location, IDictionary <string, string> tags, Identity identity, CustomDomain customDomain, Encryption encryption, NetworkRuleSet networkRuleSet, AccessTier?accessTier, AzureFilesIdentityBasedAuthentication azureFilesIdentityBasedAuthentication, bool?enableHttpsTrafficOnly, bool?isHnsEnabled, LargeFileSharesState?largeFileSharesState, RoutingPreference routingPreference)
 {
     Sku            = sku;
     Kind           = kind;
     Location       = location;
     Tags           = tags;
     Identity       = identity;
     CustomDomain   = customDomain;
     Encryption     = encryption;
     NetworkRuleSet = networkRuleSet;
     AccessTier     = accessTier;
     AzureFilesIdentityBasedAuthentication = azureFilesIdentityBasedAuthentication;
     EnableHttpsTrafficOnly = enableHttpsTrafficOnly;
     IsHnsEnabled           = isHnsEnabled;
     LargeFileSharesState   = largeFileSharesState;
     RoutingPreference      = routingPreference;
 }