Skip to content

Commit

Permalink
feat(client-kendra): This release adds support for a new authenticati…
Browse files Browse the repository at this point in the history
…on type - Personal Access Token (PAT) for confluence server.
  • Loading branch information
awstools committed Aug 19, 2022
1 parent 62657b1 commit 66a1950
Show file tree
Hide file tree
Showing 12 changed files with 194 additions and 137 deletions.
16 changes: 8 additions & 8 deletions clients/client-kendra/src/Kendra.ts
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ export class Kendra extends KendraClient {
}

/**
* <p>Creates a data source that you want to use with an Amazon Kendra index. </p>
* <p>Creates a data source connector that you want to use with an Amazon Kendra index.</p>
* <p>You specify a name, data source connector type and description for
* your data source. You also specify configuration information for the
* data source connector.</p>
Expand Down Expand Up @@ -822,7 +822,7 @@ export class Kendra extends KendraClient {
}

/**
* <p>Deletes an Amazon Kendra data source. An exception is not thrown if the
* <p>Deletes an Amazon Kendra data source connector. An exception is not thrown if the
* data source is already being deleted. While the data source is being
* deleted, the <code>Status</code> field returned by a call to the
* <code>DescribeDataSource</code> API is set to
Expand Down Expand Up @@ -1100,7 +1100,7 @@ export class Kendra extends KendraClient {
}

/**
* <p>Gets information about an Amazon Kendra data source.</p>
* <p>Gets information about an Amazon Kendra data source connector.</p>
*/
public describeDataSource(
args: DescribeDataSourceCommandInput,
Expand Down Expand Up @@ -1545,7 +1545,7 @@ export class Kendra extends KendraClient {
}

/**
* <p>Lists the data sources that you have created.</p>
* <p>Lists the data source connectors that you have created.</p>
*/
public listDataSources(
args: ListDataSourcesCommandInput,
Expand Down Expand Up @@ -1577,8 +1577,8 @@ export class Kendra extends KendraClient {
}

/**
* <p>Gets statistics about synchronizing Amazon Kendra with a data
* source.</p>
* <p>Gets statistics about synchronizing a data
* source connector.</p>
*/
public listDataSourceSyncJobs(
args: ListDataSourceSyncJobsCommandInput,
Expand Down Expand Up @@ -1999,7 +1999,7 @@ export class Kendra extends KendraClient {
}

/**
* <p>Starts a synchronization job for a data source. If a synchronization
* <p>Starts a synchronization job for a data source connector. If a synchronization
* job is already in progress, Amazon Kendra returns a
* <code>ResourceInUseException</code> exception.</p>
*/
Expand Down Expand Up @@ -2213,7 +2213,7 @@ export class Kendra extends KendraClient {
}

/**
* <p>Updates an existing Amazon Kendra data source.</p>
* <p>Updates an existing Amazon Kendra data source connector.</p>
*/
public updateDataSource(
args: UpdateDataSourceCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface CreateDataSourceCommandInput extends CreateDataSourceRequest {}
export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse, __MetadataBearer {}

/**
* <p>Creates a data source that you want to use with an Amazon Kendra index. </p>
* <p>Creates a data source connector that you want to use with an Amazon Kendra index.</p>
* <p>You specify a name, data source connector type and description for
* your data source. You also specify configuration information for the
* data source connector.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface DeleteDataSourceCommandInput extends DeleteDataSourceRequest {}
export interface DeleteDataSourceCommandOutput extends __MetadataBearer {}

/**
* <p>Deletes an Amazon Kendra data source. An exception is not thrown if the
* <p>Deletes an Amazon Kendra data source connector. An exception is not thrown if the
* data source is already being deleted. While the data source is being
* deleted, the <code>Status</code> field returned by a call to the
* <code>DescribeDataSource</code> API is set to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface DescribeDataSourceCommandInput extends DescribeDataSourceReques
export interface DescribeDataSourceCommandOutput extends DescribeDataSourceResponse, __MetadataBearer {}

/**
* <p>Gets information about an Amazon Kendra data source.</p>
* <p>Gets information about an Amazon Kendra data source connector.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export interface ListDataSourceSyncJobsCommandInput extends ListDataSourceSyncJo
export interface ListDataSourceSyncJobsCommandOutput extends ListDataSourceSyncJobsResponse, __MetadataBearer {}

/**
* <p>Gets statistics about synchronizing Amazon Kendra with a data
* source.</p>
* <p>Gets statistics about synchronizing a data
* source connector.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface ListDataSourcesCommandInput extends ListDataSourcesRequest {}
export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, __MetadataBearer {}

/**
* <p>Lists the data sources that you have created.</p>
* <p>Lists the data source connectors that you have created.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export interface StartDataSourceSyncJobCommandInput extends StartDataSourceSyncJ
export interface StartDataSourceSyncJobCommandOutput extends StartDataSourceSyncJobResponse, __MetadataBearer {}

/**
* <p>Starts a synchronization job for a data source. If a synchronization
* <p>Starts a synchronization job for a data source connector. If a synchronization
* job is already in progress, Amazon Kendra returns a
* <code>ResourceInUseException</code> exception.</p>
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export interface UpdateDataSourceCommandInput extends UpdateDataSourceRequest {}
export interface UpdateDataSourceCommandOutput extends __MetadataBearer {}

/**
* <p>Updates an existing Amazon Kendra data source.</p>
* <p>Updates an existing Amazon Kendra data source connector.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down

0 comments on commit 66a1950

Please sign in to comment.