@@ -223,6 +223,21 @@ declare namespace PlayFabServerModels {
223223 AchievementResults ?: AwardSteamAchievementItem [ ] ,
224224 }
225225
226+ interface AzureResourceSystemData {
227+ /** The timestamp of resource creation (UTC) */
228+ CreatedAt ?: string ,
229+ /** The identity that created the resource */
230+ CreatedBy ?: string ,
231+ /** The type of identity that created the resource */
232+ CreatedByType ?: string ,
233+ /** The type of identity that last modified the resource */
234+ LastModifiedAt ?: string ,
235+ /** The identity that last modified the resource */
236+ LastModifiedBy ?: string ,
237+ /** The type of identity that last modified the resource */
238+ LastModifiedByType ?: string ,
239+ }
240+
226241 /** Contains information for a ban. */
227242 interface BanInfo {
228243 /** The active state of this ban. Expired bans may still have this value set to true but they will have no effect. */
@@ -1622,7 +1637,13 @@ declare namespace PlayFabServerModels {
16221637 | "PlayerAccountPoolNotFound"
16231638 | "PlayerAccountPoolDeleted"
16241639 | "TitleCleanupInProgress"
1640+ | "AzureResourceConcurrentOperationInProgress"
1641+ | "TitlePublisherUpdateNotAllowed"
16251642 | "AzureResourceManagerNotSupportedInStamp"
1643+ | "ApiNotIncludedInAzurePlayFabFeatureSet"
1644+ | "GoogleServiceAccountFailedAuth"
1645+ | "GoogleAPIServiceUnavailable"
1646+ | "GoogleAPIServiceUnknownError"
16261647 | "MatchmakingEntityInvalid"
16271648 | "MatchmakingPlayerAttributesInvalid"
16281649 | "MatchmakingQueueNotFound"
@@ -3869,6 +3890,8 @@ declare namespace PlayFabServerModels {
38693890 * name.) Keys are trimmed of whitespace. Keys may not begin with the '!' character.
38703891 */
38713892 Key : string ,
3893+ /** System Data of the Azure Resource */
3894+ SystemData ?: AzureResourceSystemData ,
38723895 /**
38733896 * Unique identifier for the title, found in the Settings > Game Properties section of the PlayFab developer site when a
38743897 * title has been selected.
0 commit comments