-
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 #534 from microsoftgraph/beta/pipelinebuild/109250
Generated Beta models and request builders
- Loading branch information
Showing
30 changed files
with
559 additions
and
39 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
69 changes: 69 additions & 0 deletions
69
src/main/java/com/microsoft/graph/models/CloudPCStartParameterSet.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,69 @@ | ||
// Template Source: BaseMethodParameterSet.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.models; | ||
|
||
|
||
import com.google.gson.annotations.Expose; | ||
import com.google.gson.annotations.SerializedName; | ||
import javax.annotation.Nonnull; | ||
import javax.annotation.Nullable; | ||
import com.google.gson.JsonObject; | ||
import java.util.EnumSet; | ||
import java.util.ArrayList; | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
|
||
/** | ||
* The class for the Cloud PCStart Parameter Set. | ||
*/ | ||
public class CloudPCStartParameterSet { | ||
|
||
/** | ||
* Instiaciates a new CloudPCStartParameterSet | ||
*/ | ||
public CloudPCStartParameterSet() {} | ||
/** | ||
* Instiaciates a new CloudPCStartParameterSet | ||
* @param builder builder bearing the parameters to initialize from | ||
*/ | ||
protected CloudPCStartParameterSet(@Nonnull final CloudPCStartParameterSetBuilder builder) { | ||
} | ||
/** | ||
* Gets a new builder for the body | ||
* @return a new builder | ||
*/ | ||
@Nonnull | ||
public static CloudPCStartParameterSetBuilder newBuilder() { | ||
return new CloudPCStartParameterSetBuilder(); | ||
} | ||
/** | ||
* Fluent builder for the CloudPCStartParameterSet | ||
*/ | ||
public static final class CloudPCStartParameterSetBuilder { | ||
/** | ||
* Instanciates a new CloudPCStartParameterSetBuilder | ||
*/ | ||
@Nullable | ||
protected CloudPCStartParameterSetBuilder(){} | ||
/** | ||
* Buils the resulting body object to be passed to the request | ||
* @return the body object to pass to the request | ||
*/ | ||
@Nonnull | ||
public CloudPCStartParameterSet build() { | ||
return new CloudPCStartParameterSet(this); | ||
} | ||
} | ||
/** | ||
* Gets the functions options from the properties that have been set | ||
* @return a list of function options for the request | ||
*/ | ||
@Nonnull | ||
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() { | ||
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>(); | ||
return result; | ||
} | ||
} |
69 changes: 69 additions & 0 deletions
69
src/main/java/com/microsoft/graph/models/CloudPCStopParameterSet.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,69 @@ | ||
// Template Source: BaseMethodParameterSet.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.models; | ||
|
||
|
||
import com.google.gson.annotations.Expose; | ||
import com.google.gson.annotations.SerializedName; | ||
import javax.annotation.Nonnull; | ||
import javax.annotation.Nullable; | ||
import com.google.gson.JsonObject; | ||
import java.util.EnumSet; | ||
import java.util.ArrayList; | ||
|
||
// **NOTE** This file was generated by a tool and any changes will be overwritten. | ||
|
||
/** | ||
* The class for the Cloud PCStop Parameter Set. | ||
*/ | ||
public class CloudPCStopParameterSet { | ||
|
||
/** | ||
* Instiaciates a new CloudPCStopParameterSet | ||
*/ | ||
public CloudPCStopParameterSet() {} | ||
/** | ||
* Instiaciates a new CloudPCStopParameterSet | ||
* @param builder builder bearing the parameters to initialize from | ||
*/ | ||
protected CloudPCStopParameterSet(@Nonnull final CloudPCStopParameterSetBuilder builder) { | ||
} | ||
/** | ||
* Gets a new builder for the body | ||
* @return a new builder | ||
*/ | ||
@Nonnull | ||
public static CloudPCStopParameterSetBuilder newBuilder() { | ||
return new CloudPCStopParameterSetBuilder(); | ||
} | ||
/** | ||
* Fluent builder for the CloudPCStopParameterSet | ||
*/ | ||
public static final class CloudPCStopParameterSetBuilder { | ||
/** | ||
* Instanciates a new CloudPCStopParameterSetBuilder | ||
*/ | ||
@Nullable | ||
protected CloudPCStopParameterSetBuilder(){} | ||
/** | ||
* Buils the resulting body object to be passed to the request | ||
* @return the body object to pass to the request | ||
*/ | ||
@Nonnull | ||
public CloudPCStopParameterSet build() { | ||
return new CloudPCStopParameterSet(this); | ||
} | ||
} | ||
/** | ||
* Gets the functions options from the properties that have been set | ||
* @return a list of function options for the request | ||
*/ | ||
@Nonnull | ||
public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() { | ||
final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>(); | ||
return result; | ||
} | ||
} |
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
Oops, something went wrong.