-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automation 3.0.2 - preview #4308
Merged
+16,566
−3,126
Merged
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
b24f627
Changes for new automation SDK 3.0.2
a2bc204
add sourceControl and sourceControlSyncJob tests, recordings
4ac7f1a
add Mohamed's changes
fd5bfb1
add syncJob updated properties, syncJobStreams, webhook test recording
8078742
Changing AssemblyInfo to update version
3aadac6
address PR comments
f38cb54
add sourceControlSyncJobStreamsOperations
82c236a
regenerate using ps1 file
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add syncJob updated properties, syncJobStreams, webhook test recording
- Loading branch information
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
662 changes: 424 additions & 238 deletions
662
...onRecords/Automation.Tests.ScenarioTests.AutomationTest/CanCreateUpdateDeleteWebhook.json
Large diffs are not rendered by default.
Oops, something went wrong.
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
61 changes: 0 additions & 61 deletions
61
src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJobByIdErrors.cs
This file was deleted.
Oops, something went wrong.
89 changes: 89 additions & 0 deletions
89
src/SDKs/Automation/Management.Automation/Generated/Models/SourceControlSyncJobStream.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,89 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.Management.Automation.Models | ||
{ | ||
using Microsoft.Rest; | ||
using Microsoft.Rest.Serialization; | ||
using Newtonsoft.Json; | ||
using System.Linq; | ||
|
||
/// <summary> | ||
/// Definition of the source control sync job stream. | ||
/// </summary> | ||
[Rest.Serialization.JsonTransformation] | ||
public partial class SourceControlSyncJobStream | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the SourceControlSyncJobStream class. | ||
/// </summary> | ||
public SourceControlSyncJobStream() | ||
{ | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the SourceControlSyncJobStream class. | ||
/// </summary> | ||
/// <param name="id">Resource id.</param> | ||
/// <param name="syncJobStreamId">Gets the sync job stream id.</param> | ||
/// <param name="summary">Gets the summary of the sync job | ||
/// stream.</param> | ||
/// <param name="time">Gets the time of the sync job stream.</param> | ||
/// <param name="streamType">Gets the type of the sync job stream. | ||
/// Possible values include: 'Error', 'Output'</param> | ||
public SourceControlSyncJobStream(string id = default(string), string syncJobStreamId = default(string), string summary = default(string), System.DateTimeOffset? time = default(System.DateTimeOffset?), string streamType = default(string)) | ||
{ | ||
Id = id; | ||
SyncJobStreamId = syncJobStreamId; | ||
Summary = summary; | ||
Time = time; | ||
StreamType = streamType; | ||
CustomInit(); | ||
} | ||
|
||
/// <summary> | ||
/// An initialization method that performs custom operations like setting defaults | ||
/// </summary> | ||
partial void CustomInit(); | ||
|
||
/// <summary> | ||
/// Gets resource id. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "id")] | ||
public string Id { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets the sync job stream id. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.syncJobStreamId")] | ||
public string SyncJobStreamId { get; set; } | ||
|
||
/// <summary> | ||
/// Gets the summary of the sync job stream. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.summary")] | ||
public string Summary { get; set; } | ||
|
||
/// <summary> | ||
/// Gets the time of the sync job stream. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.time")] | ||
public System.DateTimeOffset? Time { get; private set; } | ||
|
||
/// <summary> | ||
/// Gets the type of the sync job stream. Possible values include: | ||
/// 'Error', 'Output' | ||
/// </summary> | ||
[JsonProperty(PropertyName = "properties.streamType")] | ||
public string StreamType { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mark as a skipped tests instead of commenting
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.