azure-native.logic.IntegrationServiceEnvironmentManagedApi
Explore with Pulumi AI
The integration service environment managed api. API Version: 2019-05-01.
Example Usage
Gets the integration service environment managed Apis
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var integrationServiceEnvironmentManagedApi = new AzureNative.Logic.IntegrationServiceEnvironmentManagedApi("integrationServiceEnvironmentManagedApi", new()
{
ApiName = "servicebus",
IntegrationServiceEnvironmentName = "testIntegrationServiceEnvironment",
Location = "brazilsouth",
ResourceGroup = "testResourceGroup",
});
});
package main
import (
logic "github.com/pulumi/pulumi-azure-native-sdk/logic"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := logic.NewIntegrationServiceEnvironmentManagedApi(ctx, "integrationServiceEnvironmentManagedApi", &logic.IntegrationServiceEnvironmentManagedApiArgs{
ApiName: pulumi.String("servicebus"),
IntegrationServiceEnvironmentName: pulumi.String("testIntegrationServiceEnvironment"),
Location: pulumi.String("brazilsouth"),
ResourceGroup: pulumi.String("testResourceGroup"),
})
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.logic.IntegrationServiceEnvironmentManagedApi;
import com.pulumi.azurenative.logic.IntegrationServiceEnvironmentManagedApiArgs;
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 integrationServiceEnvironmentManagedApi = new IntegrationServiceEnvironmentManagedApi("integrationServiceEnvironmentManagedApi", IntegrationServiceEnvironmentManagedApiArgs.builder()
.apiName("servicebus")
.integrationServiceEnvironmentName("testIntegrationServiceEnvironment")
.location("brazilsouth")
.resourceGroup("testResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
integration_service_environment_managed_api = azure_native.logic.IntegrationServiceEnvironmentManagedApi("integrationServiceEnvironmentManagedApi",
api_name="servicebus",
integration_service_environment_name="testIntegrationServiceEnvironment",
location="brazilsouth",
resource_group="testResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const integrationServiceEnvironmentManagedApi = new azure_native.logic.IntegrationServiceEnvironmentManagedApi("integrationServiceEnvironmentManagedApi", {
apiName: "servicebus",
integrationServiceEnvironmentName: "testIntegrationServiceEnvironment",
location: "brazilsouth",
resourceGroup: "testResourceGroup",
});
resources:
integrationServiceEnvironmentManagedApi:
type: azure-native:logic:IntegrationServiceEnvironmentManagedApi
properties:
apiName: servicebus
integrationServiceEnvironmentName: testIntegrationServiceEnvironment
location: brazilsouth
resourceGroup: testResourceGroup
Create IntegrationServiceEnvironmentManagedApi Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationServiceEnvironmentManagedApi(name: string, args: IntegrationServiceEnvironmentManagedApiArgs, opts?: CustomResourceOptions);
@overload
def IntegrationServiceEnvironmentManagedApi(resource_name: str,
args: IntegrationServiceEnvironmentManagedApiArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationServiceEnvironmentManagedApi(resource_name: str,
opts: Optional[ResourceOptions] = None,
integration_service_environment_name: Optional[str] = None,
resource_group: Optional[str] = None,
api_name: Optional[str] = None,
deployment_parameters: Optional[IntegrationServiceEnvironmentManagedApiDeploymentParametersArgs] = None,
integration_service_environment: Optional[ResourceReferenceArgs] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewIntegrationServiceEnvironmentManagedApi(ctx *Context, name string, args IntegrationServiceEnvironmentManagedApiArgs, opts ...ResourceOption) (*IntegrationServiceEnvironmentManagedApi, error)
public IntegrationServiceEnvironmentManagedApi(string name, IntegrationServiceEnvironmentManagedApiArgs args, CustomResourceOptions? opts = null)
public IntegrationServiceEnvironmentManagedApi(String name, IntegrationServiceEnvironmentManagedApiArgs args)
public IntegrationServiceEnvironmentManagedApi(String name, IntegrationServiceEnvironmentManagedApiArgs args, CustomResourceOptions options)
type: azure-native:logic:IntegrationServiceEnvironmentManagedApi
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 IntegrationServiceEnvironmentManagedApiArgs
- 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 IntegrationServiceEnvironmentManagedApiArgs
- 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 IntegrationServiceEnvironmentManagedApiArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationServiceEnvironmentManagedApiArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationServiceEnvironmentManagedApiArgs
- 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 integrationServiceEnvironmentManagedApiResource = new AzureNative.Logic.IntegrationServiceEnvironmentManagedApi("integrationServiceEnvironmentManagedApiResource", new()
{
IntegrationServiceEnvironmentName = "string",
ResourceGroup = "string",
ApiName = "string",
DeploymentParameters =
{
{ "contentLinkDefinition",
{
{ "uri", "string" },
} },
},
IntegrationServiceEnvironment =
{
{ "id", "string" },
},
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := logic.NewIntegrationServiceEnvironmentManagedApi(ctx, "integrationServiceEnvironmentManagedApiResource", &logic.IntegrationServiceEnvironmentManagedApiArgs{
IntegrationServiceEnvironmentName: "string",
ResourceGroup: "string",
ApiName: "string",
DeploymentParameters: map[string]interface{}{
"contentLinkDefinition": map[string]interface{}{
"uri": "string",
},
},
IntegrationServiceEnvironment: map[string]interface{}{
"id": "string",
},
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var integrationServiceEnvironmentManagedApiResource = new IntegrationServiceEnvironmentManagedApi("integrationServiceEnvironmentManagedApiResource", IntegrationServiceEnvironmentManagedApiArgs.builder()
.integrationServiceEnvironmentName("string")
.resourceGroup("string")
.apiName("string")
.deploymentParameters(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.integrationServiceEnvironment(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
integration_service_environment_managed_api_resource = azure_native.logic.IntegrationServiceEnvironmentManagedApi("integrationServiceEnvironmentManagedApiResource",
integration_service_environment_name=string,
resource_group=string,
api_name=string,
deployment_parameters={
contentLinkDefinition: {
uri: string,
},
},
integration_service_environment={
id: string,
},
location=string,
tags={
string: string,
})
const integrationServiceEnvironmentManagedApiResource = new azure_native.logic.IntegrationServiceEnvironmentManagedApi("integrationServiceEnvironmentManagedApiResource", {
integrationServiceEnvironmentName: "string",
resourceGroup: "string",
apiName: "string",
deploymentParameters: {
contentLinkDefinition: {
uri: "string",
},
},
integrationServiceEnvironment: {
id: "string",
},
location: "string",
tags: {
string: "string",
},
});
type: azure-native:logic:IntegrationServiceEnvironmentManagedApi
properties:
apiName: string
deploymentParameters:
contentLinkDefinition:
uri: string
integrationServiceEnvironment:
id: string
integrationServiceEnvironmentName: string
location: string
resourceGroup: string
tags:
string: string
IntegrationServiceEnvironmentManagedApi Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The IntegrationServiceEnvironmentManagedApi resource accepts the following input properties:
- Integration
Service stringEnvironment Name - The integration service environment name.
- Resource
Group string - The resource group name.
- Api
Name string - The api name.
- Deployment
Parameters Pulumi.Azure Native. Logic. Inputs. Integration Service Environment Managed Api Deployment Parameters - The integration service environment managed api deployment parameters.
- Integration
Service Pulumi.Environment Azure Native. Logic. Inputs. Resource Reference - The integration service environment reference.
- Location string
- The resource location.
- Dictionary<string, string>
- The resource tags.
- Integration
Service stringEnvironment Name - The integration service environment name.
- Resource
Group string - The resource group name.
- Api
Name string - The api name.
- Deployment
Parameters IntegrationService Environment Managed Api Deployment Parameters Args - The integration service environment managed api deployment parameters.
- Integration
Service ResourceEnvironment Reference Args - The integration service environment reference.
- Location string
- The resource location.
- map[string]string
- The resource tags.
- integration
Service StringEnvironment Name - The integration service environment name.
- resource
Group String - The resource group name.
- api
Name String - The api name.
- deployment
Parameters IntegrationService Environment Managed Api Deployment Parameters - The integration service environment managed api deployment parameters.
- integration
Service ResourceEnvironment Reference - The integration service environment reference.
- location String
- The resource location.
- Map<String,String>
- The resource tags.
- integration
Service stringEnvironment Name - The integration service environment name.
- resource
Group string - The resource group name.
- api
Name string - The api name.
- deployment
Parameters IntegrationService Environment Managed Api Deployment Parameters - The integration service environment managed api deployment parameters.
- integration
Service ResourceEnvironment Reference - The integration service environment reference.
- location string
- The resource location.
- {[key: string]: string}
- The resource tags.
- integration_
service_ strenvironment_ name - The integration service environment name.
- resource_
group str - The resource group name.
- api_
name str - The api name.
- deployment_
parameters IntegrationService Environment Managed Api Deployment Parameters Args - The integration service environment managed api deployment parameters.
- integration_
service_ Resourceenvironment Reference Args - The integration service environment reference.
- location str
- The resource location.
- Mapping[str, str]
- The resource tags.
- integration
Service StringEnvironment Name - The integration service environment name.
- resource
Group String - The resource group name.
- api
Name String - The api name.
- deployment
Parameters Property Map - The integration service environment managed api deployment parameters.
- integration
Service Property MapEnvironment - The integration service environment reference.
- location String
- The resource location.
- Map<String>
- The resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationServiceEnvironmentManagedApi resource produces the following output properties:
- Api
Definition stringUrl - The API definition.
- Api
Definitions Pulumi.Azure Native. Logic. Outputs. Api Resource Definitions Response - The api definitions.
- Backend
Service Pulumi.Azure Native. Logic. Outputs. Api Resource Backend Service Response - The backend service.
- Capabilities List<string>
- The capabilities.
- Category string
- The category.
- Connection
Parameters Dictionary<string, object> - The connection parameters.
- General
Information Pulumi.Azure Native. Logic. Outputs. Api Resource General Information Response - The api general information.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata
Pulumi.
Azure Native. Logic. Outputs. Api Resource Metadata Response - The metadata.
- Name string
- Gets the resource name.
- Policies
Pulumi.
Azure Native. Logic. Outputs. Api Resource Policies Response - The policies for the API.
- Provisioning
State string - The provisioning state.
- Runtime
Urls List<string> - The runtime urls.
- Type string
- Gets the resource type.
- Api
Definition stringUrl - The API definition.
- Api
Definitions ApiResource Definitions Response - The api definitions.
- Backend
Service ApiResource Backend Service Response - The backend service.
- Capabilities []string
- The capabilities.
- Category string
- The category.
- Connection
Parameters map[string]interface{} - The connection parameters.
- General
Information ApiResource General Information Response - The api general information.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadata
Api
Resource Metadata Response - The metadata.
- Name string
- Gets the resource name.
- Policies
Api
Resource Policies Response - The policies for the API.
- Provisioning
State string - The provisioning state.
- Runtime
Urls []string - The runtime urls.
- Type string
- Gets the resource type.
- api
Definition StringUrl - The API definition.
- api
Definitions ApiResource Definitions Response - The api definitions.
- backend
Service ApiResource Backend Service Response - The backend service.
- capabilities List<String>
- The capabilities.
- category String
- The category.
- connection
Parameters Map<String,Object> - The connection parameters.
- general
Information ApiResource General Information Response - The api general information.
- id String
- The provider-assigned unique ID for this managed resource.
- metadata
Api
Resource Metadata Response - The metadata.
- name String
- Gets the resource name.
- policies
Api
Resource Policies Response - The policies for the API.
- provisioning
State String - The provisioning state.
- runtime
Urls List<String> - The runtime urls.
- type String
- Gets the resource type.
- api
Definition stringUrl - The API definition.
- api
Definitions ApiResource Definitions Response - The api definitions.
- backend
Service ApiResource Backend Service Response - The backend service.
- capabilities string[]
- The capabilities.
- category string
- The category.
- connection
Parameters {[key: string]: any} - The connection parameters.
- general
Information ApiResource General Information Response - The api general information.
- id string
- The provider-assigned unique ID for this managed resource.
- metadata
Api
Resource Metadata Response - The metadata.
- name string
- Gets the resource name.
- policies
Api
Resource Policies Response - The policies for the API.
- provisioning
State string - The provisioning state.
- runtime
Urls string[] - The runtime urls.
- type string
- Gets the resource type.
- api_
definition_ strurl - The API definition.
- api_
definitions ApiResource Definitions Response - The api definitions.
- backend_
service ApiResource Backend Service Response - The backend service.
- capabilities Sequence[str]
- The capabilities.
- category str
- The category.
- connection_
parameters Mapping[str, Any] - The connection parameters.
- general_
information ApiResource General Information Response - The api general information.
- id str
- The provider-assigned unique ID for this managed resource.
- metadata
Api
Resource Metadata Response - The metadata.
- name str
- Gets the resource name.
- policies
Api
Resource Policies Response - The policies for the API.
- provisioning_
state str - The provisioning state.
- runtime_
urls Sequence[str] - The runtime urls.
- type str
- Gets the resource type.
- api
Definition StringUrl - The API definition.
- api
Definitions Property Map - The api definitions.
- backend
Service Property Map - The backend service.
- capabilities List<String>
- The capabilities.
- category String
- The category.
- connection
Parameters Map<Any> - The connection parameters.
- general
Information Property Map - The api general information.
- id String
- The provider-assigned unique ID for this managed resource.
- metadata Property Map
- The metadata.
- name String
- Gets the resource name.
- policies Property Map
- The policies for the API.
- provisioning
State String - The provisioning state.
- runtime
Urls List<String> - The runtime urls.
- type String
- Gets the resource type.
Supporting Types
ApiDeploymentParameterMetadataResponse, ApiDeploymentParameterMetadataResponseArgs
- Description string
- The description.
- Display
Name string - The display name.
- Is
Required bool - Indicates whether its required.
- Type string
- The type.
- Visibility string
- The visibility.
- Description string
- The description.
- Display
Name string - The display name.
- Is
Required bool - Indicates whether its required.
- Type string
- The type.
- Visibility string
- The visibility.
- description String
- The description.
- display
Name String - The display name.
- is
Required Boolean - Indicates whether its required.
- type String
- The type.
- visibility String
- The visibility.
- description string
- The description.
- display
Name string - The display name.
- is
Required boolean - Indicates whether its required.
- type string
- The type.
- visibility string
- The visibility.
- description str
- The description.
- display_
name str - The display name.
- is_
required bool - Indicates whether its required.
- type str
- The type.
- visibility str
- The visibility.
- description String
- The description.
- display
Name String - The display name.
- is
Required Boolean - Indicates whether its required.
- type String
- The type.
- visibility String
- The visibility.
ApiDeploymentParameterMetadataSetResponse, ApiDeploymentParameterMetadataSetResponseArgs
- Package
Content Pulumi.Link Azure Native. Logic. Inputs. Api Deployment Parameter Metadata Response - The package content link parameter.
- Redis
Cache Pulumi.Connection String Azure Native. Logic. Inputs. Api Deployment Parameter Metadata Response - The package content link parameter.
- Package
Content ApiLink Deployment Parameter Metadata Response - The package content link parameter.
- Redis
Cache ApiConnection String Deployment Parameter Metadata Response - The package content link parameter.
- package
Content ApiLink Deployment Parameter Metadata Response - The package content link parameter.
- redis
Cache ApiConnection String Deployment Parameter Metadata Response - The package content link parameter.
- package
Content ApiLink Deployment Parameter Metadata Response - The package content link parameter.
- redis
Cache ApiConnection String Deployment Parameter Metadata Response - The package content link parameter.
- package_
content_ Apilink Deployment Parameter Metadata Response - The package content link parameter.
- redis_
cache_ Apiconnection_ string Deployment Parameter Metadata Response - The package content link parameter.
- package
Content Property MapLink - The package content link parameter.
- redis
Cache Property MapConnection String - The package content link parameter.
ApiResourceBackendServiceResponse, ApiResourceBackendServiceResponseArgs
- Service
Url string - The service URL.
- Service
Url string - The service URL.
- service
Url String - The service URL.
- service
Url string - The service URL.
- service_
url str - The service URL.
- service
Url String - The service URL.
ApiResourceDefinitionsResponse, ApiResourceDefinitionsResponseArgs
- Modified
Swagger stringUrl - The modified swagger url.
- Original
Swagger stringUrl - The original swagger url.
- Modified
Swagger stringUrl - The modified swagger url.
- Original
Swagger stringUrl - The original swagger url.
- modified
Swagger StringUrl - The modified swagger url.
- original
Swagger StringUrl - The original swagger url.
- modified
Swagger stringUrl - The modified swagger url.
- original
Swagger stringUrl - The original swagger url.
- modified_
swagger_ strurl - The modified swagger url.
- original_
swagger_ strurl - The original swagger url.
- modified
Swagger StringUrl - The modified swagger url.
- original
Swagger StringUrl - The original swagger url.
ApiResourceGeneralInformationResponse, ApiResourceGeneralInformationResponseArgs
- Description string
- The description.
- Display
Name string - The display name.
- Icon
Url string - The icon url.
- Release
Tag string - The release tag.
- Terms
Of stringUse Url - The terms of use url.
- Tier string
- The tier.
- Description string
- The description.
- Display
Name string - The display name.
- Icon
Url string - The icon url.
- Release
Tag string - The release tag.
- Terms
Of stringUse Url - The terms of use url.
- Tier string
- The tier.
- description String
- The description.
- display
Name String - The display name.
- icon
Url String - The icon url.
- release
Tag String - The release tag.
- terms
Of StringUse Url - The terms of use url.
- tier String
- The tier.
- description string
- The description.
- display
Name string - The display name.
- icon
Url string - The icon url.
- release
Tag string - The release tag.
- terms
Of stringUse Url - The terms of use url.
- tier string
- The tier.
- description str
- The description.
- display_
name str - The display name.
- icon_
url str - The icon url.
- release_
tag str - The release tag.
- terms_
of_ struse_ url - The terms of use url.
- tier str
- The tier.
- description String
- The description.
- display
Name String - The display name.
- icon
Url String - The icon url.
- release
Tag String - The release tag.
- terms
Of StringUse Url - The terms of use url.
- tier String
- The tier.
ApiResourceMetadataResponse, ApiResourceMetadataResponseArgs
- Api
Type string - The api type.
- Brand
Color string - The brand color.
- Connection
Type string - The connection type.
- Deployment
Parameters Pulumi.Azure Native. Logic. Inputs. Api Deployment Parameter Metadata Set Response - The connector deployment parameters metadata.
- Hide
Key string - The hide key.
- Provisioning
State string - The provisioning state.
- Source string
- The source.
- Dictionary<string, string>
- The tags.
- Wsdl
Import stringMethod - The WSDL import method.
- Wsdl
Service Pulumi.Azure Native. Logic. Inputs. Wsdl Service Response - The WSDL service.
- Api
Type string - The api type.
- Brand
Color string - The brand color.
- Connection
Type string - The connection type.
- Deployment
Parameters ApiDeployment Parameter Metadata Set Response - The connector deployment parameters metadata.
- Hide
Key string - The hide key.
- Provisioning
State string - The provisioning state.
- Source string
- The source.
- map[string]string
- The tags.
- Wsdl
Import stringMethod - The WSDL import method.
- Wsdl
Service WsdlService Response - The WSDL service.
- api
Type String - The api type.
- brand
Color String - The brand color.
- connection
Type String - The connection type.
- deployment
Parameters ApiDeployment Parameter Metadata Set Response - The connector deployment parameters metadata.
- hide
Key String - The hide key.
- provisioning
State String - The provisioning state.
- source String
- The source.
- Map<String,String>
- The tags.
- wsdl
Import StringMethod - The WSDL import method.
- wsdl
Service WsdlService Response - The WSDL service.
- api
Type string - The api type.
- brand
Color string - The brand color.
- connection
Type string - The connection type.
- deployment
Parameters ApiDeployment Parameter Metadata Set Response - The connector deployment parameters metadata.
- hide
Key string - The hide key.
- provisioning
State string - The provisioning state.
- source string
- The source.
- {[key: string]: string}
- The tags.
- wsdl
Import stringMethod - The WSDL import method.
- wsdl
Service WsdlService Response - The WSDL service.
- api_
type str - The api type.
- brand_
color str - The brand color.
- connection_
type str - The connection type.
- deployment_
parameters ApiDeployment Parameter Metadata Set Response - The connector deployment parameters metadata.
- hide_
key str - The hide key.
- provisioning_
state str - The provisioning state.
- source str
- The source.
- Mapping[str, str]
- The tags.
- wsdl_
import_ strmethod - The WSDL import method.
- wsdl_
service WsdlService Response - The WSDL service.
- api
Type String - The api type.
- brand
Color String - The brand color.
- connection
Type String - The connection type.
- deployment
Parameters Property Map - The connector deployment parameters metadata.
- hide
Key String - The hide key.
- provisioning
State String - The provisioning state.
- source String
- The source.
- Map<String>
- The tags.
- wsdl
Import StringMethod - The WSDL import method.
- wsdl
Service Property Map - The WSDL service.
ApiResourcePoliciesResponse, ApiResourcePoliciesResponseArgs
- Content string
- The API level only policies XML as embedded content.
- Content
Link string - The content link to the policies.
- Content string
- The API level only policies XML as embedded content.
- Content
Link string - The content link to the policies.
- content String
- The API level only policies XML as embedded content.
- content
Link String - The content link to the policies.
- content string
- The API level only policies XML as embedded content.
- content
Link string - The content link to the policies.
- content str
- The API level only policies XML as embedded content.
- content_
link str - The content link to the policies.
- content String
- The API level only policies XML as embedded content.
- content
Link String - The content link to the policies.
ContentHashResponse, ContentHashResponseArgs
ContentLink, ContentLinkArgs
- Uri string
- The content link URI.
- Uri string
- The content link URI.
- uri String
- The content link URI.
- uri string
- The content link URI.
- uri str
- The content link URI.
- uri String
- The content link URI.
ContentLinkResponse, ContentLinkResponseArgs
- Content
Hash Pulumi.Azure Native. Logic. Inputs. Content Hash Response - The content hash.
- Content
Size double - The content size.
- Content
Version string - The content version.
- Metadata object
- The metadata.
- Uri string
- The content link URI.
- Content
Hash ContentHash Response - The content hash.
- Content
Size float64 - The content size.
- Content
Version string - The content version.
- Metadata interface{}
- The metadata.
- Uri string
- The content link URI.
- content
Hash ContentHash Response - The content hash.
- content
Size Double - The content size.
- content
Version String - The content version.
- metadata Object
- The metadata.
- uri String
- The content link URI.
- content
Hash ContentHash Response - The content hash.
- content
Size number - The content size.
- content
Version string - The content version.
- metadata any
- The metadata.
- uri string
- The content link URI.
- content_
hash ContentHash Response - The content hash.
- content_
size float - The content size.
- content_
version str - The content version.
- metadata Any
- The metadata.
- uri str
- The content link URI.
- content
Hash Property Map - The content hash.
- content
Size Number - The content size.
- content
Version String - The content version.
- metadata Any
- The metadata.
- uri String
- The content link URI.
IntegrationServiceEnvironmentManagedApiDeploymentParameters, IntegrationServiceEnvironmentManagedApiDeploymentParametersArgs
- Content
Link Pulumi.Definition Azure Native. Logic. Inputs. Content Link - The integration service environment managed api content link for deployment.
- Content
Link ContentDefinition Link - The integration service environment managed api content link for deployment.
- content
Link ContentDefinition Link - The integration service environment managed api content link for deployment.
- content
Link ContentDefinition Link - The integration service environment managed api content link for deployment.
- content_
link_ Contentdefinition Link - The integration service environment managed api content link for deployment.
- content
Link Property MapDefinition - The integration service environment managed api content link for deployment.
IntegrationServiceEnvironmentManagedApiDeploymentParametersResponse, IntegrationServiceEnvironmentManagedApiDeploymentParametersResponseArgs
- Content
Link Pulumi.Definition Azure Native. Logic. Inputs. Content Link Response - The integration service environment managed api content link for deployment.
- Content
Link ContentDefinition Link Response - The integration service environment managed api content link for deployment.
- content
Link ContentDefinition Link Response - The integration service environment managed api content link for deployment.
- content
Link ContentDefinition Link Response - The integration service environment managed api content link for deployment.
- content_
link_ Contentdefinition Link Response - The integration service environment managed api content link for deployment.
- content
Link Property MapDefinition - The integration service environment managed api content link for deployment.
ResourceReference, ResourceReferenceArgs
- Id string
- The resource id.
- Id string
- The resource id.
- id String
- The resource id.
- id string
- The resource id.
- id str
- The resource id.
- id String
- The resource id.
ResourceReferenceResponse, ResourceReferenceResponseArgs
WsdlServiceResponse, WsdlServiceResponseArgs
- Endpoint
Qualified List<string>Names - The list of endpoints' qualified names.
- Qualified
Name string - The qualified name.
- Endpoint
Qualified []stringNames - The list of endpoints' qualified names.
- Qualified
Name string - The qualified name.
- endpoint
Qualified List<String>Names - The list of endpoints' qualified names.
- qualified
Name String - The qualified name.
- endpoint
Qualified string[]Names - The list of endpoints' qualified names.
- qualified
Name string - The qualified name.
- endpoint_
qualified_ Sequence[str]names - The list of endpoints' qualified names.
- qualified_
name str - The qualified name.
- endpoint
Qualified List<String>Names - The list of endpoints' qualified names.
- qualified
Name String - The qualified name.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:logic:IntegrationServiceEnvironmentManagedApi servicebus /subscriptions/80d4fe69-c95b-4dd2-a938-9250f1c8ab03/resourceGroups/rohithah-ise/providers/Microsoft.Logic/integrationServiceEnvironments/tes-ise-ga/managedApis/servicebus
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