We recommend using Azure Native.
Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi
azure.maintenance.getPublicConfigurations
Explore with Pulumi AI
Use this data source to access information about existing Public Maintenance Configurations.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const existing = azure.maintenance.getPublicConfigurations({
location: "West Europe",
scope: "SQLManagedInstance",
recurEvery: "Monday-Thursday",
});
export const name = existing.then(existing => existing.configs?.[0]?.name);
import pulumi
import pulumi_azure as azure
existing = azure.maintenance.get_public_configurations(location="West Europe",
scope="SQLManagedInstance",
recur_every="Monday-Thursday")
pulumi.export("name", existing.configs[0].name)
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/maintenance"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
existing, err := maintenance.GetPublicConfigurations(ctx, &maintenance.GetPublicConfigurationsArgs{
Location: pulumi.StringRef("West Europe"),
Scope: pulumi.StringRef("SQLManagedInstance"),
RecurEvery: pulumi.StringRef("Monday-Thursday"),
}, nil)
if err != nil {
return err
}
ctx.Export("name", existing.Configs[0].Name)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var existing = Azure.Maintenance.GetPublicConfigurations.Invoke(new()
{
Location = "West Europe",
Scope = "SQLManagedInstance",
RecurEvery = "Monday-Thursday",
});
return new Dictionary<string, object?>
{
["name"] = existing.Apply(getPublicConfigurationsResult => getPublicConfigurationsResult.Configs[0]?.Name),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.maintenance.MaintenanceFunctions;
import com.pulumi.azure.maintenance.inputs.GetPublicConfigurationsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var existing = MaintenanceFunctions.getPublicConfigurations(GetPublicConfigurationsArgs.builder()
.location("West Europe")
.scope("SQLManagedInstance")
.recurEvery("Monday-Thursday")
.build());
ctx.export("name", existing.applyValue(getPublicConfigurationsResult -> getPublicConfigurationsResult.configs()[0].name()));
}
}
variables:
existing:
fn::invoke:
function: azure:maintenance:getPublicConfigurations
arguments:
location: West Europe
scope: SQLManagedInstance
recurEvery: Monday-Thursday
outputs:
name: ${existing.configs[0].name}
Using getPublicConfigurations
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getPublicConfigurations(args: GetPublicConfigurationsArgs, opts?: InvokeOptions): Promise<GetPublicConfigurationsResult>
function getPublicConfigurationsOutput(args: GetPublicConfigurationsOutputArgs, opts?: InvokeOptions): Output<GetPublicConfigurationsResult>
def get_public_configurations(location: Optional[str] = None,
recur_every: Optional[str] = None,
scope: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetPublicConfigurationsResult
def get_public_configurations_output(location: Optional[pulumi.Input[str]] = None,
recur_every: Optional[pulumi.Input[str]] = None,
scope: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetPublicConfigurationsResult]
func GetPublicConfigurations(ctx *Context, args *GetPublicConfigurationsArgs, opts ...InvokeOption) (*GetPublicConfigurationsResult, error)
func GetPublicConfigurationsOutput(ctx *Context, args *GetPublicConfigurationsOutputArgs, opts ...InvokeOption) GetPublicConfigurationsResultOutput
> Note: This function is named GetPublicConfigurations
in the Go SDK.
public static class GetPublicConfigurations
{
public static Task<GetPublicConfigurationsResult> InvokeAsync(GetPublicConfigurationsArgs args, InvokeOptions? opts = null)
public static Output<GetPublicConfigurationsResult> Invoke(GetPublicConfigurationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetPublicConfigurationsResult> getPublicConfigurations(GetPublicConfigurationsArgs args, InvokeOptions options)
public static Output<GetPublicConfigurationsResult> getPublicConfigurations(GetPublicConfigurationsArgs args, InvokeOptions options)
fn::invoke:
function: azure:maintenance/getPublicConfigurations:getPublicConfigurations
arguments:
# arguments dictionary
The following arguments are supported:
- Location string
- The Azure location to filter the list of Public Maintenance Configurations against.
- Recur
Every string - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- Scope string
- The scope to filter the list of Public Maintenance Configurations against. Possible values are
Extension
,Host
,InGuestPatch
,OSImage
,SQLDB
andSQLManagedInstance
.
- Location string
- The Azure location to filter the list of Public Maintenance Configurations against.
- Recur
Every string - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- Scope string
- The scope to filter the list of Public Maintenance Configurations against. Possible values are
Extension
,Host
,InGuestPatch
,OSImage
,SQLDB
andSQLManagedInstance
.
- location String
- The Azure location to filter the list of Public Maintenance Configurations against.
- recur
Every String - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- scope String
- The scope to filter the list of Public Maintenance Configurations against. Possible values are
Extension
,Host
,InGuestPatch
,OSImage
,SQLDB
andSQLManagedInstance
.
- location string
- The Azure location to filter the list of Public Maintenance Configurations against.
- recur
Every string - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- scope string
- The scope to filter the list of Public Maintenance Configurations against. Possible values are
Extension
,Host
,InGuestPatch
,OSImage
,SQLDB
andSQLManagedInstance
.
- location str
- The Azure location to filter the list of Public Maintenance Configurations against.
- recur_
every str - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- scope str
- The scope to filter the list of Public Maintenance Configurations against. Possible values are
Extension
,Host
,InGuestPatch
,OSImage
,SQLDB
andSQLManagedInstance
.
- location String
- The Azure location to filter the list of Public Maintenance Configurations against.
- recur
Every String - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- scope String
- The scope to filter the list of Public Maintenance Configurations against. Possible values are
Extension
,Host
,InGuestPatch
,OSImage
,SQLDB
andSQLManagedInstance
.
getPublicConfigurations Result
The following output properties are available:
- Configs
List<Get
Public Configurations Config> - A
configs
block as defined below. - Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- The Azure location of the Public Maintenance Configuration.
- Recur
Every string - The rate at which a maintenance window is expected to recur.
- Scope string
- Configs
[]Get
Public Configurations Config - A
configs
block as defined below. - Id string
- The provider-assigned unique ID for this managed resource.
- Location string
- The Azure location of the Public Maintenance Configuration.
- Recur
Every string - The rate at which a maintenance window is expected to recur.
- Scope string
- configs
List<Get
Public Configurations Config> - A
configs
block as defined below. - id String
- The provider-assigned unique ID for this managed resource.
- location String
- The Azure location of the Public Maintenance Configuration.
- recur
Every String - The rate at which a maintenance window is expected to recur.
- scope String
- configs
Get
Public Configurations Config[] - A
configs
block as defined below. - id string
- The provider-assigned unique ID for this managed resource.
- location string
- The Azure location of the Public Maintenance Configuration.
- recur
Every string - The rate at which a maintenance window is expected to recur.
- scope string
- configs
Sequence[Get
Public Configurations Config] - A
configs
block as defined below. - id str
- The provider-assigned unique ID for this managed resource.
- location str
- The Azure location of the Public Maintenance Configuration.
- recur_
every str - The rate at which a maintenance window is expected to recur.
- scope str
- configs List<Property Map>
- A
configs
block as defined below. - id String
- The provider-assigned unique ID for this managed resource.
- location String
- The Azure location of the Public Maintenance Configuration.
- recur
Every String - The rate at which a maintenance window is expected to recur.
- scope String
Supporting Types
GetPublicConfigurationsConfig
- Description
This property is required. string - A description of the Public Maintenance Configuration.
- Duration
This property is required. string - The duration of the Public Maintenance Configuration window.
- Id
This property is required. string - The id of the Public Maintenance Configuration.
- Location
This property is required. string - The Azure location to filter the list of Public Maintenance Configurations against.
- Maintenance
Scope This property is required. string - The scope of the Public Maintenance Configuration.
- Name
This property is required. string - The name of the Public Maintenance Configuration.
- Recur
Every This property is required. string - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- Time
Zone This property is required. string - The time zone for the maintenance window.
- Description
This property is required. string - A description of the Public Maintenance Configuration.
- Duration
This property is required. string - The duration of the Public Maintenance Configuration window.
- Id
This property is required. string - The id of the Public Maintenance Configuration.
- Location
This property is required. string - The Azure location to filter the list of Public Maintenance Configurations against.
- Maintenance
Scope This property is required. string - The scope of the Public Maintenance Configuration.
- Name
This property is required. string - The name of the Public Maintenance Configuration.
- Recur
Every This property is required. string - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- Time
Zone This property is required. string - The time zone for the maintenance window.
- description
This property is required. String - A description of the Public Maintenance Configuration.
- duration
This property is required. String - The duration of the Public Maintenance Configuration window.
- id
This property is required. String - The id of the Public Maintenance Configuration.
- location
This property is required. String - The Azure location to filter the list of Public Maintenance Configurations against.
- maintenance
Scope This property is required. String - The scope of the Public Maintenance Configuration.
- name
This property is required. String - The name of the Public Maintenance Configuration.
- recur
Every This property is required. String - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- time
Zone This property is required. String - The time zone for the maintenance window.
- description
This property is required. string - A description of the Public Maintenance Configuration.
- duration
This property is required. string - The duration of the Public Maintenance Configuration window.
- id
This property is required. string - The id of the Public Maintenance Configuration.
- location
This property is required. string - The Azure location to filter the list of Public Maintenance Configurations against.
- maintenance
Scope This property is required. string - The scope of the Public Maintenance Configuration.
- name
This property is required. string - The name of the Public Maintenance Configuration.
- recur
Every This property is required. string - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- time
Zone This property is required. string - The time zone for the maintenance window.
- description
This property is required. str - A description of the Public Maintenance Configuration.
- duration
This property is required. str - The duration of the Public Maintenance Configuration window.
- id
This property is required. str - The id of the Public Maintenance Configuration.
- location
This property is required. str - The Azure location to filter the list of Public Maintenance Configurations against.
- maintenance_
scope This property is required. str - The scope of the Public Maintenance Configuration.
- name
This property is required. str - The name of the Public Maintenance Configuration.
- recur_
every This property is required. str - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- time_
zone This property is required. str - The time zone for the maintenance window.
- description
This property is required. String - A description of the Public Maintenance Configuration.
- duration
This property is required. String - The duration of the Public Maintenance Configuration window.
- id
This property is required. String - The id of the Public Maintenance Configuration.
- location
This property is required. String - The Azure location to filter the list of Public Maintenance Configurations against.
- maintenance
Scope This property is required. String - The scope of the Public Maintenance Configuration.
- name
This property is required. String - The name of the Public Maintenance Configuration.
- recur
Every This property is required. String - The recurring window to filter the list of Public Maintenance Configurations against. Possible values are
Monday-Thursday
andFriday-Sunday
- time
Zone This property is required. String - The time zone for the maintenance window.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.