Skip to content

Commit 125850c

Browse files
author
awstools
committed
feat(client-datasync): With this launch, we are giving customers the ability to use older SMB protocol versions, enabling them to use DataSync to copy data to and from their legacy storage arrays.
1 parent 62c8b91 commit 125850c

File tree

9 files changed

+840
-1569
lines changed

9 files changed

+840
-1569
lines changed

clients/client-datasync/src/DataSync.ts

+15-18
Original file line numberDiff line numberDiff line change
@@ -538,11 +538,8 @@ export class DataSync extends DataSyncClient {
538538
}
539539

540540
/**
541-
* <p>Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer.</p>
542-
* <p>For
543-
* more information, see
544-
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-locations-cli.html#create-location-s3-cli">Create an Amazon S3 location</a>
545-
* in the <i>DataSync User Guide</i>.</p>
541+
* <p>Creates an endpoint for an Amazon S3 bucket that DataSync can
542+
* access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-locations-cli.html#create-location-s3-cli">Create an Amazon S3 location</a>.</p>
546543
*/
547544
public createLocationS3(
548545
args: CreateLocationS3CommandInput,
@@ -574,8 +571,7 @@ export class DataSync extends DataSyncClient {
574571
}
575572

576573
/**
577-
* <p>Defines a file system on a Server Message Block (SMB) server that can be read from or
578-
* written to.</p>
574+
* <p>Creates an endpoint for a Server Message Block (SMB) file server that DataSync can access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html">Creating an SMB location</a>.</p>
579575
*/
580576
public createLocationSmb(
581577
args: CreateLocationSmbCommandInput,
@@ -724,9 +720,7 @@ export class DataSync extends DataSyncClient {
724720
}
725721

726722
/**
727-
* <p>Returns metadata such as the name, the network interfaces, and the status (that is,
728-
* whether the agent is running or not) for an agent. To specify which agent to describe, use the
729-
* Amazon Resource Name (ARN) of the agent in your request. </p>
723+
* <p>Returns metadata about an DataSync agent, such as its name, endpoint type, and status.</p>
730724
*/
731725
public describeAgent(
732726
args: DescribeAgentCommandInput,
@@ -1149,14 +1143,17 @@ export class DataSync extends DataSyncClient {
11491143
}
11501144

11511145
/**
1152-
* <p>Returns a list of agents owned by an Amazon Web Services account in the Amazon Web Services Region specified in the
1153-
* request. The returned list is ordered by agent Amazon Resource Name (ARN).</p>
1154-
* <p>By default, this operation returns a maximum of 100 agents. This operation supports
1155-
* pagination that enables you to optionally reduce the number of agents returned in a
1156-
* response.</p>
1157-
* <p>If you have more agents than are returned in a response (that is, the response returns
1158-
* only a truncated list of your agents), the response contains a marker that you can specify in
1159-
* your next request to fetch the next page of agents.</p>
1146+
* <p>Returns a list of DataSync agents that belong to an Amazon Web Services account in the Amazon Web Services Region specified in the request.</p>
1147+
* <p>With pagination, you can reduce the number of agents returned in a response. If you get
1148+
* a truncated list of agents in a response, the response contains a marker that you can specify
1149+
* in your next request to fetch the next page of agents.</p>
1150+
* <p>
1151+
* <code>ListAgents</code> is eventually consistent. This means the result of running the
1152+
* operation might not reflect that you just created or deleted an agent. For example, if you
1153+
* create an agent with <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_CreateAgent.html">CreateAgent</a> and then
1154+
* immediately run <code>ListAgents</code>, that agent might not show up in the list right away.
1155+
* In situations like this, you can always confirm whether an agent has been created (or deleted)
1156+
* by using <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_DescribeAgent.html">DescribeAgent</a>.</p>
11601157
*/
11611158
public listAgents(args: ListAgentsCommandInput, options?: __HttpHandlerOptions): Promise<ListAgentsCommandOutput>;
11621159
public listAgents(args: ListAgentsCommandInput, cb: (err: any, data?: ListAgentsCommandOutput) => void): void;

clients/client-datasync/src/commands/CreateLocationS3Command.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,8 @@ export interface CreateLocationS3CommandInput extends CreateLocationS3Request {}
2929
export interface CreateLocationS3CommandOutput extends CreateLocationS3Response, __MetadataBearer {}
3030

3131
/**
32-
* <p>Creates an endpoint for an Amazon S3 bucket that DataSync can access for a transfer.</p>
33-
* <p>For
34-
* more information, see
35-
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-locations-cli.html#create-location-s3-cli">Create an Amazon S3 location</a>
36-
* in the <i>DataSync User Guide</i>.</p>
32+
* <p>Creates an endpoint for an Amazon S3 bucket that DataSync can
33+
* access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-locations-cli.html#create-location-s3-cli">Create an Amazon S3 location</a>.</p>
3734
* @example
3835
* Use a bare-bones client and the command you need to make an API call.
3936
* ```javascript

clients/client-datasync/src/commands/CreateLocationSmbCommand.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ export interface CreateLocationSmbCommandInput extends CreateLocationSmbRequest
2929
export interface CreateLocationSmbCommandOutput extends CreateLocationSmbResponse, __MetadataBearer {}
3030

3131
/**
32-
* <p>Defines a file system on a Server Message Block (SMB) server that can be read from or
33-
* written to.</p>
32+
* <p>Creates an endpoint for a Server Message Block (SMB) file server that DataSync can access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html">Creating an SMB location</a>.</p>
3433
* @example
3534
* Use a bare-bones client and the command you need to make an API call.
3635
* ```javascript

clients/client-datasync/src/commands/DescribeAgentCommand.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ export interface DescribeAgentCommandInput extends DescribeAgentRequest {}
2929
export interface DescribeAgentCommandOutput extends DescribeAgentResponse, __MetadataBearer {}
3030

3131
/**
32-
* <p>Returns metadata such as the name, the network interfaces, and the status (that is,
33-
* whether the agent is running or not) for an agent. To specify which agent to describe, use the
34-
* Amazon Resource Name (ARN) of the agent in your request. </p>
32+
* <p>Returns metadata about an DataSync agent, such as its name, endpoint type, and status.</p>
3533
* @example
3634
* Use a bare-bones client and the command you need to make an API call.
3735
* ```javascript

clients/client-datasync/src/commands/ListAgentsCommand.ts

+11-8
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,17 @@ export interface ListAgentsCommandInput extends ListAgentsRequest {}
2929
export interface ListAgentsCommandOutput extends ListAgentsResponse, __MetadataBearer {}
3030

3131
/**
32-
* <p>Returns a list of agents owned by an Amazon Web Services account in the Amazon Web Services Region specified in the
33-
* request. The returned list is ordered by agent Amazon Resource Name (ARN).</p>
34-
* <p>By default, this operation returns a maximum of 100 agents. This operation supports
35-
* pagination that enables you to optionally reduce the number of agents returned in a
36-
* response.</p>
37-
* <p>If you have more agents than are returned in a response (that is, the response returns
38-
* only a truncated list of your agents), the response contains a marker that you can specify in
39-
* your next request to fetch the next page of agents.</p>
32+
* <p>Returns a list of DataSync agents that belong to an Amazon Web Services account in the Amazon Web Services Region specified in the request.</p>
33+
* <p>With pagination, you can reduce the number of agents returned in a response. If you get
34+
* a truncated list of agents in a response, the response contains a marker that you can specify
35+
* in your next request to fetch the next page of agents.</p>
36+
* <p>
37+
* <code>ListAgents</code> is eventually consistent. This means the result of running the
38+
* operation might not reflect that you just created or deleted an agent. For example, if you
39+
* create an agent with <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_CreateAgent.html">CreateAgent</a> and then
40+
* immediately run <code>ListAgents</code>, that agent might not show up in the list right away.
41+
* In situations like this, you can always confirm whether an agent has been created (or deleted)
42+
* by using <a href="https://docs.aws.amazon.com/datasync/latest/userguide/API_DescribeAgent.html">DescribeAgent</a>.</p>
4043
* @example
4144
* Use a bare-bones client and the command you need to make an API call.
4245
* ```javascript

clients/client-datasync/src/endpoint/EndpointParameters.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const resolveClientEndpointParameters = <T>(
2424
};
2525

2626
export interface EndpointParameters extends __EndpointParameters {
27-
Region: string;
27+
Region?: string;
2828
UseDualStack?: boolean;
2929
UseFIPS?: boolean;
3030
Endpoint?: string;

clients/client-datasync/src/endpoint/ruleset.ts

+20-19
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,25 @@ import { RuleSetObject } from "@aws-sdk/util-endpoints";
66
or see "smithy.rules#endpointRuleSet"
77
in codegen/sdk-codegen/aws-models/datasync.json */
88

9-
const q="fn",
10-
r="argv",
11-
s="ref";
12-
const a=true,
13-
b=false,
14-
c="String",
15-
d="PartitionResult",
16-
e="tree",
17-
f="error",
18-
g="endpoint",
19-
h={"required":true,"default":false,"type":"Boolean"},
20-
i={[s]:"Endpoint"},
21-
j={[q]:"booleanEquals",[r]:[{[s]:"UseFIPS"},true]},
22-
k={[q]:"booleanEquals",[r]:[{[s]:"UseDualStack"},true]},
23-
l={},
24-
m={[q]:"booleanEquals",[r]:[true,{[q]:"getAttr",[r]:[{[s]:d},"supportsFIPS"]}]},
25-
n={[q]:"booleanEquals",[r]:[true,{[q]:"getAttr",[r]:[{[s]:d},"supportsDualStack"]}]},
9+
const q="required",
10+
r="fn",
11+
s="argv",
12+
t="ref";
13+
const a="isSet",
14+
b="tree",
15+
c="error",
16+
d="endpoint",
17+
e="PartitionResult",
18+
f={[q]:false,"type":"String"},
19+
g={[q]:true,"default":false,"type":"Boolean"},
20+
h={[t]:"Endpoint"},
21+
i={[r]:"booleanEquals",[s]:[{[t]:"UseFIPS"},true]},
22+
j={[r]:"booleanEquals",[s]:[{[t]:"UseDualStack"},true]},
23+
k={},
24+
l={[r]:"booleanEquals",[s]:[true,{[r]:"getAttr",[s]:[{[t]:e},"supportsFIPS"]}]},
25+
m={[r]:"booleanEquals",[s]:[true,{[r]:"getAttr",[s]:[{[t]:e},"supportsDualStack"]}]},
26+
n=[i],
2627
o=[j],
27-
p=[k];
28-
const _data={version:"1.0",parameters:{Region:{required:a,type:c},UseDualStack:h,UseFIPS:h,Endpoint:{required:b,type:c}},rules:[{conditions:[{[q]:"aws.partition",[r]:[{[s]:"Region"}],assign:d}],type:e,rules:[{conditions:[{[q]:"isSet",[r]:[i]}],type:e,rules:[{conditions:o,error:"Invalid Configuration: FIPS and custom endpoint are not supported",type:f},{type:e,rules:[{conditions:p,error:"Invalid Configuration: Dualstack and custom endpoint are not supported",type:f},{endpoint:{url:i,properties:l,headers:l},type:g}]}]},{conditions:[j,k],type:e,rules:[{conditions:[m,n],type:e,rules:[{endpoint:{url:"https://datasync-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",properties:l,headers:l},type:g}]},{error:"FIPS and DualStack are enabled, but this partition does not support one or both",type:f}]},{conditions:o,type:e,rules:[{conditions:[m],type:e,rules:[{type:e,rules:[{endpoint:{url:"https://datasync-fips.{Region}.{PartitionResult#dnsSuffix}",properties:l,headers:l},type:g}]}]},{error:"FIPS is enabled but this partition does not support FIPS",type:f}]},{conditions:p,type:e,rules:[{conditions:[n],type:e,rules:[{endpoint:{url:"https://datasync.{Region}.{PartitionResult#dualStackDnsSuffix}",properties:l,headers:l},type:g}]},{error:"DualStack is enabled but this partition does not support DualStack",type:f}]},{endpoint:{url:"https://datasync.{Region}.{PartitionResult#dnsSuffix}",properties:l,headers:l},type:g}]}]};
28+
p=[{[t]:"Region"}];
29+
const _data={version:"1.0",parameters:{Region:f,UseDualStack:g,UseFIPS:g,Endpoint:f},rules:[{conditions:[{[r]:a,[s]:[h]}],type:b,rules:[{conditions:n,error:"Invalid Configuration: FIPS and custom endpoint are not supported",type:c},{type:b,rules:[{conditions:o,error:"Invalid Configuration: Dualstack and custom endpoint are not supported",type:c},{endpoint:{url:h,properties:k,headers:k},type:d}]}]},{type:b,rules:[{conditions:[{[r]:a,[s]:p}],type:b,rules:[{conditions:[{[r]:"aws.partition",[s]:p,assign:e}],type:b,rules:[{conditions:[i,j],type:b,rules:[{conditions:[l,m],type:b,rules:[{type:b,rules:[{endpoint:{url:"https://datasync-fips.{Region}.{PartitionResult#dualStackDnsSuffix}",properties:k,headers:k},type:d}]}]},{error:"FIPS and DualStack are enabled, but this partition does not support one or both",type:c}]},{conditions:n,type:b,rules:[{conditions:[l],type:b,rules:[{type:b,rules:[{endpoint:{url:"https://datasync-fips.{Region}.{PartitionResult#dnsSuffix}",properties:k,headers:k},type:d}]}]},{error:"FIPS is enabled but this partition does not support FIPS",type:c}]},{conditions:o,type:b,rules:[{conditions:[m],type:b,rules:[{type:b,rules:[{endpoint:{url:"https://datasync.{Region}.{PartitionResult#dualStackDnsSuffix}",properties:k,headers:k},type:d}]}]},{error:"DualStack is enabled but this partition does not support DualStack",type:c}]},{type:b,rules:[{endpoint:{url:"https://datasync.{Region}.{PartitionResult#dnsSuffix}",properties:k,headers:k},type:d}]}]}]},{error:"Invalid Configuration: Missing Region",type:c}]}]};
2930
export const ruleSet: RuleSetObject = _data;

0 commit comments

Comments
 (0)