Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 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)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:cloudstoragegateway/getGatewayFileShares:getGatewayFileShares
arguments:
# arguments dictionary
The following arguments are supported:
- Gateway
Id string - The ID of the gateway.
- Ids List<string>
- A list of Gateway File Share IDs.
- Name
Regex string - 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 string - The ID of the gateway.
- Ids []string
- A list of Gateway File Share IDs.
- Name
Regex string - 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 String - The ID of the gateway.
- ids List<String>
- A list of Gateway File Share IDs.
- name
Regex String - 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 string - The ID of the gateway.
- ids string[]
- A list of Gateway File Share IDs.
- name
Regex string - 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 str - The ID of the gateway.
- ids Sequence[str]
- A list of Gateway File Share IDs.
- name_
regex str - 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 String - The ID of the gateway.
- ids List<String>
- A list of Gateway File Share IDs.
- name
Regex String - 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 boolEnumeration - 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 string
- Share the private IP address of the RDS instance.
- Backend
Limit 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 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 string - Multi-Bucket information.
- Buckets
Stub bool - Whether there are multiple buckets.
- Bypass
Cache boolRead - Direct reading OSS of the gateway file share.
- Cache
Mode string - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- Client
Side stringCmk - 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 boolEncryption - 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 bool - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - Disk
Id string - The ID of the disk.
- Disk
Type string - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - Download
Limit 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 bool
- Shared whether the changes take effect.
- Express
Sync stringId - Speed synchronization group ID.
- Fast
Reclaim 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 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 stringLimit - Supported by the file system file number.
- Fs
Size stringLimit - File system capacity. Unit:
B
. - 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 string - The ID of the gateway.
- Id string
- The ID of the Gateway File Share.
- Ignore
Delete 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 bool - Whether debris optimization of the gateway file share. Default value:
false
. - In
Rate string - Cache growth. Unit:
B/s
. - Index
Id string - The ID of the file share.
- Kms
Rotate intPeriod - 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 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 string - The cache disk inside the device name.
- Mns
Health 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 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 string - Multi-Bucket, removing the Bucket.
- Oss
Bucket stringName - The name of the Bucket.
- Oss
Bucket boolSsl - Whether they are using SSL connect to OSS Bucket.
- Oss
Endpoint 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 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 string - For a cloud-based data is. Unit:
B
. - Out
Rate string - Upload speed. Unit:
B/s
. - Partial
Sync stringPaths - In part mode, the directory path group JSON format.
- Path
Prefix string - The prefix of the OSS.
- Polling
Interval 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 string
- Share types. Valid values:
SMB
,NFS
. - Remaining
Meta stringSpace - You can use the metadata space. Unit:
B
. - Remote
Sync bool - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - Remote
Sync boolDownload - 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 stringList - The read-only client list. When Protocol NFS is returned when the status is.
- Ro
User stringList - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- Rw
Client stringList - Read and write the client list. When Protocol NFS is returned when the status is.
- Rw
User stringList - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- Server
Side stringCmk - File share is enabled server-side encryption, encryption used by the KMS key.
- Server
Side boolEncryption - If the OSS Bucket side encryption.
- Size string
- The caching capacity. Unit:
B
. - Squash string
- The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - State string
- File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - Support
Archive bool - Whether to support the archive transparent read.
- Sync
Progress 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 string - The OSS Bucket to the Gateway total downloads. Unit:
B
. - Total
Upload string - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - Transfer
Acceleration 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 string
- Used cache. Unit:
B
. - Windows
Acl 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 boolEnumeration - 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 string
- Share the private IP address of the RDS instance.
- Backend
Limit 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 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 string - Multi-Bucket information.
- Buckets
Stub bool - Whether there are multiple buckets.
- Bypass
Cache boolRead - Direct reading OSS of the gateway file share.
- Cache
Mode string - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- Client
Side stringCmk - 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 boolEncryption - 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 bool - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - Disk
Id string - The ID of the disk.
- Disk
Type string - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - Download
Limit 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 bool
- Shared whether the changes take effect.
- Express
Sync stringId - Speed synchronization group ID.
- Fast
Reclaim 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 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 stringLimit - Supported by the file system file number.
- Fs
Size stringLimit - File system capacity. Unit:
B
. - 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 string - The ID of the gateway.
- Id string
- The ID of the Gateway File Share.
- Ignore
Delete 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 bool - Whether debris optimization of the gateway file share. Default value:
false
. - In
Rate string - Cache growth. Unit:
B/s
. - Index
Id string - The ID of the file share.
- Kms
Rotate intPeriod - 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 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 string - The cache disk inside the device name.
- Mns
Health 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 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 string - Multi-Bucket, removing the Bucket.
- Oss
Bucket stringName - The name of the Bucket.
- Oss
Bucket boolSsl - Whether they are using SSL connect to OSS Bucket.
- Oss
Endpoint 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 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 string - For a cloud-based data is. Unit:
B
. - Out
Rate string - Upload speed. Unit:
B/s
. - Partial
Sync stringPaths - In part mode, the directory path group JSON format.
- Path
Prefix string - The prefix of the OSS.
- Polling
Interval 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 string
- Share types. Valid values:
SMB
,NFS
. - Remaining
Meta stringSpace - You can use the metadata space. Unit:
B
. - Remote
Sync bool - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - Remote
Sync boolDownload - 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 stringList - The read-only client list. When Protocol NFS is returned when the status is.
- Ro
User stringList - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- Rw
Client stringList - Read and write the client list. When Protocol NFS is returned when the status is.
- Rw
User stringList - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- Server
Side stringCmk - File share is enabled server-side encryption, encryption used by the KMS key.
- Server
Side boolEncryption - If the OSS Bucket side encryption.
- Size string
- The caching capacity. Unit:
B
. - Squash string
- The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - State string
- File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - Support
Archive bool - Whether to support the archive transparent read.
- Sync
Progress 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 string - The OSS Bucket to the Gateway total downloads. Unit:
B
. - Total
Upload string - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - Transfer
Acceleration 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 string
- Used cache. Unit:
B
. - Windows
Acl 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 BooleanEnumeration - 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 String
- Share the private IP address of the RDS instance.
- backend
Limit 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 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 String - Multi-Bucket information.
- buckets
Stub Boolean - Whether there are multiple buckets.
- bypass
Cache BooleanRead - Direct reading OSS of the gateway file share.
- cache
Mode String - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- client
Side StringCmk - 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 BooleanEncryption - 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 Boolean - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - disk
Id String - The ID of the disk.
- disk
Type String - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - download
Limit 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 Boolean
- Shared whether the changes take effect.
- express
Sync StringId - Speed synchronization group ID.
- fast
Reclaim 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 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 StringLimit - Supported by the file system file number.
- fs
Size StringLimit - File system capacity. Unit:
B
. - 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 String - The ID of the gateway.
- id String
- The ID of the Gateway File Share.
- ignore
Delete 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 Boolean - Whether debris optimization of the gateway file share. Default value:
false
. - in
Rate String - Cache growth. Unit:
B/s
. - index
Id String - The ID of the file share.
- kms
Rotate IntegerPeriod - 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 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 String - The cache disk inside the device name.
- mns
Health 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 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 String - Multi-Bucket, removing the Bucket.
- oss
Bucket StringName - The name of the Bucket.
- oss
Bucket BooleanSsl - Whether they are using SSL connect to OSS Bucket.
- oss
Endpoint 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 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 String - For a cloud-based data is. Unit:
B
. - out
Rate String - Upload speed. Unit:
B/s
. - partial
Sync StringPaths - In part mode, the directory path group JSON format.
- path
Prefix String - The prefix of the OSS.
- polling
Interval 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 String
- Share types. Valid values:
SMB
,NFS
. - remaining
Meta StringSpace - You can use the metadata space. Unit:
B
. - remote
Sync Boolean - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - remote
Sync BooleanDownload - 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 StringList - The read-only client list. When Protocol NFS is returned when the status is.
- ro
User StringList - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- rw
Client StringList - Read and write the client list. When Protocol NFS is returned when the status is.
- rw
User StringList - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- server
Side StringCmk - File share is enabled server-side encryption, encryption used by the KMS key.
- server
Side BooleanEncryption - If the OSS Bucket side encryption.
- size String
- The caching capacity. Unit:
B
. - squash String
- The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - state String
- File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - support
Archive Boolean - Whether to support the archive transparent read.
- sync
Progress 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 String - The OSS Bucket to the Gateway total downloads. Unit:
B
. - total
Upload String - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - transfer
Acceleration 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 String
- Used cache. Unit:
B
. - windows
Acl 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 booleanEnumeration - 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 string
- Share the private IP address of the RDS instance.
- backend
Limit 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 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 string - Multi-Bucket information.
- buckets
Stub boolean - Whether there are multiple buckets.
- bypass
Cache booleanRead - Direct reading OSS of the gateway file share.
- cache
Mode string - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- client
Side stringCmk - 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 booleanEncryption - 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 boolean - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - disk
Id string - The ID of the disk.
- disk
Type string - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - download
Limit 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 boolean
- Shared whether the changes take effect.
- express
Sync stringId - Speed synchronization group ID.
- fast
Reclaim 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 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 stringLimit - Supported by the file system file number.
- fs
Size stringLimit - File system capacity. Unit:
B
. - 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 string - The ID of the gateway.
- id string
- The ID of the Gateway File Share.
- ignore
Delete 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 boolean - Whether debris optimization of the gateway file share. Default value:
false
. - in
Rate string - Cache growth. Unit:
B/s
. - index
Id string - The ID of the file share.
- kms
Rotate numberPeriod - 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 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 string - The cache disk inside the device name.
- mns
Health 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 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 string - Multi-Bucket, removing the Bucket.
- oss
Bucket stringName - The name of the Bucket.
- oss
Bucket booleanSsl - Whether they are using SSL connect to OSS Bucket.
- oss
Endpoint 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 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 string - For a cloud-based data is. Unit:
B
. - out
Rate string - Upload speed. Unit:
B/s
. - partial
Sync stringPaths - In part mode, the directory path group JSON format.
- path
Prefix string - The prefix of the OSS.
- polling
Interval 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 string
- Share types. Valid values:
SMB
,NFS
. - remaining
Meta stringSpace - You can use the metadata space. Unit:
B
. - remote
Sync boolean - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - remote
Sync booleanDownload - 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 stringList - The read-only client list. When Protocol NFS is returned when the status is.
- ro
User stringList - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- rw
Client stringList - Read and write the client list. When Protocol NFS is returned when the status is.
- rw
User stringList - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- server
Side stringCmk - File share is enabled server-side encryption, encryption used by the KMS key.
- server
Side booleanEncryption - If the OSS Bucket side encryption.
- size string
- The caching capacity. Unit:
B
. - squash string
- The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - state string
- File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - support
Archive boolean - Whether to support the archive transparent read.
- sync
Progress 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 string - The OSS Bucket to the Gateway total downloads. Unit:
B
. - total
Upload string - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - transfer
Acceleration 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 string
- Used cache. Unit:
B
. - windows
Acl 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_ boolenumeration - 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 str
- Share the private IP address of the RDS instance.
- backend_
limit 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 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 str - Multi-Bucket information.
- buckets_
stub bool - Whether there are multiple buckets.
- bypass_
cache_ boolread - Direct reading OSS of the gateway file share.
- cache_
mode str - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- client_
side_ strcmk - 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_ boolencryption - 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 bool - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - disk_
id str - The ID of the disk.
- disk_
type str - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - download_
limit 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 bool
- Shared whether the changes take effect.
- express_
sync_ strid - Speed synchronization group ID.
- fast_
reclaim 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 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_ strlimit - Supported by the file system file number.
- fs_
size_ strlimit - File system capacity. Unit:
B
. - 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 str - The ID of the gateway.
- id str
- The ID of the Gateway File Share.
- ignore_
delete 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 bool - Whether debris optimization of the gateway file share. Default value:
false
. - in_
rate str - Cache growth. Unit:
B/s
. - index_
id str - The ID of the file share.
- kms_
rotate_ intperiod - 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 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 str - The cache disk inside the device name.
- mns_
health 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_ booloptimization - 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 str - Multi-Bucket, removing the Bucket.
- oss_
bucket_ strname - The name of the Bucket.
- oss_
bucket_ boolssl - Whether they are using SSL connect to OSS Bucket.
- oss_
endpoint 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 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 str - For a cloud-based data is. Unit:
B
. - out_
rate str - Upload speed. Unit:
B/s
. - partial_
sync_ strpaths - In part mode, the directory path group JSON format.
- path_
prefix str - The prefix of the OSS.
- polling_
interval 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 str
- Share types. Valid values:
SMB
,NFS
. - remaining_
meta_ strspace - You can use the metadata space. Unit:
B
. - remote_
sync bool - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - remote_
sync_ booldownload - 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_ strlist - The read-only client list. When Protocol NFS is returned when the status is.
- ro_
user_ strlist - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- rw_
client_ strlist - Read and write the client list. When Protocol NFS is returned when the status is.
- rw_
user_ strlist - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- server_
side_ strcmk - File share is enabled server-side encryption, encryption used by the KMS key.
- server_
side_ boolencryption - If the OSS Bucket side encryption.
- size str
- The caching capacity. Unit:
B
. - squash str
- The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - state str
- File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - support_
archive bool - Whether to support the archive transparent read.
- sync_
progress 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 str - The OSS Bucket to the Gateway total downloads. Unit:
B
. - total_
upload str - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - transfer_
acceleration 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 str
- Used cache. Unit:
B
. - windows_
acl 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 BooleanEnumeration - 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 String
- Share the private IP address of the RDS instance.
- backend
Limit 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 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 String - Multi-Bucket information.
- buckets
Stub Boolean - Whether there are multiple buckets.
- bypass
Cache BooleanRead - Direct reading OSS of the gateway file share.
- cache
Mode String - The cache mode of the gateway file share. Value range: Cache: cached mode. Sync: replication mode are available.
- client
Side StringCmk - 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 BooleanEncryption - 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 Boolean - Whether directio (direct I/O data transfer) is enabled for file share. Default:
false
. - disk
Id String - The ID of the disk.
- disk
Type String - The cache disk type. Valid values:
cloud_efficiency
: Ultra cloud disk.cloud_ssd
:SSD cloud disk. - download
Limit 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 Boolean
- Shared whether the changes take effect.
- express
Sync StringId - Speed synchronization group ID.
- fast
Reclaim 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 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 StringLimit - Supported by the file system file number.
- fs
Size StringLimit - File system capacity. Unit:
B
. - 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 String - The ID of the gateway.
- id String
- The ID of the Gateway File Share.
- ignore
Delete 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 Boolean - Whether debris optimization of the gateway file share. Default value:
false
. - in
Rate String - Cache growth. Unit:
B/s
. - index
Id String - The ID of the file share.
- kms
Rotate NumberPeriod - 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 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 String - The cache disk inside the device name.
- mns
Health 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 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 String - Multi-Bucket, removing the Bucket.
- oss
Bucket StringName - The name of the Bucket.
- oss
Bucket BooleanSsl - Whether they are using SSL connect to OSS Bucket.
- oss
Endpoint 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 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 String - For a cloud-based data is. Unit:
B
. - out
Rate String - Upload speed. Unit:
B/s
. - partial
Sync StringPaths - In part mode, the directory path group JSON format.
- path
Prefix String - The prefix of the OSS.
- polling
Interval 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 String
- Share types. Valid values:
SMB
,NFS
. - remaining
Meta StringSpace - You can use the metadata space. Unit:
B
. - remote
Sync Boolean - Whether to enable reverse synchronization of the gateway file share. Default value:
false
. - remote
Sync BooleanDownload - 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 StringList - The read-only client list. When Protocol NFS is returned when the status is.
- ro
User StringList - The read-only client list. When Protocol for Server Message Block (SMB) to go back to.
- rw
Client StringList - Read and write the client list. When Protocol NFS is returned when the status is.
- rw
User StringList - Read-write user list. When Protocol for Server Message Block (SMB) to go back to.
- server
Side StringCmk - File share is enabled server-side encryption, encryption used by the KMS key.
- server
Side BooleanEncryption - If the OSS Bucket side encryption.
- size String
- The caching capacity. Unit:
B
. - squash String
- The set up gateway file share NFS protocol user mapping. Valid values:
none
,root_squash
,all_squash
,all_anonymous
. Default value:none
. - state String
- File synchronization types. Valid values:
clean
,dirty
.clean
: synchronization is complete.dirty
: synchronization has not been completed. - support
Archive Boolean - Whether to support the archive transparent read.
- sync
Progress 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 String - The OSS Bucket to the Gateway total downloads. Unit:
B
. - total
Upload String - The OSS Bucket to the Gateway total Upload amount. Unit:
B
. - transfer
Acceleration 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 String
- Used cache. Unit:
B
. - windows
Acl 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.