-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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 #2 from MabOneSdk/anudeeb
DownloadVaultCredentials cmdlet (testing pending)
- Loading branch information
Showing
15 changed files
with
932 additions
and
17 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
56 changes: 56 additions & 0 deletions
56
...rceManagement/AzureBackup/BackupServicesManagment/Generated/IVaultCredentialOperations.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,56 @@ | ||
// | ||
// Copyright (c) Microsoft and contributors. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
// Warning: This code was generated by a tool. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost if the | ||
// code is regenerated. | ||
|
||
using System; | ||
using System.Linq; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using Microsoft.Azure.Management.BackupServices.Models; | ||
|
||
namespace Microsoft.Azure.Management.BackupServices | ||
{ | ||
/// <summary> | ||
/// Definition of Vault credential-related operations for the Azure Backup | ||
/// extension. | ||
/// </summary> | ||
public partial interface IVaultCredentialOperations | ||
{ | ||
/// <summary> | ||
/// Uploads vault credential certificate. | ||
/// </summary> | ||
/// <param name='certificateName'> | ||
/// Name of the certificate. | ||
/// </param> | ||
/// <param name='vaultCredUploadCertRequest'> | ||
/// Certificate parameters. | ||
/// </param> | ||
/// <param name='customRequestHeaders'> | ||
/// Request header parameters. | ||
/// </param> | ||
/// <param name='cancellationToken'> | ||
/// Cancellation token. | ||
/// </param> | ||
/// <returns> | ||
/// The definition of a certificate response. | ||
/// </returns> | ||
Task<VaultCredUploadCertResponse> UploadCertificateAsync(string certificateName, VaultCredUploadCertRequest vaultCredUploadCertRequest, CustomRequestHeaders customRequestHeaders, CancellationToken cancellationToken); | ||
} | ||
} |
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
51 changes: 51 additions & 0 deletions
51
...urceManagement/AzureBackup/BackupServicesManagment/Generated/Models/RawCertificateData.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 and contributors. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
// Warning: This code was generated by a tool. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost if the | ||
// code is regenerated. | ||
|
||
using System; | ||
using System.Linq; | ||
|
||
namespace Microsoft.Azure.Management.BackupServices.Models | ||
{ | ||
/// <summary> | ||
/// Model for raw certificate data. | ||
/// </summary> | ||
public partial class RawCertificateData | ||
{ | ||
private string _certificate; | ||
|
||
/// <summary> | ||
/// Optional. Gets or sets the base64 encoded certificate raw data | ||
/// string. | ||
/// </summary> | ||
public string Certificate | ||
{ | ||
get { return this._certificate; } | ||
set { this._certificate = value; } | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the RawCertificateData class. | ||
/// </summary> | ||
public RawCertificateData() | ||
{ | ||
} | ||
} | ||
} |
73 changes: 73 additions & 0 deletions
73
...ourceManagement/AzureBackup/BackupServicesManagment/Generated/Models/RecoveryPointInfo.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,73 @@ | ||
// | ||
// Copyright (c) Microsoft and contributors. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
// Warning: This code was generated by a tool. | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost if the | ||
// code is regenerated. | ||
|
||
using System; | ||
using System.Linq; | ||
using Microsoft.Azure.Management.BackupServices.Models; | ||
|
||
namespace Microsoft.Azure.Management.BackupServices.Models | ||
{ | ||
/// <summary> | ||
/// The definition of a RecoveryPoint Info object. | ||
/// </summary> | ||
public partial class RecoveryPointInfo : ManagementResponseObject | ||
{ | ||
private string _recoveryPointAdditionalInfo; | ||
|
||
/// <summary> | ||
/// Optional. RecoveryPointAdditionalInfo of RecoveryPointInfo. | ||
/// </summary> | ||
public string RecoveryPointAdditionalInfo | ||
{ | ||
get { return this._recoveryPointAdditionalInfo; } | ||
set { this._recoveryPointAdditionalInfo = value; } | ||
} | ||
|
||
private DateTime _recoveryPointTime; | ||
|
||
/// <summary> | ||
/// Optional. RecoveryPointTime of RecoveryPointInfo. | ||
/// </summary> | ||
public DateTime RecoveryPointTime | ||
{ | ||
get { return this._recoveryPointTime; } | ||
set { this._recoveryPointTime = value; } | ||
} | ||
|
||
private string _recoveryPointType; | ||
|
||
/// <summary> | ||
/// Optional. RecoveryPointType of RecoveryPointInfo. | ||
/// </summary> | ||
public string RecoveryPointType | ||
{ | ||
get { return this._recoveryPointType; } | ||
set { this._recoveryPointType = value; } | ||
} | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the RecoveryPointInfo class. | ||
/// </summary> | ||
public RecoveryPointInfo() | ||
{ | ||
} | ||
} | ||
} |
Oops, something went wrong.