-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Add ThumbprintString property to mgmt #36320
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
Changes from 11 commits
ed892dc
e9d6bb4
c397fa3
de2c71a
9b75854
86523c3
375e0b1
1406378
8f195e3
c3b8cc8
849cb0f
c939d49
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
|
|
||
| using System; | ||
| using System.ComponentModel; | ||
|
|
||
| namespace Azure.ResourceManager.Automation | ||
| { | ||
| public partial class AutomationCertificateData | ||
| { | ||
| /// <summary> | ||
| /// Gets the thumbprint of the certificate. | ||
| /// <para> | ||
| /// To assign an object to this property use <see cref="BinaryData.FromObjectAsJson{T}(T, System.Text.Json.JsonSerializerOptions?)"/>. | ||
| /// </para> | ||
| /// <para> | ||
| /// To assign an already formated json string to this property use <see cref="BinaryData.FromString(string)"/>. | ||
| /// </para> | ||
| /// <para> | ||
| /// Examples: | ||
| /// <list type="bullet"> | ||
| /// <item> | ||
| /// <term>BinaryData.FromObjectAsJson("foo")</term> | ||
| /// <description>Creates a payload of "foo".</description> | ||
| /// </item> | ||
| /// <item> | ||
| /// <term>BinaryData.FromString("\"foo\"")</term> | ||
| /// <description>Creates a payload of "foo".</description> | ||
| /// </item> | ||
| /// <item> | ||
| /// <term>BinaryData.FromObjectAsJson(new { key = "value" })</term> | ||
| /// <description>Creates a payload of { "key": "value" }.</description> | ||
| /// </item> | ||
| /// <item> | ||
| /// <term>BinaryData.FromString("{\"key\": \"value\"}")</term> | ||
| /// <description>Creates a payload of { "key": "value" }.</description> | ||
| /// </item> | ||
| /// </list> | ||
| /// </para> | ||
| /// </summary> | ||
| [EditorBrowsable(EditorBrowsableState.Never)] | ||
| public BinaryData Thumbprint { get; } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
|
|
||
| using System; | ||
| using System.ComponentModel; | ||
|
|
||
| namespace Azure.ResourceManager.Automation.Models | ||
| { | ||
| public partial class AutomationCertificateCreateOrUpdateContent | ||
| { | ||
| /// <summary> | ||
| /// Gets or sets the thumbprint of the certificate. | ||
| /// <para> | ||
| /// To assign an object to this property use <see cref="BinaryData.FromObjectAsJson{T}(T, System.Text.Json.JsonSerializerOptions?)"/>. | ||
| /// </para> | ||
| /// <para> | ||
| /// To assign an already formated json string to this property use <see cref="BinaryData.FromString(string)"/>. | ||
| /// </para> | ||
| /// <para> | ||
| /// Examples: | ||
| /// <list type="bullet"> | ||
| /// <item> | ||
| /// <term>BinaryData.FromObjectAsJson("foo")</term> | ||
| /// <description>Creates a payload of "foo".</description> | ||
| /// </item> | ||
| /// <item> | ||
| /// <term>BinaryData.FromString("\"foo\"")</term> | ||
| /// <description>Creates a payload of "foo".</description> | ||
| /// </item> | ||
| /// <item> | ||
| /// <term>BinaryData.FromObjectAsJson(new { key = "value" })</term> | ||
| /// <description>Creates a payload of { "key": "value" }.</description> | ||
| /// </item> | ||
| /// <item> | ||
| /// <term>BinaryData.FromString("{\"key\": \"value\"}")</term> | ||
| /// <description>Creates a payload of { "key": "value" }.</description> | ||
| /// </item> | ||
| /// </list> | ||
| /// </para> | ||
| /// </summary> | ||
| [EditorBrowsable(EditorBrowsableState.Never)] | ||
| public BinaryData Thumbprint { get; set; } | ||
live1206 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
|
|
||
| using System; | ||
| using System.ComponentModel; | ||
|
|
||
| namespace Azure.ResourceManager.Batch | ||
| { | ||
| public partial class BatchAccountCertificateData | ||
| { | ||
| /// <summary> | ||
| /// This must match the thumbprint from the name. | ||
| /// <para> | ||
| /// To assign an object to this property use <see cref="BinaryData.FromObjectAsJson{T}(T, System.Text.Json.JsonSerializerOptions?)"/>. | ||
| /// </para> | ||
| /// <para> | ||
| /// To assign an already formated json string to this property use <see cref="BinaryData.FromString(string)"/>. | ||
| /// </para> | ||
| /// <para> | ||
| /// Examples: | ||
| /// <list type="bullet"> | ||
| /// <item> | ||
| /// <term>BinaryData.FromObjectAsJson("foo")</term> | ||
| /// <description>Creates a payload of "foo".</description> | ||
| /// </item> | ||
| /// <item> | ||
| /// <term>BinaryData.FromString("\"foo\"")</term> | ||
| /// <description>Creates a payload of "foo".</description> | ||
| /// </item> | ||
| /// <item> | ||
| /// <term>BinaryData.FromObjectAsJson(new { key = "value" })</term> | ||
| /// <description>Creates a payload of { "key": "value" }.</description> | ||
| /// </item> | ||
| /// <item> | ||
| /// <term>BinaryData.FromString("{\"key\": \"value\"}")</term> | ||
| /// <description>Creates a payload of { "key": "value" }.</description> | ||
| /// </item> | ||
| /// </list> | ||
| /// </para> | ||
| /// </summary> | ||
| [EditorBrowsable(EditorBrowsableState.Never)] | ||
| public BinaryData Thumbprint { get; set; } | ||
| } | ||
| } |
Uh oh!
There was an error while loading. Please reload this page.