Skip to content
This repository was archived by the owner on Oct 21, 2023. It is now read-only.

Commit 81d8aee

Browse files
authored
!deploy v2.7.0 to resolve #48
## 2.7.0 - 2019-03-08 * [Issue #48](#48) * Fixed: `Export-VaporShell` was having various failures due to the `Format-Json` private function called during JSON conversion. * Miscellaneous * Brought Resource Type and Property Type functions up to current spec sheet. * Added: `Watch` and `Force` parameters to `New-VSStack` and `New-VSChangeSet` to watch and/or force stack creation. * Added: `Watch` parameter to `Remove-VSStack` and `Invoke-VSChangeSetExecution` to watch stack events. * Updated: `Watch-Stack` to handle multiple stack watching at once.
2 parents 4ff92d9 + 4e38cf4 commit 81d8aee

File tree

1,144 files changed

+7429
-51219
lines changed

Some content is hidden

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

1,144 files changed

+7429
-51219
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions

VaporShell/Private/Format-Json.ps1

Lines changed: 51 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,51 @@
1-
function Format-Json([Parameter(Mandatory, ValueFromPipeline)][String] $json) {
2-
$indent = 0;
3-
($json -Split '\n' |
4-
% {
5-
if ($_ -match '[\}\]]') {
6-
# This line contains ] or }, decrement the indentation level
7-
$indent--
8-
}
9-
$line = (' ' * $indent * 2) + $_.TrimStart().Replace(': ', ': ')
10-
if ($_ -match '[\{\[]') {
11-
# This line contains [ or {, increment the indentation level
12-
$indent++
13-
}
14-
$line
15-
}) -Join "`n"
16-
}
1+
function Format-Json {
2+
[CmdletBinding()]
3+
Param (
4+
[Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true)]
5+
[String]
6+
$Json
7+
)
8+
Begin {
9+
$cleaner = {
10+
param([String]$Line)
11+
Process{
12+
[Regex]::Replace(
13+
$Line,
14+
"\\u(?<Value>[a-zA-Z0-9]{4})",
15+
{
16+
param($m)([char]([int]::Parse(
17+
$m.Groups['Value'].Value,
18+
[System.Globalization.NumberStyles]::HexNumber
19+
))).ToString()
20+
}
21+
)
22+
}
23+
}
24+
}
25+
Process {
26+
if ($PSVersionTable.PSVersion.Major -lt 6) {
27+
try {
28+
$indent = 0;
29+
$res = $Json -split '\n' | ForEach-Object {
30+
if ($_ -match '[\}\]]') {
31+
# This line contains ] or }, decrement the indentation level
32+
$indent--
33+
}
34+
$line = (' ' * $indent * 2) + $_.TrimStart().Replace(': ', ': ')
35+
if ($_ -match '[\{\[]') {
36+
# This line contains [ or {, increment the indentation level
37+
$indent++
38+
}
39+
$cleaner.Invoke($line)
40+
}
41+
$res -join "`n"
42+
}
43+
catch {
44+
($Json -split '\n' | ForEach-Object {$cleaner.Invoke($_)}) -join "`n"
45+
}
46+
}
47+
else {
48+
($Json -split '\n' | ForEach-Object {$cleaner.Invoke($_)}) -join "`n"
49+
}
50+
}
51+
}

