Skip to content

Commit ee93c4c

Browse files
authored
Merge pull request #408 from watson-developer-cloud/7890-january-2020-release
January 2020 release
2 parents dfd3548 + 20ff6b2 commit ee93c4c

File tree

165 files changed

+379
-225
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

165 files changed

+379
-225
lines changed

appveyor.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ install:
2525
- cmd: >-
2626
pip install git+git://github.com/smsearcy/bumpversion.git@issue-135
2727
28+
npm install -g npm
29+
2830
npm install @semantic-release/exec
2931
3032
npm install @semantic-release/git
@@ -310,7 +312,7 @@ artifacts:
310312
deploy:
311313
- provider: NuGet
312314
api_key:
313-
secure: q7ya4MDWM5JDI2JYw1DxSKTgX+jwbvdlRKPjVg1Cijxb33r1K5qSAabnsUHcWTLf
315+
secure: mA45ocPyDh7u7GQ6xpmxftUVGgeXlsVPHNKDo3ZhBUlXp71glpZ/rGsQGQrNLHEI
314316
on:
315317
branch: master
316318
APPVEYOR_REPO_TAG: true

src/IBM.Watson.Assistant.v1/AssistantService.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2018, 2020.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -43,7 +43,7 @@ public AssistantService(string versionDate, IAuthenticator authenticator) : base
4343
{
4444
throw new ArgumentNullException("versionDate cannot be null.");
4545
}
46-
46+
4747
VersionDate = versionDate;
4848

4949
if (string.IsNullOrEmpty(ServiceUrl))
@@ -3804,6 +3804,8 @@ public DetailedResponse<LogCollection> ListAllLogs(string filter, string sort =
38043804
/// You associate a customer ID with data by passing the `X-Watson-Metadata` header with a request that passes
38053805
/// data. For more information about personal data and customer IDs, see [Information
38063806
/// security](https://cloud.ibm.com/docs/services/assistant?topic=assistant-information-security#information-security).
3807+
///
3808+
/// This operation is limited to 4 requests per minute. For more information, see **Rate limiting**.
38073809
/// </summary>
38083810
/// <param name="customerId">The customer ID for which all data is to be deleted.</param>
38093811
/// <returns><see cref="object" />object</returns>

src/IBM.Watson.Assistant.v1/IBM.Watson.Assistant.v1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<ItemGroup>
2828
<PackageReference Include="IBM.Cloud.SDK.Core" Version="1.0.1" />
29-
<PackageReference Include="IBM.Watson.Common" Version="4.1.0" />
29+
<PackageReference Include="IBM.Watson.Common" Version="4.2.0" />
3030
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
3131
<PackageReference Include="JsonSubTypes" Version="1.6.0" />
3232
</ItemGroup>

src/IBM.Watson.Assistant.v1/Model/Counterexample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2017, 2019.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/IBM.Watson.Assistant.v1/Model/DialogNodeAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2017, 2019.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/IBM.Watson.Assistant.v1/Model/Entity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2017, 2019.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/IBM.Watson.Assistant.v1/Model/Intent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2016, 2019.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/IBM.Watson.Assistant.v1/Model/Pagination.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2017, 2019.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/IBM.Watson.Assistant.v1/Model/Synonym.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2017, 2019.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/IBM.Watson.Assistant.v1/Model/ValueCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* (C) Copyright IBM Corp. 2018, 2019.
2+
* (C) Copyright IBM Corp. 2017, 2019.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)