-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1397 from microsoftgraph/v1.0/pipelinebuild/78951
Generated v1.0 models and request builders using Typewriter
- Loading branch information
Showing
495 changed files
with
38,472 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/Microsoft.Graph/Generated/model/AuthenticationMethodResetPasswordRequestBody.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: MethodRequestBody.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type AuthenticationMethodResetPasswordRequestBody. | ||
/// </summary> | ||
public partial class AuthenticationMethodResetPasswordRequestBody | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets NewPassword. | ||
/// </summary> | ||
[JsonPropertyName("newPassword")] | ||
public string NewPassword { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets RequireChangeOnNextSignIn. | ||
/// </summary> | ||
[JsonPropertyName("requireChangeOnNextSignIn")] | ||
public bool? RequireChangeOnNextSignIn { get; set; } | ||
|
||
} | ||
} |
54 changes: 54 additions & 0 deletions
54
src/Microsoft.Graph/Generated/model/CrossTenantAccessPolicy.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: EntityType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type Cross Tenant Access Policy. | ||
/// </summary> | ||
public partial class CrossTenantAccessPolicy : PolicyBase | ||
{ | ||
|
||
///<summary> | ||
/// The CrossTenantAccessPolicy constructor | ||
///</summary> | ||
public CrossTenantAccessPolicy() | ||
{ | ||
this.ODataType = "microsoft.graph.crossTenantAccessPolicy"; | ||
} | ||
|
||
/// <summary> | ||
/// Gets or sets default. | ||
/// Defines the default configuration for how your organization interacts with external Azure Active Directory organizations. | ||
/// </summary> | ||
[JsonPropertyName("default")] | ||
public CrossTenantAccessPolicyConfigurationDefault Default { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets partners. | ||
/// Defines partner-specific configurations for external Azure Active Directory organizations. | ||
/// </summary> | ||
[JsonPropertyName("partners")] | ||
public ICrossTenantAccessPolicyPartnersCollectionPage Partners { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets partnersNextLink. | ||
/// </summary> | ||
[JsonPropertyName("partners@odata.nextLink")] | ||
[JsonConverter(typeof(NextLinkConverter))] | ||
public string PartnersNextLink { get; set; } | ||
|
||
} | ||
} | ||
|
51 changes: 51 additions & 0 deletions
51
src/Microsoft.Graph/Generated/model/CrossTenantAccessPolicyB2BSetting.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: ComplexType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type CrossTenantAccessPolicyB2BSetting. | ||
/// </summary> | ||
[JsonConverter(typeof(DerivedTypeConverter<CrossTenantAccessPolicyB2BSetting>))] | ||
public partial class CrossTenantAccessPolicyB2BSetting | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets applications. | ||
/// The list of applications targeted with your cross-tenant access policy. | ||
/// </summary> | ||
[JsonPropertyName("applications")] | ||
public CrossTenantAccessPolicyTargetConfiguration Applications { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets usersAndGroups. | ||
/// The list of users and groups targeted with your cross-tenant access policy. | ||
/// </summary> | ||
[JsonPropertyName("usersAndGroups")] | ||
public CrossTenantAccessPolicyTargetConfiguration UsersAndGroups { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets additional data. | ||
/// </summary> | ||
[JsonExtensionData] | ||
public IDictionary<string, object> AdditionalData { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets @odata.type. | ||
/// </summary> | ||
[JsonPropertyName("@odata.type")] | ||
public string ODataType { get; set; } | ||
|
||
} | ||
} |
67 changes: 67 additions & 0 deletions
67
src/Microsoft.Graph/Generated/model/CrossTenantAccessPolicyConfigurationDefault.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: EntityType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type Cross Tenant Access Policy Configuration Default. | ||
/// </summary> | ||
public partial class CrossTenantAccessPolicyConfigurationDefault : Entity | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets b2b collaboration inbound. | ||
/// Defines your default configuration for users from other organizations accessing your resources via Azure AD B2B collaboration. | ||
/// </summary> | ||
[JsonPropertyName("b2bCollaborationInbound")] | ||
public CrossTenantAccessPolicyB2BSetting B2bCollaborationInbound { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets b2b collaboration outbound. | ||
/// Defines your default configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration. | ||
/// </summary> | ||
[JsonPropertyName("b2bCollaborationOutbound")] | ||
public CrossTenantAccessPolicyB2BSetting B2bCollaborationOutbound { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets b2b direct connect inbound. | ||
/// Defines your default configuration for users from other organizations accessing your resources via Azure AD B2B direct connect. | ||
/// </summary> | ||
[JsonPropertyName("b2bDirectConnectInbound")] | ||
public CrossTenantAccessPolicyB2BSetting B2bDirectConnectInbound { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets b2b direct connect outbound. | ||
/// Defines your default configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect. | ||
/// </summary> | ||
[JsonPropertyName("b2bDirectConnectOutbound")] | ||
public CrossTenantAccessPolicyB2BSetting B2bDirectConnectOutbound { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets inbound trust. | ||
/// Determines the default configuration for trusting other Conditional Access claims from external Azure AD organizations. | ||
/// </summary> | ||
[JsonPropertyName("inboundTrust")] | ||
public CrossTenantAccessPolicyInboundTrust InboundTrust { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets is service default. | ||
/// If true, the default configuration is set to the system default configuration. If false, the default settings have been customized. | ||
/// </summary> | ||
[JsonPropertyName("isServiceDefault")] | ||
public bool? IsServiceDefault { get; set; } | ||
|
||
} | ||
} | ||
|
87 changes: 87 additions & 0 deletions
87
src/Microsoft.Graph/Generated/model/CrossTenantAccessPolicyConfigurationPartner.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
// <auto-generated/> | ||
|
||
// Template Source: EntityType.cs.tt | ||
|
||
namespace Microsoft.Graph | ||
{ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
|
||
/// <summary> | ||
/// The type Cross Tenant Access Policy Configuration Partner. | ||
/// </summary> | ||
[JsonConverter(typeof(DerivedTypeConverter<CrossTenantAccessPolicyConfigurationPartner>))] | ||
public partial class CrossTenantAccessPolicyConfigurationPartner | ||
{ | ||
|
||
/// <summary> | ||
/// Gets or sets b2b collaboration inbound. | ||
/// Defines your partner-specific configuration for users from other organizations accessing your resources via Azure AD B2B collaboration. | ||
/// </summary> | ||
[JsonPropertyName("b2bCollaborationInbound")] | ||
public CrossTenantAccessPolicyB2BSetting B2bCollaborationInbound { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets b2b collaboration outbound. | ||
/// Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B collaboration. | ||
/// </summary> | ||
[JsonPropertyName("b2bCollaborationOutbound")] | ||
public CrossTenantAccessPolicyB2BSetting B2bCollaborationOutbound { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets b2b direct connect inbound. | ||
/// Defines your partner-specific configuration for users from other organizations accessing your resources via Azure B2B direct connect. | ||
/// </summary> | ||
[JsonPropertyName("b2bDirectConnectInbound")] | ||
public CrossTenantAccessPolicyB2BSetting B2bDirectConnectInbound { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets b2b direct connect outbound. | ||
/// Defines your partner-specific configuration for users in your organization going outbound to access resources in another organization via Azure AD B2B direct connect. | ||
/// </summary> | ||
[JsonPropertyName("b2bDirectConnectOutbound")] | ||
public CrossTenantAccessPolicyB2BSetting B2bDirectConnectOutbound { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets inbound trust. | ||
/// Determines the partner-specific configuration for trusting other Conditional Access claims from external Azure AD organizations. | ||
/// </summary> | ||
[JsonPropertyName("inboundTrust")] | ||
public CrossTenantAccessPolicyInboundTrust InboundTrust { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets is service provider. | ||
/// Identifies whether the partner-specific configuration is a Cloud Service Provider for your organization. | ||
/// </summary> | ||
[JsonPropertyName("isServiceProvider")] | ||
public bool? IsServiceProvider { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets tenant id. | ||
/// The tenant identifier for the partner Azure AD organization. Read-only. Key. | ||
/// </summary> | ||
[JsonPropertyName("tenantId")] | ||
public string TenantId { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets @odata.type. | ||
/// </summary> | ||
[JsonPropertyName("@odata.type")] | ||
public string ODataType { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets additional data. | ||
/// </summary> | ||
[JsonExtensionData] | ||
public IDictionary<string, object> AdditionalData { get; set; } | ||
|
||
} | ||
} | ||
|
Oops, something went wrong.