azure-native.appplatform.Service
Explore with Pulumi AI
Service resource API Version: 2020-07-01.
Example Usage
Services_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var service = new AzureNative.AppPlatform.Service("service", new()
{
Location = "eastus",
Properties = null,
ResourceGroupName = "myResourceGroup",
ServiceName = "myservice",
Sku = new AzureNative.AppPlatform.Inputs.SkuArgs
{
Name = "S0",
Tier = "Standard",
},
Tags =
{
{ "key1", "value1" },
},
});
});
package main
import (
appplatform "github.com/pulumi/pulumi-azure-native-sdk/appplatform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appplatform.NewService(ctx, "service", &appplatform.ServiceArgs{
Location: pulumi.String("eastus"),
Properties: nil,
ResourceGroupName: pulumi.String("myResourceGroup"),
ServiceName: pulumi.String("myservice"),
Sku: &appplatform.SkuArgs{
Name: pulumi.String("S0"),
Tier: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.appplatform.Service;
import com.pulumi.azurenative.appplatform.ServiceArgs;
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) {
var service = new Service("service", ServiceArgs.builder()
.location("eastus")
.properties()
.resourceGroupName("myResourceGroup")
.serviceName("myservice")
.sku(Map.ofEntries(
Map.entry("name", "S0"),
Map.entry("tier", "Standard")
))
.tags(Map.of("key1", "value1"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
service = azure_native.appplatform.Service("service",
location="eastus",
properties=azure_native.appplatform.ClusterResourcePropertiesArgs(),
resource_group_name="myResourceGroup",
service_name="myservice",
sku=azure_native.appplatform.SkuArgs(
name="S0",
tier="Standard",
),
tags={
"key1": "value1",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const service = new azure_native.appplatform.Service("service", {
location: "eastus",
properties: {},
resourceGroupName: "myResourceGroup",
serviceName: "myservice",
sku: {
name: "S0",
tier: "Standard",
},
tags: {
key1: "value1",
},
});
resources:
service:
type: azure-native:appplatform:Service
properties:
location: eastus
properties: {}
resourceGroupName: myResourceGroup
serviceName: myservice
sku:
name: S0
tier: Standard
tags:
key1: value1
Services_CreateOrUpdate_VNetInjection
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var service = new AzureNative.AppPlatform.Service("service", new()
{
Location = "eastus",
Properties = new AzureNative.AppPlatform.Inputs.ClusterResourcePropertiesArgs
{
NetworkProfile = new AzureNative.AppPlatform.Inputs.NetworkProfileArgs
{
AppNetworkResourceGroup = "my-app-network-rg",
AppSubnetId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps",
ServiceCidr = "10.8.0.0/16,10.244.0.0/16,10.245.0.1/16",
ServiceRuntimeNetworkResourceGroup = "my-service-runtime-network-rg",
ServiceRuntimeSubnetId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime",
},
},
ResourceGroupName = "myResourceGroup",
ServiceName = "myservice",
Sku = new AzureNative.AppPlatform.Inputs.SkuArgs
{
Name = "S0",
Tier = "Standard",
},
Tags =
{
{ "key1", "value1" },
},
});
});
package main
import (
appplatform "github.com/pulumi/pulumi-azure-native-sdk/appplatform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := appplatform.NewService(ctx, "service", &appplatform.ServiceArgs{
Location: pulumi.String("eastus"),
Properties: appplatform.ClusterResourcePropertiesResponse{
NetworkProfile: &appplatform.NetworkProfileArgs{
AppNetworkResourceGroup: pulumi.String("my-app-network-rg"),
AppSubnetId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps"),
ServiceCidr: pulumi.String("10.8.0.0/16,10.244.0.0/16,10.245.0.1/16"),
ServiceRuntimeNetworkResourceGroup: pulumi.String("my-service-runtime-network-rg"),
ServiceRuntimeSubnetId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime"),
},
},
ResourceGroupName: pulumi.String("myResourceGroup"),
ServiceName: pulumi.String("myservice"),
Sku: &appplatform.SkuArgs{
Name: pulumi.String("S0"),
Tier: pulumi.String("Standard"),
},
Tags: pulumi.StringMap{
"key1": pulumi.String("value1"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.appplatform.Service;
import com.pulumi.azurenative.appplatform.ServiceArgs;
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) {
var service = new Service("service", ServiceArgs.builder()
.location("eastus")
.properties(Map.of("networkProfile", Map.ofEntries(
Map.entry("appNetworkResourceGroup", "my-app-network-rg"),
Map.entry("appSubnetId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps"),
Map.entry("serviceCidr", "10.8.0.0/16,10.244.0.0/16,10.245.0.1/16"),
Map.entry("serviceRuntimeNetworkResourceGroup", "my-service-runtime-network-rg"),
Map.entry("serviceRuntimeSubnetId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime")
)))
.resourceGroupName("myResourceGroup")
.serviceName("myservice")
.sku(Map.ofEntries(
Map.entry("name", "S0"),
Map.entry("tier", "Standard")
))
.tags(Map.of("key1", "value1"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
service = azure_native.appplatform.Service("service",
location="eastus",
properties=azure_native.appplatform.ClusterResourcePropertiesResponseArgs(
network_profile=azure_native.appplatform.NetworkProfileArgs(
app_network_resource_group="my-app-network-rg",
app_subnet_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps",
service_cidr="10.8.0.0/16,10.244.0.0/16,10.245.0.1/16",
service_runtime_network_resource_group="my-service-runtime-network-rg",
service_runtime_subnet_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime",
),
),
resource_group_name="myResourceGroup",
service_name="myservice",
sku=azure_native.appplatform.SkuArgs(
name="S0",
tier="Standard",
),
tags={
"key1": "value1",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const service = new azure_native.appplatform.Service("service", {
location: "eastus",
properties: {
networkProfile: {
appNetworkResourceGroup: "my-app-network-rg",
appSubnetId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps",
serviceCidr: "10.8.0.0/16,10.244.0.0/16,10.245.0.1/16",
serviceRuntimeNetworkResourceGroup: "my-service-runtime-network-rg",
serviceRuntimeSubnetId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime",
},
},
resourceGroupName: "myResourceGroup",
serviceName: "myservice",
sku: {
name: "S0",
tier: "Standard",
},
tags: {
key1: "value1",
},
});
resources:
service:
type: azure-native:appplatform:Service
properties:
location: eastus
properties:
networkProfile:
appNetworkResourceGroup: my-app-network-rg
appSubnetId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/apps
serviceCidr: 10.8.0.0/16,10.244.0.0/16,10.245.0.1/16
serviceRuntimeNetworkResourceGroup: my-service-runtime-network-rg
serviceRuntimeSubnetId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVirtualNetwork/subnets/serviceRuntime
resourceGroupName: myResourceGroup
serviceName: myservice
sku:
name: S0
tier: Standard
tags:
key1: value1
Create Service Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Service(name: string, args: ServiceArgs, opts?: CustomResourceOptions);
@overload
def Service(resource_name: str,
args: ServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Service(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[ClusterResourcePropertiesArgs] = None,
service_name: Optional[str] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = None)
func NewService(ctx *Context, name string, args ServiceArgs, opts ...ResourceOption) (*Service, error)
public Service(string name, ServiceArgs args, CustomResourceOptions? opts = null)
public Service(String name, ServiceArgs args)
public Service(String name, ServiceArgs args, CustomResourceOptions options)
type: azure-native:appplatform:Service
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var serviceResource = new AzureNative.Appplatform.Service("serviceResource", new()
{
ResourceGroupName = "string",
Location = "string",
Properties =
{
{ "networkProfile",
{
{ "appNetworkResourceGroup", "string" },
{ "appSubnetId", "string" },
{ "serviceCidr", "string" },
{ "serviceRuntimeNetworkResourceGroup", "string" },
{ "serviceRuntimeSubnetId", "string" },
} },
},
ServiceName = "string",
Sku =
{
{ "capacity", 0 },
{ "name", "string" },
{ "tier", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := appplatform.NewService(ctx, "serviceResource", &appplatform.ServiceArgs{
ResourceGroupName: "string",
Location: "string",
Properties: map[string]interface{}{
"networkProfile": map[string]interface{}{
"appNetworkResourceGroup": "string",
"appSubnetId": "string",
"serviceCidr": "string",
"serviceRuntimeNetworkResourceGroup": "string",
"serviceRuntimeSubnetId": "string",
},
},
ServiceName: "string",
Sku: map[string]interface{}{
"capacity": 0,
"name": "string",
"tier": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var serviceResource = new Service("serviceResource", ServiceArgs.builder()
.resourceGroupName("string")
.location("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.serviceName("string")
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
service_resource = azure_native.appplatform.Service("serviceResource",
resource_group_name=string,
location=string,
properties={
networkProfile: {
appNetworkResourceGroup: string,
appSubnetId: string,
serviceCidr: string,
serviceRuntimeNetworkResourceGroup: string,
serviceRuntimeSubnetId: string,
},
},
service_name=string,
sku={
capacity: 0,
name: string,
tier: string,
},
tags={
string: string,
})
const serviceResource = new azure_native.appplatform.Service("serviceResource", {
resourceGroupName: "string",
location: "string",
properties: {
networkProfile: {
appNetworkResourceGroup: "string",
appSubnetId: "string",
serviceCidr: "string",
serviceRuntimeNetworkResourceGroup: "string",
serviceRuntimeSubnetId: "string",
},
},
serviceName: "string",
sku: {
capacity: 0,
name: "string",
tier: "string",
},
tags: {
string: "string",
},
});
type: azure-native:appplatform:Service
properties:
location: string
properties:
networkProfile:
appNetworkResourceGroup: string
appSubnetId: string
serviceCidr: string
serviceRuntimeNetworkResourceGroup: string
serviceRuntimeSubnetId: string
resourceGroupName: string
serviceName: string
sku:
capacity: 0
name: string
tier: string
tags:
string: string
Service Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Service resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Location string
- The GEO location of the resource.
- Properties
Pulumi.
Azure Native. App Platform. Inputs. Cluster Resource Properties - Properties of the Service resource
- Service
Name string - The name of the Service resource.
- Sku
Pulumi.
Azure Native. App Platform. Inputs. Sku - Sku of the Service resource
- Dictionary<string, string>
- Tags of the service which is a list of key value pairs that describe the resource.
- Resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Location string
- The GEO location of the resource.
- Properties
Cluster
Resource Properties Args - Properties of the Service resource
- Service
Name string - The name of the Service resource.
- Sku
Sku
Args - Sku of the Service resource
- map[string]string
- Tags of the service which is a list of key value pairs that describe the resource.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location String
- The GEO location of the resource.
- properties
Cluster
Resource Properties - Properties of the Service resource
- service
Name String - The name of the Service resource.
- sku Sku
- Sku of the Service resource
- Map<String,String>
- Tags of the service which is a list of key value pairs that describe the resource.
- resource
Group stringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location string
- The GEO location of the resource.
- properties
Cluster
Resource Properties - Properties of the Service resource
- service
Name string - The name of the Service resource.
- sku Sku
- Sku of the Service resource
- {[key: string]: string}
- Tags of the service which is a list of key value pairs that describe the resource.
- resource_
group_ strname - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location str
- The GEO location of the resource.
- properties
Cluster
Resource Properties Args - Properties of the Service resource
- service_
name str - The name of the Service resource.
- sku
Sku
Args - Sku of the Service resource
- Mapping[str, str]
- Tags of the service which is a list of key value pairs that describe the resource.
- resource
Group StringName - The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location String
- The GEO location of the resource.
- properties Property Map
- Properties of the Service resource
- service
Name String - The name of the Service resource.
- sku Property Map
- Sku of the Service resource
- Map<String>
- Tags of the service which is a list of key value pairs that describe the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Service resource produces the following output properties:
Supporting Types
ClusterResourceProperties, ClusterResourcePropertiesArgs
- Network
Profile Pulumi.Azure Native. App Platform. Inputs. Network Profile - Network profile of the Service
- Network
Profile NetworkProfile - Network profile of the Service
- network
Profile NetworkProfile - Network profile of the Service
- network
Profile NetworkProfile - Network profile of the Service
- network_
profile NetworkProfile - Network profile of the Service
- network
Profile Property Map - Network profile of the Service
ClusterResourcePropertiesResponse, ClusterResourcePropertiesResponseArgs
- Provisioning
State string - Provisioning state of the Service
- Service
Id string - ServiceInstanceEntity GUID which uniquely identifies a created resource
- Version int
- Version of the Service
- Network
Profile Pulumi.Azure Native. App Platform. Inputs. Network Profile Response - Network profile of the Service
- Provisioning
State string - Provisioning state of the Service
- Service
Id string - ServiceInstanceEntity GUID which uniquely identifies a created resource
- Version int
- Version of the Service
- Network
Profile NetworkProfile Response - Network profile of the Service
- provisioning
State String - Provisioning state of the Service
- service
Id String - ServiceInstanceEntity GUID which uniquely identifies a created resource
- version Integer
- Version of the Service
- network
Profile NetworkProfile Response - Network profile of the Service
- provisioning
State string - Provisioning state of the Service
- service
Id string - ServiceInstanceEntity GUID which uniquely identifies a created resource
- version number
- Version of the Service
- network
Profile NetworkProfile Response - Network profile of the Service
- provisioning_
state str - Provisioning state of the Service
- service_
id str - ServiceInstanceEntity GUID which uniquely identifies a created resource
- version int
- Version of the Service
- network_
profile NetworkProfile Response - Network profile of the Service
- provisioning
State String - Provisioning state of the Service
- service
Id String - ServiceInstanceEntity GUID which uniquely identifies a created resource
- version Number
- Version of the Service
- network
Profile Property Map - Network profile of the Service
NetworkProfile, NetworkProfileArgs
- App
Network stringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- App
Subnet stringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- Service
Cidr string - Azure Spring Cloud service reserved CIDR
- Service
Runtime stringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- Service
Runtime stringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- App
Network stringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- App
Subnet stringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- Service
Cidr string - Azure Spring Cloud service reserved CIDR
- Service
Runtime stringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- Service
Runtime stringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- app
Network StringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet StringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr String - Azure Spring Cloud service reserved CIDR
- service
Runtime StringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime StringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- app
Network stringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet stringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr string - Azure Spring Cloud service reserved CIDR
- service
Runtime stringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime stringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- app_
network_ strresource_ group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- app_
subnet_ strid - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service_
cidr str - Azure Spring Cloud service reserved CIDR
- service_
runtime_ strnetwork_ resource_ group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service_
runtime_ strsubnet_ id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- app
Network StringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet StringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr String - Azure Spring Cloud service reserved CIDR
- service
Runtime StringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime StringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
NetworkProfileResponse, NetworkProfileResponseArgs
- Outbound
IPs Pulumi.Azure Native. App Platform. Inputs. Network Profile Response Outbound IPs - Desired outbound IP resources for Azure Spring Cloud instance.
- Required
Traffics List<Pulumi.Azure Native. App Platform. Inputs. Required Traffic Response> - Required inbound or outbound traffics for Azure Spring Cloud instance.
- App
Network stringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- App
Subnet stringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- Service
Cidr string - Azure Spring Cloud service reserved CIDR
- Service
Runtime stringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- Service
Runtime stringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- Outbound
IPs NetworkProfile Response Outbound IPs - Desired outbound IP resources for Azure Spring Cloud instance.
- Required
Traffics []RequiredTraffic Response - Required inbound or outbound traffics for Azure Spring Cloud instance.
- App
Network stringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- App
Subnet stringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- Service
Cidr string - Azure Spring Cloud service reserved CIDR
- Service
Runtime stringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- Service
Runtime stringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- outbound
IPs NetworkProfile Response Outbound IPs - Desired outbound IP resources for Azure Spring Cloud instance.
- required
Traffics List<RequiredTraffic Response> - Required inbound or outbound traffics for Azure Spring Cloud instance.
- app
Network StringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet StringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr String - Azure Spring Cloud service reserved CIDR
- service
Runtime StringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime StringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- outbound
IPs NetworkProfile Response Outbound IPs - Desired outbound IP resources for Azure Spring Cloud instance.
- required
Traffics RequiredTraffic Response[] - Required inbound or outbound traffics for Azure Spring Cloud instance.
- app
Network stringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet stringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr string - Azure Spring Cloud service reserved CIDR
- service
Runtime stringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime stringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- outbound_
ips NetworkProfile Response Outbound IPs - Desired outbound IP resources for Azure Spring Cloud instance.
- required_
traffics Sequence[RequiredTraffic Response] - Required inbound or outbound traffics for Azure Spring Cloud instance.
- app_
network_ strresource_ group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- app_
subnet_ strid - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service_
cidr str - Azure Spring Cloud service reserved CIDR
- service_
runtime_ strnetwork_ resource_ group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service_
runtime_ strsubnet_ id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
- outbound
IPs Property Map - Desired outbound IP resources for Azure Spring Cloud instance.
- required
Traffics List<Property Map> - Required inbound or outbound traffics for Azure Spring Cloud instance.
- app
Network StringResource Group - Name of the resource group containing network resources of Azure Spring Cloud Apps
- app
Subnet StringId - Fully qualified resource Id of the subnet to host Azure Spring Cloud Apps
- service
Cidr String - Azure Spring Cloud service reserved CIDR
- service
Runtime StringNetwork Resource Group - Name of the resource group containing network resources of Azure Spring Cloud Service Runtime
- service
Runtime StringSubnet Id - Fully qualified resource Id of the subnet to host Azure Spring Cloud Service Runtime
NetworkProfileResponseOutboundIPs, NetworkProfileResponseOutboundIPsArgs
- Public
IPs List<string> - A list of public IP addresses.
- Public
IPs []string - A list of public IP addresses.
- public
IPs List<String> - A list of public IP addresses.
- public
IPs string[] - A list of public IP addresses.
- public_
ips Sequence[str] - A list of public IP addresses.
- public
IPs List<String> - A list of public IP addresses.
RequiredTrafficResponse, RequiredTrafficResponseArgs
Sku, SkuArgs
SkuResponse, SkuResponseArgs
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:appplatform:Service myservice /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.AppPlatform/Spring/myservice
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0