This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| Description: AWS AppSync Notes API | |
| Parameters: | |
| APIName: | |
| Type: String | |
| Description: Name of the API - used to generate unique names for resources | |
| MinLength: 3 | |
| MaxLength: 20 | |
| AllowedPattern: '^[a-zA-Z][a-zA-Z0-9_]*$' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [CmdletBinding()] | |
| param ( | |
| [Parameter(Mandatory=$true, Position=0)] | |
| [uri] | |
| $ServerUri | |
| ) | |
| $ErrorActionPreference = 'Stop' | |
| Set-StrictMode -Version Latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Performs a windows cleanup. | |
| .DESCRIPTION | |
| Performs a windows cleanup by removing volume caches, update backups, update and CCM caches. | |
| .PARAMETER CleanupOptions | |
| Supported options: | |
| "comCacheRepair" # Component Cache Repair | |
| "comCacheCleanup" # Component Cache Cleanup | |
| "volCacheCleanup" # Volume Cache Cleanup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var AWS = require('aws-sdk'); | |
| var cloudwatch = new AWS.CloudWatch({ region: 'us-east-1'}); | |
| exports.handler = function (event, context) { | |
| var ElasticSearchHost = 'elasticsearch.example:9200'; | |
| var Environment = 'int'; | |
| var EndTime = new Date; | |
| var StartTime = new Date(EndTime - 15*60*1000); | |
| var Metrics = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git config --global diff.tool opendiff | |
| git config --global difftool.opendiff.cmd 'opendiff "$LOCAL" "$REMOTE"' | |
| git config --global merge.tool opendiff | |
| git config --global mergetool.opendiff.cmd 'opendiff -merge "$MERGED" "$LOCAL" "$REMOTE"' | |
| git config --global mergetool.opendiff.trustExitCode false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Security.Principal; | |
| using System.Web; | |
| using Moq; | |
| namespace Tests.Utils | |
| { | |
| public class HttpContextMock | |
| { | |
| public HttpContextMock(IEnumerable<KeyValuePair<string, string>> requestParams) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Index | |
| --------------------------------------------------------------------- | |
| curl -XPUT http://localhost:9200/pictures/ -d ' | |
| { | |
| "settings": { | |
| "analysis": { | |
| "analyzer": { | |
| "index_analyzer": { | |
| "tokenizer": "standard", |