Skip to content

Documentation back fill for ResourceManager #3314

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

Merged
merged 40 commits into from
Dec 21, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
dd96588
Initial help content for ApiManagement module.
raien66 Dec 1, 2016
3de2e97
Initial help content for Automation module.
raien66 Dec 1, 2016
843badc
Initial help content for AzureBackup module.
raien66 Dec 1, 2016
e01c8da
Initial help content for AzureBatch module.
raien66 Dec 1, 2016
22936ae
Initial help content for AzureStackStorage module.
raien66 Dec 1, 2016
c44b4f8
Initial help content for Cdn module.
raien66 Dec 1, 2016
16982dd
Initial help content for CognitiveServices module.
raien66 Dec 1, 2016
e29528d
Initial help content for Compute module.
raien66 Dec 1, 2016
dc361ee
Initial help content for DataFactories module.
raien66 Dec 1, 2016
0d7a11e
Initial help content for DataLakeAnalytics module.
raien66 Dec 1, 2016
a4b7238
Initial help content for DataLakeStore module.
raien66 Dec 1, 2016
fe7f145
Initial help content for DevTestLabs module.
raien66 Dec 1, 2016
67e9e08
Initial help content for Dns module.
raien66 Dec 1, 2016
b760c84
Initial help content for HDInsight module.
raien66 Dec 1, 2016
90181d1
Initial help content for Insights module.
raien66 Dec 1, 2016
3794b4d
Initial help content for KeyVault module.
raien66 Dec 1, 2016
b91360e
Initial help content for LogicApp module.
raien66 Dec 1, 2016
f352818
Initial help content for Media module.
raien66 Dec 1, 2016
1b0dfbf
Initial help content for Network module.
raien66 Dec 1, 2016
57553ee
Initial help content for NotificationHubs module.
raien66 Dec 1, 2016
ec0571c
Initial help content for OperationalInsights module.
raien66 Dec 1, 2016
d91cd70
Initial help content for PowerBIEmbedded module.
raien66 Dec 1, 2016
2a6a05d
Initial help content for RecoveryServices module.
raien66 Dec 1, 2016
44aeedc
Initial help content for RecoveryServices.Backup module.
raien66 Dec 1, 2016
eb2538d
Initial help content for RedisCache module.
raien66 Dec 1, 2016
dc1ff34
Initial help content for Resources module.
raien66 Dec 1, 2016
b1615d8
Initial help content for Scheduler module.
raien66 Dec 1, 2016
8fe41cb
Initial help content for ServerManagement module.
raien66 Dec 1, 2016
cbebc40
Initial help content for SiteRecovery module.
raien66 Dec 1, 2016
a954e1d
Initial help content for Sql module.
raien66 Dec 1, 2016
6f1221c
Initial help content for Storage module.
raien66 Dec 1, 2016
8b0045c
Initial help content for StreamAnalytics module.
raien66 Dec 1, 2016
c7248e7
Initial help content for Tags module.
raien66 Dec 1, 2016
e72b5d2
Initial help content for TrafficManager module.
raien66 Dec 1, 2016
0cb1bf2
Initial help content for UsageAggregates module.
raien66 Dec 1, 2016
145f6e4
Initial help content for Websites module.
raien66 Dec 1, 2016
f471792
Merge branch 'dev' of https://github.com/Azure/azure-powershell into rm
twitchax Dec 19, 2016
f7afb24
Merge from upstream dev.
twitchax Dec 20, 2016
7347434
Temporary move.
twitchax Dec 20, 2016
94e4283
Final move.
twitchax Dec 20, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
---
external help file: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.dll-Help.xml
online version:
schema: 2.0.0
ms.assetid: 2166E28A-33F6-435D-92AF-C9A7B44297B2
---

# Add-AzureRmApiManagementApiToProduct

## SYNOPSIS
Adds an API to a product.

## SYNTAX

```
Add-AzureRmApiManagementApiToProduct -Context <PsApiManagementContext> -ProductId <String> -ApiId <String>
[-PassThru] [-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
```

## DESCRIPTION
The **Add-AzureRmApiManagementApiToProduct** cmdlet adds an Azure API Management API to a product.

## EXAMPLES

### Example 1: Add an API to a product
```
PS C:\>Add-AzureRmApiManagementApiToProduct -Context $ApiMgmtContext -ProductId "0123456789" -ApiId "0001"
```

This command adds the specified API to the specified product.

## PARAMETERS

### -Context
Specifies a **PsApiManagementContext** object.

```yaml
Type: PsApiManagementContext
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```

### -ProductId
Specifies the ID of the product to which to add the API.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```

### -ApiId
Specifies the ID of an API to add to a product.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```

### -PassThru
passthru

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```

### -InformationAction
Specifies how this cmdlet responds to an information event.

The acceptable values for this parameter are:

- Continue
- Ignore
- Inquire
- SilentlyContinue
- Stop
- Suspend

```yaml
Type: ActionPreference
Parameter Sets: (All)
Aliases: infa

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -InformationVariable
Specifies an information variable.

```yaml
Type: String
Parameter Sets: (All)
Aliases: iv

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

## OUTPUTS

### Boolean

## NOTES

## RELATED LINKS

[Remove-AzureRmApiManagementApiFromProduct](./Remove-AzureRmApiManagementApiFromProduct.md)


Original file line number Diff line number Diff line change
@@ -0,0 +1,152 @@
---
external help file: Microsoft.Azure.Commands.ApiManagement.ServiceManagement.dll-Help.xml
online version:
schema: 2.0.0
ms.assetid: DC299A28-324C-45E5-9466-0DF47F30BBF1
---

# Add-AzureRmApiManagementProductToGroup

## SYNOPSIS
Adds a product to a group.

## SYNTAX

```
Add-AzureRmApiManagementProductToGroup -Context <PsApiManagementContext> -GroupId <String> -ProductId <String>
[-PassThru] [-InformationAction <ActionPreference>] [-InformationVariable <String>] [<CommonParameters>]
```

## DESCRIPTION
The **Add-AzureRmApiManagementProductToGroup** cmdlet adds a product to an existing group.
In other words, this cmdlet assigns a group to a product.

## EXAMPLES

### Example 1: Add a product to a group
```
PS C:\>Add-AzureRmApiManagementProductToGroup -Context $apimContext -GroupId "0001" -ProductId "0123456789"
```

This command adds a product to an existing group.

## PARAMETERS

### -Context
Specifies a **PsApiManagementContext** object.
This parameter is required.

```yaml
Type: PsApiManagementContext
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```

### -GroupId
Specifies the group ID.
This parameter is required.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```

### -ProductId
Specifies the product ID.
This parameter is required.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```

### -PassThru
passthru

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
```

### -InformationAction
Specifies how this cmdlet responds to an information event.

The acceptable values for this parameter are:

- Continue
- Ignore
- Inquire
- SilentlyContinue
- Stop
- Suspend

```yaml
Type: ActionPreference
Parameter Sets: (All)
Aliases: infa

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -InformationVariable
Specifies an information variable.

```yaml
Type: String
Parameter Sets: (All)
Aliases: iv

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

## OUTPUTS

### Boolean

## NOTES

## RELATED LINKS

[Remove-AzureRmApiManagementProductFromGroup](./Remove-AzureRmApiManagementProductFromGroup.md)


Loading