Viewing docs for Power Platform v0.3.3
published on Monday, May 18, 2026 by rpothin
published on Monday, May 18, 2026 by rpothin
Viewing docs for Power Platform v0.3.3
published on Monday, May 18, 2026 by rpothin
published on Monday, May 18, 2026 by rpothin
Manages an ISV (Independent Software Vendor) contract for Power Platform licensing.
Create IsvContract Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IsvContract(name: string, args: IsvContractArgs, opts?: CustomResourceOptions);@overload
def IsvContract(resource_name: str,
args: IsvContractArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IsvContract(resource_name: str,
opts: Optional[ResourceOptions] = None,
geo: Optional[str] = None,
name: Optional[str] = None,
status: Optional[str] = None)func NewIsvContract(ctx *Context, name string, args IsvContractArgs, opts ...ResourceOption) (*IsvContract, error)public IsvContract(string name, IsvContractArgs args, CustomResourceOptions? opts = null)
public IsvContract(String name, IsvContractArgs args)
public IsvContract(String name, IsvContractArgs args, CustomResourceOptions options)
type: powerplatform:IsvContract
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "powerplatform_isvcontract" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args IsvContractArgs
- 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 IsvContractArgs
- 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 IsvContractArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IsvContractArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IsvContractArgs
- 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 isvContractResource = new Powerplatform.IsvContract("isvContractResource", new()
{
Geo = "string",
Name = "string",
Status = "string",
});
example, err := powerplatform.NewIsvContract(ctx, "isvContractResource", &powerplatform.IsvContractArgs{
Geo: pulumi.String("string"),
Name: pulumi.String("string"),
Status: pulumi.String("string"),
})
resource "powerplatform_isvcontract" "isvContractResource" {
geo = "string"
name = "string"
status = "string"
}
var isvContractResource = new IsvContract("isvContractResource", IsvContractArgs.builder()
.geo("string")
.name("string")
.status("string")
.build());
isv_contract_resource = powerplatform.IsvContract("isvContractResource",
geo="string",
name="string",
status="string")
const isvContractResource = new powerplatform.IsvContract("isvContractResource", {
geo: "string",
name: "string",
status: "string",
});
type: powerplatform:IsvContract
properties:
geo: string
name: string
status: string
IsvContract 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 IsvContract resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the IsvContract resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Created
On string - The timestamp when the ISV contract was created.
- Last
Modified stringOn - The timestamp when the ISV contract was last modified.
- Id string
- The provider-assigned unique ID for this managed resource.
- Created
On string - The timestamp when the ISV contract was created.
- Last
Modified stringOn - The timestamp when the ISV contract was last modified.
- id string
- The provider-assigned unique ID for this managed resource.
- created_
on string - The timestamp when the ISV contract was created.
- last_
modified_ stringon - The timestamp when the ISV contract was last modified.
- id String
- The provider-assigned unique ID for this managed resource.
- created
On String - The timestamp when the ISV contract was created.
- last
Modified StringOn - The timestamp when the ISV contract was last modified.
- id string
- The provider-assigned unique ID for this managed resource.
- created
On string - The timestamp when the ISV contract was created.
- last
Modified stringOn - The timestamp when the ISV contract was last modified.
- id str
- The provider-assigned unique ID for this managed resource.
- created_
on str - The timestamp when the ISV contract was created.
- last_
modified_ stron - The timestamp when the ISV contract was last modified.
- id String
- The provider-assigned unique ID for this managed resource.
- created
On String - The timestamp when the ISV contract was created.
- last
Modified StringOn - The timestamp when the ISV contract was last modified.
Package Details
- Repository
- powerplatform rpothin/pulumi-powerplatform
- License
- MIT
Viewing docs for Power Platform v0.3.3
published on Monday, May 18, 2026 by rpothin
published on Monday, May 18, 2026 by rpothin