exports/v1.0/ProxyCmdletDefinitions.ps1


# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Get acceptances from agreements
.Description
Get acceptances from agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgagreementacceptance
#>

function Get-MgAgreementAcceptance {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance])]
[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Get1', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementAcceptance
    ${AgreementAcceptanceId},

    [Parameter(ParameterSetName='Get1', Mandatory)]
    [Parameter(ParameterSetName='List1', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Alias('Expand')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Expand related entities
    ${ExpandProperty},

    [Parameter()]
    [Alias('Select')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Select properties to be returned
    ${Property},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Filter items by property values
    ${Filter},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Search items by search phrases
    ${Search},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Skip the first n items
    ${Skip},

    [Parameter(ParameterSetName='List1')]
    [Alias('OrderBy')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Order items by property values
    ${Sort},

    [Parameter(ParameterSetName='List1')]
    [Alias('Limit')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Show only the first n items
    ${Top},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Int32]
    # Sets the page size of results.
    ${PageSize},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # List all pages.
    ${All},

    [Parameter(ParameterSetName='List1')]
    [Alias('CV')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.String]
    # Specifies a count of the total number of items in a collection.
    # By default, this variable will be set in the global scope.
    ${CountVariable}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Get1 = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementAcceptance_Get1';
            GetViaIdentity1 = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementAcceptance_GetViaIdentity1';
            List1 = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementAcceptance_List1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Get versions from agreements
.Description
Get versions from agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgagreementfilelocalizationversion
#>

function Get-MgAgreementFileLocalizationVersion {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Get', Mandatory)]
    [Parameter(ParameterSetName='List', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Get', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileVersion
    ${AgreementFileVersionId},

    [Parameter(ParameterSetName='Get', Mandatory)]
    [Parameter(ParameterSetName='List', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Alias('Expand')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Expand related entities
    ${ExpandProperty},

    [Parameter()]
    [Alias('Select')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Select properties to be returned
    ${Property},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Filter items by property values
    ${Filter},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Search items by search phrases
    ${Search},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Skip the first n items
    ${Skip},

    [Parameter(ParameterSetName='List')]
    [Alias('OrderBy')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Order items by property values
    ${Sort},

    [Parameter(ParameterSetName='List')]
    [Alias('Limit')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Show only the first n items
    ${Top},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Int32]
    # Sets the page size of results.
    ${PageSize},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # List all pages.
    ${All},

    [Parameter(ParameterSetName='List')]
    [Alias('CV')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.String]
    # Specifies a count of the total number of items in a collection.
    # By default, this variable will be set in the global scope.
    ${CountVariable}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Get = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFileLocalizationVersion_Get';
            GetViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFileLocalizationVersion_GetViaIdentity';
            List = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFileLocalizationVersion_List';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Get localizations from agreements
.Description
Get localizations from agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgagreementfilelocalization
#>

function Get-MgAgreementFileLocalization {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Get', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Get', Mandatory)]
    [Parameter(ParameterSetName='List', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Alias('Expand')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Expand related entities
    ${ExpandProperty},

    [Parameter()]
    [Alias('Select')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Select properties to be returned
    ${Property},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Filter items by property values
    ${Filter},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Search items by search phrases
    ${Search},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Skip the first n items
    ${Skip},

    [Parameter(ParameterSetName='List')]
    [Alias('OrderBy')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Order items by property values
    ${Sort},

    [Parameter(ParameterSetName='List')]
    [Alias('Limit')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Show only the first n items
    ${Top},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Int32]
    # Sets the page size of results.
    ${PageSize},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # List all pages.
    ${All},

    [Parameter(ParameterSetName='List')]
    [Alias('CV')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.String]
    # Specifies a count of the total number of items in a collection.
    # By default, this variable will be set in the global scope.
    ${CountVariable}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Get = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFileLocalization_Get';
            GetViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFileLocalization_GetViaIdentity';
            List = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFileLocalization_List';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Get versions from agreements
.Description
Get versions from agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgagreementfileversion
#>

function Get-MgAgreementFileVersion {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion])]
[CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Get', Mandatory)]
    [Parameter(ParameterSetName='List', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Get', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileVersion
    ${AgreementFileVersionId},

    [Parameter(ParameterSetName='Get', Mandatory)]
    [Parameter(ParameterSetName='List', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Alias('Expand')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Expand related entities
    ${ExpandProperty},

    [Parameter()]
    [Alias('Select')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Select properties to be returned
    ${Property},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Filter items by property values
    ${Filter},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Search items by search phrases
    ${Search},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Skip the first n items
    ${Skip},

    [Parameter(ParameterSetName='List')]
    [Alias('OrderBy')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Order items by property values
    ${Sort},

    [Parameter(ParameterSetName='List')]
    [Alias('Limit')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Show only the first n items
    ${Top},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Int32]
    # Sets the page size of results.
    ${PageSize},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # List all pages.
    ${All},

    [Parameter(ParameterSetName='List')]
    [Alias('CV')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.String]
    # Specifies a count of the total number of items in a collection.
    # By default, this variable will be set in the global scope.
    ${CountVariable}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Get = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFileVersion_Get';
            GetViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFileVersion_GetViaIdentity';
            List = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFileVersion_List';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Get file from agreements
.Description
Get file from agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFile
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgagreementfile
#>

function Get-MgAgreementFile {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFile], [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization])]
[CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Get', Mandatory)]
    [Parameter(ParameterSetName='List', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='GetViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Alias('Expand')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Expand related entities
    ${ExpandProperty},

    [Parameter()]
    [Alias('Select')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Select properties to be returned
    ${Property},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Filter items by property values
    ${Filter},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Search items by search phrases
    ${Search},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Skip the first n items
    ${Skip},

    [Parameter(ParameterSetName='List')]
    [Alias('OrderBy')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Order items by property values
    ${Sort},

    [Parameter(ParameterSetName='List')]
    [Alias('Limit')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Show only the first n items
    ${Top},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Int32]
    # Sets the page size of results.
    ${PageSize},

    [Parameter(ParameterSetName='List')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # List all pages.
    ${All},

    [Parameter(ParameterSetName='List')]
    [Alias('CV')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.String]
    # Specifies a count of the total number of items in a collection.
    # By default, this variable will be set in the global scope.
    ${CountVariable}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Get = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFile_Get';
            GetViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFile_GetViaIdentity';
            List = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreementFile_List';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Get entity from agreements by key
.Description
Get entity from agreements by key
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreement
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mgagreement
#>

function Get-MgAgreement {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreement])]
[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Get1', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='GetViaIdentity1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Alias('Expand')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Expand related entities
    ${ExpandProperty},

    [Parameter()]
    [Alias('Select')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Select properties to be returned
    ${Property},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Filter items by property values
    ${Filter},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Search items by search phrases
    ${Search},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Skip the first n items
    ${Skip},

    [Parameter(ParameterSetName='List1')]
    [Alias('OrderBy')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Order items by property values
    ${Sort},

    [Parameter(ParameterSetName='List1')]
    [Alias('Limit')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Show only the first n items
    ${Top},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Int32]
    # Sets the page size of results.
    ${PageSize},

    [Parameter(ParameterSetName='List1')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # List all pages.
    ${All},

    [Parameter(ParameterSetName='List1')]
    [Alias('CV')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.String]
    # Specifies a count of the total number of items in a collection.
    # By default, this variable will be set in the global scope.
    ${CountVariable}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Get1 = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreement_Get1';
            GetViaIdentity1 = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreement_GetViaIdentity1';
            List1 = 'Microsoft.Graph.Identity.Governance.private\Get-MgAgreement_List1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Get ref of agreementAcceptances from users
.Description
Get ref of agreementAcceptances from users
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Outputs
System.String
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mguseragreementacceptancebyref
#>

function Get-MgUserAgreementAcceptanceByRef {
[OutputType([System.String])]
[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of user
    ${UserId},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Filter items by property values
    ${Filter},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Search items by search phrases
    ${Search},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Skip the first n items
    ${Skip},

    [Parameter()]
    [Alias('OrderBy')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Order items by property values
    ${Sort},

    [Parameter()]
    [Alias('Limit')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Show only the first n items
    ${Top},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Int32]
    # Sets the page size of results.
    ${PageSize},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # List all pages.
    ${All},

    [Parameter()]
    [Alias('CV')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.String]
    # Specifies a count of the total number of items in a collection.
    # By default, this variable will be set in the global scope.
    ${CountVariable}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            List1 = 'Microsoft.Graph.Identity.Governance.private\Get-MgUserAgreementAcceptanceByRef_List1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Get agreementAcceptances from users
.Description
Get agreementAcceptances from users
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/get-mguseragreementacceptance
#>

function Get-MgUserAgreementAcceptance {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance])]
[CmdletBinding(DefaultParameterSetName='List1', PositionalBinding=$false)]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of user
    ${UserId},

    [Parameter()]
    [Alias('Expand')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Expand related entities
    ${ExpandProperty},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Filter items by property values
    ${Filter},

    [Parameter()]
    [Alias('Select')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Select properties to be returned
    ${Property},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String]
    # Search items by search phrases
    ${Search},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Skip the first n items
    ${Skip},

    [Parameter()]
    [Alias('OrderBy')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.String[]]
    # Order items by property values
    ${Sort},

    [Parameter()]
    [Alias('Limit')]
    [Microsoft.Graph.PowerShell.Category('Query')]
    [System.Int32]
    # Show only the first n items
    ${Top},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Int32]
    # Sets the page size of results.
    ${PageSize},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # List all pages.
    ${All},

    [Parameter()]
    [Alias('CV')]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.String]
    # Specifies a count of the total number of items in a collection.
    # By default, this variable will be set in the global scope.
    ${CountVariable}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            List1 = 'Microsoft.Graph.Identity.Governance.private\Get-MgUserAgreementAcceptance_List1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Create new navigation property to acceptances for agreements
.Description
Create new navigation property to acceptances for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
BODYPARAMETER <IMicrosoftGraphAgreementAcceptance>: agreementAcceptance
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Id <String>]: Read-only.
  [AgreementFileId <String>]: ID of the agreement file accepted by the user.
  [AgreementId <String>]: ID of the agreement.
  [DeviceDisplayName <String>]: The display name of the device used for accepting the agreement.
  [DeviceId <String>]: The unique identifier of the device used for accepting the agreement.
  [DeviceOSType <String>]: The operating system used for accepting the agreement.
  [DeviceOSVersion <String>]: The operating system version of the device used for accepting the agreement.
  [ExpirationDateTime <DateTime?>]: The expiration date time of the acceptance. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
  [RecordedDateTime <DateTime?>]: The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
  [State <String>]: agreementAcceptanceState
  [UserDisplayName <String>]: Display name of the user when the acceptance was recorded.
  [UserEmail <String>]: Email of the user when the acceptance was recorded.
  [UserId <String>]: ID of the user who accepted the agreement.
  [UserPrincipalName <String>]: UPN of the user when the acceptance was recorded.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/new-mgagreementacceptance
#>

function New-MgAgreementAcceptance {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Create1', Mandatory)]
    [Parameter(ParameterSetName='CreateExpanded1', Mandatory)]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='CreateViaIdentity1', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Create1', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentity1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance]
    # agreementAcceptance
    # To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
    ${BodyParameter},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # ID of the agreement file accepted by the user.
    ${AgreementFileId},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # ID of the agreement.
    ${AgreementId1},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # The display name of the device used for accepting the agreement.
    ${DeviceDisplayName},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # The unique identifier of the device used for accepting the agreement.
    ${DeviceId},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # The operating system used for accepting the agreement.
    ${DeviceOSType},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # The operating system version of the device used for accepting the agreement.
    ${DeviceOSVersion},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # The expiration date time of the acceptance.
    # The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
    # For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
    ${ExpirationDateTime},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
    # For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
    ${RecordedDateTime},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # agreementAcceptanceState
    ${State},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Display name of the user when the acceptance was recorded.
    ${UserDisplayName},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Email of the user when the acceptance was recorded.
    ${UserEmail},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # ID of the user who accepted the agreement.
    ${UserId},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # UPN of the user when the acceptance was recorded.
    ${UserPrincipalName},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Create1 = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementAcceptance_Create1';
            CreateExpanded1 = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementAcceptance_CreateExpanded1';
            CreateViaIdentity1 = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementAcceptance_CreateViaIdentity1';
            CreateViaIdentityExpanded1 = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementAcceptance_CreateViaIdentityExpanded1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Create new navigation property to versions for agreements
.Description
Create new navigation property to versions for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
System.Collections.Hashtable
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
FILEDATA <IMicrosoftGraphAgreementFileData>: agreementFileData
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Data <Byte[]>]:
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/new-mgagreementfilelocalizationversion
#>

function New-MgAgreementFileLocalizationVersion {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Create', Mandatory)]
    [Parameter(ParameterSetName='CreateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Create', Mandatory)]
    [Parameter(ParameterSetName='CreateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Runtime.Info(Required, PossibleTypes=([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion]))]
    [System.Collections.Hashtable]
    # agreementFileVersion
    ${BodyParameter},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # .
    ${CreatedDateTime},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${DisplayName},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileData]
    # agreementFileData
    # To construct, see NOTES section for FILEDATA properties and create a hash table.
    ${FileData},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${FileName},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsDefault},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsMajorVersion},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${Language},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Create = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileLocalizationVersion_Create';
            CreateExpanded = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileLocalizationVersion_CreateExpanded';
            CreateViaIdentity = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileLocalizationVersion_CreateViaIdentity';
            CreateViaIdentityExpanded = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileLocalizationVersion_CreateViaIdentityExpanded';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Create new navigation property to localizations for agreements
.Description
Create new navigation property to localizations for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
BODYPARAMETER <IMicrosoftGraphAgreementFileLocalization>: agreementFileLocalization
  [(Any) <Object>]: This indicates any property can be added to this object.
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
  [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
 
FILEDATA <IMicrosoftGraphAgreementFileData>: agreementFileData
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Data <Byte[]>]:
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
 
VERSIONS <IMicrosoftGraphAgreementFileVersion[]>: .
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/new-mgagreementfilelocalization
#>

function New-MgAgreementFileLocalization {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Create', Mandatory)]
    [Parameter(ParameterSetName='CreateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization]
    # agreementFileLocalization
    # To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
    ${BodyParameter},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # .
    ${CreatedDateTime},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${DisplayName},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileData]
    # agreementFileData
    # To construct, see NOTES section for FILEDATA properties and create a hash table.
    ${FileData},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${FileName},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsDefault},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsMajorVersion},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${Language},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion[]]
    # .
    # To construct, see NOTES section for VERSIONS properties and create a hash table.
    ${Versions},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Create = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileLocalization_Create';
            CreateExpanded = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileLocalization_CreateExpanded';
            CreateViaIdentity = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileLocalization_CreateViaIdentity';
            CreateViaIdentityExpanded = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileLocalization_CreateViaIdentityExpanded';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Create new navigation property to versions for agreements
.Description
Create new navigation property to versions for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
System.Collections.Hashtable
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
FILEDATA <IMicrosoftGraphAgreementFileData>: agreementFileData
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Data <Byte[]>]:
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/new-mgagreementfileversion
#>

function New-MgAgreementFileVersion {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Create', Mandatory)]
    [Parameter(ParameterSetName='CreateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Create', Mandatory)]
    [Parameter(ParameterSetName='CreateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Runtime.Info(Required, PossibleTypes=([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion]))]
    [System.Collections.Hashtable]
    # agreementFileVersion
    ${BodyParameter},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # .
    ${CreatedDateTime},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${DisplayName},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileData]
    # agreementFileData
    # To construct, see NOTES section for FILEDATA properties and create a hash table.
    ${FileData},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${FileName},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsDefault},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsMajorVersion},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${Language},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Create = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileVersion_Create';
            CreateExpanded = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileVersion_CreateExpanded';
            CreateViaIdentity = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileVersion_CreateViaIdentity';
            CreateViaIdentityExpanded = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFileVersion_CreateViaIdentityExpanded';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Create new navigation property to files for agreements
.Description
Create new navigation property to files for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
BODYPARAMETER <IMicrosoftGraphAgreementFileLocalization>: agreementFileLocalization
  [(Any) <Object>]: This indicates any property can be added to this object.
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
  [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
 
FILEDATA <IMicrosoftGraphAgreementFileData>: agreementFileData
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Data <Byte[]>]:
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
 
VERSIONS <IMicrosoftGraphAgreementFileVersion[]>: .
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/new-mgagreementfile
#>

function New-MgAgreementFile {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Create', Mandatory)]
    [Parameter(ParameterSetName='CreateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Create', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization]
    # agreementFileLocalization
    # To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
    ${BodyParameter},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # .
    ${CreatedDateTime},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${DisplayName},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileData]
    # agreementFileData
    # To construct, see NOTES section for FILEDATA properties and create a hash table.
    ${FileData},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${FileName},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsDefault},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsMajorVersion},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${Language},

    [Parameter(ParameterSetName='CreateExpanded')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion[]]
    # .
    # To construct, see NOTES section for VERSIONS properties and create a hash table.
    ${Versions},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Create = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFile_Create';
            CreateExpanded = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFile_CreateExpanded';
            CreateViaIdentity = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFile_CreateViaIdentity';
            CreateViaIdentityExpanded = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreementFile_CreateViaIdentityExpanded';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Add new entity to agreements
.Description
Add new entity to agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreement
.Outputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreement
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
ACCEPTANCES <IMicrosoftGraphAgreementAcceptance[]>: Read-only. Information about acceptances of this agreement.
  [Id <String>]: Read-only.
  [AgreementFileId <String>]: ID of the agreement file accepted by the user.
  [AgreementId <String>]: ID of the agreement.
  [DeviceDisplayName <String>]: The display name of the device used for accepting the agreement.
  [DeviceId <String>]: The unique identifier of the device used for accepting the agreement.
  [DeviceOSType <String>]: The operating system used for accepting the agreement.
  [DeviceOSVersion <String>]: The operating system version of the device used for accepting the agreement.
  [ExpirationDateTime <DateTime?>]: The expiration date time of the acceptance. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
  [RecordedDateTime <DateTime?>]: The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
  [State <String>]: agreementAcceptanceState
  [UserDisplayName <String>]: Display name of the user when the acceptance was recorded.
  [UserEmail <String>]: Email of the user when the acceptance was recorded.
  [UserId <String>]: ID of the user who accepted the agreement.
  [UserPrincipalName <String>]: UPN of the user when the acceptance was recorded.
 
BODYPARAMETER <IMicrosoftGraphAgreement>: agreement
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Id <String>]: Read-only.
  [Acceptances <IMicrosoftGraphAgreementAcceptance[]>]: Read-only. Information about acceptances of this agreement.
    [Id <String>]: Read-only.
    [AgreementFileId <String>]: ID of the agreement file accepted by the user.
    [AgreementId <String>]: ID of the agreement.
    [DeviceDisplayName <String>]: The display name of the device used for accepting the agreement.
    [DeviceId <String>]: The unique identifier of the device used for accepting the agreement.
    [DeviceOSType <String>]: The operating system used for accepting the agreement.
    [DeviceOSVersion <String>]: The operating system version of the device used for accepting the agreement.
    [ExpirationDateTime <DateTime?>]: The expiration date time of the acceptance. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
    [RecordedDateTime <DateTime?>]: The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
    [State <String>]: agreementAcceptanceState
    [UserDisplayName <String>]: Display name of the user when the acceptance was recorded.
    [UserEmail <String>]: Email of the user when the acceptance was recorded.
    [UserId <String>]: ID of the user who accepted the agreement.
    [UserPrincipalName <String>]: UPN of the user when the acceptance was recorded.
  [DisplayName <String>]: Display name of the agreement. The display name is used for internal tracking of the agreement but is not shown to end users who view the agreement.
  [File <IMicrosoftGraphAgreementFile>]: agreementFile
    [(Any) <Object>]: This indicates any property can be added to this object.
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
      [(Any) <Object>]: This indicates any property can be added to this object.
      [Data <Byte[]>]:
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
    [Localizations <IMicrosoftGraphAgreementFileLocalization[]>]:
      [CreatedDateTime <DateTime?>]:
      [DisplayName <String>]:
      [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
      [FileName <String>]:
      [IsDefault <Boolean?>]:
      [IsMajorVersion <Boolean?>]:
      [Language <String>]:
      [Id <String>]: Read-only.
      [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
        [CreatedDateTime <DateTime?>]:
        [DisplayName <String>]:
        [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
        [FileName <String>]:
        [IsDefault <Boolean?>]:
        [IsMajorVersion <Boolean?>]:
        [Language <String>]:
        [Id <String>]: Read-only.
  [Files <IMicrosoftGraphAgreementFileLocalization[]>]: PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.
  [IsPerDeviceAcceptanceRequired <Boolean?>]: This setting enables you to require end users to accept this agreement on every device that they are accessing it from. The end user will be required to register their device in Azure AD, if they haven't already done so.
  [IsViewingBeforeAcceptanceRequired <Boolean?>]: Indicates whether the user has to expand the agreement before accepting.
  [TermsExpiration <IMicrosoftGraphTermsExpiration>]: termsExpiration
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Frequency <TimeSpan?>]: Represents the frequency at which the terms will expire, after its first expiration as set in startDateTime. The value is represented in ISO 8601 format for durations. For example, PT1M represents a time period of 1 month.
    [StartDateTime <DateTime?>]: The DateTime when the agreement is set to expire for all users. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'.
  [UserReacceptRequiredFrequency <TimeSpan?>]: The duration after which the user must re-accept the terms of use. The value is represented in ISO 8601 format for durations.
 
FILE <IMicrosoftGraphAgreementFile>: agreementFile
  [(Any) <Object>]: This indicates any property can be added to this object.
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
  [Localizations <IMicrosoftGraphAgreementFileLocalization[]>]:
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
    [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
      [CreatedDateTime <DateTime?>]:
      [DisplayName <String>]:
      [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
      [FileName <String>]:
      [IsDefault <Boolean?>]:
      [IsMajorVersion <Boolean?>]:
      [Language <String>]:
      [Id <String>]: Read-only.
 
FILES <IMicrosoftGraphAgreementFileLocalization[]>: PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
  [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
 
TERMSEXPIRATION <IMicrosoftGraphTermsExpiration>: termsExpiration
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Frequency <TimeSpan?>]: Represents the frequency at which the terms will expire, after its first expiration as set in startDateTime. The value is represented in ISO 8601 format for durations. For example, PT1M represents a time period of 1 month.
  [StartDateTime <DateTime?>]: The DateTime when the agreement is set to expire for all users. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'.
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/new-mgagreement
#>

function New-MgAgreement {
[OutputType([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreement])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Create1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreement]
    # agreement
    # To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
    ${BodyParameter},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance[]]
    # Read-only.
    # Information about acceptances of this agreement.
    # To construct, see NOTES section for ACCEPTANCES properties and create a hash table.
    ${Acceptances},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Display name of the agreement.
    # The display name is used for internal tracking of the agreement but is not shown to end users who view the agreement.
    ${DisplayName},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFile]
    # agreementFile
    # To construct, see NOTES section for FILE properties and create a hash table.
    ${File},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization[]]
    # PDFs linked to this agreement.
    # Note: This property is in the process of being deprecated.
    # Use the file property instead.
    # To construct, see NOTES section for FILES properties and create a hash table.
    ${Files},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # This setting enables you to require end users to accept this agreement on every device that they are accessing it from.
    # The end user will be required to register their device in Azure AD, if they haven't already done so.
    ${IsPerDeviceAcceptanceRequired},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # Indicates whether the user has to expand the agreement before accepting.
    ${IsViewingBeforeAcceptanceRequired},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphTermsExpiration]
    # termsExpiration
    # To construct, see NOTES section for TERMSEXPIRATION properties and create a hash table.
    ${TermsExpiration},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.TimeSpan]
    # The duration after which the user must re-accept the terms of use.
    # The value is represented in ISO 8601 format for durations.
    ${UserReacceptRequiredFrequency},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Create1 = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreement_Create1';
            CreateExpanded1 = 'Microsoft.Graph.Identity.Governance.private\New-MgAgreement_CreateExpanded1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Create new navigation property ref to agreementAcceptances for users
.Description
Create new navigation property ref to agreementAcceptances for users
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
System.Collections.Hashtable
.Outputs
Microsoft.Graph.PowerShell.Models.IPathsIc0Z89UsersUserIdAgreementacceptancesRefPostResponses201ContentApplicationJsonSchema
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/new-mguseragreementacceptancebyref
#>

function New-MgUserAgreementAcceptanceByRef {
[OutputType([Microsoft.Graph.PowerShell.Models.IPathsIc0Z89UsersUserIdAgreementacceptancesRefPostResponses201ContentApplicationJsonSchema])]
[CmdletBinding(DefaultParameterSetName='CreateExpanded1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Create1', Mandatory)]
    [Parameter(ParameterSetName='CreateExpanded1', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of user
    ${UserId},

    [Parameter(ParameterSetName='CreateViaIdentity1', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Create1', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='CreateViaIdentity1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Runtime.Info(Required, PossibleTypes=([Microsoft.Graph.PowerShell.Models.IPathsRuvqjtUsersUserIdAgreementacceptancesRefPostRequestbodyContentApplicationJsonSchema]))]
    [System.Collections.Hashtable]
    # .
    ${BodyParameter},

    [Parameter(ParameterSetName='CreateExpanded1')]
    [Parameter(ParameterSetName='CreateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Create1 = 'Microsoft.Graph.Identity.Governance.private\New-MgUserAgreementAcceptanceByRef_Create1';
            CreateExpanded1 = 'Microsoft.Graph.Identity.Governance.private\New-MgUserAgreementAcceptanceByRef_CreateExpanded1';
            CreateViaIdentity1 = 'Microsoft.Graph.Identity.Governance.private\New-MgUserAgreementAcceptanceByRef_CreateViaIdentity1';
            CreateViaIdentityExpanded1 = 'Microsoft.Graph.Identity.Governance.private\New-MgUserAgreementAcceptanceByRef_CreateViaIdentityExpanded1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Delete navigation property acceptances for agreements
.Description
Delete navigation property acceptances for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/remove-mgagreementacceptance
#>

function Remove-MgAgreementAcceptance {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='Delete1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Delete1', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementAcceptance
    ${AgreementAcceptanceId},

    [Parameter(ParameterSetName='Delete1', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='DeleteViaIdentity1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Header')]
    [System.String]
    # ETag
    ${IfMatch},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Delete1 = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementAcceptance_Delete1';
            DeleteViaIdentity1 = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementAcceptance_DeleteViaIdentity1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Delete navigation property versions for agreements
.Description
Delete navigation property versions for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/remove-mgagreementfilelocalizationversion
#>

function Remove-MgAgreementFileLocalizationVersion {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Delete', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Delete', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileVersion
    ${AgreementFileVersionId},

    [Parameter(ParameterSetName='Delete', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Header')]
    [System.String]
    # ETag
    ${IfMatch},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Delete = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementFileLocalizationVersion_Delete';
            DeleteViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementFileLocalizationVersion_DeleteViaIdentity';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Delete navigation property localizations for agreements
.Description
Delete navigation property localizations for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/remove-mgagreementfilelocalization
#>

function Remove-MgAgreementFileLocalization {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Delete', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Delete', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Header')]
    [System.String]
    # ETag
    ${IfMatch},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Delete = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementFileLocalization_Delete';
            DeleteViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementFileLocalization_DeleteViaIdentity';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Delete navigation property versions for agreements
.Description
Delete navigation property versions for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/remove-mgagreementfileversion
#>

function Remove-MgAgreementFileVersion {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Delete', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Delete', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileVersion
    ${AgreementFileVersionId},

    [Parameter(ParameterSetName='Delete', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Header')]
    [System.String]
    # ETag
    ${IfMatch},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Delete = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementFileVersion_Delete';
            DeleteViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementFileVersion_DeleteViaIdentity';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Delete navigation property file for agreements
.Description
Delete navigation property file for agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/remove-mgagreementfile
#>

function Remove-MgAgreementFile {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Delete', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='DeleteViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Header')]
    [System.String]
    # ETag
    ${IfMatch},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Delete = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementFile_Delete';
            DeleteViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreementFile_DeleteViaIdentity';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Delete entity from agreements
.Description
Delete entity from agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/remove-mgagreement
#>

function Remove-MgAgreement {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='Delete1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Delete1', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='DeleteViaIdentity1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Header')]
    [System.String]
    # ETag
    ${IfMatch},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Delete1 = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreement_Delete1';
            DeleteViaIdentity1 = 'Microsoft.Graph.Identity.Governance.private\Remove-MgAgreement_DeleteViaIdentity1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Update the navigation property acceptances in agreements
.Description
Update the navigation property acceptances in agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
BODYPARAMETER <IMicrosoftGraphAgreementAcceptance>: agreementAcceptance
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Id <String>]: Read-only.
  [AgreementFileId <String>]: ID of the agreement file accepted by the user.
  [AgreementId <String>]: ID of the agreement.
  [DeviceDisplayName <String>]: The display name of the device used for accepting the agreement.
  [DeviceId <String>]: The unique identifier of the device used for accepting the agreement.
  [DeviceOSType <String>]: The operating system used for accepting the agreement.
  [DeviceOSVersion <String>]: The operating system version of the device used for accepting the agreement.
  [ExpirationDateTime <DateTime?>]: The expiration date time of the acceptance. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
  [RecordedDateTime <DateTime?>]: The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
  [State <String>]: agreementAcceptanceState
  [UserDisplayName <String>]: Display name of the user when the acceptance was recorded.
  [UserEmail <String>]: Email of the user when the acceptance was recorded.
  [UserId <String>]: ID of the user who accepted the agreement.
  [UserPrincipalName <String>]: UPN of the user when the acceptance was recorded.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/update-mgagreementacceptance
#>

function Update-MgAgreementAcceptance {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Update1', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded1', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementAcceptance
    ${AgreementAcceptanceId},

    [Parameter(ParameterSetName='Update1', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded1', Mandatory)]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='UpdateViaIdentity1', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Update1', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentity1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance]
    # agreementAcceptance
    # To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
    ${BodyParameter},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # ID of the agreement file accepted by the user.
    ${AgreementFileId},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # ID of the agreement.
    ${AgreementId1},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # The display name of the device used for accepting the agreement.
    ${DeviceDisplayName},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # The unique identifier of the device used for accepting the agreement.
    ${DeviceId},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # The operating system used for accepting the agreement.
    ${DeviceOSType},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # The operating system version of the device used for accepting the agreement.
    ${DeviceOSVersion},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # The expiration date time of the acceptance.
    # The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
    # For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
    ${ExpirationDateTime},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time.
    # For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
    ${RecordedDateTime},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # agreementAcceptanceState
    ${State},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Display name of the user when the acceptance was recorded.
    ${UserDisplayName},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Email of the user when the acceptance was recorded.
    ${UserEmail},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # ID of the user who accepted the agreement.
    ${UserId},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # UPN of the user when the acceptance was recorded.
    ${UserPrincipalName},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Update1 = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementAcceptance_Update1';
            UpdateExpanded1 = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementAcceptance_UpdateExpanded1';
            UpdateViaIdentity1 = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementAcceptance_UpdateViaIdentity1';
            UpdateViaIdentityExpanded1 = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementAcceptance_UpdateViaIdentityExpanded1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Update the navigation property versions in agreements
.Description
Update the navigation property versions in agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
System.Collections.Hashtable
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
FILEDATA <IMicrosoftGraphAgreementFileData>: agreementFileData
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Data <Byte[]>]:
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/update-mgagreementfilelocalizationversion
#>

function Update-MgAgreementFileLocalizationVersion {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Update', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Update', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileVersion
    ${AgreementFileVersionId},

    [Parameter(ParameterSetName='Update', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Runtime.Info(Required, PossibleTypes=([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion]))]
    [System.Collections.Hashtable]
    # agreementFileVersion
    ${BodyParameter},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # .
    ${CreatedDateTime},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${DisplayName},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileData]
    # agreementFileData
    # To construct, see NOTES section for FILEDATA properties and create a hash table.
    ${FileData},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${FileName},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsDefault},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsMajorVersion},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${Language},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Update = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileLocalizationVersion_Update';
            UpdateExpanded = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileLocalizationVersion_UpdateExpanded';
            UpdateViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileLocalizationVersion_UpdateViaIdentity';
            UpdateViaIdentityExpanded = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileLocalizationVersion_UpdateViaIdentityExpanded';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Update the navigation property localizations in agreements
.Description
Update the navigation property localizations in agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
BODYPARAMETER <IMicrosoftGraphAgreementFileLocalization>: agreementFileLocalization
  [(Any) <Object>]: This indicates any property can be added to this object.
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
  [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
 
FILEDATA <IMicrosoftGraphAgreementFileData>: agreementFileData
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Data <Byte[]>]:
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
 
VERSIONS <IMicrosoftGraphAgreementFileVersion[]>: .
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/update-mgagreementfilelocalization
#>

function Update-MgAgreementFileLocalization {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Update', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Update', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization]
    # agreementFileLocalization
    # To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
    ${BodyParameter},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # .
    ${CreatedDateTime},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${DisplayName},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileData]
    # agreementFileData
    # To construct, see NOTES section for FILEDATA properties and create a hash table.
    ${FileData},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${FileName},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsDefault},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsMajorVersion},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${Language},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion[]]
    # .
    # To construct, see NOTES section for VERSIONS properties and create a hash table.
    ${Versions},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Update = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileLocalization_Update';
            UpdateExpanded = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileLocalization_UpdateExpanded';
            UpdateViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileLocalization_UpdateViaIdentity';
            UpdateViaIdentityExpanded = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileLocalization_UpdateViaIdentityExpanded';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Update the navigation property versions in agreements
.Description
Update the navigation property versions in agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
System.Collections.Hashtable
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
FILEDATA <IMicrosoftGraphAgreementFileData>: agreementFileData
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Data <Byte[]>]:
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/update-mgagreementfileversion
#>

function Update-MgAgreementFileVersion {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Update', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileLocalization
    ${AgreementFileLocalizationId},

    [Parameter(ParameterSetName='Update', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreementFileVersion
    ${AgreementFileVersionId},

    [Parameter(ParameterSetName='Update', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Runtime.Info(Required, PossibleTypes=([Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileVersion]))]
    [System.Collections.Hashtable]
    # agreementFileVersion
    ${BodyParameter},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # .
    ${CreatedDateTime},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${DisplayName},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileData]
    # agreementFileData
    # To construct, see NOTES section for FILEDATA properties and create a hash table.
    ${FileData},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${FileName},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsDefault},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsMajorVersion},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${Language},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Update = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileVersion_Update';
            UpdateExpanded = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileVersion_UpdateExpanded';
            UpdateViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileVersion_UpdateViaIdentity';
            UpdateViaIdentityExpanded = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFileVersion_UpdateViaIdentityExpanded';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Update the navigation property file in agreements
.Description
Update the navigation property file in agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFile
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
BODYPARAMETER <IMicrosoftGraphAgreementFile>: agreementFile
  [(Any) <Object>]: This indicates any property can be added to this object.
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
  [Localizations <IMicrosoftGraphAgreementFileLocalization[]>]:
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
    [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
      [CreatedDateTime <DateTime?>]:
      [DisplayName <String>]:
      [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
      [FileName <String>]:
      [IsDefault <Boolean?>]:
      [IsMajorVersion <Boolean?>]:
      [Language <String>]:
      [Id <String>]: Read-only.
 
FILEDATA <IMicrosoftGraphAgreementFileData>: agreementFileData
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Data <Byte[]>]:
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
 
LOCALIZATIONS <IMicrosoftGraphAgreementFileLocalization[]>: .
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
  [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/update-mgagreementfile
#>

function Update-MgAgreementFile {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Update', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Update', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentity', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFile]
    # agreementFile
    # To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
    ${BodyParameter},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.DateTime]
    # .
    ${CreatedDateTime},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${DisplayName},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileData]
    # agreementFileData
    # To construct, see NOTES section for FILEDATA properties and create a hash table.
    ${FileData},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${FileName},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsDefault},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # .
    ${IsMajorVersion},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # .
    ${Language},

    [Parameter(ParameterSetName='UpdateExpanded')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization[]]
    # .
    # To construct, see NOTES section for LOCALIZATIONS properties and create a hash table.
    ${Localizations},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Update = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFile_Update';
            UpdateExpanded = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFile_UpdateExpanded';
            UpdateViaIdentity = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFile_UpdateViaIdentity';
            UpdateViaIdentityExpanded = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreementFile_UpdateViaIdentityExpanded';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# ----------------------------------------------------------------------------------
#
# Copyright Microsoft Corporation
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------------------------------------

<#
.Synopsis
Update entity in agreements
.Description
Update entity in agreements
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
.Example
PS C:\> {{ Add code here }}
 
{{ Add output here }}
 
.Inputs
Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity
.Inputs
Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreement
.Outputs
System.Boolean
.Notes
COMPLEX PARAMETER PROPERTIES
 
To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.
 
ACCEPTANCES <IMicrosoftGraphAgreementAcceptance[]>: Read-only. Information about acceptances of this agreement.
  [Id <String>]: Read-only.
  [AgreementFileId <String>]: ID of the agreement file accepted by the user.
  [AgreementId <String>]: ID of the agreement.
  [DeviceDisplayName <String>]: The display name of the device used for accepting the agreement.
  [DeviceId <String>]: The unique identifier of the device used for accepting the agreement.
  [DeviceOSType <String>]: The operating system used for accepting the agreement.
  [DeviceOSVersion <String>]: The operating system version of the device used for accepting the agreement.
  [ExpirationDateTime <DateTime?>]: The expiration date time of the acceptance. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
  [RecordedDateTime <DateTime?>]: The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
  [State <String>]: agreementAcceptanceState
  [UserDisplayName <String>]: Display name of the user when the acceptance was recorded.
  [UserEmail <String>]: Email of the user when the acceptance was recorded.
  [UserId <String>]: ID of the user who accepted the agreement.
  [UserPrincipalName <String>]: UPN of the user when the acceptance was recorded.
 
BODYPARAMETER <IMicrosoftGraphAgreement>: agreement
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Id <String>]: Read-only.
  [Acceptances <IMicrosoftGraphAgreementAcceptance[]>]: Read-only. Information about acceptances of this agreement.
    [Id <String>]: Read-only.
    [AgreementFileId <String>]: ID of the agreement file accepted by the user.
    [AgreementId <String>]: ID of the agreement.
    [DeviceDisplayName <String>]: The display name of the device used for accepting the agreement.
    [DeviceId <String>]: The unique identifier of the device used for accepting the agreement.
    [DeviceOSType <String>]: The operating system used for accepting the agreement.
    [DeviceOSVersion <String>]: The operating system version of the device used for accepting the agreement.
    [ExpirationDateTime <DateTime?>]: The expiration date time of the acceptance. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
    [RecordedDateTime <DateTime?>]: The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
    [State <String>]: agreementAcceptanceState
    [UserDisplayName <String>]: Display name of the user when the acceptance was recorded.
    [UserEmail <String>]: Email of the user when the acceptance was recorded.
    [UserId <String>]: ID of the user who accepted the agreement.
    [UserPrincipalName <String>]: UPN of the user when the acceptance was recorded.
  [DisplayName <String>]: Display name of the agreement. The display name is used for internal tracking of the agreement but is not shown to end users who view the agreement.
  [File <IMicrosoftGraphAgreementFile>]: agreementFile
    [(Any) <Object>]: This indicates any property can be added to this object.
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
      [(Any) <Object>]: This indicates any property can be added to this object.
      [Data <Byte[]>]:
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
    [Localizations <IMicrosoftGraphAgreementFileLocalization[]>]:
      [CreatedDateTime <DateTime?>]:
      [DisplayName <String>]:
      [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
      [FileName <String>]:
      [IsDefault <Boolean?>]:
      [IsMajorVersion <Boolean?>]:
      [Language <String>]:
      [Id <String>]: Read-only.
      [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
        [CreatedDateTime <DateTime?>]:
        [DisplayName <String>]:
        [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
        [FileName <String>]:
        [IsDefault <Boolean?>]:
        [IsMajorVersion <Boolean?>]:
        [Language <String>]:
        [Id <String>]: Read-only.
  [Files <IMicrosoftGraphAgreementFileLocalization[]>]: PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.
  [IsPerDeviceAcceptanceRequired <Boolean?>]: This setting enables you to require end users to accept this agreement on every device that they are accessing it from. The end user will be required to register their device in Azure AD, if they haven't already done so.
  [IsViewingBeforeAcceptanceRequired <Boolean?>]: Indicates whether the user has to expand the agreement before accepting.
  [TermsExpiration <IMicrosoftGraphTermsExpiration>]: termsExpiration
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Frequency <TimeSpan?>]: Represents the frequency at which the terms will expire, after its first expiration as set in startDateTime. The value is represented in ISO 8601 format for durations. For example, PT1M represents a time period of 1 month.
    [StartDateTime <DateTime?>]: The DateTime when the agreement is set to expire for all users. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'.
  [UserReacceptRequiredFrequency <TimeSpan?>]: The duration after which the user must re-accept the terms of use. The value is represented in ISO 8601 format for durations.
 
FILE <IMicrosoftGraphAgreementFile>: agreementFile
  [(Any) <Object>]: This indicates any property can be added to this object.
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
  [Localizations <IMicrosoftGraphAgreementFileLocalization[]>]:
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
    [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
      [CreatedDateTime <DateTime?>]:
      [DisplayName <String>]:
      [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
      [FileName <String>]:
      [IsDefault <Boolean?>]:
      [IsMajorVersion <Boolean?>]:
      [Language <String>]:
      [Id <String>]: Read-only.
 
FILES <IMicrosoftGraphAgreementFileLocalization[]>: PDFs linked to this agreement. Note: This property is in the process of being deprecated. Use the file property instead.
  [CreatedDateTime <DateTime?>]:
  [DisplayName <String>]:
  [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [(Any) <Object>]: This indicates any property can be added to this object.
    [Data <Byte[]>]:
  [FileName <String>]:
  [IsDefault <Boolean?>]:
  [IsMajorVersion <Boolean?>]:
  [Language <String>]:
  [Id <String>]: Read-only.
  [Versions <IMicrosoftGraphAgreementFileVersion[]>]:
    [CreatedDateTime <DateTime?>]:
    [DisplayName <String>]:
    [FileData <IMicrosoftGraphAgreementFileData>]: agreementFileData
    [FileName <String>]:
    [IsDefault <Boolean?>]:
    [IsMajorVersion <Boolean?>]:
    [Language <String>]:
    [Id <String>]: Read-only.
 
INPUTOBJECT <IIdentityGovernanceIdentity>: Identity Parameter
  [AccessPackageAssignmentId <String>]: key: id of accessPackageAssignment
  [AccessPackageAssignmentPolicyId <String>]: key: id of accessPackageAssignmentPolicy
  [AccessPackageAssignmentRequestId <String>]: key: id of accessPackageAssignmentRequest
  [AccessPackageAssignmentResourceRoleId <String>]: key: id of accessPackageAssignmentResourceRole
  [AccessPackageCatalogId <String>]: key: id of accessPackageCatalog
  [AccessPackageId <String>]: key: id of accessPackage
  [AccessPackageResourceEnvironmentId <String>]: key: id of accessPackageResourceEnvironment
  [AccessPackageResourceId <String>]: key: id of accessPackageResource
  [AccessPackageResourceRequestId <String>]: key: id of accessPackageResourceRequest
  [AccessPackageResourceRoleId <String>]: key: id of accessPackageResourceRole
  [AccessPackageResourceRoleScopeId <String>]: key: id of accessPackageResourceRoleScope
  [AccessPackageResourceScopeId <String>]: key: id of accessPackageResourceScope
  [AccessReviewDecisionId <String>]: key: id of accessReviewDecision
  [AccessReviewId <String>]: key: id of accessReview
  [AccessReviewId1 <String>]: key: id of accessReview
  [AccessReviewInstanceId <String>]: key: id of accessReviewInstance
  [AccessReviewReviewerId <String>]: key: id of accessReviewReviewer
  [AccessReviewScheduleDefinitionId <String>]: key: id of accessReviewScheduleDefinition
  [AgreementAcceptanceId <String>]: key: id of agreementAcceptance
  [AgreementFileLocalizationId <String>]: key: id of agreementFileLocalization
  [AgreementFileVersionId <String>]: key: id of agreementFileVersion
  [AgreementId <String>]: key: id of agreement
  [ApprovalId <String>]: key: id of approval
  [ApprovalStepId <String>]: key: id of approvalStep
  [BusinessFlowTemplateId <String>]: key: id of businessFlowTemplate
  [ConnectedOrganizationId <String>]: key: id of connectedOrganization
  [DirectoryObjectId <String>]: key: id of directoryObject
  [GovernanceResourceId <String>]: key: id of governanceResource
  [GovernanceRoleAssignmentId <String>]: key: id of governanceRoleAssignment
  [GovernanceRoleAssignmentRequestId <String>]: key: id of governanceRoleAssignmentRequest
  [GovernanceRoleDefinitionId <String>]: key: id of governanceRoleDefinition
  [GovernanceRoleSettingId <String>]: key: id of governanceRoleSetting
  [On <String>]: Usage: on={on}
  [PrivilegedAccessId <String>]: key: id of privilegedAccess
  [PrivilegedApprovalId <String>]: key: id of privilegedApproval
  [PrivilegedOperationEventId <String>]: key: id of privilegedOperationEvent
  [PrivilegedRoleAssignmentId <String>]: key: id of privilegedRoleAssignment
  [PrivilegedRoleAssignmentRequestId <String>]: key: id of privilegedRoleAssignmentRequest
  [PrivilegedRoleId <String>]: key: id of privilegedRole
  [ProgramControlId <String>]: key: id of programControl
  [ProgramControlTypeId <String>]: key: id of programControlType
  [ProgramId <String>]: key: id of program
  [UserId <String>]: key: id of user
 
TERMSEXPIRATION <IMicrosoftGraphTermsExpiration>: termsExpiration
  [(Any) <Object>]: This indicates any property can be added to this object.
  [Frequency <TimeSpan?>]: Represents the frequency at which the terms will expire, after its first expiration as set in startDateTime. The value is represented in ISO 8601 format for durations. For example, PT1M represents a time period of 1 month.
  [StartDateTime <DateTime?>]: The DateTime when the agreement is set to expire for all users. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'.
.Link
https://docs.microsoft.com/en-us/powershell/module/microsoft.graph.identity.governance/update-mgagreement
#>

function Update-MgAgreement {
[OutputType([System.Boolean])]
[CmdletBinding(DefaultParameterSetName='UpdateExpanded1', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
[Microsoft.Graph.PowerShell.Profile('v1.0')]
param(
    [Parameter(ParameterSetName='Update1', Mandatory)]
    [Parameter(ParameterSetName='UpdateExpanded1', Mandatory)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [System.String]
    # key: id of agreement
    ${AgreementId},

    [Parameter(ParameterSetName='UpdateViaIdentity1', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Path')]
    [Microsoft.Graph.PowerShell.Models.IIdentityGovernanceIdentity]
    # Identity Parameter
    # To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
    ${InputObject},

    [Parameter(ParameterSetName='Update1', Mandatory, ValueFromPipeline)]
    [Parameter(ParameterSetName='UpdateViaIdentity1', Mandatory, ValueFromPipeline)]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreement]
    # agreement
    # To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
    ${BodyParameter},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementAcceptance[]]
    # Read-only.
    # Information about acceptances of this agreement.
    # To construct, see NOTES section for ACCEPTANCES properties and create a hash table.
    ${Acceptances},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Collections.Hashtable]
    # Additional Parameters
    ${AdditionalProperties},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Display name of the agreement.
    # The display name is used for internal tracking of the agreement but is not shown to end users who view the agreement.
    ${DisplayName},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFile]
    # agreementFile
    # To construct, see NOTES section for FILE properties and create a hash table.
    ${File},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAgreementFileLocalization[]]
    # PDFs linked to this agreement.
    # Note: This property is in the process of being deprecated.
    # Use the file property instead.
    # To construct, see NOTES section for FILES properties and create a hash table.
    ${Files},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.String]
    # Read-only.
    ${Id},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # This setting enables you to require end users to accept this agreement on every device that they are accessing it from.
    # The end user will be required to register their device in Azure AD, if they haven't already done so.
    ${IsPerDeviceAcceptanceRequired},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.Management.Automation.SwitchParameter]
    # Indicates whether the user has to expand the agreement before accepting.
    ${IsViewingBeforeAcceptanceRequired},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [Microsoft.Graph.PowerShell.Models.IMicrosoftGraphTermsExpiration]
    # termsExpiration
    # To construct, see NOTES section for TERMSEXPIRATION properties and create a hash table.
    ${TermsExpiration},

    [Parameter(ParameterSetName='UpdateExpanded1')]
    [Parameter(ParameterSetName='UpdateViaIdentityExpanded1')]
    [Microsoft.Graph.PowerShell.Category('Body')]
    [System.TimeSpan]
    # The duration after which the user must re-accept the terms of use.
    # The value is represented in ISO 8601 format for durations.
    ${UserReacceptRequiredFrequency},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Wait for .NET debugger to attach
    ${Break},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be appended to the front of the pipeline
    ${HttpPipelineAppend},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [Microsoft.Graph.PowerShell.Runtime.SendAsyncStep[]]
    # SendAsync Pipeline Steps to be prepended to the front of the pipeline
    ${HttpPipelinePrepend},

    [Parameter()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Returns true when the command succeeds
    ${PassThru},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Uri]
    # The URI for the proxy server to use
    ${Proxy},

    [Parameter(DontShow)]
    [ValidateNotNull()]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.PSCredential]
    # Credentials for a proxy server to use for the remote call
    ${ProxyCredential},

    [Parameter(DontShow)]
    [Microsoft.Graph.PowerShell.Category('Runtime')]
    [System.Management.Automation.SwitchParameter]
    # Use the default credentials for the proxy
    ${ProxyUseDefaultCredentials}
)

begin {
    try {
        $outBuffer = $null
        if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) {
            $PSBoundParameters['OutBuffer'] = 1
        }
        $parameterSet = $PSCmdlet.ParameterSetName
        $mapping = @{
            Update1 = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreement_Update1';
            UpdateExpanded1 = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreement_UpdateExpanded1';
            UpdateViaIdentity1 = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreement_UpdateViaIdentity1';
            UpdateViaIdentityExpanded1 = 'Microsoft.Graph.Identity.Governance.private\Update-MgAgreement_UpdateViaIdentityExpanded1';
        }
        $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet)
        $scriptCmd = {& $wrappedCmd @PSBoundParameters}
        $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin)
        $steppablePipeline.Begin($PSCmdlet)
    } catch {
        throw
    }
}

process {
    try {
        $steppablePipeline.Process($_)
    } catch {
        throw
    }
}

end {
    try {
        $steppablePipeline.End()
    } catch {
        throw
    }
}
}

# SIG # Begin signature block
# MIIjkgYJKoZIhvcNAQcCoIIjgzCCI38CAQExDzANBglghkgBZQMEAgEFADB5Bgor
# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG
# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCA88ArdnTyB9hU/
# CUjZfzW79i3Llpyg5i6OM/XGbTt8V6CCDYEwggX/MIID56ADAgECAhMzAAAB32vw
# LpKnSrTQAAAAAAHfMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD
# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy
# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p
# bmcgUENBIDIwMTEwHhcNMjAxMjE1MjEzMTQ1WhcNMjExMjAyMjEzMTQ1WjB0MQsw
# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u
# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy
# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
# AQC2uxlZEACjqfHkuFyoCwfL25ofI9DZWKt4wEj3JBQ48GPt1UsDv834CcoUUPMn
# s/6CtPoaQ4Thy/kbOOg/zJAnrJeiMQqRe2Lsdb/NSI2gXXX9lad1/yPUDOXo4GNw
# PjXq1JZi+HZV91bUr6ZjzePj1g+bepsqd/HC1XScj0fT3aAxLRykJSzExEBmU9eS
# yuOwUuq+CriudQtWGMdJU650v/KmzfM46Y6lo/MCnnpvz3zEL7PMdUdwqj/nYhGG
# 3UVILxX7tAdMbz7LN+6WOIpT1A41rwaoOVnv+8Ua94HwhjZmu1S73yeV7RZZNxoh
# EegJi9YYssXa7UZUUkCCA+KnAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE
# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUOPbML8IdkNGtCfMmVPtvI6VZ8+Mw
# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1
# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDYzMDA5MB8GA1UdIwQYMBaAFEhu
# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu
# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w
# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3
# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx
# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAnnqH
# tDyYUFaVAkvAK0eqq6nhoL95SZQu3RnpZ7tdQ89QR3++7A+4hrr7V4xxmkB5BObS
# 0YK+MALE02atjwWgPdpYQ68WdLGroJZHkbZdgERG+7tETFl3aKF4KpoSaGOskZXp
# TPnCaMo2PXoAMVMGpsQEQswimZq3IQ3nRQfBlJ0PoMMcN/+Pks8ZTL1BoPYsJpok
# t6cql59q6CypZYIwgyJ892HpttybHKg1ZtQLUlSXccRMlugPgEcNZJagPEgPYni4
# b11snjRAgf0dyQ0zI9aLXqTxWUU5pCIFiPT0b2wsxzRqCtyGqpkGM8P9GazO8eao
# mVItCYBcJSByBx/pS0cSYwBBHAZxJODUqxSXoSGDvmTfqUJXntnWkL4okok1FiCD
# Z4jpyXOQunb6egIXvkgQ7jb2uO26Ow0m8RwleDvhOMrnHsupiOPbozKroSa6paFt
# VSh89abUSooR8QdZciemmoFhcWkEwFg4spzvYNP4nIs193261WyTaRMZoceGun7G
# CT2Rl653uUj+F+g94c63AhzSq4khdL4HlFIP2ePv29smfUnHtGq6yYFDLnT0q/Y+
# Di3jwloF8EWkkHRtSuXlFUbTmwr/lDDgbpZiKhLS7CBTDj32I0L5i532+uHczw82
# oZDmYmYmIUSMbZOgS65h797rj5JJ6OkeEUJoAVwwggd6MIIFYqADAgECAgphDpDS
# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK
# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0
# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0
# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla
# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS
# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT
# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB
# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG
# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S
# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz
# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7
# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u
# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33
# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl
# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP
# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB
# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF
# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM
# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ
# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud
# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO
# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0
# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y
# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p
# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y
# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB
# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw
# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA
# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY
# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj
# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd
# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ
# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf
# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ
# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j
# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B
# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96
# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7
# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I
# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZzCCFWMCAQEwgZUwfjELMAkG
# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx
# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z
# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAd9r8C6Sp0q00AAAAAAB3zAN
# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor
# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgH6Xe948N
# RiFpU0C7a1l5PpoFPgnCUDSi8eSpNqTUlLgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS
# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN
# BgkqhkiG9w0BAQEFAASCAQCJ+bZUb86g3o1WpjsAjtxe3T4yEBw4K11wWWusmBRt
# Kemi58hCrqKTRbqmN+MS6+tCm203IvB/25dg6hzRMSE/nha6LxHnlmyZdMyJHh0n
# AFADxVbN2HQBWKf/ZZPGwNLaUW58ASne6cAVq2dbJQWu/ewt0ChXlKIne+Ncxyxm
# oz496vOAw/boTiNyz4/iZsWLNYFUj3wsUuRz9te0NGcrkGeVyoOa+30/H6kv855i
# QFQTIg/CxDaf/h2TqvQtMYfATEz7iPS0Rr4fMgLBkHzOnMW6IUnDYdgHCL5W9ZXU
# Kpzp/tUe/cZOVKCsCPVlRx6GUKeLffjt/OAS8bt3lw33oYIS8TCCEu0GCisGAQQB
# gjcDAwExghLdMIIS2QYJKoZIhvcNAQcCoIISyjCCEsYCAQMxDzANBglghkgBZQME
# AgEFADCCAVUGCyqGSIb3DQEJEAEEoIIBRASCAUAwggE8AgEBBgorBgEEAYRZCgMB
# MDEwDQYJYIZIAWUDBAIBBQAEICzsAY/+FN7o2xO6orqny4wghh1buS2tXRq2ZmHS
# +xDpAgZgPN+pgN0YEzIwMjEwMzEyMTI0ODE3LjY3MlowBIACAfSggdSkgdEwgc4x
# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt
# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1p
# Y3Jvc29mdCBPcGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMg
# VFNTIEVTTjpDNEJELUUzN0YtNUZGQzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUt
# U3RhbXAgU2VydmljZaCCDkQwggT1MIID3aADAgECAhMzAAABV0QHYtxv6L4qAAAA
# AAFXMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNo
# aW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y
# cG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEw
# MB4XDTIxMDExNDE5MDIxM1oXDTIyMDQxMTE5MDIxM1owgc4xCzAJBgNVBAYTAlVT
# MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQK
# ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVy
# YXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjpDNEJE
# LUUzN0YtNUZGQzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vydmlj
# ZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN5tA6dUZvnnwL9qQtXc
# wPANhB4ez+5CQrePp/Z8TH4NBr5vAfGMo0lV/lidBatKTgHErOuKH11xVAfBehHJ
# vH9T/OhOc83CJs9bzDhrld0Jdy3eJyC0yBdxVeucS+2a2ZBd50wBg/5/2YjQ2ylf
# D0dxKK6tQLxdODTuadQMbda05lPGnWGwZ3niSgIKVRgqqCVlhHzwNtRh1AH+Zxbf
# Se7t8z3oEKAdTAy7SsP8ykht3srjdh0BykPFdpaAgqwWCJJJmGk0gArSvHC8+vXt
# Go3MJhWQRe5JtzdD5kdaKH9uc9gnShsXyDEhGZjx3+b8cuqEO8bHv0WPX9MREfrf
# xvkCAwEAAaOCARswggEXMB0GA1UdDgQWBBRdMXu76DghnU/kPTMKdFkR9oCp2TAf
# BgNVHSMEGDAWgBTVYzpcijGQ80N7fEYbxTNoWoVtVTBWBgNVHR8ETzBNMEugSaBH
# hkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNU
# aW1TdGFQQ0FfMjAxMC0wNy0wMS5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUF
# BzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1RpbVN0
# YVBDQV8yMDEwLTA3LTAxLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoGCCsG
# AQUFBwMIMA0GCSqGSIb3DQEBCwUAA4IBAQAld3kAgG6XWiZyvdibLRmWr7yb6RSy
# cjVDg8tcCitS01sTVp4T8Ad2QeYfJWfK6DMEk7QRBfKgdN7oE8dXtmQVL+JcxLj0
# pUuy4NB5RchcteD5dRnTfKlRi8vgKUaxDcoFIzNEUz1EHpopeagDb4/uI9Uj5tIu
# wlik/qrv/sHAw7kM4gELLNOgdev9Z/7xo1JIwfe0eoQM3wxcCFLuf8S9OncttaFA
# WHtEER8IvgRAgLJ/WnluFz68+hrDfRyX/qqWSPIE0voE6qFx1z8UvLwKpm65QNyN
# DRMp/VmCpqRZrxB1o0RY7P+n4jSNGvbk2bR70kKt/dogFFRBHVVuUxf+MIIGcTCC
# BFmgAwIBAgIKYQmBKgAAAAAAAjANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMC
# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV
# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJv
# b3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTAwHhcNMTAwNzAxMjEzNjU1WhcN
# MjUwNzAxMjE0NjU1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv
# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0
# aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCCASIw
# DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKkdDbx3EYo6IOz8E5f1+n9plGt0
# VBDVpQoAgoX77XxoSyxfxcPlYcJ2tz5mK1vwFVMnBDEfQRsalR3OCROOfGEwWbEw
# RA/xYIiEVEMM1024OAizQt2TrNZzMFcmgqNFDdDq9UeBzb8kYDJYYEbyWEeGMoQe
# dGFnkV+BVLHPk0ySwcSmXdFhE24oxhr5hoC732H8RsEnHSRnEnIaIYqvS2SJUGKx
# Xf13Hz3wV3WsvYpCTUBR0Q+cBj5nf/VmwAOWRH7v0Ev9buWayrGo8noqCjHw2k4G
# kbaICDXoeByw6ZnNPOcvRLqn9NxkvaQBwSAJk3jN/LzAyURdXhacAQVPIk0CAwEA
# AaOCAeYwggHiMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTVYzpcijGQ80N7
# fEYbxTNoWoVtVTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMC
# AYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvX
# zpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20v
# cGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYI
# KwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j
# b20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDCBoAYDVR0g
# AQH/BIGVMIGSMIGPBgkrBgEEAYI3LgMwgYEwPQYIKwYBBQUHAgEWMWh0dHA6Ly93
# d3cubWljcm9zb2Z0LmNvbS9QS0kvZG9jcy9DUFMvZGVmYXVsdC5odG0wQAYIKwYB
# BQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AUABvAGwAaQBjAHkAXwBTAHQAYQB0AGUA
# bQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAAfmiFEN4sbgmD+BcQM9naOh
# IW+z66bM9TG+zwXiqf76V20ZMLPCxWbJat/15/B4vceoniXj+bzta1RXCCtRgkQS
# +7lTjMz0YBKKdsxAQEGb3FwX/1z5Xhc1mCRWS3TvQhDIr79/xn/yN31aPxzymXlK
# kVIArzgPF/UveYFl2am1a+THzvbKegBvSzBEJCI8z+0DpZaPWSm8tv0E4XCfMkon
# /VWvL/625Y4zu2JfmttXQOnxzplmkIz/amJ/3cVKC5Em4jnsGUpxY517IW3DnKOi
# PPp/fZZqkHimbdLhnPkd/DjYlPTGpQqWhqS9nhquBEKDuLWAmyI4ILUl5WTs9/S/
# fmNZJQ96LjlXdqJxqgaKD4kWumGnEcua2A5HmoDF0M2n0O99g/DhO3EJ3110mCII
# YdqwUB5vvfHhAN/nMQekkzr3ZUd46PioSKv33nJ+YWtvd6mBy6cJrDm77MbL2IK0
# cs0d9LiFAR6A+xuJKlQ5slvayA1VmXqHczsI5pgt6o3gMy4SKfXAL1QnIffIrE7a
# KLixqduWsqdCosnPGUFN4Ib5KpqjEWYw07t0MkvfY3v1mYovG8chr1m1rtxEPJdQ
# cdeh0sVV42neV8HR3jDA/czmTfsNv11P6Z0eGTgvvM9YBS7vDaBQNdrvCScc1bN+
# NR4Iuto229Nfj950iEkSoYIC0jCCAjsCAQEwgfyhgdSkgdEwgc4xCzAJBgNVBAYT
# AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD
# VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1pY3Jvc29mdCBP
# cGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjpD
# NEJELUUzN0YtNUZGQzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vy
# dmljZaIjCgEBMAcGBSsOAwIaAxUAES34SWJ7DfbSG/gbIQwTrzgZ8PKggYMwgYCk
# fjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH
# UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQD
# Ex1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIF
# AOP13owwIhgPMjAyMTAzMTIxNjM1MjRaGA8yMDIxMDMxMzE2MzUyNFowdzA9Bgor
# BgEEAYRZCgQBMS8wLTAKAgUA4/XejAIBADAKAgEAAgImXQIB/zAHAgEAAgITtjAK
# AgUA4/cwDAIBADA2BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIB
# AAIDB6EgoQowCAIBAAIDAYagMA0GCSqGSIb3DQEBBQUAA4GBAFsTjDRXKX9CZJDl
# eQnUYYzZY+le8H3wwHogvoybwWzK3cvfZ+6A7v81HTfvhbbceFqAIRpUGdFCSAH+
# +49YLVEdFmn5DybodKCfktbxNArrhlpNYi319EGEERGf424Gvfbdly2A5jNJjKhH
# zGcckHpNa69FJi8jNsO6GU5uWkitMYIDDTCCAwkCAQEwgZMwfDELMAkGA1UEBhMC
# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV
# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp
# bWUtU3RhbXAgUENBIDIwMTACEzMAAAFXRAdi3G/ovioAAAAAAVcwDQYJYIZIAWUD
# BAIBBQCgggFKMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0B
# CQQxIgQgRm1pxqb2FVzF3HWuuQN9THd7t2/WkDdT8de2MlGHNzswgfoGCyqGSIb3
# DQEJEAIvMYHqMIHnMIHkMIG9BCAsWo0NQ6vzuuupUsZEMSJ4UsRjtQw2dFxZWkHt
# qRygEzCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u
# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp
# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAAB
# V0QHYtxv6L4qAAAAAAFXMCIEIKqNFI9/NHkbT0INxyofw06Nmqv5G4faosDi0d1d
# l1+gMA0GCSqGSIb3DQEBCwUABIIBADzFjVmKqCiAmFRWUzZgjqqJinl+b0vI6yo1
# sapjYrPbpH58GXvmG7RBpDyppKhA1YXGEUuGfCHgFYAgpQT0Zjn4LoYeRH3zc5VD
# Wq0k6urvzE/mIVX/4NrQglHHXXZ0lO2KAQd+IB84kVZnYhr9ySpxUe3wpQX5+3VM
# juM2OxHCZRw3pB2u6gIb7sYuMcWiTmBbp2J+inlTzvYzCJGviGA+oCMgNZR1nFGf
# bB27FxFHiRshrWiPGt8BnIkzvP4PpCB/OZcE52MggNwS5toAOj99DgEdyxFAuy6l
# QmNcBxV6Z/KLK+WAeIFJHM57Y043Bp/EZ4z7dI3mwQMumNELH7E=
# SIG # End signature block