Delete Backup And Archive directory

This commit is contained in:
Shawn Weisfeld 2021-02-08 17:24:40 -06:00 коммит произвёл GitHub
Родитель b098548907
Коммит ec2e0eff19
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
8 изменённых файлов: 0 добавлений и 320 удалений

Просмотреть файл

@ -1,15 +0,0 @@
---
title: Azure Partner Backup Documentation
titleSuffix: Azure Blob Storage Docs
description: Partner Documentation for Commvault
keywords: commvault, backup, partner
author: Dave Toronto
ms.date: 05/14/2020
ms.topic: article
ms.service: Storage
ms.subservice:
---
# Microsoft Partner Documentation for Commvault for Azure
https://documentation.commvault.com/commvault/v11/article?p=31252.htm

Просмотреть файл

@ -1,54 +0,0 @@
---
title: Azure Partner Backup Documentation - title
titleSuffix: Azure Blob Storage Docs
description: Description Here
keywords:
author: Dave Toronto
ms.date: 04/14/2020
ms.topic: article
ms.service: Storage
ms.subservice:
---
# Microsoft Partner Documentation for Partner X
This article describes the storage options for partners.
## Support Matrix
| GPv2<br>Storage | Cool<br>Tier | Archive<br>Tier | WORM<br>Support | Required Azure<br>Resources | Restore<br>on-<br>premises | Backup<br>Azure VM's | Backup<br>Azure Files | Backup<br>Azure Blob |
|--------|--------|--------|--------|--------|--------|--------|--------|--------|
| X | X | | X | X | X | X | X | X |
## Links to Marketplace Offerings
Information related to the partner marketplace links goes here.
- [Link 1](http://microsoft.com)
- [Link 2](http://microsoft.com)
## Links to relevant documentation
Information related to the partner docs goes here.
- [Link 1](http://microsoft.com)
- [Link 2](http://microsoft.com)
## Partner Reference Architectures
## Implementation Guide
- Description of the implementation
- [Links](http://microsoft.com)
- Policy Configuration Guidance
- Network Bandwidth and storage account guidance
- Screenshots
## Monitoring the Deployment going forward
- Azure Performance Monitoring
- Where can the customer go to view performance reports, job completion and befin basic troubleshooting
- Links to user guide content on partner support site
## Partner Videos and Links
## How to Open Support Case
## Next steps
Review [Link Title](http://microsoft.com)

Просмотреть файл

@ -1,59 +0,0 @@
<#
© 2019 Microsoft Corporation.
All rights reserved. Sample scripts/code provided herein are not supported under any Microsoft standard support program
or service. The sample scripts/code are provided AS IS without warranty of any kind. Microsoft disclaims all implied
warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose.
The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event
shall Microsoft, its authors, or anyone else involved in the creation, production, or delivery of the scripts be liable for
any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of
business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or
documentation, even if Microsoft has been advised of the possibility of such damages.
.SYNOPSIS
Sets up blob tiering using PowerShell.
.DESCRIPTION
Creates action and filter objects to apply blob tiering to block blobs matching a certain criteria.
.PARAMETER
Required: resource group name, storage account name, prefix - any of the action parameter responses can be made into a variable.
.INPUTS
None
.OUTPUTS
None
.NOTES
Version: 1.0
Author: Shannon Kuehn
Creation Date: 2019.11.19
Purpose/Change: Initial script development
#>
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)]
[string]$rG,
[Parameter(Mandatory=$true)]
[string]$storAcctName,
[Parameter(Mandatory=$true)]
[string]$prefix
)
#Creates a new action object. Any of the parameter responses can be made into a variable and tweaked for script usage.
$action = Add-AzStorageAccountManagementPolicyAction -BaseBlobAction Delete -daysAfterModificationGreaterThan 2555
$action = Add-AzStorageAccountManagementPolicyAction -InputObject $action -BaseBlobAction TierToArchive -daysAfterModificationGreaterThan 90
$action = Add-AzStorageAccountManagementPolicyAction -InputObject $action -BaseBlobAction TierToCool -daysAfterModificationGreaterThan 30
$action = Add-AzStorageAccountManagementPolicyAction -InputObject $action -SnapshotAction Delete -daysAfterCreationGreaterThan 90
# Create a new filter object
# PowerShell automatically sets BlobType as “blockblob."
$filter = New-AzStorageAccountManagementPolicyFilter -PrefixMatch $prefix
#Create a new rule object
#PowerShell automatically sets Type as “Lifecycle” because it is the only available option currently.
$rule1 = New-AzStorageAccountManagementPolicyRule -Name Purge -Action $action -Filter $filter
#Set the policy
Set-AzStorageAccountManagementPolicy -ResourceGroupName $rgname -StorageAccountName $accountName -Rule $rule1

Просмотреть файл

@ -1,58 +0,0 @@
<#
© 2019 Microsoft Corporation.
All rights reserved. Sample scripts/code provided herein are not supported under any Microsoft standard support program
or service. The sample scripts/code are provided AS IS without warranty of any kind. Microsoft disclaims all implied
warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose.
The entire risk arising out of the use or performance of the sample scripts and documentation remains with you. In no event
shall Microsoft, its authors, or anyone else involved in the creation, production, or delivery of the scripts be liable for
any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of
business information, or other pecuniary loss) arising out of the use of or inability to use the sample scripts or
documentation, even if Microsoft has been advised of the possibility of such damages.
.SYNOPSIS
Creates a storage account in Azure using PowerShell.
.DESCRIPTION
Creates a brand new resource group and storage account, based upon input variables.
.PARAMETER
Required: resource group name, location, storage account name, storage account SKU, and storage account kind.
SKU Types: Standard_LRS, Standard_GRS, Standard_RAGRS, Standard_ZRS, Premium_LRS, Premium_ZRS, Standard_GZRS, Standard_RAGZRS
Storage Account Types: Storage, StorageV2, BlobStorage
.INPUTS
None
.OUTPUTS
None
.NOTES
Version: 1.0
Author: Shannon Kuehn
Creation Date: 2019.11.14
Purpose/Change: Initial script development
#>
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)]
[string]$rG,
[Parameter(Mandatory=$true)]
[string]$location,
[Parameter(Mandatory=$true)]
[string]$storAcctName,
[Parameter(Mandatory=$true)]
[string]$sku,
[Parameter(Mandatory=$true)]
[string]$kind
)
# Creates a brand new resource group based upon input variables.
New-AzResourceGroup -Name $rG -Location $location
# Creates a brand new storage account in the same resource group by using input variables. Reference the notes above for the right SKU and kind the script is looking for.
New-AzStorageAccount -ResourceGroupName $rG `
-Name $storAcctName `
-Location $location `
-SkuName $sku `
-Kind $kind

