Skip to content

Commit e0558d2

Browse files
author
awstools
committed
feat(client-datasync): Platform version changes to support AL1 deprecation initiative.
1 parent 998eb07 commit e0558d2

File tree

10 files changed

+197
-106
lines changed

10 files changed

+197
-106
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ export interface CreateLocationFsxOntapCommandOutput extends CreateLocationFsxOn
4141

4242
/**
4343
* @public
44-
* <p>Creates an endpoint for an Amazon FSx for NetApp ONTAP file system that DataSync can access for a transfer. For more information, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html">Creating a location for FSx for ONTAP</a>.</p>
44+
* <p>Creates an endpoint for an Amazon FSx for NetApp ONTAP file system that DataSync can use for a data transfer.</p>
45+
* <p>Before you begin, make sure that you understand how DataSync
46+
* <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-ontap-location.html#create-ontap-location-access">accesses an FSx for ONTAP file system</a>.</p>
4547
* @example
4648
* Use a bare-bones client and the command you need to make an API call.
4749
* ```javascript

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ export interface CreateLocationFsxWindowsCommandOutput extends CreateLocationFsx
4141

4242
/**
4343
* @public
44-
* <p>Creates an endpoint for an Amazon FSx for Windows File Server file system.</p>
44+
* <p>Creates an endpoint for an Amazon FSx for Windows File Server file system that DataSync can use for a data transfer.</p>
45+
* <p>Before you begin, make sure that you understand how DataSync <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-fsx-location.html#create-fsx-location-access">accesses an FSx for Windows File Server</a>.</p>
4546
* @example
4647
* Use a bare-bones client and the command you need to make an API call.
4748
* ```javascript

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ export interface DeleteAgentCommandOutput extends DeleteAgentResponse, __Metadat
3737

3838
/**
3939
* @public
40-
* <p>Deletes an agent. To specify which agent to delete, use the Amazon Resource Name (ARN)
41-
* of the agent in your request. The operation disassociates the agent from your Amazon Web Services account. However, it doesn't delete the agent virtual machine (VM) from your
42-
* on-premises environment.</p>
40+
* <p>Removes an DataSync agent resource from your Amazon Web Services account.</p>
41+
* <p>Keep in mind that this operation (which can't be undone) doesn't remove the agent's
42+
* virtual machine (VM) or Amazon EC2 instance from your storage environment. For next
43+
* steps, you can delete the VM or instance from your storage environment or reuse it to <a href="https://docs.aws.amazon.com/datasync/latest/userguide/activate-agent.html">activate a new
44+
* agent</a>.</p>
4345
* @example
4446
* Use a bare-bones client and the command you need to make an API call.
4547
* ```javascript

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface DescribeAgentCommandOutput extends DescribeAgentResponse, __Met
3737

3838
/**
3939
* @public
40-
* <p>Returns metadata about an DataSync agent, such as its name, endpoint
40+
* <p>Returns information about an DataSync agent, such as its name, service endpoint
4141
* type, and status.</p>
4242
* @example
4343
* Use a bare-bones client and the command you need to make an API call.
@@ -67,6 +67,9 @@ export interface DescribeAgentCommandOutput extends DescribeAgentResponse, __Met
6767
* // "STRING_VALUE",
6868
* // ],
6969
* // },
70+
* // Platform: { // Platform
71+
* // Version: "STRING_VALUE",
72+
* // },
7073
* // };
7174
*
7275
* ```

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@ export interface ListAgentsCommandOutput extends ListAgentsResponse, __MetadataB
6666
* // AgentArn: "STRING_VALUE",
6767
* // Name: "STRING_VALUE",
6868
* // Status: "ONLINE" || "OFFLINE",
69+
* // Platform: { // Platform
70+
* // Version: "STRING_VALUE",
71+
* // },
6972
* // },
7073
* // ],
7174
* // NextToken: "STRING_VALUE",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export interface UpdateAgentCommandOutput extends UpdateAgentResponse, __Metadat
3737

3838
/**
3939
* @public
40-
* <p>Updates the name of an agent.</p>
40+
* <p>Updates the name of an DataSync agent.</p>
4141
* @example
4242
* Use a bare-bones client and the command you need to make an API call.
4343
* ```javascript

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ export interface UpdateLocationSmbCommandOutput extends UpdateLocationSmbRespons
4141

4242
/**
4343
* @public
44-
* <p>Updates some of the parameters of a previously created location for Server Message Block
45-
* (SMB) file system access. For information about creating an SMB location, see <a href="https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html">Creating a
46-
* location for SMB</a>.</p>
44+
* <p>Updates some of the parameters of a Server Message Block
45+
* (SMB) file server location that you can use for DataSync transfers.</p>
4746
* @example
4847
* Use a bare-bones client and the command you need to make an API call.
4948
* ```javascript

0 commit comments

Comments
 (0)