Interface Deployment.ExecutionStages.WithExecute
-
- All Known Subinterfaces:
Deployment.Execution,Deployment.ExecutionStages.WithWhatIf
- Enclosing interface:
- Deployment.ExecutionStages
public static interface Deployment.ExecutionStages.WithExecuteA deployment definition allowing the execution to be specified.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WhatIfOperationResultwhatIf()Gets changes that will be made by the deployment if executed at the scope of the resource group.Mono<WhatIfOperationResult>whatIfAsync()Gets changes that will be made by the deployment if executed at the scope of the resource group asynchronously.WhatIfOperationResultwhatIfAtSubscriptionScope()Gets changes that will be made by the deployment if executed at the scope of the subscription.Mono<WhatIfOperationResult>whatIfAtSubscriptionScopeAsync()Gets changes that will be made by the deployment if executed at the scope of the subscription asynchronously.
-
-
-
Method Detail
-
whatIf
WhatIfOperationResult whatIf()
Gets changes that will be made by the deployment if executed at the scope of the resource group.- Returns:
- the next stage of the execution.
-
whatIfAsync
Mono<WhatIfOperationResult> whatIfAsync()
Gets changes that will be made by the deployment if executed at the scope of the resource group asynchronously.- Returns:
- the next stage of the execution.
-
whatIfAtSubscriptionScope
WhatIfOperationResult whatIfAtSubscriptionScope()
Gets changes that will be made by the deployment if executed at the scope of the subscription.- Returns:
- the next stage of the execution.
-
whatIfAtSubscriptionScopeAsync
Mono<WhatIfOperationResult> whatIfAtSubscriptionScopeAsync()
Gets changes that will be made by the deployment if executed at the scope of the subscription asynchronously.- Returns:
- the next stage of the execution.
-
-