Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi
alicloud.cloudstoragegateway.getGatewayFileShares
Explore with Pulumi AI
This data source provides the Cloud Storage Gateway Gateway File Shares of the current Alibaba Cloud user.
NOTE: Available in v1.144.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.cloudstoragegateway.getGatewayFileShares({
gatewayId: "example_value",
ids: [
"example_value-1",
"example_value-2",
],
});
export const cloudStorageGatewayGatewayFileShareId1 = ids.then(ids => ids.shares?.[0]?.id);
const nameRegex = alicloud.cloudstoragegateway.getGatewayFileShares({
gatewayId: "example_value",
nameRegex: "^my-GatewayFileShare",
});
export const cloudStorageGatewayGatewayFileShareId2 = nameRegex.then(nameRegex => nameRegex.shares?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.cloudstoragegateway.get_gateway_file_shares(gateway_id="example_value",
ids=[
"example_value-1",
"example_value-2",
])
pulumi.export("cloudStorageGatewayGatewayFileShareId1", ids.shares[0].id)
name_regex = alicloud.cloudstoragegateway.get_gateway_file_shares(gateway_id="example_value",
name_regex="^my-GatewayFileShare")
pulumi.export("cloudStorageGatewayGatewayFileShareId2", name_regex.shares[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudstoragegateway"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
ids, err := cloudstoragegateway.GetGatewayFileShares(ctx, &cloudstoragegateway.GetGatewayFileSharesArgs{
GatewayId: "example_value",
Ids: []string{
"example_value-1",
"example_value-2",
},
}, nil)
if err != nil {
return err
}
ctx.Export("cloudStorageGatewayGatewayFileShareId1", ids.Shares[0].Id)
nameRegex, err := cloudstoragegateway.GetGatewayFileShares(ctx, &cloudstoragegateway.GetGatewayFileSharesArgs{
GatewayId: "example_value",
NameRegex: pulumi.StringRef("^my-GatewayFileShare"),
}, nil)
if err != nil {
return err
}
ctx.Export("cloudStorageGatewayGatewayFileShareId2", nameRegex.Shares[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var ids = AliCloud.CloudStorageGateway.GetGatewayFileShares.Invoke(new()
{
GatewayId = "example_value",
Ids = new[]
{
"example_value-1",
"example_value-2",
},
});
var nameRegex = AliCloud.CloudStorageGateway.GetGatewayFileShares.Invoke(new()
{
GatewayId = "example_value",
NameRegex = "^my-GatewayFileShare",
});
return new Dictionary<string, object?>
{
["cloudStorageGatewayGatewayFileShareId1"] = ids.Apply(getGatewayFileSharesResult => getGatewayFileSharesResult.Shares[0]?.Id),
["cloudStorageGatewayGatewayFileShareId2"] = nameRegex.Apply(getGatewayFileSharesResult => getGatewayFileSharesResult.Shares[0]?.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cloudstoragegateway.CloudstoragegatewayFunctions;
import com.pulumi.alicloud.cloudstoragegateway.inputs.GetGatewayFileSharesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var ids = CloudstoragegatewayFunctions.getGatewayFileShares(GetGatewayFileSharesArgs.builder()
.gatewayId("example_value")
.ids(
"example_value-1",
"example_value-2")
.build());
ctx.export("cloudStorageGatewayGatewayFileShareId1", ids.applyValue(getGatewayFileSharesResult -> getGatewayFileSharesResult.shares()[0].id()));
final var nameRegex = CloudstoragegatewayFunctions.getGatewayFileShares(GetGatewayFileSharesArgs.builder()
.gatewayId("example_value")
.nameRegex("^my-GatewayFileShare")
.build());
ctx.export("cloudStorageGatewayGatewayFileShareId2", nameRegex.applyValue(getGatewayFileSharesResult -> getGatewayFileSharesResult.shares()[0].id()));
}
}
variables:
ids:
fn::invoke:
function: alicloud:cloudstoragegateway:getGatewayFileShares
arguments:
gatewayId: example_value
ids:
- example_value-1
- example_value-2
nameRegex:
fn::invoke:
function: alicloud:cloudstoragegateway:getGatewayFileShares
arguments:
gatewayId: example_value
nameRegex: ^my-GatewayFileShare
outputs:
cloudStorageGatewayGatewayFileShareId1: ${ids.shares[0].id}
cloudStorageGatewayGatewayFileShareId2: ${nameRegex.shares[0].id}
Using getGatewayFileShares
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getGatewayFileShares(args: GetGatewayFileSharesArgs, opts?: InvokeOptions): Promise<GetGatewayFileSharesResult>
function getGatewayFileSharesOutput(args: GetGatewayFileSharesOutputArgs, opts?: InvokeOptions): Output<GetGatewayFileSharesResult>
def get_gateway_file_shares(gateway_id: Optional[str] = None,
ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetGatewayFileSharesResult
def get_gateway_file_shares_output(gateway_id: Optional[pulumi.Input[str]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetGatewayFileSharesResult]
func GetGatewayFileShares(ctx *Context, args *GetGatewayFileSharesArgs, opts ...InvokeOption) (*GetGatewayFileSharesResult, error)
func GetGatewayFileSharesOutput(ctx *Context, args *GetGatewayFileSharesOutputArgs, opts ...InvokeOption) GetGatewayFileSharesResultOutput
> Note: This function is named GetGatewayFileShares
in the Go SDK.
public static class GetGatewayFileShares
{
public static Task<GetGatewayFileSharesResult> InvokeAsync(GetGatewayFileSharesArgs args, InvokeOptions? opts = null)
public static Output<GetGatewayFileSharesResult> Invoke(GetGatewayFileSharesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetGatewayFileSharesResult> getGatewayFileShares(GetGatewayFileSharesArgs args, InvokeOptions options)
public static Output<GetGatewayFileSharesResult> getGatewayFileShares(GetGatewayFileSharesArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:cloudstoragegateway/getGatewayFileShares:getGatewayFileShares
arguments:
# arguments dictionary
The following arguments are supported:
- Gateway
Id This property is required. Changes to this property will trigger replacement.
- The ID of the gateway.
- Ids
Changes to this property will trigger replacement.
- A list of Gateway File Share IDs.
- Name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Gateway File Share name.
- Output
File string - File name where to save data source results (after running
pulumi preview
).
- Gateway
Id This property is required. Changes to this property will trigger replacement.
- The ID of the gateway.
- Ids
Changes to this property will trigger replacement.
- A list of Gateway File Share IDs.
- Name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Gateway File Share name.
- Output
File string - File name where to save data source results (after running
pulumi preview
).
- gateway
Id This property is required. Changes to this property will trigger replacement.
- The ID of the gateway.
- ids
Changes to this property will trigger replacement.
- A list of Gateway File Share IDs.
- name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Gateway File Share name.
- output
File String - File name where to save data source results (after running
pulumi preview
).
- gateway
Id This property is required. Changes to this property will trigger replacement.
- The ID of the gateway.
- ids
Changes to this property will trigger replacement.
- A list of Gateway File Share IDs.
- name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Gateway File Share name.
- output
File string - File name where to save data source results (after running
pulumi preview
).
- gateway_
id This property is required. Changes to this property will trigger replacement.
- The ID of the gateway.
- ids
Changes to this property will trigger replacement.
- A list of Gateway File Share IDs.
- name_
regex Changes to this property will trigger replacement.
- A regex string to filter results by Gateway File Share name.
- output_
file str - File name where to save data source results (after running
pulumi preview
).
- gateway
Id This property is required. Changes to this property will trigger replacement.
- The ID of the gateway.
- ids
Changes to this property will trigger replacement.
- A list of Gateway File Share IDs.
- name
Regex Changes to this property will trigger replacement.
- A regex string to filter results by Gateway File Share name.
- output
File String - File name where to save data source results (after running
pulumi preview
).
getGatewayFileShares Result
The following output properties are available:
- Gateway
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Names List<string>
- List<Pulumi.
Ali Cloud. Cloud Storage Gateway. Outputs. Get Gateway File Shares Share> - Name
Regex string - Output
File string
- Gateway
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Names []string
- []Get
Gateway File Shares Share - Name
Regex string - Output
File string
- gateway
Id String - id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- List<Get
Gateway File Shares Share> - name
Regex String - output
File String
- gateway
Id string - id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- names string[]
- Get
Gateway File Shares Share[] - name
Regex string - output
File string
- gateway_
id str - id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- names Sequence[str]
- Sequence[Get
Gateway File Shares Share] - name_
regex str - output_
file str
- gateway
Id String - id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- names List<String>
- List<Property Map>
- name
Regex String - output
File String
Supporting Types
GetGatewayFileSharesShare
- Access
Based Enumeration This property is required. bool - The set up gateway file share Server Message Block (SMB) protocol, whether to enable Windows ABE, the prime minister, need windowsAcl parameter is set to true in the entry into force of. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support. - Address
This property is required. string - Share the private IP address of the RDS instance.
- Backend
Limit This property is required. int - The set up gateway file share Max upload speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. NOTE: at the same time if you have to limit the maximum write speed, maximum upload speed is no less than the maximum write speed. - Browsable
This property is required. bool - The set up gateway file share Server Message Block (SMB) protocol whether browsable (that is, in the network neighborhood of whether you can find). The parameters in the NFS protocol not valid under. Default value:
true
. - Bucket
Infos This property is required. string - Multi-Bucket information.
- Buckets
Stub This property is required. bool - Whether there are multiple buckets.
- Bypass
Cache Read This property is required. bool - Direct reading OSS of the gateway file share.
- Cache
Mode This property is required. string - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- Client
Side Cmk This property is required. string - File share is enabled to client-side encryption, the encryption by the use of the KMS key. NOTE: note: This KMS key must be the gateway and is in the same Region.
- Client
Side Encryption This property is required. bool - Whether to enabled to client-side encryption of the gateway file share. Default value:
false
. NOTE: need to contact us open whitelist before you can the settings, and only supports enhanced more than online gateway, at the same time, server-side encryption and to client-side encryption can not simultaneously configuration. - Direct
Io This property is required. bool - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - Disk
Id This property is required. string - The ID of the disk.
- Disk
Type This property is required. string - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - Download
Limit This property is required. int - The set up gateway file share maximum download speed. Unit:
MB/s
.0
means unlimited. Value range:0
~1280
. NOTE: only in copy mode and enable download file data can be set. only when the shared opens the reverse synchronization or acceded to by the speed synchronization Group when, this parameter will not take effect. Gateway version >= 1.3.0 above support. - Enabled
This property is required. bool - Shared whether the changes take effect.
- Express
Sync Id This property is required. string - Speed synchronization group ID.
- Fast
Reclaim This property is required. bool - The set up gateway file share whether to enable Upload optimization, which is suitable for data pure backup migration scenarios. Default value:
false
. NOTE: Gateway version >= 1.0.39 above support. - Fe
Limit This property is required. int - The set up gateway file share and the maximum write speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. - File
Num Limit This property is required. string - Supported by the file system file number.
- Fs
Size Limit This property is required. string - File system capacity. Unit:
B
. This property is required. string- The name of the file share. Length from
1
to255
characters can contain lowercase letters, digits, (.), (_) Or (-), at the same time, must start with a lowercase letter. - Gateway
Id This property is required. string - The ID of the gateway.
- Id
This property is required. string - The ID of the Gateway File Share.
- Ignore
Delete This property is required. bool - Whether to ignore deleted of the gateway file share. After the opening of the Gateway side delete file or delete cloud (OSS) corresponding to the file. Default value:
false
. NOTE: Gateway version >= 1.0.40 above support. - In
Place This property is required. bool - Whether debris optimization of the gateway file share. Default value:
false
. - In
Rate This property is required. string - Cache growth. Unit:
B/s
. - Index
Id This property is required. string - The ID of the file share.
- Kms
Rotate Period This property is required. int - File share is enabled to client-side encryption, key rotation period of time. Seconds. 0 represents no rotation. Rotation of the value range:
3600
~86400
. Default value:0
. - Lag
Period This property is required. string - The synchronization delay, I.e. gateway local cache sync to Alibaba Cloud Object Storage Service (oss) of the delay time. Unit:
Seconds
. Value range:5
~120
. Default value:5
. NOTE: Gateway version >= 1.0.40 above support. - Local
Path This property is required. string - The cache disk inside the device name.
- Mns
Health This property is required. string - The messages from the queue health types. Valid values:
TopicAndQueueFailure
: A Message Queuing message theme can be accessed during the black hole period.TopicFailure
: a message theme can be accessed during the black hole period.MNSFullSyncInit
: full synchronization wait.MNSFullSyncing
: full synchronization in progress.QueueFailure
: a message queue can be accessed during the black hole period.MNSNotEnabled
: Top speed synchronization is not enabled.MNSHealthy
: sync fine. - Nfs
V4Optimization This property is required. bool - The set up gateway file share NFS protocol, whether to enable NFS v4 optimization improve Mount Upload efficiency. Default value:
false
. NOTE: turns on after I will not support NFS v3 mount the filesystem on a. Gateway version >= 1.2.0 above support. - Obsolete
Buckets This property is required. string - Multi-Bucket, removing the Bucket.
- Oss
Bucket Name This property is required. string - The name of the Bucket.
- Oss
Bucket Ssl This property is required. bool - Whether they are using SSL connect to OSS Bucket.
- Oss
Endpoint This property is required. string - The set up gateway file share corresponds to the Object Storage SERVICE (OSS), Bucket Endpoint. NOTE: distinguish between intranet and internet Endpoint. We recommend that if the OSS Bucket and the gateway is in the same Region is use the RDS intranet IP Endpoint:oss-cn-hangzhou-internal.aliyuncs.com.
- Oss
Health This property is required. string - The OSS Bucket of type. Valid values:
BucketHealthy
: OSS connectivity.BucketAccessDenied
: OBJECT STORAGE Service (OSS) access to an exception.BucketMiscFailure
: OBJECT STORAGE Service (OSS) access to additional exception.BucketNetworkFailure
: OBJECT STORAGE Service (OSS) access network an exception.BucketNotExist
: OSS Bucket does not exist.Nothing returns
: We may not have ever known existed. - Oss
Used This property is required. string - For a cloud-based data is. Unit:
B
. - Out
Rate This property is required. string - Upload speed. Unit:
B/s
. - Partial
Sync Paths This property is required. string - In part mode, the directory path group JSON format.
- Path
Prefix This property is required. string - The prefix of the OSS.
- Polling
Interval This property is required. int - The reverse synchronization time intervals of the gateway file share. Value range:
15
~36000
. NOTE: in copy mode + reverse synchronization is enabled Download file data, value range:3600
~36000
. - Protocol
This property is required. string - Share types. Valid values:
SMB
,NFS
. - Remaining
Meta Space This property is required. string - You can use the metadata space. Unit:
B
. - Remote
Sync This property is required. bool - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - Remote
Sync Download This property is required. bool - Copy mode, whether to download the file data. Default value:
false
. NOTE: only when the shared opens the reverse synchronization or acceded to by the speed synchronization group, this parameter will not take effect. - Ro
Client List This property is required. string - The read-only client list. When Protocol NFS is returned when the status is.
- Ro
User List This property is required. string - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- Rw
Client List This property is required. string - Read and write the client list. When Protocol NFS is returned when the status is.
- Rw
User List This property is required. string - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- Server
Side Cmk This property is required. string - File share is enabled server-side encryption, encryption used by the KMS key.
- Server
Side Encryption This property is required. bool - If the OSS Bucket side encryption.
- Size
This property is required. string - The caching capacity. Unit:
B
. - Squash
This property is required. string - The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - State
This property is required. string - File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - Support
Archive This property is required. bool - Whether to support the archive transparent read.
- Sync
Progress This property is required. int - Full synchronization progress. When the share has been added for a synchronization group, the return parameters are valid, that shared full synchronization progress (0~100).
-2
: indicates that share the Gateway version does not support this feature.-1
: the share does not occur full synchronization. - Total
Download This property is required. string - The OSS Bucket to the Gateway total downloads. Unit:
B
. - Total
Upload This property is required. string - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - Transfer
Acceleration This property is required. bool - The set up gateway file share whether to enable transmission acceleration needs corresponding OSS Bucket enabled transport acceleration. NOTE: Gateway version >= 1.3.0 above support.
- Used
This property is required. string - Used cache. Unit:
B
. - Windows
Acl This property is required. bool - The set up gateway file share Server Message Block (SMB) protocol, whether to enable by Windows access list (requires AD domain) the permissions control. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support.
- Access
Based Enumeration This property is required. bool - The set up gateway file share Server Message Block (SMB) protocol, whether to enable Windows ABE, the prime minister, need windowsAcl parameter is set to true in the entry into force of. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support. - Address
This property is required. string - Share the private IP address of the RDS instance.
- Backend
Limit This property is required. int - The set up gateway file share Max upload speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. NOTE: at the same time if you have to limit the maximum write speed, maximum upload speed is no less than the maximum write speed. - Browsable
This property is required. bool - The set up gateway file share Server Message Block (SMB) protocol whether browsable (that is, in the network neighborhood of whether you can find). The parameters in the NFS protocol not valid under. Default value:
true
. - Bucket
Infos This property is required. string - Multi-Bucket information.
- Buckets
Stub This property is required. bool - Whether there are multiple buckets.
- Bypass
Cache Read This property is required. bool - Direct reading OSS of the gateway file share.
- Cache
Mode This property is required. string - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- Client
Side Cmk This property is required. string - File share is enabled to client-side encryption, the encryption by the use of the KMS key. NOTE: note: This KMS key must be the gateway and is in the same Region.
- Client
Side Encryption This property is required. bool - Whether to enabled to client-side encryption of the gateway file share. Default value:
false
. NOTE: need to contact us open whitelist before you can the settings, and only supports enhanced more than online gateway, at the same time, server-side encryption and to client-side encryption can not simultaneously configuration. - Direct
Io This property is required. bool - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - Disk
Id This property is required. string - The ID of the disk.
- Disk
Type This property is required. string - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - Download
Limit This property is required. int - The set up gateway file share maximum download speed. Unit:
MB/s
.0
means unlimited. Value range:0
~1280
. NOTE: only in copy mode and enable download file data can be set. only when the shared opens the reverse synchronization or acceded to by the speed synchronization Group when, this parameter will not take effect. Gateway version >= 1.3.0 above support. - Enabled
This property is required. bool - Shared whether the changes take effect.
- Express
Sync Id This property is required. string - Speed synchronization group ID.
- Fast
Reclaim This property is required. bool - The set up gateway file share whether to enable Upload optimization, which is suitable for data pure backup migration scenarios. Default value:
false
. NOTE: Gateway version >= 1.0.39 above support. - Fe
Limit This property is required. int - The set up gateway file share and the maximum write speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. - File
Num Limit This property is required. string - Supported by the file system file number.
- Fs
Size Limit This property is required. string - File system capacity. Unit:
B
. This property is required. string- The name of the file share. Length from
1
to255
characters can contain lowercase letters, digits, (.), (_) Or (-), at the same time, must start with a lowercase letter. - Gateway
Id This property is required. string - The ID of the gateway.
- Id
This property is required. string - The ID of the Gateway File Share.
- Ignore
Delete This property is required. bool - Whether to ignore deleted of the gateway file share. After the opening of the Gateway side delete file or delete cloud (OSS) corresponding to the file. Default value:
false
. NOTE: Gateway version >= 1.0.40 above support. - In
Place This property is required. bool - Whether debris optimization of the gateway file share. Default value:
false
. - In
Rate This property is required. string - Cache growth. Unit:
B/s
. - Index
Id This property is required. string - The ID of the file share.
- Kms
Rotate Period This property is required. int - File share is enabled to client-side encryption, key rotation period of time. Seconds. 0 represents no rotation. Rotation of the value range:
3600
~86400
. Default value:0
. - Lag
Period This property is required. string - The synchronization delay, I.e. gateway local cache sync to Alibaba Cloud Object Storage Service (oss) of the delay time. Unit:
Seconds
. Value range:5
~120
. Default value:5
. NOTE: Gateway version >= 1.0.40 above support. - Local
Path This property is required. string - The cache disk inside the device name.
- Mns
Health This property is required. string - The messages from the queue health types. Valid values:
TopicAndQueueFailure
: A Message Queuing message theme can be accessed during the black hole period.TopicFailure
: a message theme can be accessed during the black hole period.MNSFullSyncInit
: full synchronization wait.MNSFullSyncing
: full synchronization in progress.QueueFailure
: a message queue can be accessed during the black hole period.MNSNotEnabled
: Top speed synchronization is not enabled.MNSHealthy
: sync fine. - Nfs
V4Optimization This property is required. bool - The set up gateway file share NFS protocol, whether to enable NFS v4 optimization improve Mount Upload efficiency. Default value:
false
. NOTE: turns on after I will not support NFS v3 mount the filesystem on a. Gateway version >= 1.2.0 above support. - Obsolete
Buckets This property is required. string - Multi-Bucket, removing the Bucket.
- Oss
Bucket Name This property is required. string - The name of the Bucket.
- Oss
Bucket Ssl This property is required. bool - Whether they are using SSL connect to OSS Bucket.
- Oss
Endpoint This property is required. string - The set up gateway file share corresponds to the Object Storage SERVICE (OSS), Bucket Endpoint. NOTE: distinguish between intranet and internet Endpoint. We recommend that if the OSS Bucket and the gateway is in the same Region is use the RDS intranet IP Endpoint:oss-cn-hangzhou-internal.aliyuncs.com.
- Oss
Health This property is required. string - The OSS Bucket of type. Valid values:
BucketHealthy
: OSS connectivity.BucketAccessDenied
: OBJECT STORAGE Service (OSS) access to an exception.BucketMiscFailure
: OBJECT STORAGE Service (OSS) access to additional exception.BucketNetworkFailure
: OBJECT STORAGE Service (OSS) access network an exception.BucketNotExist
: OSS Bucket does not exist.Nothing returns
: We may not have ever known existed. - Oss
Used This property is required. string - For a cloud-based data is. Unit:
B
. - Out
Rate This property is required. string - Upload speed. Unit:
B/s
. - Partial
Sync Paths This property is required. string - In part mode, the directory path group JSON format.
- Path
Prefix This property is required. string - The prefix of the OSS.
- Polling
Interval This property is required. int - The reverse synchronization time intervals of the gateway file share. Value range:
15
~36000
. NOTE: in copy mode + reverse synchronization is enabled Download file data, value range:3600
~36000
. - Protocol
This property is required. string - Share types. Valid values:
SMB
,NFS
. - Remaining
Meta Space This property is required. string - You can use the metadata space. Unit:
B
. - Remote
Sync This property is required. bool - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - Remote
Sync Download This property is required. bool - Copy mode, whether to download the file data. Default value:
false
. NOTE: only when the shared opens the reverse synchronization or acceded to by the speed synchronization group, this parameter will not take effect. - Ro
Client List This property is required. string - The read-only client list. When Protocol NFS is returned when the status is.
- Ro
User List This property is required. string - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- Rw
Client List This property is required. string - Read and write the client list. When Protocol NFS is returned when the status is.
- Rw
User List This property is required. string - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- Server
Side Cmk This property is required. string - File share is enabled server-side encryption, encryption used by the KMS key.
- Server
Side Encryption This property is required. bool - If the OSS Bucket side encryption.
- Size
This property is required. string - The caching capacity. Unit:
B
. - Squash
This property is required. string - The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - State
This property is required. string - File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - Support
Archive This property is required. bool - Whether to support the archive transparent read.
- Sync
Progress This property is required. int - Full synchronization progress. When the share has been added for a synchronization group, the return parameters are valid, that shared full synchronization progress (0~100).
-2
: indicates that share the Gateway version does not support this feature.-1
: the share does not occur full synchronization. - Total
Download This property is required. string - The OSS Bucket to the Gateway total downloads. Unit:
B
. - Total
Upload This property is required. string - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - Transfer
Acceleration This property is required. bool - The set up gateway file share whether to enable transmission acceleration needs corresponding OSS Bucket enabled transport acceleration. NOTE: Gateway version >= 1.3.0 above support.
- Used
This property is required. string - Used cache. Unit:
B
. - Windows
Acl This property is required. bool - The set up gateway file share Server Message Block (SMB) protocol, whether to enable by Windows access list (requires AD domain) the permissions control. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support.
- access
Based Enumeration This property is required. Boolean - The set up gateway file share Server Message Block (SMB) protocol, whether to enable Windows ABE, the prime minister, need windowsAcl parameter is set to true in the entry into force of. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support. - address
This property is required. String - Share the private IP address of the RDS instance.
- backend
Limit This property is required. Integer - The set up gateway file share Max upload speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. NOTE: at the same time if you have to limit the maximum write speed, maximum upload speed is no less than the maximum write speed. - browsable
This property is required. Boolean - The set up gateway file share Server Message Block (SMB) protocol whether browsable (that is, in the network neighborhood of whether you can find). The parameters in the NFS protocol not valid under. Default value:
true
. - bucket
Infos This property is required. String - Multi-Bucket information.
- buckets
Stub This property is required. Boolean - Whether there are multiple buckets.
- bypass
Cache Read This property is required. Boolean - Direct reading OSS of the gateway file share.
- cache
Mode This property is required. String - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- client
Side Cmk This property is required. String - File share is enabled to client-side encryption, the encryption by the use of the KMS key. NOTE: note: This KMS key must be the gateway and is in the same Region.
- client
Side Encryption This property is required. Boolean - Whether to enabled to client-side encryption of the gateway file share. Default value:
false
. NOTE: need to contact us open whitelist before you can the settings, and only supports enhanced more than online gateway, at the same time, server-side encryption and to client-side encryption can not simultaneously configuration. - direct
Io This property is required. Boolean - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - disk
Id This property is required. String - The ID of the disk.
- disk
Type This property is required. String - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - download
Limit This property is required. Integer - The set up gateway file share maximum download speed. Unit:
MB/s
.0
means unlimited. Value range:0
~1280
. NOTE: only in copy mode and enable download file data can be set. only when the shared opens the reverse synchronization or acceded to by the speed synchronization Group when, this parameter will not take effect. Gateway version >= 1.3.0 above support. - enabled
This property is required. Boolean - Shared whether the changes take effect.
- express
Sync Id This property is required. String - Speed synchronization group ID.
- fast
Reclaim This property is required. Boolean - The set up gateway file share whether to enable Upload optimization, which is suitable for data pure backup migration scenarios. Default value:
false
. NOTE: Gateway version >= 1.0.39 above support. - fe
Limit This property is required. Integer - The set up gateway file share and the maximum write speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. - file
Num Limit This property is required. String - Supported by the file system file number.
- fs
Size Limit This property is required. String - File system capacity. Unit:
B
. This property is required. String- The name of the file share. Length from
1
to255
characters can contain lowercase letters, digits, (.), (_) Or (-), at the same time, must start with a lowercase letter. - gateway
Id This property is required. String - The ID of the gateway.
- id
This property is required. String - The ID of the Gateway File Share.
- ignore
Delete This property is required. Boolean - Whether to ignore deleted of the gateway file share. After the opening of the Gateway side delete file or delete cloud (OSS) corresponding to the file. Default value:
false
. NOTE: Gateway version >= 1.0.40 above support. - in
Place This property is required. Boolean - Whether debris optimization of the gateway file share. Default value:
false
. - in
Rate This property is required. String - Cache growth. Unit:
B/s
. - index
Id This property is required. String - The ID of the file share.
- kms
Rotate Period This property is required. Integer - File share is enabled to client-side encryption, key rotation period of time. Seconds. 0 represents no rotation. Rotation of the value range:
3600
~86400
. Default value:0
. - lag
Period This property is required. String - The synchronization delay, I.e. gateway local cache sync to Alibaba Cloud Object Storage Service (oss) of the delay time. Unit:
Seconds
. Value range:5
~120
. Default value:5
. NOTE: Gateway version >= 1.0.40 above support. - local
Path This property is required. String - The cache disk inside the device name.
- mns
Health This property is required. String - The messages from the queue health types. Valid values:
TopicAndQueueFailure
: A Message Queuing message theme can be accessed during the black hole period.TopicFailure
: a message theme can be accessed during the black hole period.MNSFullSyncInit
: full synchronization wait.MNSFullSyncing
: full synchronization in progress.QueueFailure
: a message queue can be accessed during the black hole period.MNSNotEnabled
: Top speed synchronization is not enabled.MNSHealthy
: sync fine. - nfs
V4Optimization This property is required. Boolean - The set up gateway file share NFS protocol, whether to enable NFS v4 optimization improve Mount Upload efficiency. Default value:
false
. NOTE: turns on after I will not support NFS v3 mount the filesystem on a. Gateway version >= 1.2.0 above support. - obsolete
Buckets This property is required. String - Multi-Bucket, removing the Bucket.
- oss
Bucket Name This property is required. String - The name of the Bucket.
- oss
Bucket Ssl This property is required. Boolean - Whether they are using SSL connect to OSS Bucket.
- oss
Endpoint This property is required. String - The set up gateway file share corresponds to the Object Storage SERVICE (OSS), Bucket Endpoint. NOTE: distinguish between intranet and internet Endpoint. We recommend that if the OSS Bucket and the gateway is in the same Region is use the RDS intranet IP Endpoint:oss-cn-hangzhou-internal.aliyuncs.com.
- oss
Health This property is required. String - The OSS Bucket of type. Valid values:
BucketHealthy
: OSS connectivity.BucketAccessDenied
: OBJECT STORAGE Service (OSS) access to an exception.BucketMiscFailure
: OBJECT STORAGE Service (OSS) access to additional exception.BucketNetworkFailure
: OBJECT STORAGE Service (OSS) access network an exception.BucketNotExist
: OSS Bucket does not exist.Nothing returns
: We may not have ever known existed. - oss
Used This property is required. String - For a cloud-based data is. Unit:
B
. - out
Rate This property is required. String - Upload speed. Unit:
B/s
. - partial
Sync Paths This property is required. String - In part mode, the directory path group JSON format.
- path
Prefix This property is required. String - The prefix of the OSS.
- polling
Interval This property is required. Integer - The reverse synchronization time intervals of the gateway file share. Value range:
15
~36000
. NOTE: in copy mode + reverse synchronization is enabled Download file data, value range:3600
~36000
. - protocol
This property is required. String - Share types. Valid values:
SMB
,NFS
. - remaining
Meta Space This property is required. String - You can use the metadata space. Unit:
B
. - remote
Sync This property is required. Boolean - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - remote
Sync Download This property is required. Boolean - Copy mode, whether to download the file data. Default value:
false
. NOTE: only when the shared opens the reverse synchronization or acceded to by the speed synchronization group, this parameter will not take effect. - ro
Client List This property is required. String - The read-only client list. When Protocol NFS is returned when the status is.
- ro
User List This property is required. String - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- rw
Client List This property is required. String - Read and write the client list. When Protocol NFS is returned when the status is.
- rw
User List This property is required. String - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- server
Side Cmk This property is required. String - File share is enabled server-side encryption, encryption used by the KMS key.
- server
Side Encryption This property is required. Boolean - If the OSS Bucket side encryption.
- size
This property is required. String - The caching capacity. Unit:
B
. - squash
This property is required. String - The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - state
This property is required. String - File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - support
Archive This property is required. Boolean - Whether to support the archive transparent read.
- sync
Progress This property is required. Integer - Full synchronization progress. When the share has been added for a synchronization group, the return parameters are valid, that shared full synchronization progress (0~100).
-2
: indicates that share the Gateway version does not support this feature.-1
: the share does not occur full synchronization. - total
Download This property is required. String - The OSS Bucket to the Gateway total downloads. Unit:
B
. - total
Upload This property is required. String - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - transfer
Acceleration This property is required. Boolean - The set up gateway file share whether to enable transmission acceleration needs corresponding OSS Bucket enabled transport acceleration. NOTE: Gateway version >= 1.3.0 above support.
- used
This property is required. String - Used cache. Unit:
B
. - windows
Acl This property is required. Boolean - The set up gateway file share Server Message Block (SMB) protocol, whether to enable by Windows access list (requires AD domain) the permissions control. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support.
- access
Based Enumeration This property is required. boolean - The set up gateway file share Server Message Block (SMB) protocol, whether to enable Windows ABE, the prime minister, need windowsAcl parameter is set to true in the entry into force of. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support. - address
This property is required. string - Share the private IP address of the RDS instance.
- backend
Limit This property is required. number - The set up gateway file share Max upload speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. NOTE: at the same time if you have to limit the maximum write speed, maximum upload speed is no less than the maximum write speed. - browsable
This property is required. boolean - The set up gateway file share Server Message Block (SMB) protocol whether browsable (that is, in the network neighborhood of whether you can find). The parameters in the NFS protocol not valid under. Default value:
true
. - bucket
Infos This property is required. string - Multi-Bucket information.
- buckets
Stub This property is required. boolean - Whether there are multiple buckets.
- bypass
Cache Read This property is required. boolean - Direct reading OSS of the gateway file share.
- cache
Mode This property is required. string - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- client
Side Cmk This property is required. string - File share is enabled to client-side encryption, the encryption by the use of the KMS key. NOTE: note: This KMS key must be the gateway and is in the same Region.
- client
Side Encryption This property is required. boolean - Whether to enabled to client-side encryption of the gateway file share. Default value:
false
. NOTE: need to contact us open whitelist before you can the settings, and only supports enhanced more than online gateway, at the same time, server-side encryption and to client-side encryption can not simultaneously configuration. - direct
Io This property is required. boolean - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - disk
Id This property is required. string - The ID of the disk.
- disk
Type This property is required. string - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - download
Limit This property is required. number - The set up gateway file share maximum download speed. Unit:
MB/s
.0
means unlimited. Value range:0
~1280
. NOTE: only in copy mode and enable download file data can be set. only when the shared opens the reverse synchronization or acceded to by the speed synchronization Group when, this parameter will not take effect. Gateway version >= 1.3.0 above support. - enabled
This property is required. boolean - Shared whether the changes take effect.
- express
Sync Id This property is required. string - Speed synchronization group ID.
- fast
Reclaim This property is required. boolean - The set up gateway file share whether to enable Upload optimization, which is suitable for data pure backup migration scenarios. Default value:
false
. NOTE: Gateway version >= 1.0.39 above support. - fe
Limit This property is required. number - The set up gateway file share and the maximum write speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. - file
Num Limit This property is required. string - Supported by the file system file number.
- fs
Size Limit This property is required. string - File system capacity. Unit:
B
. This property is required. string- The name of the file share. Length from
1
to255
characters can contain lowercase letters, digits, (.), (_) Or (-), at the same time, must start with a lowercase letter. - gateway
Id This property is required. string - The ID of the gateway.
- id
This property is required. string - The ID of the Gateway File Share.
- ignore
Delete This property is required. boolean - Whether to ignore deleted of the gateway file share. After the opening of the Gateway side delete file or delete cloud (OSS) corresponding to the file. Default value:
false
. NOTE: Gateway version >= 1.0.40 above support. - in
Place This property is required. boolean - Whether debris optimization of the gateway file share. Default value:
false
. - in
Rate This property is required. string - Cache growth. Unit:
B/s
. - index
Id This property is required. string - The ID of the file share.
- kms
Rotate Period This property is required. number - File share is enabled to client-side encryption, key rotation period of time. Seconds. 0 represents no rotation. Rotation of the value range:
3600
~86400
. Default value:0
. - lag
Period This property is required. string - The synchronization delay, I.e. gateway local cache sync to Alibaba Cloud Object Storage Service (oss) of the delay time. Unit:
Seconds
. Value range:5
~120
. Default value:5
. NOTE: Gateway version >= 1.0.40 above support. - local
Path This property is required. string - The cache disk inside the device name.
- mns
Health This property is required. string - The messages from the queue health types. Valid values:
TopicAndQueueFailure
: A Message Queuing message theme can be accessed during the black hole period.TopicFailure
: a message theme can be accessed during the black hole period.MNSFullSyncInit
: full synchronization wait.MNSFullSyncing
: full synchronization in progress.QueueFailure
: a message queue can be accessed during the black hole period.MNSNotEnabled
: Top speed synchronization is not enabled.MNSHealthy
: sync fine. - nfs
V4Optimization This property is required. boolean - The set up gateway file share NFS protocol, whether to enable NFS v4 optimization improve Mount Upload efficiency. Default value:
false
. NOTE: turns on after I will not support NFS v3 mount the filesystem on a. Gateway version >= 1.2.0 above support. - obsolete
Buckets This property is required. string - Multi-Bucket, removing the Bucket.
- oss
Bucket Name This property is required. string - The name of the Bucket.
- oss
Bucket Ssl This property is required. boolean - Whether they are using SSL connect to OSS Bucket.
- oss
Endpoint This property is required. string - The set up gateway file share corresponds to the Object Storage SERVICE (OSS), Bucket Endpoint. NOTE: distinguish between intranet and internet Endpoint. We recommend that if the OSS Bucket and the gateway is in the same Region is use the RDS intranet IP Endpoint:oss-cn-hangzhou-internal.aliyuncs.com.
- oss
Health This property is required. string - The OSS Bucket of type. Valid values:
BucketHealthy
: OSS connectivity.BucketAccessDenied
: OBJECT STORAGE Service (OSS) access to an exception.BucketMiscFailure
: OBJECT STORAGE Service (OSS) access to additional exception.BucketNetworkFailure
: OBJECT STORAGE Service (OSS) access network an exception.BucketNotExist
: OSS Bucket does not exist.Nothing returns
: We may not have ever known existed. - oss
Used This property is required. string - For a cloud-based data is. Unit:
B
. - out
Rate This property is required. string - Upload speed. Unit:
B/s
. - partial
Sync Paths This property is required. string - In part mode, the directory path group JSON format.
- path
Prefix This property is required. string - The prefix of the OSS.
- polling
Interval This property is required. number - The reverse synchronization time intervals of the gateway file share. Value range:
15
~36000
. NOTE: in copy mode + reverse synchronization is enabled Download file data, value range:3600
~36000
. - protocol
This property is required. string - Share types. Valid values:
SMB
,NFS
. - remaining
Meta Space This property is required. string - You can use the metadata space. Unit:
B
. - remote
Sync This property is required. boolean - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - remote
Sync Download This property is required. boolean - Copy mode, whether to download the file data. Default value:
false
. NOTE: only when the shared opens the reverse synchronization or acceded to by the speed synchronization group, this parameter will not take effect. - ro
Client List This property is required. string - The read-only client list. When Protocol NFS is returned when the status is.
- ro
User List This property is required. string - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- rw
Client List This property is required. string - Read and write the client list. When Protocol NFS is returned when the status is.
- rw
User List This property is required. string - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- server
Side Cmk This property is required. string - File share is enabled server-side encryption, encryption used by the KMS key.
- server
Side Encryption This property is required. boolean - If the OSS Bucket side encryption.
- size
This property is required. string - The caching capacity. Unit:
B
. - squash
This property is required. string - The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - state
This property is required. string - File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - support
Archive This property is required. boolean - Whether to support the archive transparent read.
- sync
Progress This property is required. number - Full synchronization progress. When the share has been added for a synchronization group, the return parameters are valid, that shared full synchronization progress (0~100).
-2
: indicates that share the Gateway version does not support this feature.-1
: the share does not occur full synchronization. - total
Download This property is required. string - The OSS Bucket to the Gateway total downloads. Unit:
B
. - total
Upload This property is required. string - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - transfer
Acceleration This property is required. boolean - The set up gateway file share whether to enable transmission acceleration needs corresponding OSS Bucket enabled transport acceleration. NOTE: Gateway version >= 1.3.0 above support.
- used
This property is required. string - Used cache. Unit:
B
. - windows
Acl This property is required. boolean - The set up gateway file share Server Message Block (SMB) protocol, whether to enable by Windows access list (requires AD domain) the permissions control. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support.
- access_
based_ enumeration This property is required. bool - The set up gateway file share Server Message Block (SMB) protocol, whether to enable Windows ABE, the prime minister, need windowsAcl parameter is set to true in the entry into force of. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support. - address
This property is required. str - Share the private IP address of the RDS instance.
- backend_
limit This property is required. int - The set up gateway file share Max upload speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. NOTE: at the same time if you have to limit the maximum write speed, maximum upload speed is no less than the maximum write speed. - browsable
This property is required. bool - The set up gateway file share Server Message Block (SMB) protocol whether browsable (that is, in the network neighborhood of whether you can find). The parameters in the NFS protocol not valid under. Default value:
true
. - bucket_
infos This property is required. str - Multi-Bucket information.
- buckets_
stub This property is required. bool - Whether there are multiple buckets.
- bypass_
cache_ read This property is required. bool - Direct reading OSS of the gateway file share.
- cache_
mode This property is required. str - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- client_
side_ cmk This property is required. str - File share is enabled to client-side encryption, the encryption by the use of the KMS key. NOTE: note: This KMS key must be the gateway and is in the same Region.
- client_
side_ encryption This property is required. bool - Whether to enabled to client-side encryption of the gateway file share. Default value:
false
. NOTE: need to contact us open whitelist before you can the settings, and only supports enhanced more than online gateway, at the same time, server-side encryption and to client-side encryption can not simultaneously configuration. - direct_
io This property is required. bool - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - disk_
id This property is required. str - The ID of the disk.
- disk_
type This property is required. str - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - download_
limit This property is required. int - The set up gateway file share maximum download speed. Unit:
MB/s
.0
means unlimited. Value range:0
~1280
. NOTE: only in copy mode and enable download file data can be set. only when the shared opens the reverse synchronization or acceded to by the speed synchronization Group when, this parameter will not take effect. Gateway version >= 1.3.0 above support. - enabled
This property is required. bool - Shared whether the changes take effect.
- express_
sync_ id This property is required. str - Speed synchronization group ID.
- fast_
reclaim This property is required. bool - The set up gateway file share whether to enable Upload optimization, which is suitable for data pure backup migration scenarios. Default value:
false
. NOTE: Gateway version >= 1.0.39 above support. - fe_
limit This property is required. int - The set up gateway file share and the maximum write speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. - file_
num_ limit This property is required. str - Supported by the file system file number.
- fs_
size_ limit This property is required. str - File system capacity. Unit:
B
. This property is required. str- The name of the file share. Length from
1
to255
characters can contain lowercase letters, digits, (.), (_) Or (-), at the same time, must start with a lowercase letter. - gateway_
id This property is required. str - The ID of the gateway.
- id
This property is required. str - The ID of the Gateway File Share.
- ignore_
delete This property is required. bool - Whether to ignore deleted of the gateway file share. After the opening of the Gateway side delete file or delete cloud (OSS) corresponding to the file. Default value:
false
. NOTE: Gateway version >= 1.0.40 above support. - in_
place This property is required. bool - Whether debris optimization of the gateway file share. Default value:
false
. - in_
rate This property is required. str - Cache growth. Unit:
B/s
. - index_
id This property is required. str - The ID of the file share.
- kms_
rotate_ period This property is required. int - File share is enabled to client-side encryption, key rotation period of time. Seconds. 0 represents no rotation. Rotation of the value range:
3600
~86400
. Default value:0
. - lag_
period This property is required. str - The synchronization delay, I.e. gateway local cache sync to Alibaba Cloud Object Storage Service (oss) of the delay time. Unit:
Seconds
. Value range:5
~120
. Default value:5
. NOTE: Gateway version >= 1.0.40 above support. - local_
path This property is required. str - The cache disk inside the device name.
- mns_
health This property is required. str - The messages from the queue health types. Valid values:
TopicAndQueueFailure
: A Message Queuing message theme can be accessed during the black hole period.TopicFailure
: a message theme can be accessed during the black hole period.MNSFullSyncInit
: full synchronization wait.MNSFullSyncing
: full synchronization in progress.QueueFailure
: a message queue can be accessed during the black hole period.MNSNotEnabled
: Top speed synchronization is not enabled.MNSHealthy
: sync fine. - nfs_
v4_ optimization This property is required. bool - The set up gateway file share NFS protocol, whether to enable NFS v4 optimization improve Mount Upload efficiency. Default value:
false
. NOTE: turns on after I will not support NFS v3 mount the filesystem on a. Gateway version >= 1.2.0 above support. - obsolete_
buckets This property is required. str - Multi-Bucket, removing the Bucket.
- oss_
bucket_ name This property is required. str - The name of the Bucket.
- oss_
bucket_ ssl This property is required. bool - Whether they are using SSL connect to OSS Bucket.
- oss_
endpoint This property is required. str - The set up gateway file share corresponds to the Object Storage SERVICE (OSS), Bucket Endpoint. NOTE: distinguish between intranet and internet Endpoint. We recommend that if the OSS Bucket and the gateway is in the same Region is use the RDS intranet IP Endpoint:oss-cn-hangzhou-internal.aliyuncs.com.
- oss_
health This property is required. str - The OSS Bucket of type. Valid values:
BucketHealthy
: OSS connectivity.BucketAccessDenied
: OBJECT STORAGE Service (OSS) access to an exception.BucketMiscFailure
: OBJECT STORAGE Service (OSS) access to additional exception.BucketNetworkFailure
: OBJECT STORAGE Service (OSS) access network an exception.BucketNotExist
: OSS Bucket does not exist.Nothing returns
: We may not have ever known existed. - oss_
used This property is required. str - For a cloud-based data is. Unit:
B
. - out_
rate This property is required. str - Upload speed. Unit:
B/s
. - partial_
sync_ paths This property is required. str - In part mode, the directory path group JSON format.
- path_
prefix This property is required. str - The prefix of the OSS.
- polling_
interval This property is required. int - The reverse synchronization time intervals of the gateway file share. Value range:
15
~36000
. NOTE: in copy mode + reverse synchronization is enabled Download file data, value range:3600
~36000
. - protocol
This property is required. str - Share types. Valid values:
SMB
,NFS
. - remaining_
meta_ space This property is required. str - You can use the metadata space. Unit:
B
. - remote_
sync This property is required. bool - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - remote_
sync_ download This property is required. bool - Copy mode, whether to download the file data. Default value:
false
. NOTE: only when the shared opens the reverse synchronization or acceded to by the speed synchronization group, this parameter will not take effect. - ro_
client_ list This property is required. str - The read-only client list. When Protocol NFS is returned when the status is.
- ro_
user_ list This property is required. str - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- rw_
client_ list This property is required. str - Read and write the client list. When Protocol NFS is returned when the status is.
- rw_
user_ list This property is required. str - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- server_
side_ cmk This property is required. str - File share is enabled server-side encryption, encryption used by the KMS key.
- server_
side_ encryption This property is required. bool - If the OSS Bucket side encryption.
- size
This property is required. str - The caching capacity. Unit:
B
. - squash
This property is required. str - The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - state
This property is required. str - File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - support_
archive This property is required. bool - Whether to support the archive transparent read.
- sync_
progress This property is required. int - Full synchronization progress. When the share has been added for a synchronization group, the return parameters are valid, that shared full synchronization progress (0~100).
-2
: indicates that share the Gateway version does not support this feature.-1
: the share does not occur full synchronization. - total_
download This property is required. str - The OSS Bucket to the Gateway total downloads. Unit:
B
. - total_
upload This property is required. str - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - transfer_
acceleration This property is required. bool - The set up gateway file share whether to enable transmission acceleration needs corresponding OSS Bucket enabled transport acceleration. NOTE: Gateway version >= 1.3.0 above support.
- used
This property is required. str - Used cache. Unit:
B
. - windows_
acl This property is required. bool - The set up gateway file share Server Message Block (SMB) protocol, whether to enable by Windows access list (requires AD domain) the permissions control. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support.
- access
Based Enumeration This property is required. Boolean - The set up gateway file share Server Message Block (SMB) protocol, whether to enable Windows ABE, the prime minister, need windowsAcl parameter is set to true in the entry into force of. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support. - address
This property is required. String - Share the private IP address of the RDS instance.
- backend
Limit This property is required. Number - The set up gateway file share Max upload speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. NOTE: at the same time if you have to limit the maximum write speed, maximum upload speed is no less than the maximum write speed. - browsable
This property is required. Boolean - The set up gateway file share Server Message Block (SMB) protocol whether browsable (that is, in the network neighborhood of whether you can find). The parameters in the NFS protocol not valid under. Default value:
true
. - bucket
Infos This property is required. String - Multi-Bucket information.
- buckets
Stub This property is required. Boolean - Whether there are multiple buckets.
- bypass
Cache Read This property is required. Boolean - Direct reading OSS of the gateway file share.
- cache
Mode This property is required. String - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- client
Side Cmk This property is required. String - File share is enabled to client-side encryption, the encryption by the use of the KMS key. NOTE: note: This KMS key must be the gateway and is in the same Region.
- client
Side Encryption This property is required. Boolean - Whether to enabled to client-side encryption of the gateway file share. Default value:
false
. NOTE: need to contact us open whitelist before you can the settings, and only supports enhanced more than online gateway, at the same time, server-side encryption and to client-side encryption can not simultaneously configuration. - direct
Io This property is required. Boolean - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - disk
Id This property is required. String - The ID of the disk.
- disk
Type This property is required. String - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - download
Limit This property is required. Number - The set up gateway file share maximum download speed. Unit:
MB/s
.0
means unlimited. Value range:0
~1280
. NOTE: only in copy mode and enable download file data can be set. only when the shared opens the reverse synchronization or acceded to by the speed synchronization Group when, this parameter will not take effect. Gateway version >= 1.3.0 above support. - enabled
This property is required. Boolean - Shared whether the changes take effect.
- express
Sync Id This property is required. String - Speed synchronization group ID.
- fast
Reclaim This property is required. Boolean - The set up gateway file share whether to enable Upload optimization, which is suitable for data pure backup migration scenarios. Default value:
false
. NOTE: Gateway version >= 1.0.39 above support. - fe
Limit This property is required. Number - The set up gateway file share and the maximum write speed. Unit:
MB/s
,0
means unlimited. Value range:0
~1280
. Default value:0
. - file
Num Limit This property is required. String - Supported by the file system file number.
- fs
Size Limit This property is required. String - File system capacity. Unit:
B
. This property is required. String- The name of the file share. Length from
1
to255
characters can contain lowercase letters, digits, (.), (_) Or (-), at the same time, must start with a lowercase letter. - gateway
Id This property is required. String - The ID of the gateway.
- id
This property is required. String - The ID of the Gateway File Share.
- ignore
Delete This property is required. Boolean - Whether to ignore deleted of the gateway file share. After the opening of the Gateway side delete file or delete cloud (OSS) corresponding to the file. Default value:
false
. NOTE: Gateway version >= 1.0.40 above support. - in
Place This property is required. Boolean - Whether debris optimization of the gateway file share. Default value:
false
. - in
Rate This property is required. String - Cache growth. Unit:
B/s
. - index
Id This property is required. String - The ID of the file share.
- kms
Rotate Period This property is required. Number - File share is enabled to client-side encryption, key rotation period of time. Seconds. 0 represents no rotation. Rotation of the value range:
3600
~86400
. Default value:0
. - lag
Period This property is required. String - The synchronization delay, I.e. gateway local cache sync to Alibaba Cloud Object Storage Service (oss) of the delay time. Unit:
Seconds
. Value range:5
~120
. Default value:5
. NOTE: Gateway version >= 1.0.40 above support. - local
Path This property is required. String - The cache disk inside the device name.
- mns
Health This property is required. String - The messages from the queue health types. Valid values:
TopicAndQueueFailure
: A Message Queuing message theme can be accessed during the black hole period.TopicFailure
: a message theme can be accessed during the black hole period.MNSFullSyncInit
: full synchronization wait.MNSFullSyncing
: full synchronization in progress.QueueFailure
: a message queue can be accessed during the black hole period.MNSNotEnabled
: Top speed synchronization is not enabled.MNSHealthy
: sync fine. - nfs
V4Optimization This property is required. Boolean - The set up gateway file share NFS protocol, whether to enable NFS v4 optimization improve Mount Upload efficiency. Default value:
false
. NOTE: turns on after I will not support NFS v3 mount the filesystem on a. Gateway version >= 1.2.0 above support. - obsolete
Buckets This property is required. String - Multi-Bucket, removing the Bucket.
- oss
Bucket Name This property is required. String - The name of the Bucket.
- oss
Bucket Ssl This property is required. Boolean - Whether they are using SSL connect to OSS Bucket.
- oss
Endpoint This property is required. String - The set up gateway file share corresponds to the Object Storage SERVICE (OSS), Bucket Endpoint. NOTE: distinguish between intranet and internet Endpoint. We recommend that if the OSS Bucket and the gateway is in the same Region is use the RDS intranet IP Endpoint:oss-cn-hangzhou-internal.aliyuncs.com.
- oss
Health This property is required. String - The OSS Bucket of type. Valid values:
BucketHealthy
: OSS connectivity.BucketAccessDenied
: OBJECT STORAGE Service (OSS) access to an exception.BucketMiscFailure
: OBJECT STORAGE Service (OSS) access to additional exception.BucketNetworkFailure
: OBJECT STORAGE Service (OSS) access network an exception.BucketNotExist
: OSS Bucket does not exist.Nothing returns
: We may not have ever known existed. - oss
Used This property is required. String - For a cloud-based data is. Unit:
B
. - out
Rate This property is required. String - Upload speed. Unit:
B/s
. - partial
Sync Paths This property is required. String - In part mode, the directory path group JSON format.
- path
Prefix This property is required. String - The prefix of the OSS.
- polling
Interval This property is required. Number - The reverse synchronization time intervals of the gateway file share. Value range:
15
~36000
. NOTE: in copy mode + reverse synchronization is enabled Download file data, value range:3600
~36000
. - protocol
This property is required. String - Share types. Valid values:
SMB
,NFS
. - remaining
Meta Space This property is required. String - You can use the metadata space. Unit:
B
. - remote
Sync This property is required. Boolean - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - remote
Sync Download This property is required. Boolean - Copy mode, whether to download the file data. Default value:
false
. NOTE: only when the shared opens the reverse synchronization or acceded to by the speed synchronization group, this parameter will not take effect. - ro
Client List This property is required. String - The read-only client list. When Protocol NFS is returned when the status is.
- ro
User List This property is required. String - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- rw
Client List This property is required. String - Read and write the client list. When Protocol NFS is returned when the status is.
- rw
User List This property is required. String - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- server
Side Cmk This property is required. String - File share is enabled server-side encryption, encryption used by the KMS key.
- server
Side Encryption This property is required. Boolean - If the OSS Bucket side encryption.
- size
This property is required. String - The caching capacity. Unit:
B
. - squash
This property is required. String - The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - state
This property is required. String - File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - support
Archive This property is required. Boolean - Whether to support the archive transparent read.
- sync
Progress This property is required. Number - Full synchronization progress. When the share has been added for a synchronization group, the return parameters are valid, that shared full synchronization progress (0~100).
-2
: indicates that share the Gateway version does not support this feature.-1
: the share does not occur full synchronization. - total
Download This property is required. String - The OSS Bucket to the Gateway total downloads. Unit:
B
. - total
Upload This property is required. String - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - transfer
Acceleration This property is required. Boolean - The set up gateway file share whether to enable transmission acceleration needs corresponding OSS Bucket enabled transport acceleration. NOTE: Gateway version >= 1.3.0 above support.
- used
This property is required. String - Used cache. Unit:
B
. - windows
Acl This property is required. Boolean - The set up gateway file share Server Message Block (SMB) protocol, whether to enable by Windows access list (requires AD domain) the permissions control. Default value:
false
. NOTE: Gateway version >= 1.0.45 above support.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.