ITに関する備忘録

日々の業務で利用した技術関連について、忘れないようにメモしています。

AzueADのスキーマ拡張について

以下のサイトに記載がありますね。
https://docs.microsoft.com/ja-jp/azure/active-directory/develop/active-directory-schema-extensions

 

ただし、名称が以下のようになるみたいで微妙ですね。

===

ディレクトスキーマ拡張属性の識別子は、Extension_xxxxxxxxx_AttributeName の形式です。 ここで xxxxxxxxx は、拡張機能が定義されたアプリケーションの applicationId です。

===

 

設定自体は、GraphだけでなくPowerShellでもできるようです。

 

$MyApp = (New-AzureADApplication -DisplayName "My Properties Bag" -IdentifierUris "https://dummy").ObjectId
Note that you need to create a service principal for this application in your directory as well, so you can create a new extension property:

New-AzureADServicePrincipal -AppId (Get-AzureADApplication -SearchString "My Properties Bag").AppId
Now we can use this application to create a new extension property:

New-AzureADApplicationExtensionProperty -ObjectId $MyApp -Name "MyNewProperty" -DataType "String" -TargetObjects "User"
When the cmdlet completes successfully it returns the new extension attribute object:

▼参考サイト

https://docs.microsoft.com/ja-jp/powershell/azure/active-directory/using-extension-attributes-sample?view=azureadps-2.0

 

 

Exchange Online で階層型アドレス帳を設定する場合

Exchange Online に対して階層型アドレス帳を有効にする場合に、

階層型アドレス帳のルートグループ (最上位のグループ) の設定だけは、

PowerShell を使って Exchange Online に対して直接設定を行う必要が

ある模様。

 

自由に設定できるのは、ルートグループ配下ということっぽい。

yammerのREST APIについて

以下のサイトには載っていないAPIが存在するようです。

REST API & Rate Limits · Yammer Developer Site

 

例えばグループの登録などです。

以下のページの 5) に記載されているところで確認できるようです。

YDN Changes And Yammer Dev Updates · Yammer Developer Site

 

以下、抜粋。(2016/5/18時点)

5) Misc Office 365 Technical Yammer Network: https://www.yammer.com/itpronetwork

申請して承認されれば参加できるようになります。

ただし、英語で質問する必要がありそうですが。。。