/// <summary> /// Publish a new version of the Blueprint with the latest artifacts. Published /// Blueprints are immutable. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='subscriptionId'> /// azure subscriptionId, which we save the blueprint to. /// </param> /// <param name='blueprintName'> /// name of the blueprint. /// </param> /// <param name='versionId'> /// version of the published blueprint. /// </param> public static PublishedBlueprint CreateInSubscription(this IPublishedBlueprintsOperations operations, string subscriptionId, string blueprintName, string versionId) { var scope = string.Format(Constants.ResourceScopes.SubscriptionScope, subscriptionId); return(operations.CreateAsync(scope, blueprintName, versionId).GetAwaiter().GetResult()); }
/// <summary> /// Publish a new version of the blueprint definition with the latest /// artifacts. Published blueprint definitions are immutable. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='scope'> /// The scope of the resource. Valid scopes are: management group (format: /// '/providers/Microsoft.Management/managementGroups/{managementGroup}'), /// subscription (format: '/subscriptions/{subscriptionId}'). For blueprint /// assignments management group scope is reserved for future use. /// </param> /// <param name='blueprintName'> /// Name of the blueprint definition. /// </param> /// <param name='versionId'> /// Version of the published blueprint definition. /// </param> /// <param name='publishedBlueprint'> /// Published Blueprint to create or update. /// </param> public static PublishedBlueprint Create(this IPublishedBlueprintsOperations operations, string scope, string blueprintName, string versionId, PublishedBlueprint publishedBlueprint = default(PublishedBlueprint)) { return(operations.CreateAsync(scope, blueprintName, versionId, publishedBlueprint).GetAwaiter().GetResult()); }
/// <summary> /// Publish a new version of the Blueprint with the latest artifacts. Published /// Blueprints are immutable. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='managementGroupName'> /// azure managementGroup name, which we save the blueprint to. /// </param> /// <param name='blueprintName'> /// name of the blueprint. /// </param> /// <param name='versionId'> /// version of the published blueprint. /// </param> public static PublishedBlueprint CreateInManagementGroup(this IPublishedBlueprintsOperations operations, string managementGroupName, string blueprintName, string versionId) { var scope = string.Format(Constants.ResourceScopes.ManagementGroupScope, managementGroupName); return(operations.CreateAsync(scope, blueprintName, versionId).GetAwaiter().GetResult()); }