-
Notifications
You must be signed in to change notification settings - Fork 10
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 #541 from microsoftgraph/beta/pipelinebuild/110922
Generated Beta models and request builders
- Loading branch information
Showing
253 changed files
with
14,902 additions
and
83 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
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
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
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
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
124 changes: 124 additions & 0 deletions
124
src/main/java/com/microsoft/graph/industrydata/models/AggregatedInboundStatistics.java
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,124 @@ | ||
// Template Source: BaseEntity.java.tt | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
package com.microsoft.graph.industrydata.models; | ||
import com.microsoft.graph.serializer.ISerializer; | ||
import com.microsoft.graph.serializer.IJsonBackedObject; | ||
import com.microsoft.graph.serializer.AdditionalDataManager; | ||
import java.util.EnumSet; | ||
import com.microsoft.graph.http.BaseCollectionPage; | ||
import com.microsoft.graph.industrydata.models.IndustryDataRunRoleCountMetric; | ||
|
||
|
||
import com.google.gson.JsonObject; | ||
import com.google.gson.annotations.SerializedName; | ||
import com.google.gson.annotations.Expose; | ||
import javax.annotation.Nullable; | ||
import javax.annotation.Nonnull; | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
|
||
/** | ||
* The class for the Aggregated Inbound Statistics. | ||
*/ | ||
public class AggregatedInboundStatistics implements IJsonBackedObject { | ||
|
||
/** the OData type of the object as returned by the service */ | ||
@SerializedName("@odata.type") | ||
@Expose | ||
@Nullable | ||
public String oDataType; | ||
|
||
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this); | ||
|
||
@Override | ||
@Nonnull | ||
public final AdditionalDataManager additionalDataManager() { | ||
return additionalDataManager; | ||
} | ||
|
||
/** | ||
* The Errors. | ||
* The aggregate count of errors encountered by activities during this run. | ||
*/ | ||
@SerializedName(value = "errors", alternate = {"Errors"}) | ||
@Expose | ||
@Nullable | ||
public Integer errors; | ||
|
||
/** | ||
* The Groups. | ||
* The aggregate count of active inbound groups processed during the run. | ||
*/ | ||
@SerializedName(value = "groups", alternate = {"Groups"}) | ||
@Expose | ||
@Nullable | ||
public Integer groups; | ||
|
||
/** | ||
* The Matched People By Role. | ||
* The aggregate count of active people matched to an Azure Active Directory user, by role. | ||
*/ | ||
@SerializedName(value = "matchedPeopleByRole", alternate = {"MatchedPeopleByRole"}) | ||
@Expose | ||
@Nullable | ||
public java.util.List<IndustryDataRunRoleCountMetric> matchedPeopleByRole; | ||
|
||
/** | ||
* The Memberships. | ||
* The aggregate count of active inbound memberships processed during the run. | ||
*/ | ||
@SerializedName(value = "memberships", alternate = {"Memberships"}) | ||
@Expose | ||
@Nullable | ||
public Integer memberships; | ||
|
||
/** | ||
* The Organizations. | ||
* The aggregate count of active inbound organizations processed during the run. | ||
*/ | ||
@SerializedName(value = "organizations", alternate = {"Organizations"}) | ||
@Expose | ||
@Nullable | ||
public Integer organizations; | ||
|
||
/** | ||
* The People. | ||
* The aggregate count of active inbound people processed during the run. | ||
*/ | ||
@SerializedName(value = "people", alternate = {"People"}) | ||
@Expose | ||
@Nullable | ||
public Integer people; | ||
|
||
/** | ||
* The Unmatched People By Role. | ||
* The aggregate count of active people not matched to an Azure Active Directory user, by role. | ||
*/ | ||
@SerializedName(value = "unmatchedPeopleByRole", alternate = {"UnmatchedPeopleByRole"}) | ||
@Expose | ||
@Nullable | ||
public java.util.List<IndustryDataRunRoleCountMetric> unmatchedPeopleByRole; | ||
|
||
/** | ||
* The Warnings. | ||
* The aggregate count of warnings generated by activities during this run. | ||
*/ | ||
@SerializedName(value = "warnings", alternate = {"Warnings"}) | ||
@Expose | ||
@Nullable | ||
public Integer warnings; | ||
|
||
|
||
/** | ||
* Sets the raw JSON object | ||
* | ||
* @param serializer the serializer | ||
* @param json the JSON object to set this object to | ||
*/ | ||
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) { | ||
|
||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
src/main/java/com/microsoft/graph/industrydata/models/AzureDataLakeConnector.java
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,38 @@ | ||
// Template Source: BaseEntity.java.tt | ||
// ------------------------------------------------------------------------------ | ||
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. | ||
// ------------------------------------------------------------------------------ | ||
|
||
package com.microsoft.graph.industrydata.models; | ||
import com.microsoft.graph.serializer.ISerializer; | ||
import com.microsoft.graph.serializer.IJsonBackedObject; | ||
import com.microsoft.graph.serializer.AdditionalDataManager; | ||
import java.util.EnumSet; | ||
import com.microsoft.graph.industrydata.models.FileDataConnector; | ||
|
||
|
||
import com.google.gson.JsonObject; | ||
import com.google.gson.annotations.SerializedName; | ||
import com.google.gson.annotations.Expose; | ||
import javax.annotation.Nullable; | ||
import javax.annotation.Nonnull; | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
|
||
/** | ||
* The class for the Azure Data Lake Connector. | ||
*/ | ||
public class AzureDataLakeConnector extends FileDataConnector implements IJsonBackedObject { | ||
|
||
|
||
|
||
/** | ||
* Sets the raw JSON object | ||
* | ||
* @param serializer the serializer | ||
* @param json the JSON object to set this object to | ||
*/ | ||
public void setRawObject(@Nonnull final ISerializer serializer, @Nonnull final JsonObject json) { | ||
|
||
} | ||
} |
Oops, something went wrong.