Skip to content

Commit

Permalink
Release v1.35.15 (2020-10-26) (#3613)
Browse files Browse the repository at this point in the history
Release v1.35.15 (2020-10-26)
===

### Service Client Updates
* `service/kendra`: Updates service API and documentation
  * Amazon Kendra now supports indexing data from Confluence Server.
* `service/neptune`: Updates service API, documentation, and paginators
  * This feature enables custom endpoints for Amazon Neptune clusters. Custom endpoints simplify connection management when clusters contain instances with different capacities and configuration settings.
* `service/sagemaker`: Updates service API, documentation, and paginators
  * This release enables customers to bring custom images for use with SageMaker Studio notebooks.
  • Loading branch information
aws-sdk-go-automation authored Oct 26, 2020
1 parent fe2622e commit 1587d73
Show file tree
Hide file tree
Showing 18 changed files with 7,884 additions and 161 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.35.15 (2020-10-26)
===

### Service Client Updates
* `service/kendra`: Updates service API and documentation
* Amazon Kendra now supports indexing data from Confluence Server.
* `service/neptune`: Updates service API, documentation, and paginators
* This feature enables custom endpoints for Amazon Neptune clusters. Custom endpoints simplify connection management when clusters contain instances with different capacities and configuration settings.
* `service/sagemaker`: Updates service API, documentation, and paginators
* This release enables customers to bring custom images for use with SageMaker Studio notebooks.

Release v1.35.14 (2020-10-23)
===

Expand Down
12 changes: 12 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.35.14"
const SDKVersion = "1.35.15"
182 changes: 180 additions & 2 deletions models/apis/kendra/2019-02-03/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -612,6 +612,182 @@
},
"exception":true
},
"ConfluenceAttachmentConfiguration":{
"type":"structure",
"members":{
"CrawlAttachments":{"shape":"Boolean"},
"AttachmentFieldMappings":{"shape":"ConfluenceAttachmentFieldMappingsList"}
}
},
"ConfluenceAttachmentFieldMappingsList":{
"type":"list",
"member":{"shape":"ConfluenceAttachmentToIndexFieldMapping"},
"max":11,
"min":1
},
"ConfluenceAttachmentFieldName":{
"type":"string",
"enum":[
"AUTHOR",
"CONTENT_TYPE",
"CREATED_DATE",
"DISPLAY_URL",
"FILE_SIZE",
"ITEM_TYPE",
"PARENT_ID",
"SPACE_KEY",
"SPACE_NAME",
"URL",
"VERSION"
]
},
"ConfluenceAttachmentToIndexFieldMapping":{
"type":"structure",
"members":{
"DataSourceFieldName":{"shape":"ConfluenceAttachmentFieldName"},
"DateFieldFormat":{"shape":"DataSourceDateFieldFormat"},
"IndexFieldName":{"shape":"IndexFieldName"}
}
},
"ConfluenceBlogConfiguration":{
"type":"structure",
"members":{
"BlogFieldMappings":{"shape":"ConfluenceBlogFieldMappingsList"}
}
},
"ConfluenceBlogFieldMappingsList":{
"type":"list",
"member":{"shape":"ConfluenceBlogToIndexFieldMapping"},
"max":9,
"min":1
},
"ConfluenceBlogFieldName":{
"type":"string",
"enum":[
"AUTHOR",
"DISPLAY_URL",
"ITEM_TYPE",
"LABELS",
"PUBLISH_DATE",
"SPACE_KEY",
"SPACE_NAME",
"URL",
"VERSION"
]
},
"ConfluenceBlogToIndexFieldMapping":{
"type":"structure",
"members":{
"DataSourceFieldName":{"shape":"ConfluenceBlogFieldName"},
"DateFieldFormat":{"shape":"DataSourceDateFieldFormat"},
"IndexFieldName":{"shape":"IndexFieldName"}
}
},
"ConfluenceConfiguration":{
"type":"structure",
"required":[
"ServerUrl",
"SecretArn",
"Version"
],
"members":{
"ServerUrl":{"shape":"Url"},
"SecretArn":{"shape":"SecretArn"},
"Version":{"shape":"ConfluenceVersion"},
"SpaceConfiguration":{"shape":"ConfluenceSpaceConfiguration"},
"PageConfiguration":{"shape":"ConfluencePageConfiguration"},
"BlogConfiguration":{"shape":"ConfluenceBlogConfiguration"},
"AttachmentConfiguration":{"shape":"ConfluenceAttachmentConfiguration"},
"VpcConfiguration":{"shape":"DataSourceVpcConfiguration"},
"InclusionPatterns":{"shape":"DataSourceInclusionsExclusionsStrings"},
"ExclusionPatterns":{"shape":"DataSourceInclusionsExclusionsStrings"}
}
},
"ConfluencePageConfiguration":{
"type":"structure",
"members":{
"PageFieldMappings":{"shape":"ConfluencePageFieldMappingsList"}
}
},
"ConfluencePageFieldMappingsList":{
"type":"list",
"member":{"shape":"ConfluencePageToIndexFieldMapping"},
"max":12,
"min":1
},
"ConfluencePageFieldName":{
"type":"string",
"enum":[
"AUTHOR",
"CONTENT_STATUS",
"CREATED_DATE",
"DISPLAY_URL",
"ITEM_TYPE",
"LABELS",
"MODIFIED_DATE",
"PARENT_ID",
"SPACE_KEY",
"SPACE_NAME",
"URL",
"VERSION"
]
},
"ConfluencePageToIndexFieldMapping":{
"type":"structure",
"members":{
"DataSourceFieldName":{"shape":"ConfluencePageFieldName"},
"DateFieldFormat":{"shape":"DataSourceDateFieldFormat"},
"IndexFieldName":{"shape":"IndexFieldName"}
}
},
"ConfluenceSpaceConfiguration":{
"type":"structure",
"members":{
"CrawlPersonalSpaces":{"shape":"Boolean"},
"CrawlArchivedSpaces":{"shape":"Boolean"},
"IncludeSpaces":{"shape":"ConfluenceSpaceList"},
"ExcludeSpaces":{"shape":"ConfluenceSpaceList"},
"SpaceFieldMappings":{"shape":"ConfluenceSpaceFieldMappingsList"}
}
},
"ConfluenceSpaceFieldMappingsList":{
"type":"list",
"member":{"shape":"ConfluenceSpaceToIndexFieldMapping"},
"max":4,
"min":1
},
"ConfluenceSpaceFieldName":{
"type":"string",
"enum":[
"DISPLAY_URL",
"ITEM_TYPE",
"SPACE_KEY",
"URL"
]
},
"ConfluenceSpaceIdentifier":{
"type":"string",
"max":255,
"min":1,
"pattern":"^\\P{C}*$"
},
"ConfluenceSpaceList":{
"type":"list",
"member":{"shape":"ConfluenceSpaceIdentifier"},
"min":1
},
"ConfluenceSpaceToIndexFieldMapping":{
"type":"structure",
"members":{
"DataSourceFieldName":{"shape":"ConfluenceSpaceFieldName"},
"DateFieldFormat":{"shape":"DataSourceDateFieldFormat"},
"IndexFieldName":{"shape":"IndexFieldName"}
}
},
"ConfluenceVersion":{
"type":"string",
"enum":["SERVER"]
},
"ConnectionConfiguration":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -729,7 +905,8 @@
"DatabaseConfiguration":{"shape":"DatabaseConfiguration"},
"SalesforceConfiguration":{"shape":"SalesforceConfiguration"},
"OneDriveConfiguration":{"shape":"OneDriveConfiguration"},
"ServiceNowConfiguration":{"shape":"ServiceNowConfiguration"}
"ServiceNowConfiguration":{"shape":"ServiceNowConfiguration"},
"ConfluenceConfiguration":{"shape":"ConfluenceConfiguration"}
}
},
"DataSourceDateFieldFormat":{
Expand Down Expand Up @@ -875,7 +1052,8 @@
"SALESFORCE",
"ONEDRIVE",
"SERVICENOW",
"CUSTOM"
"CUSTOM",
"CONFLUENCE"
]
},
"DataSourceVpcConfiguration":{
Expand Down
Loading

0 comments on commit 1587d73

Please sign in to comment.