Просмотреть файл

@ -1,54 +0,0 @@
---
title: Azure Partner Backup Documentation - title
titleSuffix: Azure Blob Storage Docs
description: Description Here
keywords:
author: Dave Toronto
ms.date: 04/14/2020
ms.topic: article
ms.service: Storage
ms.subservice:
---
# Microsoft Partner Documentation for Partner Z
This article describes the storage options for partners.
## Support Matrix
| GPv2<br>Storage | Cool<br>Tier | Archive<br>Tier | WORM<br>Support | Required Azure<br>Resources | Restore<br>on-<br>premises | Backup<br>Azure VM's | Backup<br>Azure Files | Backup<br>Azure Blob |
|--------|--------|--------|--------|--------|--------|--------|--------|--------|
| X | X | | X | X | X | X | X | X |
## Links to Marketplace Offerings
Information related to the partner marketplace links goes here.
- [Link 1](http://microsoft.com)
- [Link 2](http://microsoft.com)
## Links to relevant documentation
Information related to the partner docs goes here.
- [Link 1](http://microsoft.com)
- [Link 2](http://microsoft.com)
## Partner Reference Architectures
## Implementation Guide
- Description of the implementation
- [Links](http://microsoft.com)
- Policy Configuration Guidance
- Network Bandwidth and storage account guidance
- Screenshots
## Monitoring the Deployment going forward
- Azure Performance Monitoring
- Where can the customer go to view performance reports, job completion and befin basic troubleshooting
- Links to user guide content on partner support site
## Partner Videos and Links
## How to Open Support Case
## Next steps
Review [Link Title](http://microsoft.com)

Просмотреть файл

@ -1,14 +0,0 @@
---
title: Azure Partner Backup Documentation - title
titleSuffix: Azure Blob Storage Docs
description: Description Here
keywords:
author: Dave Toronto
ms.date: 05/14/2020
ms.topic: article
ms.service: Storage
ms.subservice:
---
## Links to relevant documentation
- https://www.veeam.com/documentation-guides-datasheets.html

Просмотреть файл

@ -1,54 +0,0 @@
---
title: Azure Partner Backup Documentation
titleSuffix: Azure Blob Storage Docs
description: Veritas Backup Doc - Backup Exec
keywords: backupexec
author: Dave Toronto
ms.date: 05/06/2020
ms.topic: article
ms.service: Storage
ms.subservice:
---
# Microsoft Partner Documentation for Partner X
This article describes the storage options for partners.
## Support Matrix
| GPv2<br>Storage | Cool<br>Tier | Archive<br>Tier | WORM<br>Support | Required Azure<br>Resources | Restore<br>on-<br>premises | Backup<br>Azure VM's | Backup<br>Azure Files | Backup<br>Azure Blob |
|--------|--------|--------|--------|--------|--------|--------|--------|--------|
| X | X | | X | X | X | X | X | X |
## Links to Marketplace Offerings
Information related to the partner marketplace links goes here.
- [Link 1](http://microsoft.com)
- [Link 2](http://microsoft.com)
## Links to relevant documentation
Information related to the partner docs goes here.
- [Link 1](http://microsoft.com)
- [Link 2](http://microsoft.com)
## Partner Reference Architectures
## Implementation Guide
- Description of the implementation
- [Links](http://microsoft.com)
- Policy Configuration Guidance
- Network Bandwidth and storage account guidance
- Screenshots
## Monitoring the Deployment going forward
- Azure Performance Monitoring
- Where can the customer go to view performance reports, job completion and befin basic troubleshooting
- Links to user guide content on partner support site
## Partner Videos and Links
## How to Open Support Case
## Next steps
Review [Link Title](http://microsoft.com)

Просмотреть файл

@ -1,12 +0,0 @@
# Azure Storage PM's Content Repository: Backup And Archive
Backup and Archive Partners
- [Comvault](<./Commvault>)
- [Rubrik](<./Rubrik>)
- [Veeam](<./Veeam>)
- [Veritas](<./Veritas>)
Sample Scripts
- [Blob Tiering](./SampleScripts/blobTiering.ps1) - Creates action and filter objects to apply blob tiering to block blobs matching a certain criteria.
- [Create Storage Account](./SampleScripts/createStorAcct.ps1) - Creates a brand new resource group and storage account, based upon input variables.