Public/Graph/Update-KriticalUtcmMgBetaApplication.ps1
|
<# .SYNOPSIS Kritical.UTCM wrapper over Microsoft365DSC helper Update-MgBetaApplication (category: Graph, module: M365DSCGraphShim). .DESCRIPTION Thin delegating passthrough — logic stays in Microsoft365DSC upstream; Kritical.UTCM provides the friendly namespace + citation registration. Install-Module Microsoft365DSC -Scope CurrentUser BEFORE calling. .NOTES Category: Graph Module: M365DSCGraphShim Params: 66 #> function Update-KriticalUtcmMgBetaApplication { [CmdletBinding()] param( [String] $ApplicationId, [Object] $InputObject, [Object] $BodyParameter, [String] $ResponseHeadersVariable, [Hashtable] $AdditionalProperties, [Object] $Api, [String] $AppId, [Object] $AppManagementPolicies, [Object] $AppRoles, [Object] $AuthenticationBehaviors, [Object] $Certification, [Object] $ConnectorGroup, [String] $CreatedByAppId, [DateTime] $CreatedDateTime, [Object] $CreatedOnBehalfOf, [String] $DefaultRedirectUri, [DateTime] $DeletedDateTime, [String] $Description, [String] $DisabledByMicrosoftStatus, [String] $DisplayName, [Object] $ExtensionProperties, [Object] $FederatedIdentityCredentials, [String] $GroupMembershipClaims, [Object] $HomeRealmDiscoveryPolicies, [String] $Id, [String[]] $IdentifierUris, [Object] $Info, [SwitchParameter] $IsDeviceOnlyAuthSupported, [SwitchParameter] $IsDisabled, [SwitchParameter] $IsFallbackPublicClient, [Object] $KeyCredentials, [String] $LogoInputFile, [String[]] $ManagerApplications, [String] $NativeAuthenticationApisEnabled, [String] $Notes, [Object] $OnPremisesPublishing, [Object] $OptionalClaims, [Object] $Owners, [Object] $ParentalControlSettings, [Object] $PasswordCredentials, [Object] $PublicClient, [String] $PublisherDomain, [Object] $RequestSignatureVerification, [Object] $RequiredResourceAccess, [String] $SamlMetadataUrl, [String] $ServiceManagementReference, [Object] $ServicePrincipalLockConfiguration, [String] $SignInAudience, [Object] $SignInAudienceRestrictions, [Object] $Spa, [Object] $Synchronization, [String[]] $Tags, [String] $TokenEncryptionKeyId, [Object] $TokenIssuancePolicies, [Object] $TokenLifetimePolicies, [String] $UniqueName, [Object] $VerifiedPublisher, [Object] $Web, [Object] $Windows, [SwitchParameter] $Break, [IDictionary] $Headers, [Object[]] $HttpPipelineAppend, [Object[]] $HttpPipelinePrepend, [Uri] $Proxy, [PSCredential] $ProxyCredential, [SwitchParameter] $ProxyUseDefaultCredentials ) if (-not (Get-Command -Name 'Update-MgBetaApplication' -ErrorAction SilentlyContinue)) { throw '[KriticalUtcm] Update-MgBetaApplication not available — Install-Module Microsoft365DSC -Scope CurrentUser then re-run' } try { & 'Update-MgBetaApplication' @PSBoundParameters } catch { Write-Error ('[KriticalUtcm/Update-KriticalUtcmMgBetaApplication] ' + 'Update-MgBetaApplication' + ' failed: ' + $_.Exception.Message) throw } } |