azure-native.customerinsights.Hub
Explore with Pulumi AI
Hub resource. API Version: 2017-04-26.
Example Usage
Hubs_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var hub = new AzureNative.CustomerInsights.Hub("hub", new()
{
HubBillingInfo = new AzureNative.CustomerInsights.Inputs.HubBillingInfoFormatArgs
{
MaxUnits = 5,
MinUnits = 1,
SkuName = "B0",
},
HubName = "sdkTestHub",
Location = "West US",
ResourceGroupName = "TestHubRG",
});
});
package main
import (
customerinsights "github.com/pulumi/pulumi-azure-native-sdk/customerinsights"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := customerinsights.NewHub(ctx, "hub", &customerinsights.HubArgs{
HubBillingInfo: &customerinsights.HubBillingInfoFormatArgs{
MaxUnits: pulumi.Int(5),
MinUnits: pulumi.Int(1),
SkuName: pulumi.String("B0"),
},
HubName: pulumi.String("sdkTestHub"),
Location: pulumi.String("West US"),
ResourceGroupName: pulumi.String("TestHubRG"),
})
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.customerinsights.Hub;
import com.pulumi.azurenative.customerinsights.HubArgs;
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 hub = new Hub("hub", HubArgs.builder()
.hubBillingInfo(Map.ofEntries(
Map.entry("maxUnits", 5),
Map.entry("minUnits", 1),
Map.entry("skuName", "B0")
))
.hubName("sdkTestHub")
.location("West US")
.resourceGroupName("TestHubRG")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
hub = azure_native.customerinsights.Hub("hub",
hub_billing_info=azure_native.customerinsights.HubBillingInfoFormatArgs(
max_units=5,
min_units=1,
sku_name="B0",
),
hub_name="sdkTestHub",
location="West US",
resource_group_name="TestHubRG")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const hub = new azure_native.customerinsights.Hub("hub", {
hubBillingInfo: {
maxUnits: 5,
minUnits: 1,
skuName: "B0",
},
hubName: "sdkTestHub",
location: "West US",
resourceGroupName: "TestHubRG",
});
resources:
hub:
type: azure-native:customerinsights:Hub
properties:
hubBillingInfo:
maxUnits: 5
minUnits: 1
skuName: B0
hubName: sdkTestHub
location: West US
resourceGroupName: TestHubRG
Create Hub Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Hub(name: string, args: HubArgs, opts?: CustomResourceOptions);
@overload
def Hub(resource_name: str,
args: HubArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Hub(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
hub_billing_info: Optional[HubBillingInfoFormatArgs] = None,
hub_name: Optional[str] = None,
location: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tenant_features: Optional[int] = None)
func NewHub(ctx *Context, name string, args HubArgs, opts ...ResourceOption) (*Hub, error)
public Hub(string name, HubArgs args, CustomResourceOptions? opts = null)
type: azure-native:customerinsights:Hub
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 HubArgs
- 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 HubArgs
- 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 HubArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HubArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HubArgs
- 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 hubResource = new AzureNative.Customerinsights.Hub("hubResource", new()
{
ResourceGroupName = "string",
HubBillingInfo =
{
{ "maxUnits", 0 },
{ "minUnits", 0 },
{ "skuName", "string" },
},
HubName = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
TenantFeatures = 0,
});
example, err := customerinsights.NewHub(ctx, "hubResource", &customerinsights.HubArgs{
ResourceGroupName: "string",
HubBillingInfo: map[string]interface{}{
"maxUnits": 0,
"minUnits": 0,
"skuName": "string",
},
HubName: "string",
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
TenantFeatures: 0,
})
var hubResource = new Hub("hubResource", HubArgs.builder()
.resourceGroupName("string")
.hubBillingInfo(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.hubName("string")
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tenantFeatures(0)
.build());
hub_resource = azure_native.customerinsights.Hub("hubResource",
resource_group_name=string,
hub_billing_info={
maxUnits: 0,
minUnits: 0,
skuName: string,
},
hub_name=string,
location=string,
tags={
string: string,
},
tenant_features=0)
const hubResource = new azure_native.customerinsights.Hub("hubResource", {
resourceGroupName: "string",
hubBillingInfo: {
maxUnits: 0,
minUnits: 0,
skuName: "string",
},
hubName: "string",
location: "string",
tags: {
string: "string",
},
tenantFeatures: 0,
});
type: azure-native:customerinsights:Hub
properties:
hubBillingInfo:
maxUnits: 0
minUnits: 0
skuName: string
hubName: string
location: string
resourceGroupName: string
tags:
string: string
tenantFeatures: 0
Hub 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 Hub resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Hub
Billing Pulumi.Info Azure Native. Customer Insights. Inputs. Hub Billing Info Format - Billing settings of the hub.
- Hub
Name string - The name of the Hub.
- Location string
- Resource location.
- Dictionary<string, string>
- Resource tags.
- Tenant
Features int - The bit flags for enabled hub features. Bit 0 is set to 1 indicates graph is enabled, or disabled if set to 0. Bit 1 is set to 1 indicates the hub is disabled, or enabled if set to 0.
- Resource
Group stringName - The name of the resource group.
- Hub
Billing HubInfo Billing Info Format Args - Billing settings of the hub.
- Hub
Name string - The name of the Hub.
- Location string
- Resource location.
- map[string]string
- Resource tags.
- Tenant
Features int - The bit flags for enabled hub features. Bit 0 is set to 1 indicates graph is enabled, or disabled if set to 0. Bit 1 is set to 1 indicates the hub is disabled, or enabled if set to 0.
- resource
Group StringName - The name of the resource group.
- hub
Billing HubInfo Billing Info Format - Billing settings of the hub.
- hub
Name String - The name of the Hub.
- location String
- Resource location.
- Map<String,String>
- Resource tags.
- tenant
Features Integer - The bit flags for enabled hub features. Bit 0 is set to 1 indicates graph is enabled, or disabled if set to 0. Bit 1 is set to 1 indicates the hub is disabled, or enabled if set to 0.
- resource
Group stringName - The name of the resource group.
- hub
Billing HubInfo Billing Info Format - Billing settings of the hub.
- hub
Name string - The name of the Hub.
- location string
- Resource location.
- {[key: string]: string}
- Resource tags.
- tenant
Features number - The bit flags for enabled hub features. Bit 0 is set to 1 indicates graph is enabled, or disabled if set to 0. Bit 1 is set to 1 indicates the hub is disabled, or enabled if set to 0.
- resource_
group_ strname - The name of the resource group.
- hub_
billing_ Hubinfo Billing Info Format Args - Billing settings of the hub.
- hub_
name str - The name of the Hub.
- location str
- Resource location.
- Mapping[str, str]
- Resource tags.
- tenant_
features int - The bit flags for enabled hub features. Bit 0 is set to 1 indicates graph is enabled, or disabled if set to 0. Bit 1 is set to 1 indicates the hub is disabled, or enabled if set to 0.
- resource
Group StringName - The name of the resource group.
- hub
Billing Property MapInfo - Billing settings of the hub.
- hub
Name String - The name of the Hub.
- location String
- Resource location.
- Map<String>
- Resource tags.
- tenant
Features Number - The bit flags for enabled hub features. Bit 0 is set to 1 indicates graph is enabled, or disabled if set to 0. Bit 1 is set to 1 indicates the hub is disabled, or enabled if set to 0.
Outputs
All input properties are implicitly available as output properties. Additionally, the Hub resource produces the following output properties:
- Api
Endpoint string - API endpoint URL of the hub.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning state of the hub.
- Type string
- Resource type.
- Web
Endpoint string - Web endpoint URL of the hub.
- Api
Endpoint string - API endpoint URL of the hub.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning state of the hub.
- Type string
- Resource type.
- Web
Endpoint string - Web endpoint URL of the hub.
- api
Endpoint String - API endpoint URL of the hub.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning state of the hub.
- type String
- Resource type.
- web
Endpoint String - Web endpoint URL of the hub.
- api
Endpoint string - API endpoint URL of the hub.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- provisioning
State string - Provisioning state of the hub.
- type string
- Resource type.
- web
Endpoint string - Web endpoint URL of the hub.
- api_
endpoint str - API endpoint URL of the hub.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- provisioning_
state str - Provisioning state of the hub.
- type str
- Resource type.
- web_
endpoint str - Web endpoint URL of the hub.
- api
Endpoint String - API endpoint URL of the hub.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning state of the hub.
- type String
- Resource type.
- web
Endpoint String - Web endpoint URL of the hub.
Supporting Types
HubBillingInfoFormat, HubBillingInfoFormatArgs
HubBillingInfoFormatResponse, HubBillingInfoFormatResponseArgs
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:customerinsights:Hub testHub2839 /subscriptions/subid/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/testHub2839
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