VaporShell/Public/Resource Property Types/Add-VSAlexaASKSkillAuthenticationConfiguration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAlexaASKSkillAuthenticationConfiguration {
1+
function Add-VSAlexaASKSkillAuthenticationConfiguration {
22
<#
33
.SYNOPSIS
44
Adds an Alexa::ASK::Skill.AuthenticationConfiguration resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAlexaASKSkillOverrides.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAlexaASKSkillOverrides {
1+
function Add-VSAlexaASKSkillOverrides {
22
<#
33
.SYNOPSIS
44
Adds an Alexa::ASK::Skill.Overrides resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAlexaASKSkillSkillPackage.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAlexaASKSkillSkillPackage {
1+
function Add-VSAlexaASKSkillSkillPackage {
22
<#
33
.SYNOPSIS
44
Adds an Alexa::ASK::Skill.SkillPackage resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAmazonMQBrokerConfigurationId.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAmazonMQBrokerConfigurationId {
1+
function Add-VSAmazonMQBrokerConfigurationId {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AmazonMQ::Broker.ConfigurationId resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAmazonMQBrokerLogList.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAmazonMQBrokerLogList {
1+
function Add-VSAmazonMQBrokerLogList {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AmazonMQ::Broker.LogList resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAmazonMQBrokerMaintenanceWindow.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAmazonMQBrokerMaintenanceWindow {
1+
function Add-VSAmazonMQBrokerMaintenanceWindow {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AmazonMQ::Broker.MaintenanceWindow resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAmazonMQBrokerTagsEntry.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAmazonMQBrokerTagsEntry {
1+
function Add-VSAmazonMQBrokerTagsEntry {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AmazonMQ::Broker.TagsEntry resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAmazonMQBrokerUser.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAmazonMQBrokerUser {
1+
function Add-VSAmazonMQBrokerUser {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AmazonMQ::Broker.User resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAmazonMQConfigurationAssociationConfigurationId.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAmazonMQConfigurationAssociationConfigurationId {
1+
function Add-VSAmazonMQConfigurationAssociationConfigurationId {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AmazonMQ::ConfigurationAssociation.ConfigurationId resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAmazonMQConfigurationTagsEntry.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAmazonMQConfigurationTagsEntry {
1+
function Add-VSAmazonMQConfigurationTagsEntry {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AmazonMQ::Configuration.TagsEntry resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayApiKeyStageKey.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayApiKeyStageKey {
1+
function Add-VSApiGatewayApiKeyStageKey {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::ApiKey.StageKey resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayDeploymentAccessLogSetting.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayDeploymentAccessLogSetting {
1+
function Add-VSApiGatewayDeploymentAccessLogSetting {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Deployment.AccessLogSetting resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayDeploymentCanarySetting.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayDeploymentCanarySetting {
1+
function Add-VSApiGatewayDeploymentCanarySetting {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Deployment.CanarySetting resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayDeploymentDeploymentCanarySettings.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayDeploymentDeploymentCanarySettings {
1+
function Add-VSApiGatewayDeploymentDeploymentCanarySettings {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Deployment.DeploymentCanarySettings resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayDeploymentMethodSetting.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayDeploymentMethodSetting {
1+
function Add-VSApiGatewayDeploymentMethodSetting {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Deployment.MethodSetting resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayDeploymentStageDescription.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayDeploymentStageDescription {
1+
function Add-VSApiGatewayDeploymentStageDescription {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Deployment.StageDescription resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayDocumentationPartLocation.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayDocumentationPartLocation {
1+
function Add-VSApiGatewayDocumentationPartLocation {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::DocumentationPart.Location resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayDomainNameEndpointConfiguration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayDomainNameEndpointConfiguration {
1+
function Add-VSApiGatewayDomainNameEndpointConfiguration {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::DomainName.EndpointConfiguration resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayMethodIntegration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayMethodIntegration {
1+
function Add-VSApiGatewayMethodIntegration {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Method.Integration resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayMethodIntegrationResponse.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayMethodIntegrationResponse {
1+
function Add-VSApiGatewayMethodIntegrationResponse {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Method.IntegrationResponse resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayMethodMethodResponse.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayMethodMethodResponse {
1+
function Add-VSApiGatewayMethodMethodResponse {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Method.MethodResponse resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayRestApiEndpointConfiguration.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayRestApiEndpointConfiguration {
1+
function Add-VSApiGatewayRestApiEndpointConfiguration {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::RestApi.EndpointConfiguration resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayRestApiS3Location.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayRestApiS3Location {
1+
function Add-VSApiGatewayRestApiS3Location {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::RestApi.S3Location resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayStageAccessLogSetting.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayStageAccessLogSetting {
1+
function Add-VSApiGatewayStageAccessLogSetting {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Stage.AccessLogSetting resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayStageCanarySetting.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayStageCanarySetting {
1+
function Add-VSApiGatewayStageCanarySetting {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Stage.CanarySetting resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayStageMethodSetting.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayStageMethodSetting {
1+
function Add-VSApiGatewayStageMethodSetting {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::Stage.MethodSetting resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayUsagePlanApiStage.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayUsagePlanApiStage {
1+
function Add-VSApiGatewayUsagePlanApiStage {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::UsagePlan.ApiStage resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayUsagePlanQuotaSettings.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayUsagePlanQuotaSettings {
1+
function Add-VSApiGatewayUsagePlanQuotaSettings {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::UsagePlan.QuotaSettings resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayUsagePlanThrottleSettings.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayUsagePlanThrottleSettings {
1+
function Add-VSApiGatewayUsagePlanThrottleSettings {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGateway::UsagePlan.ThrottleSettings resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayV2RouteParameterConstraints.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayV2RouteParameterConstraints {
1+
function Add-VSApiGatewayV2RouteParameterConstraints {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGatewayV2::Route.ParameterConstraints resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayV2RouteResponseParameterConstraints.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayV2RouteResponseParameterConstraints {
1+
function Add-VSApiGatewayV2RouteResponseParameterConstraints {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGatewayV2::RouteResponse.ParameterConstraints resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayV2StageAccessLogSettings.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayV2StageAccessLogSettings {
1+
function Add-VSApiGatewayV2StageAccessLogSettings {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGatewayV2::Stage.AccessLogSettings resource property to the template

VaporShell/Public/Resource Property Types/Add-VSApiGatewayV2StageRouteSettings.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSApiGatewayV2StageRouteSettings {
1+
function Add-VSApiGatewayV2StageRouteSettings {
22
<#
33
.SYNOPSIS
44
Adds an AWS::ApiGatewayV2::Stage.RouteSettings resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppStreamDirectoryConfigServiceAccountCredentials.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppStreamDirectoryConfigServiceAccountCredentials {
1+
function Add-VSAppStreamDirectoryConfigServiceAccountCredentials {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppStream::DirectoryConfig.ServiceAccountCredentials resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppStreamFleetComputeCapacity.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppStreamFleetComputeCapacity {
1+
function Add-VSAppStreamFleetComputeCapacity {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppStream::Fleet.ComputeCapacity resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppStreamFleetDomainJoinInfo.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppStreamFleetDomainJoinInfo {
1+
function Add-VSAppStreamFleetDomainJoinInfo {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppStream::Fleet.DomainJoinInfo resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppStreamFleetVpcConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppStreamFleetVpcConfig {
1+
function Add-VSAppStreamFleetVpcConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppStream::Fleet.VpcConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppStreamImageBuilderDomainJoinInfo.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppStreamImageBuilderDomainJoinInfo {
1+
function Add-VSAppStreamImageBuilderDomainJoinInfo {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppStream::ImageBuilder.DomainJoinInfo resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppStreamImageBuilderVpcConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppStreamImageBuilderVpcConfig {
1+
function Add-VSAppStreamImageBuilderVpcConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppStream::ImageBuilder.VpcConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppStreamStackApplicationSettings.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppStreamStackApplicationSettings {
1+
function Add-VSAppStreamStackApplicationSettings {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppStream::Stack.ApplicationSettings resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppStreamStackStorageConnector.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppStreamStackStorageConnector {
1+
function Add-VSAppStreamStackStorageConnector {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppStream::Stack.StorageConnector resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppStreamStackUserSetting.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppStreamStackUserSetting {
1+
function Add-VSAppStreamStackUserSetting {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppStream::Stack.UserSetting resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppSyncDataSourceAuthorizationConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppSyncDataSourceAuthorizationConfig {
1+
function Add-VSAppSyncDataSourceAuthorizationConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppSync::DataSource.AuthorizationConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppSyncDataSourceAwsIamConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppSyncDataSourceAwsIamConfig {
1+
function Add-VSAppSyncDataSourceAwsIamConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppSync::DataSource.AwsIamConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppSyncDataSourceDynamoDBConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppSyncDataSourceDynamoDBConfig {
1+
function Add-VSAppSyncDataSourceDynamoDBConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppSync::DataSource.DynamoDBConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppSyncDataSourceElasticsearchConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppSyncDataSourceElasticsearchConfig {
1+
function Add-VSAppSyncDataSourceElasticsearchConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppSync::DataSource.ElasticsearchConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppSyncDataSourceHttpConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppSyncDataSourceHttpConfig {
1+
function Add-VSAppSyncDataSourceHttpConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppSync::DataSource.HttpConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppSyncDataSourceLambdaConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppSyncDataSourceLambdaConfig {
1+
function Add-VSAppSyncDataSourceLambdaConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppSync::DataSource.LambdaConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppSyncDataSourceRdsHttpEndpointConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppSyncDataSourceRdsHttpEndpointConfig {
1+
function Add-VSAppSyncDataSourceRdsHttpEndpointConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppSync::DataSource.RdsHttpEndpointConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppSyncDataSourceRelationalDatabaseConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppSyncDataSourceRelationalDatabaseConfig {
1+
function Add-VSAppSyncDataSourceRelationalDatabaseConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppSync::DataSource.RelationalDatabaseConfig resource property to the template

VaporShell/Public/Resource Property Types/Add-VSAppSyncGraphQLApiLogConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function Add-VSAppSyncGraphQLApiLogConfig {
1+
function Add-VSAppSyncGraphQLApiLogConfig {
22
<#
33
.SYNOPSIS
44
Adds an AWS::AppSync::GraphQLApi.LogConfig resource property to the template

0 commit comments

Comments
 (0)