wet-noon-14291
01/12/2021, 3:13 PMtall-librarian-49374
01/12/2021, 3:16 PMwet-noon-14291
01/12/2021, 3:57 PMmodule Api =
open Pulumi.AzureNextGen.ApiManagement.Latest
let createDefaultArgs apiId path swaggerUrl serviceName resourceGroupName =
let apiVersion = input "v1"
let subscriptionRequired = input true
ApiArgs(
ApiId = apiId,
Format = input "openapi-link",
Path = path,
ResourceGroupName = resourceGroupName,
ServiceName = serviceName,
Value = swaggerUrl,
SubscriptionRequired = subscriptionRequired
)
Pulumi.Azure.ApiManagement.Inputs.ApiArgs
has a Name
property that isn't there for Azure NextGen.tall-librarian-49374
01/12/2021, 4:45 PMapiId
?wet-noon-14291
01/12/2021, 8:08 PMtall-librarian-49374
01/12/2021, 8:49 PMwet-noon-14291
01/12/2021, 9:27 PMsome-flower-64874
01/13/2021, 9:27 AMApiId
is the name, certainly it appears to map that way for OperationId
- playing with the Azure CLI the value that comes back in JSON is "name" but the parameters you supply that value to are xxxId
wet-noon-14291
01/13/2021, 3:32 PM