VaporShell.RAM.Classes.ps1
using namespace System using namespace System.Collections using namespace System.Collections.Generic using namespace System.IO using namespace System.Management.Automation [CmdletBinding()] Param() Write-Verbose "Importing class 'RAMResourceShare'" class RAMResourceShare : VSResource { hidden [string] $_vsFunctionName = 'New-VSRAMResourceShare' hidden [string] $_awsDocumentation = 'http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ram-resourceshare.html' hidden [string[]] $_attributes = @('Arn') hidden [object] $_condition [string] $Type = 'AWS::RAM::ResourceShare' [string[]] $PermissionArns [string[]] $Principals [bool] $AllowExternalPrincipals [string[]] $ResourceArns [VSTag[]] $Tags [string] $Name [VSJson] $Metadata [UpdatePolicy] $UpdatePolicy [string] $Condition hidden [void] _addAccessors() { $this._addBaseAccessors() $this | Add-Member -Force -MemberType ScriptProperty -Name PermissionArns -Value { $this.Properties['PermissionArns'] } -SecondValue { param([ValidateType(([string], [int], [IntrinsicFunction], [ConditionFunction]))] [object[]] $value) $this.Properties['PermissionArns'] = @($value) } $this | Add-Member -Force -MemberType ScriptProperty -Name Principals -Value { $this.Properties['Principals'] } -SecondValue { param([ValidateType(([string], [int], [IntrinsicFunction], [ConditionFunction]))] [object[]] $value) $this.Properties['Principals'] = @($value) } $this | Add-Member -Force -MemberType ScriptProperty -Name AllowExternalPrincipals -Value { $this.Properties['AllowExternalPrincipals'] } -SecondValue { param([ValidateType(([bool], [IntrinsicFunction], [ConditionFunction]))] [object] $value) $this.Properties['AllowExternalPrincipals'] = $value } $this | Add-Member -Force -MemberType ScriptProperty -Name ResourceArns -Value { $this.Properties['ResourceArns'] } -SecondValue { param([ValidateType(([string], [int], [IntrinsicFunction], [ConditionFunction]))] [object[]] $value) $this.Properties['ResourceArns'] = @($value) } $this | Add-Member -Force -MemberType ScriptProperty -Name Tags -Value { $this.Properties['Tags'] } -SecondValue { param([TransformTag()] [ValidateType(([IDictionary], [psobject], [VSTag]))] [object] $value) $this.Properties['Tags'] = [VSTag]::TransformTag($value) } $this | Add-Member -Force -MemberType ScriptProperty -Name Name -Value { $this.Properties['Name'] } -SecondValue { param([ValidateType(([string], [int], [IntrinsicFunction], [ConditionFunction]))] [object] $value) $this.Properties['Name'] = if ($value -is [int]) { $value.ToString() } else { $value } } $this | Add-Member -Force -MemberType ScriptProperty -Name Condition -Value { $this._condition } -SecondValue { param( [ValidateType(([string], [IntrinsicFunction], [ConditionFunction]))] [object] $value ) $this._condition = $value } } RAMResourceShare() : base() {} RAMResourceShare([IDictionary] $props) : base($props) {} RAMResourceShare([psobject] $props) : base($props) {} } |