published on Tuesday, May 26, 2026 by Piers Karsenbarg
published on Tuesday, May 26, 2026 by Piers Karsenbarg
Fetches a list of cluster profile entities. A profile consists of different cluster settings like Network Time Protocol(NTP), Domain Name System(DNS), and so on.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pierskarsenbarg/nutanix";
const list_cluster_profiles = nutanix.getClusterProfileV2({});
const filtered_cluster_profiles = nutanix.getClusterProfilesV2({
filter: "clusterCount eq 62",
});
const paged_cluster_profiles = nutanix.getClusterProfilesV2({
page: 1,
limit: 10,
});
const ordered_cluster_profiles = nutanix.getClusterProfilesV2({
orderBy: "name",
});
const selected_cluster_profiles = nutanix.getClusterProfilesV2({
select: "name,description",
});
import pulumi
import pulumi_nutanix as nutanix
list_cluster_profiles = nutanix.get_cluster_profile_v2()
filtered_cluster_profiles = nutanix.get_cluster_profiles_v2(filter="clusterCount eq 62")
paged_cluster_profiles = nutanix.get_cluster_profiles_v2(page=1,
limit=10)
ordered_cluster_profiles = nutanix.get_cluster_profiles_v2(order_by="name")
selected_cluster_profiles = nutanix.get_cluster_profiles_v2(select="name,description")
package main
import (
"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nutanix.GetClusterProfileV2(ctx, &nutanix.LookupClusterProfileV2Args{}, nil)
if err != nil {
return err
}
_, err = nutanix.GetClusterProfilesV2(ctx, &nutanix.GetClusterProfilesV2Args{
Filter: pulumi.StringRef("clusterCount eq 62"),
}, nil)
if err != nil {
return err
}
_, err = nutanix.GetClusterProfilesV2(ctx, &nutanix.GetClusterProfilesV2Args{
Page: pulumi.IntRef(1),
Limit: pulumi.IntRef(10),
}, nil)
if err != nil {
return err
}
_, err = nutanix.GetClusterProfilesV2(ctx, &nutanix.GetClusterProfilesV2Args{
OrderBy: pulumi.StringRef("name"),
}, nil)
if err != nil {
return err
}
_, err = nutanix.GetClusterProfilesV2(ctx, &nutanix.GetClusterProfilesV2Args{
Select: pulumi.StringRef("name,description"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = PiersKarsenbarg.Nutanix;
return await Deployment.RunAsync(() =>
{
var list_cluster_profiles = Nutanix.GetClusterProfileV2.Invoke();
var filtered_cluster_profiles = Nutanix.GetClusterProfilesV2.Invoke(new()
{
Filter = "clusterCount eq 62",
});
var paged_cluster_profiles = Nutanix.GetClusterProfilesV2.Invoke(new()
{
Page = 1,
Limit = 10,
});
var ordered_cluster_profiles = Nutanix.GetClusterProfilesV2.Invoke(new()
{
OrderBy = "name",
});
var selected_cluster_profiles = Nutanix.GetClusterProfilesV2.Invoke(new()
{
Select = "name,description",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.nutanix.NutanixFunctions;
import com.pulumi.nutanix.inputs.GetClusterProfileV2Args;
import com.pulumi.nutanix.inputs.GetClusterProfilesV2Args;
import java.util.ArrayList;
import java.util.Arrays;
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) {
final var list-cluster-profiles = NutanixFunctions.getClusterProfileV2(GetClusterProfileV2Args.builder()
.build());
final var filtered-cluster-profiles = NutanixFunctions.getClusterProfilesV2(GetClusterProfilesV2Args.builder()
.filter("clusterCount eq 62")
.build());
final var paged-cluster-profiles = NutanixFunctions.getClusterProfilesV2(GetClusterProfilesV2Args.builder()
.page(1)
.limit(10)
.build());
final var ordered-cluster-profiles = NutanixFunctions.getClusterProfilesV2(GetClusterProfilesV2Args.builder()
.orderBy("name")
.build());
final var selected-cluster-profiles = NutanixFunctions.getClusterProfilesV2(GetClusterProfilesV2Args.builder()
.select("name,description")
.build());
}
}
variables:
list-cluster-profiles:
fn::invoke:
function: nutanix:getClusterProfileV2
arguments: {}
filtered-cluster-profiles:
fn::invoke:
function: nutanix:getClusterProfilesV2
arguments:
filter: clusterCount eq 62
paged-cluster-profiles:
fn::invoke:
function: nutanix:getClusterProfilesV2
arguments:
page: 1
limit: 10
ordered-cluster-profiles:
fn::invoke:
function: nutanix:getClusterProfilesV2
arguments:
orderBy: name
selected-cluster-profiles:
fn::invoke:
function: nutanix:getClusterProfilesV2
arguments:
select: name,description
pulumi {
required_providers {
nutanix = {
source = "pulumi/nutanix"
}
}
}
data "nutanix_getclusterprofilev2" "list-cluster-profiles" {
}
data "nutanix_getclusterprofilesv2" "filtered-cluster-profiles" {
filter = "clusterCount eq 62"
}
data "nutanix_getclusterprofilesv2" "paged-cluster-profiles" {
page = 1
limit = 10
}
data "nutanix_getclusterprofilesv2" "ordered-cluster-profiles" {
order_by = "name"
}
data "nutanix_getclusterprofilesv2" "selected-cluster-profiles" {
select = "name,description"
}
Using getClusterProfilesV2
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getClusterProfilesV2(args: GetClusterProfilesV2Args, opts?: InvokeOptions): Promise<GetClusterProfilesV2Result>
function getClusterProfilesV2Output(args: GetClusterProfilesV2OutputArgs, opts?: InvokeOptions): Output<GetClusterProfilesV2Result>def get_cluster_profiles_v2(filter: Optional[str] = None,
limit: Optional[int] = None,
order_by: Optional[str] = None,
page: Optional[int] = None,
select: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetClusterProfilesV2Result
def get_cluster_profiles_v2_output(filter: pulumi.Input[Optional[str]] = None,
limit: pulumi.Input[Optional[int]] = None,
order_by: pulumi.Input[Optional[str]] = None,
page: pulumi.Input[Optional[int]] = None,
select: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetClusterProfilesV2Result]func GetClusterProfilesV2(ctx *Context, args *GetClusterProfilesV2Args, opts ...InvokeOption) (*GetClusterProfilesV2Result, error)
func GetClusterProfilesV2Output(ctx *Context, args *GetClusterProfilesV2OutputArgs, opts ...InvokeOption) GetClusterProfilesV2ResultOutput> Note: This function is named GetClusterProfilesV2 in the Go SDK.
public static class GetClusterProfilesV2
{
public static Task<GetClusterProfilesV2Result> InvokeAsync(GetClusterProfilesV2Args args, InvokeOptions? opts = null)
public static Output<GetClusterProfilesV2Result> Invoke(GetClusterProfilesV2InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetClusterProfilesV2Result> getClusterProfilesV2(GetClusterProfilesV2Args args, InvokeOptions options)
public static Output<GetClusterProfilesV2Result> getClusterProfilesV2(GetClusterProfilesV2Args args, InvokeOptions options)
fn::invoke:
function: nutanix:index/getClusterProfilesV2:getClusterProfilesV2
arguments:
# arguments dictionarydata "nutanix_getclusterprofilesv2" "name" {
# arguments
}The following arguments are supported:
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- clusterCount :
filter="clusterCount eq 62" - createTime :
filter="createTime eq '2009-09-23T14:30:00-07:00'" - createdBy :
filter="createdBy eq '984ff444-b6aa-4fa9-a8bd-37ef221cf1b0'" - driftedClusterCount :
filter="driftedClusterCount eq 3" - lastUpdateTime :
filter="lastUpdateTime eq '2009-09-23T14:30:00-07:00'" - lastUpdatedBy :
filter="lastUpdatedBy eq '6debfc73-b4a9-4d68-a702-f0cfc1d721fb'" - name :
filter="name eq 'Test Cluster Profile'"
- clusterCount :
- Limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- Order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- clusterCount :
orderby="clusterCount" - createTime :
orderby="createTime desc" - createdBy :
orderby="createdBy desc" - driftedClusterCount :
orderby="driftedClusterCount desc" - lastUpdateTime :
orderby="lastUpdateTime desc" - lastUpdatedBy :
orderby="lastUpdatedBy desc" - name :
orderby="name desc"
- clusterCount :
- Page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- Select string
A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned.
The following selection keys are supported:
- allowedOverrides :
select="allowedOverrides" - clusterCount :
select="clusterCount" - clusters :
select="clusters" - createTime :
select="createTime" - createdBy :
select="createdBy" - description :
select="description" - driftedClusterCount :
select="driftedClusterCount" - extId :
select="extId" - lastUpdateTime :
select="lastUpdateTime" - lastUpdatedBy :
select="lastUpdatedBy" - links :
select="links" - name :
select="name" - nameServerIpList :
select="nameServerIpList" - nfsSubnetWhitelist :
select="nfsSubnetWhitelist" - ntpServerIpList :
select="ntpServerIpList" - pulseStatus :
select="pulseStatus" - rsyslogServerList :
select="rsyslogServerList" - smtpServer :
select="smtpServer" - snmpConfig :
select="snmpConfig" - tenantId :
select="tenantId"
- allowedOverrides :
- Filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- clusterCount :
filter="clusterCount eq 62" - createTime :
filter="createTime eq '2009-09-23T14:30:00-07:00'" - createdBy :
filter="createdBy eq '984ff444-b6aa-4fa9-a8bd-37ef221cf1b0'" - driftedClusterCount :
filter="driftedClusterCount eq 3" - lastUpdateTime :
filter="lastUpdateTime eq '2009-09-23T14:30:00-07:00'" - lastUpdatedBy :
filter="lastUpdatedBy eq '6debfc73-b4a9-4d68-a702-f0cfc1d721fb'" - name :
filter="name eq 'Test Cluster Profile'"
- clusterCount :
- Limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- Order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- clusterCount :
orderby="clusterCount" - createTime :
orderby="createTime desc" - createdBy :
orderby="createdBy desc" - driftedClusterCount :
orderby="driftedClusterCount desc" - lastUpdateTime :
orderby="lastUpdateTime desc" - lastUpdatedBy :
orderby="lastUpdatedBy desc" - name :
orderby="name desc"
- clusterCount :
- Page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- Select string
A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned.
The following selection keys are supported:
- allowedOverrides :
select="allowedOverrides" - clusterCount :
select="clusterCount" - clusters :
select="clusters" - createTime :
select="createTime" - createdBy :
select="createdBy" - description :
select="description" - driftedClusterCount :
select="driftedClusterCount" - extId :
select="extId" - lastUpdateTime :
select="lastUpdateTime" - lastUpdatedBy :
select="lastUpdatedBy" - links :
select="links" - name :
select="name" - nameServerIpList :
select="nameServerIpList" - nfsSubnetWhitelist :
select="nfsSubnetWhitelist" - ntpServerIpList :
select="ntpServerIpList" - pulseStatus :
select="pulseStatus" - rsyslogServerList :
select="rsyslogServerList" - smtpServer :
select="smtpServer" - snmpConfig :
select="snmpConfig" - tenantId :
select="tenantId"
- allowedOverrides :
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- clusterCount :
filter="clusterCount eq 62" - createTime :
filter="createTime eq '2009-09-23T14:30:00-07:00'" - createdBy :
filter="createdBy eq '984ff444-b6aa-4fa9-a8bd-37ef221cf1b0'" - driftedClusterCount :
filter="driftedClusterCount eq 3" - lastUpdateTime :
filter="lastUpdateTime eq '2009-09-23T14:30:00-07:00'" - lastUpdatedBy :
filter="lastUpdatedBy eq '6debfc73-b4a9-4d68-a702-f0cfc1d721fb'" - name :
filter="name eq 'Test Cluster Profile'"
- clusterCount :
- limit number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order_
by string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- clusterCount :
orderby="clusterCount" - createTime :
orderby="createTime desc" - createdBy :
orderby="createdBy desc" - driftedClusterCount :
orderby="driftedClusterCount desc" - lastUpdateTime :
orderby="lastUpdateTime desc" - lastUpdatedBy :
orderby="lastUpdatedBy desc" - name :
orderby="name desc"
- clusterCount :
- page number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select string
A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned.
The following selection keys are supported:
- allowedOverrides :
select="allowedOverrides" - clusterCount :
select="clusterCount" - clusters :
select="clusters" - createTime :
select="createTime" - createdBy :
select="createdBy" - description :
select="description" - driftedClusterCount :
select="driftedClusterCount" - extId :
select="extId" - lastUpdateTime :
select="lastUpdateTime" - lastUpdatedBy :
select="lastUpdatedBy" - links :
select="links" - name :
select="name" - nameServerIpList :
select="nameServerIpList" - nfsSubnetWhitelist :
select="nfsSubnetWhitelist" - ntpServerIpList :
select="ntpServerIpList" - pulseStatus :
select="pulseStatus" - rsyslogServerList :
select="rsyslogServerList" - smtpServer :
select="smtpServer" - snmpConfig :
select="snmpConfig" - tenantId :
select="tenantId"
- allowedOverrides :
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- clusterCount :
filter="clusterCount eq 62" - createTime :
filter="createTime eq '2009-09-23T14:30:00-07:00'" - createdBy :
filter="createdBy eq '984ff444-b6aa-4fa9-a8bd-37ef221cf1b0'" - driftedClusterCount :
filter="driftedClusterCount eq 3" - lastUpdateTime :
filter="lastUpdateTime eq '2009-09-23T14:30:00-07:00'" - lastUpdatedBy :
filter="lastUpdatedBy eq '6debfc73-b4a9-4d68-a702-f0cfc1d721fb'" - name :
filter="name eq 'Test Cluster Profile'"
- clusterCount :
- limit Integer
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By String - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- clusterCount :
orderby="clusterCount" - createTime :
orderby="createTime desc" - createdBy :
orderby="createdBy desc" - driftedClusterCount :
orderby="driftedClusterCount desc" - lastUpdateTime :
orderby="lastUpdateTime desc" - lastUpdatedBy :
orderby="lastUpdatedBy desc" - name :
orderby="name desc"
- clusterCount :
- page Integer
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select String
A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned.
The following selection keys are supported:
- allowedOverrides :
select="allowedOverrides" - clusterCount :
select="clusterCount" - clusters :
select="clusters" - createTime :
select="createTime" - createdBy :
select="createdBy" - description :
select="description" - driftedClusterCount :
select="driftedClusterCount" - extId :
select="extId" - lastUpdateTime :
select="lastUpdateTime" - lastUpdatedBy :
select="lastUpdatedBy" - links :
select="links" - name :
select="name" - nameServerIpList :
select="nameServerIpList" - nfsSubnetWhitelist :
select="nfsSubnetWhitelist" - ntpServerIpList :
select="ntpServerIpList" - pulseStatus :
select="pulseStatus" - rsyslogServerList :
select="rsyslogServerList" - smtpServer :
select="smtpServer" - snmpConfig :
select="snmpConfig" - tenantId :
select="tenantId"
- allowedOverrides :
- filter string
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- clusterCount :
filter="clusterCount eq 62" - createTime :
filter="createTime eq '2009-09-23T14:30:00-07:00'" - createdBy :
filter="createdBy eq '984ff444-b6aa-4fa9-a8bd-37ef221cf1b0'" - driftedClusterCount :
filter="driftedClusterCount eq 3" - lastUpdateTime :
filter="lastUpdateTime eq '2009-09-23T14:30:00-07:00'" - lastUpdatedBy :
filter="lastUpdatedBy eq '6debfc73-b4a9-4d68-a702-f0cfc1d721fb'" - name :
filter="name eq 'Test Cluster Profile'"
- clusterCount :
- limit number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By string - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- clusterCount :
orderby="clusterCount" - createTime :
orderby="createTime desc" - createdBy :
orderby="createdBy desc" - driftedClusterCount :
orderby="driftedClusterCount desc" - lastUpdateTime :
orderby="lastUpdateTime desc" - lastUpdatedBy :
orderby="lastUpdatedBy desc" - name :
orderby="name desc"
- clusterCount :
- page number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select string
A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned.
The following selection keys are supported:
- allowedOverrides :
select="allowedOverrides" - clusterCount :
select="clusterCount" - clusters :
select="clusters" - createTime :
select="createTime" - createdBy :
select="createdBy" - description :
select="description" - driftedClusterCount :
select="driftedClusterCount" - extId :
select="extId" - lastUpdateTime :
select="lastUpdateTime" - lastUpdatedBy :
select="lastUpdatedBy" - links :
select="links" - name :
select="name" - nameServerIpList :
select="nameServerIpList" - nfsSubnetWhitelist :
select="nfsSubnetWhitelist" - ntpServerIpList :
select="ntpServerIpList" - pulseStatus :
select="pulseStatus" - rsyslogServerList :
select="rsyslogServerList" - smtpServer :
select="smtpServer" - snmpConfig :
select="snmpConfig" - tenantId :
select="tenantId"
- allowedOverrides :
- filter str
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- clusterCount :
filter="clusterCount eq 62" - createTime :
filter="createTime eq '2009-09-23T14:30:00-07:00'" - createdBy :
filter="createdBy eq '984ff444-b6aa-4fa9-a8bd-37ef221cf1b0'" - driftedClusterCount :
filter="driftedClusterCount eq 3" - lastUpdateTime :
filter="lastUpdateTime eq '2009-09-23T14:30:00-07:00'" - lastUpdatedBy :
filter="lastUpdatedBy eq '6debfc73-b4a9-4d68-a702-f0cfc1d721fb'" - name :
filter="name eq 'Test Cluster Profile'"
- clusterCount :
- limit int
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order_
by str - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- clusterCount :
orderby="clusterCount" - createTime :
orderby="createTime desc" - createdBy :
orderby="createdBy desc" - driftedClusterCount :
orderby="driftedClusterCount desc" - lastUpdateTime :
orderby="lastUpdateTime desc" - lastUpdatedBy :
orderby="lastUpdatedBy desc" - name :
orderby="name desc"
- clusterCount :
- page int
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select str
A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned.
The following selection keys are supported:
- allowedOverrides :
select="allowedOverrides" - clusterCount :
select="clusterCount" - clusters :
select="clusters" - createTime :
select="createTime" - createdBy :
select="createdBy" - description :
select="description" - driftedClusterCount :
select="driftedClusterCount" - extId :
select="extId" - lastUpdateTime :
select="lastUpdateTime" - lastUpdatedBy :
select="lastUpdatedBy" - links :
select="links" - name :
select="name" - nameServerIpList :
select="nameServerIpList" - nfsSubnetWhitelist :
select="nfsSubnetWhitelist" - ntpServerIpList :
select="ntpServerIpList" - pulseStatus :
select="pulseStatus" - rsyslogServerList :
select="rsyslogServerList" - smtpServer :
select="smtpServer" - snmpConfig :
select="snmpConfig" - tenantId :
select="tenantId"
- allowedOverrides :
- filter String
- A URL query parameter that allows clients to filter a collection of resources. The expression specified with $filter is evaluated for each resource in the collection, and only items where the expression evaluates to true are included in the response. Expression specified with the $filter must conform to the OData V4.01 URL conventions. The filter can be applied to the following fields:
- clusterCount :
filter="clusterCount eq 62" - createTime :
filter="createTime eq '2009-09-23T14:30:00-07:00'" - createdBy :
filter="createdBy eq '984ff444-b6aa-4fa9-a8bd-37ef221cf1b0'" - driftedClusterCount :
filter="driftedClusterCount eq 3" - lastUpdateTime :
filter="lastUpdateTime eq '2009-09-23T14:30:00-07:00'" - lastUpdatedBy :
filter="lastUpdatedBy eq '6debfc73-b4a9-4d68-a702-f0cfc1d721fb'" - name :
filter="name eq 'Test Cluster Profile'"
- clusterCount :
- limit Number
- A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set.
- order
By String - A URL query parameter that allows clients to specify the sort criteria for the returned list of objects. Resources can be sorted in ascending order using asc or descending order using desc. If asc or desc are not specified, the resources will be sorted in ascending order by default. The orderby can be applied to the following fields:
- clusterCount :
orderby="clusterCount" - createTime :
orderby="createTime desc" - createdBy :
orderby="createdBy desc" - driftedClusterCount :
orderby="driftedClusterCount desc" - lastUpdateTime :
orderby="lastUpdateTime desc" - lastUpdatedBy :
orderby="lastUpdatedBy desc" - name :
orderby="name desc"
- clusterCount :
- page Number
- A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results.
- select String
A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the OData V4.01 URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned.
The following selection keys are supported:
- allowedOverrides :
select="allowedOverrides" - clusterCount :
select="clusterCount" - clusters :
select="clusters" - createTime :
select="createTime" - createdBy :
select="createdBy" - description :
select="description" - driftedClusterCount :
select="driftedClusterCount" - extId :
select="extId" - lastUpdateTime :
select="lastUpdateTime" - lastUpdatedBy :
select="lastUpdatedBy" - links :
select="links" - name :
select="name" - nameServerIpList :
select="nameServerIpList" - nfsSubnetWhitelist :
select="nfsSubnetWhitelist" - ntpServerIpList :
select="ntpServerIpList" - pulseStatus :
select="pulseStatus" - rsyslogServerList :
select="rsyslogServerList" - smtpServer :
select="smtpServer" - snmpConfig :
select="snmpConfig" - tenantId :
select="tenantId"
- allowedOverrides :
getClusterProfilesV2 Result
The following output properties are available:
- Cluster
Profiles List<PiersKarsenbarg. Nutanix. Outputs. Get Cluster Profiles V2Cluster Profile> - List of cluster profiles.
- Id string
- The provider-assigned unique ID for this managed resource.
- Filter string
- Limit int
- Order
By string - Page int
- Select string
- Cluster
Profiles []GetCluster Profiles V2Cluster Profile - List of cluster profiles.
- Id string
- The provider-assigned unique ID for this managed resource.
- Filter string
- Limit int
- Order
By string - Page int
- Select string
- cluster_
profiles list(object) - List of cluster profiles.
- id string
- The provider-assigned unique ID for this managed resource.
- filter string
- limit number
- order_
by string - page number
- select string
- cluster
Profiles List<GetCluster Profiles V2Cluster Profile> - List of cluster profiles.
- id String
- The provider-assigned unique ID for this managed resource.
- filter String
- limit Integer
- order
By String - page Integer
- select String
- cluster
Profiles GetCluster Profiles V2Cluster Profile[] - List of cluster profiles.
- id string
- The provider-assigned unique ID for this managed resource.
- filter string
- limit number
- order
By string - page number
- select string
- cluster_
profiles Sequence[GetCluster Profiles V2Cluster Profile] - List of cluster profiles.
- id str
- The provider-assigned unique ID for this managed resource.
- filter str
- limit int
- order_
by str - page int
- select str
- cluster
Profiles List<Property Map> - List of cluster profiles.
- id String
- The provider-assigned unique ID for this managed resource.
- filter String
- limit Number
- order
By String - page Number
- select String
Supporting Types
GetClusterProfilesV2ClusterProfile
- Allowed
Overrides List<string> - Indicates if a configuration of attached clusters can be skipped from monitoring.
- Cluster
Count int - Count of clusters associated to a cluster profile.
- Clusters
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Cluster> - Managed cluster information.
- Create
Time string - Creation time of a cluster profile.
- Created
By string - Details of the user who created the cluster profile.
- Description string
- Detailed description of a cluster profile.
- Drifted
Cluster intCount - The count indicates the number of clusters associated with a cluster profile that has experienced drift. Drifted clusters are those in which the configuration differs from the defined profile. For example, the NTP server has different values on a cluster as compared to the profile it is attached.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Last
Update stringTime - The last updated time of a cluster profile.
- Last
Updated stringBy - Details of the user who has recently updated the cluster profile.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Name string
- Name of the cluster profile.
- Name
Server List<PiersIp Lists Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Name Server Ip List> - List of name servers on a cluster. This is a part of payload for both clusters create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- Nfs
Subnet List<string>White Lists - NFS subnet allowlist addresses. This is part of the payload for cluster update operation only.
- Ntp
Server List<PiersIp Lists Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Ntp Server Ip List> - List of NTP servers on a cluster. This is a part of payload for both cluster create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- Pulse
Statuses List<PiersKarsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Pulse Status> - Pulse status for a cluster.
- Rsyslog
Server List<PiersLists Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Rsyslog Server List> - RSYSLOG Server.
- Smtp
Servers List<PiersKarsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Smtp Server> - SMTP servers on a cluster. This is part of payload for cluster update operation only.
- Snmp
Configs List<PiersKarsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config> - SNMP information.
- Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Allowed
Overrides []string - Indicates if a configuration of attached clusters can be skipped from monitoring.
- Cluster
Count int - Count of clusters associated to a cluster profile.
- Clusters
[]Get
Cluster Profiles V2Cluster Profile Cluster - Managed cluster information.
- Create
Time string - Creation time of a cluster profile.
- Created
By string - Details of the user who created the cluster profile.
- Description string
- Detailed description of a cluster profile.
- Drifted
Cluster intCount - The count indicates the number of clusters associated with a cluster profile that has experienced drift. Drifted clusters are those in which the configuration differs from the defined profile. For example, the NTP server has different values on a cluster as compared to the profile it is attached.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Last
Update stringTime - The last updated time of a cluster profile.
- Last
Updated stringBy - Details of the user who has recently updated the cluster profile.
- Links
[]Get
Cluster Profiles V2Cluster Profile Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Name string
- Name of the cluster profile.
- Name
Server []GetIp Lists Cluster Profiles V2Cluster Profile Name Server Ip List - List of name servers on a cluster. This is a part of payload for both clusters create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- Nfs
Subnet []stringWhite Lists - NFS subnet allowlist addresses. This is part of the payload for cluster update operation only.
- Ntp
Server []GetIp Lists Cluster Profiles V2Cluster Profile Ntp Server Ip List - List of NTP servers on a cluster. This is a part of payload for both cluster create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- Pulse
Statuses []GetCluster Profiles V2Cluster Profile Pulse Status - Pulse status for a cluster.
- Rsyslog
Server []GetLists Cluster Profiles V2Cluster Profile Rsyslog Server List - RSYSLOG Server.
- Smtp
Servers []GetCluster Profiles V2Cluster Profile Smtp Server - SMTP servers on a cluster. This is part of payload for cluster update operation only.
- Snmp
Configs []GetCluster Profiles V2Cluster Profile Snmp Config - SNMP information.
- Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- allowed_
overrides list(string) - Indicates if a configuration of attached clusters can be skipped from monitoring.
- cluster_
count number - Count of clusters associated to a cluster profile.
- clusters list(object)
- Managed cluster information.
- create_
time string - Creation time of a cluster profile.
- created_
by string - Details of the user who created the cluster profile.
- description string
- Detailed description of a cluster profile.
- drifted_
cluster_ numbercount - The count indicates the number of clusters associated with a cluster profile that has experienced drift. Drifted clusters are those in which the configuration differs from the defined profile. For example, the NTP server has different values on a cluster as compared to the profile it is attached.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- last_
update_ stringtime - The last updated time of a cluster profile.
- last_
updated_ stringby - Details of the user who has recently updated the cluster profile.
- links list(object)
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name string
- Name of the cluster profile.
- name_
server_ list(object)ip_ lists - List of name servers on a cluster. This is a part of payload for both clusters create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- nfs_
subnet_ list(string)white_ lists - NFS subnet allowlist addresses. This is part of the payload for cluster update operation only.
- ntp_
server_ list(object)ip_ lists - List of NTP servers on a cluster. This is a part of payload for both cluster create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- pulse_
statuses list(object) - Pulse status for a cluster.
- rsyslog_
server_ list(object)lists - RSYSLOG Server.
- smtp_
servers list(object) - SMTP servers on a cluster. This is part of payload for cluster update operation only.
- snmp_
configs list(object) - SNMP information.
- tenant_
id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- allowed
Overrides List<String> - Indicates if a configuration of attached clusters can be skipped from monitoring.
- cluster
Count Integer - Count of clusters associated to a cluster profile.
- clusters
List<Get
Cluster Profiles V2Cluster Profile Cluster> - Managed cluster information.
- create
Time String - Creation time of a cluster profile.
- created
By String - Details of the user who created the cluster profile.
- description String
- Detailed description of a cluster profile.
- drifted
Cluster IntegerCount - The count indicates the number of clusters associated with a cluster profile that has experienced drift. Drifted clusters are those in which the configuration differs from the defined profile. For example, the NTP server has different values on a cluster as compared to the profile it is attached.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- last
Update StringTime - The last updated time of a cluster profile.
- last
Updated StringBy - Details of the user who has recently updated the cluster profile.
- links
List<Get
Cluster Profiles V2Cluster Profile Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name String
- Name of the cluster profile.
- name
Server List<GetIp Lists Cluster Profiles V2Cluster Profile Name Server Ip List> - List of name servers on a cluster. This is a part of payload for both clusters create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- nfs
Subnet List<String>White Lists - NFS subnet allowlist addresses. This is part of the payload for cluster update operation only.
- ntp
Server List<GetIp Lists Cluster Profiles V2Cluster Profile Ntp Server Ip List> - List of NTP servers on a cluster. This is a part of payload for both cluster create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- pulse
Statuses List<GetCluster Profiles V2Cluster Profile Pulse Status> - Pulse status for a cluster.
- rsyslog
Server List<GetLists Cluster Profiles V2Cluster Profile Rsyslog Server List> - RSYSLOG Server.
- smtp
Servers List<GetCluster Profiles V2Cluster Profile Smtp Server> - SMTP servers on a cluster. This is part of payload for cluster update operation only.
- snmp
Configs List<GetCluster Profiles V2Cluster Profile Snmp Config> - SNMP information.
- tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- allowed
Overrides string[] - Indicates if a configuration of attached clusters can be skipped from monitoring.
- cluster
Count number - Count of clusters associated to a cluster profile.
- clusters
Get
Cluster Profiles V2Cluster Profile Cluster[] - Managed cluster information.
- create
Time string - Creation time of a cluster profile.
- created
By string - Details of the user who created the cluster profile.
- description string
- Detailed description of a cluster profile.
- drifted
Cluster numberCount - The count indicates the number of clusters associated with a cluster profile that has experienced drift. Drifted clusters are those in which the configuration differs from the defined profile. For example, the NTP server has different values on a cluster as compared to the profile it is attached.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- last
Update stringTime - The last updated time of a cluster profile.
- last
Updated stringBy - Details of the user who has recently updated the cluster profile.
- links
Get
Cluster Profiles V2Cluster Profile Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name string
- Name of the cluster profile.
- name
Server GetIp Lists Cluster Profiles V2Cluster Profile Name Server Ip List[] - List of name servers on a cluster. This is a part of payload for both clusters create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- nfs
Subnet string[]White Lists - NFS subnet allowlist addresses. This is part of the payload for cluster update operation only.
- ntp
Server GetIp Lists Cluster Profiles V2Cluster Profile Ntp Server Ip List[] - List of NTP servers on a cluster. This is a part of payload for both cluster create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- pulse
Statuses GetCluster Profiles V2Cluster Profile Pulse Status[] - Pulse status for a cluster.
- rsyslog
Server GetLists Cluster Profiles V2Cluster Profile Rsyslog Server List[] - RSYSLOG Server.
- smtp
Servers GetCluster Profiles V2Cluster Profile Smtp Server[] - SMTP servers on a cluster. This is part of payload for cluster update operation only.
- snmp
Configs GetCluster Profiles V2Cluster Profile Snmp Config[] - SNMP information.
- tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- allowed_
overrides Sequence[str] - Indicates if a configuration of attached clusters can be skipped from monitoring.
- cluster_
count int - Count of clusters associated to a cluster profile.
- clusters
Sequence[Get
Cluster Profiles V2Cluster Profile Cluster] - Managed cluster information.
- create_
time str - Creation time of a cluster profile.
- created_
by str - Details of the user who created the cluster profile.
- description str
- Detailed description of a cluster profile.
- drifted_
cluster_ intcount - The count indicates the number of clusters associated with a cluster profile that has experienced drift. Drifted clusters are those in which the configuration differs from the defined profile. For example, the NTP server has different values on a cluster as compared to the profile it is attached.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- last_
update_ strtime - The last updated time of a cluster profile.
- last_
updated_ strby - Details of the user who has recently updated the cluster profile.
- links
Sequence[Get
Cluster Profiles V2Cluster Profile Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name str
- Name of the cluster profile.
- name_
server_ Sequence[Getip_ lists Cluster Profiles V2Cluster Profile Name Server Ip List] - List of name servers on a cluster. This is a part of payload for both clusters create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- nfs_
subnet_ Sequence[str]white_ lists - NFS subnet allowlist addresses. This is part of the payload for cluster update operation only.
- ntp_
server_ Sequence[Getip_ lists Cluster Profiles V2Cluster Profile Ntp Server Ip List] - List of NTP servers on a cluster. This is a part of payload for both cluster create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- pulse_
statuses Sequence[GetCluster Profiles V2Cluster Profile Pulse Status] - Pulse status for a cluster.
- rsyslog_
server_ Sequence[Getlists Cluster Profiles V2Cluster Profile Rsyslog Server List] - RSYSLOG Server.
- smtp_
servers Sequence[GetCluster Profiles V2Cluster Profile Smtp Server] - SMTP servers on a cluster. This is part of payload for cluster update operation only.
- snmp_
configs Sequence[GetCluster Profiles V2Cluster Profile Snmp Config] - SNMP information.
- tenant_
id str - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- allowed
Overrides List<String> - Indicates if a configuration of attached clusters can be skipped from monitoring.
- cluster
Count Number - Count of clusters associated to a cluster profile.
- clusters List<Property Map>
- Managed cluster information.
- create
Time String - Creation time of a cluster profile.
- created
By String - Details of the user who created the cluster profile.
- description String
- Detailed description of a cluster profile.
- drifted
Cluster NumberCount - The count indicates the number of clusters associated with a cluster profile that has experienced drift. Drifted clusters are those in which the configuration differs from the defined profile. For example, the NTP server has different values on a cluster as compared to the profile it is attached.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- last
Update StringTime - The last updated time of a cluster profile.
- last
Updated StringBy - Details of the user who has recently updated the cluster profile.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- name String
- Name of the cluster profile.
- name
Server List<Property Map>Ip Lists - List of name servers on a cluster. This is a part of payload for both clusters create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- nfs
Subnet List<String>White Lists - NFS subnet allowlist addresses. This is part of the payload for cluster update operation only.
- ntp
Server List<Property Map>Ip Lists - List of NTP servers on a cluster. This is a part of payload for both cluster create and update operations. Currently, only IPv4 address and FQDN (fully qualified domain name) values are supported for the create operation.
- pulse
Statuses List<Property Map> - Pulse status for a cluster.
- rsyslog
Server List<Property Map>Lists - RSYSLOG Server.
- smtp
Servers List<Property Map> - SMTP servers on a cluster. This is part of payload for cluster update operation only.
- snmp
Configs List<Property Map> - SNMP information.
- tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
GetClusterProfilesV2ClusterProfileCluster
- Config
Drifts string - The configuration drifts of a cluster.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Is
Compliant bool - Indicates if a cluster is compliant with the cluster profile.
- Last
Synced stringTime - The last synced time of a cluster.
- Config
Drifts string - The configuration drifts of a cluster.
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Is
Compliant bool - Indicates if a cluster is compliant with the cluster profile.
- Last
Synced stringTime - The last synced time of a cluster.
- config_
drifts string - The configuration drifts of a cluster.
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- is_
compliant bool - Indicates if a cluster is compliant with the cluster profile.
- last_
synced_ stringtime - The last synced time of a cluster.
- config
Drifts String - The configuration drifts of a cluster.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- is
Compliant Boolean - Indicates if a cluster is compliant with the cluster profile.
- last
Synced StringTime - The last synced time of a cluster.
- config
Drifts string - The configuration drifts of a cluster.
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- is
Compliant boolean - Indicates if a cluster is compliant with the cluster profile.
- last
Synced stringTime - The last synced time of a cluster.
- config_
drifts str - The configuration drifts of a cluster.
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- is_
compliant bool - Indicates if a cluster is compliant with the cluster profile.
- last_
synced_ strtime - The last synced time of a cluster.
- config
Drifts String - The configuration drifts of a cluster.
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- is
Compliant Boolean - Indicates if a cluster is compliant with the cluster profile.
- last
Synced StringTime - The last synced time of a cluster.
GetClusterProfilesV2ClusterProfileLink
GetClusterProfilesV2ClusterProfileNameServerIpList
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Name Server Ip List Ipv4> - (Optional) ip address params.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Name Server Ip List Ipv6> - (Optional) Ip address params.
- Ipv4s
[]Get
Cluster Profiles V2Cluster Profile Name Server Ip List Ipv4 - (Optional) ip address params.
- Ipv6s
[]Get
Cluster Profiles V2Cluster Profile Name Server Ip List Ipv6 - (Optional) Ip address params.
- ipv4s list(object)
- (Optional) ip address params.
- ipv6s list(object)
- (Optional) Ip address params.
- ipv4s
List<Get
Cluster Profiles V2Cluster Profile Name Server Ip List Ipv4> - (Optional) ip address params.
- ipv6s
List<Get
Cluster Profiles V2Cluster Profile Name Server Ip List Ipv6> - (Optional) Ip address params.
- ipv4s
Get
Cluster Profiles V2Cluster Profile Name Server Ip List Ipv4[] - (Optional) ip address params.
- ipv6s
Get
Cluster Profiles V2Cluster Profile Name Server Ip List Ipv6[] - (Optional) Ip address params.
- ipv4s
Sequence[Get
Cluster Profiles V2Cluster Profile Name Server Ip List Ipv4] - (Optional) ip address params.
- ipv6s
Sequence[Get
Cluster Profiles V2Cluster Profile Name Server Ip List Ipv6] - (Optional) Ip address params.
- ipv4s List<Property Map>
- (Optional) ip address params.
- ipv6s List<Property Map>
- (Optional) Ip address params.
GetClusterProfilesV2ClusterProfileNameServerIpListIpv4
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfileNameServerIpListIpv6
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfileNtpServerIpList
- Fqdns
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Ntp Server Ip List Fqdn> - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv4> - (Optional) ip address params.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv6> - (Optional) Ip address params.
- Fqdns
[]Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Fqdn - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
[]Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv4 - (Optional) ip address params.
- Ipv6s
[]Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv6 - (Optional) Ip address params.
- fqdns list(object)
- (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s list(object)
- (Optional) ip address params.
- ipv6s list(object)
- (Optional) Ip address params.
- fqdns
List<Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Fqdn> - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
List<Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv4> - (Optional) ip address params.
- ipv6s
List<Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv6> - (Optional) Ip address params.
- fqdns
Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Fqdn[] - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv4[] - (Optional) ip address params.
- ipv6s
Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv6[] - (Optional) Ip address params.
- fqdns
Sequence[Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Fqdn] - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Sequence[Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv4] - (Optional) ip address params.
- ipv6s
Sequence[Get
Cluster Profiles V2Cluster Profile Ntp Server Ip List Ipv6] - (Optional) Ip address params.
- fqdns List<Property Map>
- (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s List<Property Map>
- (Optional) ip address params.
- ipv6s List<Property Map>
- (Optional) Ip address params.
GetClusterProfilesV2ClusterProfileNtpServerIpListFqdn
- Value string
- (Required) Ip address.
- Value string
- (Required) Ip address.
- value string
- (Required) Ip address.
- value String
- (Required) Ip address.
- value string
- (Required) Ip address.
- value str
- (Required) Ip address.
- value String
- (Required) Ip address.
GetClusterProfilesV2ClusterProfileNtpServerIpListIpv4
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfileNtpServerIpListIpv6
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfilePulseStatus
- Is
Enabled bool - Flag to indicate if pulse is enabled or not.
- Pii
Scrubbing stringLevel - PII scrubbing level.
- Is
Enabled bool - Flag to indicate if pulse is enabled or not.
- Pii
Scrubbing stringLevel - PII scrubbing level.
- is_
enabled bool - Flag to indicate if pulse is enabled or not.
- pii_
scrubbing_ stringlevel - PII scrubbing level.
- is
Enabled Boolean - Flag to indicate if pulse is enabled or not.
- pii
Scrubbing StringLevel - PII scrubbing level.
- is
Enabled boolean - Flag to indicate if pulse is enabled or not.
- pii
Scrubbing stringLevel - PII scrubbing level.
- is_
enabled bool - Flag to indicate if pulse is enabled or not.
- pii_
scrubbing_ strlevel - PII scrubbing level.
- is
Enabled Boolean - Flag to indicate if pulse is enabled or not.
- pii
Scrubbing StringLevel - PII scrubbing level.
GetClusterProfilesV2ClusterProfileRsyslogServerList
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ip
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address> - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Rsyslog Server List Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Modules
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Rsyslog Server List Module> - Network
Protocol string - Port int
- (Integer) SNMP port.
- Server
Name string - Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Ip
Addresses []GetCluster Profiles V2Cluster Profile Rsyslog Server List Ip Address - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- Links
[]Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Modules
[]Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Module - Network
Protocol string - Port int
- (Integer) SNMP port.
- Server
Name string - Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- ip_
addresses list(object) - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- links list(object)
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- modules list(object)
- network_
protocol string - port number
- (Integer) SNMP port.
- server_
name string - tenant_
id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ip
Addresses List<GetCluster Profiles V2Cluster Profile Rsyslog Server List Ip Address> - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- links
List<Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- modules
List<Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Module> - network
Protocol String - port Integer
- (Integer) SNMP port.
- server
Name String - tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- ip
Addresses GetCluster Profiles V2Cluster Profile Rsyslog Server List Ip Address[] - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- links
Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- modules
Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Module[] - network
Protocol string - port number
- (Integer) SNMP port.
- server
Name string - tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- ip_
addresses Sequence[GetCluster Profiles V2Cluster Profile Rsyslog Server List Ip Address] - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- links
Sequence[Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- modules
Sequence[Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Module] - network_
protocol str - port int
- (Integer) SNMP port.
- server_
name str - tenant_
id str - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- ip
Addresses List<Property Map> - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- modules List<Property Map>
- network
Protocol String - port Number
- (Integer) SNMP port.
- server
Name String - tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
GetClusterProfilesV2ClusterProfileRsyslogServerListIpAddress
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv4> - (Optional) ip address params.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv6> - (Optional) Ip address params.
- Ipv4s
[]Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv4 - (Optional) ip address params.
- Ipv6s
[]Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv6 - (Optional) Ip address params.
- ipv4s list(object)
- (Optional) ip address params.
- ipv6s list(object)
- (Optional) Ip address params.
- ipv4s
List<Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv4> - (Optional) ip address params.
- ipv6s
List<Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv6> - (Optional) Ip address params.
- ipv4s
Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv4[] - (Optional) ip address params.
- ipv6s
Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv6[] - (Optional) Ip address params.
- ipv4s
Sequence[Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv4] - (Optional) ip address params.
- ipv6s
Sequence[Get
Cluster Profiles V2Cluster Profile Rsyslog Server List Ip Address Ipv6] - (Optional) Ip address params.
- ipv4s List<Property Map>
- (Optional) ip address params.
- ipv6s List<Property Map>
- (Optional) Ip address params.
GetClusterProfilesV2ClusterProfileRsyslogServerListIpAddressIpv4
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfileRsyslogServerListIpAddressIpv6
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfileRsyslogServerListLink
GetClusterProfilesV2ClusterProfileRsyslogServerListModule
- Log
Severity stringLevel - Name string
- Name of the cluster profile.
- Should
Log boolMonitor Files
- Log
Severity stringLevel - Name string
- Name of the cluster profile.
- Should
Log boolMonitor Files
- log_
severity_ stringlevel - name string
- Name of the cluster profile.
- should_
log_ boolmonitor_ files
- log
Severity StringLevel - name String
- Name of the cluster profile.
- should
Log BooleanMonitor Files
- log
Severity stringLevel - name string
- Name of the cluster profile.
- should
Log booleanMonitor Files
- log_
severity_ strlevel - name str
- Name of the cluster profile.
- should_
log_ boolmonitor_ files
- log
Severity StringLevel - name String
- Name of the cluster profile.
- should
Log BooleanMonitor Files
GetClusterProfilesV2ClusterProfileSmtpServer
- Email
Address string - SMTP email address.
- Servers
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Smtp Server Server> - SMTP network details.
- Type string
- Type of SMTP server.
- Email
Address string - SMTP email address.
- Servers
[]Get
Cluster Profiles V2Cluster Profile Smtp Server Server - SMTP network details.
- Type string
- Type of SMTP server.
- email_
address string - SMTP email address.
- servers list(object)
- SMTP network details.
- type string
- Type of SMTP server.
- email
Address String - SMTP email address.
- servers
List<Get
Cluster Profiles V2Cluster Profile Smtp Server Server> - SMTP network details.
- type String
- Type of SMTP server.
- email
Address string - SMTP email address.
- servers
Get
Cluster Profiles V2Cluster Profile Smtp Server Server[] - SMTP network details.
- type string
- Type of SMTP server.
- email_
address str - SMTP email address.
- servers
Sequence[Get
Cluster Profiles V2Cluster Profile Smtp Server Server] - SMTP network details.
- type str
- Type of SMTP server.
- email
Address String - SMTP email address.
- servers List<Property Map>
- SMTP network details.
- type String
- Type of SMTP server.
GetClusterProfilesV2ClusterProfileSmtpServerServer
- Ip
Addresses List<PiersKarsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address> - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- Password string
- SMTP server password.
- Port int
- (Integer) SNMP port.
- Username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- Ip
Addresses []GetCluster Profiles V2Cluster Profile Smtp Server Server Ip Address - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- Password string
- SMTP server password.
- Port int
- (Integer) SNMP port.
- Username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- ip_
addresses list(object) - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- password string
- SMTP server password.
- port number
- (Integer) SNMP port.
- username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- ip
Addresses List<GetCluster Profiles V2Cluster Profile Smtp Server Server Ip Address> - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- password String
- SMTP server password.
- port Integer
- (Integer) SNMP port.
- username String
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- ip
Addresses GetCluster Profiles V2Cluster Profile Smtp Server Server Ip Address[] - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- password string
- SMTP server password.
- port number
- (Integer) SNMP port.
- username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- ip_
addresses Sequence[GetCluster Profiles V2Cluster Profile Smtp Server Server Ip Address] - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- password str
- SMTP server password.
- port int
- (Integer) SNMP port.
- username str
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- ip
Addresses List<Property Map> - An unique address that identifies a device on the internet or a local network in IPv4, IPv6 or format.
- password String
- SMTP server password.
- port Number
- (Integer) SNMP port.
- username String
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
GetClusterProfilesV2ClusterProfileSmtpServerServerIpAddress
- Fqdns
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Fqdn> - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv4> - (Optional) ip address params.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv6> - (Optional) Ip address params.
- Fqdns
[]Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Fqdn - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- Ipv4s
[]Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv4 - (Optional) ip address params.
- Ipv6s
[]Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv6 - (Optional) Ip address params.
- fqdns list(object)
- (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s list(object)
- (Optional) ip address params.
- ipv6s list(object)
- (Optional) Ip address params.
- fqdns
List<Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Fqdn> - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
List<Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv4> - (Optional) ip address params.
- ipv6s
List<Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv6> - (Optional) Ip address params.
- fqdns
Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Fqdn[] - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv4[] - (Optional) ip address params.
- ipv6s
Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv6[] - (Optional) Ip address params.
- fqdns
Sequence[Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Fqdn] - (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s
Sequence[Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv4] - (Optional) ip address params.
- ipv6s
Sequence[Get
Cluster Profiles V2Cluster Profile Smtp Server Server Ip Address Ipv6] - (Optional) Ip address params.
- fqdns List<Property Map>
- (Optional) A fully qualified domain name that specifies its exact location in the tree hierarchy of the Domain Name System.
- ipv4s List<Property Map>
- (Optional) ip address params.
- ipv6s List<Property Map>
- (Optional) Ip address params.
GetClusterProfilesV2ClusterProfileSmtpServerServerIpAddressFqdn
- Value string
- (Required) Ip address.
- Value string
- (Required) Ip address.
- value string
- (Required) Ip address.
- value String
- (Required) Ip address.
- value string
- (Required) Ip address.
- value str
- (Required) Ip address.
- value String
- (Required) Ip address.
GetClusterProfilesV2ClusterProfileSmtpServerServerIpAddressIpv4
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfileSmtpServerServerIpAddressIpv6
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfileSnmpConfig
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Is
Enabled bool - Flag to indicate if pulse is enabled or not.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Transports
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config Transport> - (List) SNMP transport details. Each transport object supports:
- Traps
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config Trap> - (List) SNMP trap details. Each trap object supports:
- Users
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config User> - (List) SNMP user information. Each user object supports:
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Is
Enabled bool - Flag to indicate if pulse is enabled or not.
- Links
[]Get
Cluster Profiles V2Cluster Profile Snmp Config Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Transports
[]Get
Cluster Profiles V2Cluster Profile Snmp Config Transport - (List) SNMP transport details. Each transport object supports:
- Traps
[]Get
Cluster Profiles V2Cluster Profile Snmp Config Trap - (List) SNMP trap details. Each trap object supports:
- Users
[]Get
Cluster Profiles V2Cluster Profile Snmp Config User - (List) SNMP user information. Each user object supports:
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- is_
enabled bool - Flag to indicate if pulse is enabled or not.
- links list(object)
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- tenant_
id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- transports list(object)
- (List) SNMP transport details. Each transport object supports:
- traps list(object)
- (List) SNMP trap details. Each trap object supports:
- users list(object)
- (List) SNMP user information. Each user object supports:
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- is
Enabled Boolean - Flag to indicate if pulse is enabled or not.
- links
List<Get
Cluster Profiles V2Cluster Profile Snmp Config Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- transports
List<Get
Cluster Profiles V2Cluster Profile Snmp Config Transport> - (List) SNMP transport details. Each transport object supports:
- traps
List<Get
Cluster Profiles V2Cluster Profile Snmp Config Trap> - (List) SNMP trap details. Each trap object supports:
- users
List<Get
Cluster Profiles V2Cluster Profile Snmp Config User> - (List) SNMP user information. Each user object supports:
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- is
Enabled boolean - Flag to indicate if pulse is enabled or not.
- links
Get
Cluster Profiles V2Cluster Profile Snmp Config Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- transports
Get
Cluster Profiles V2Cluster Profile Snmp Config Transport[] - (List) SNMP transport details. Each transport object supports:
- traps
Get
Cluster Profiles V2Cluster Profile Snmp Config Trap[] - (List) SNMP trap details. Each trap object supports:
- users
Get
Cluster Profiles V2Cluster Profile Snmp Config User[] - (List) SNMP user information. Each user object supports:
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- is_
enabled bool - Flag to indicate if pulse is enabled or not.
- links
Sequence[Get
Cluster Profiles V2Cluster Profile Snmp Config Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- tenant_
id str - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- transports
Sequence[Get
Cluster Profiles V2Cluster Profile Snmp Config Transport] - (List) SNMP transport details. Each transport object supports:
- traps
Sequence[Get
Cluster Profiles V2Cluster Profile Snmp Config Trap] - (List) SNMP trap details. Each trap object supports:
- users
Sequence[Get
Cluster Profiles V2Cluster Profile Snmp Config User] - (List) SNMP user information. Each user object supports:
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- is
Enabled Boolean - Flag to indicate if pulse is enabled or not.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- transports List<Property Map>
- (List) SNMP transport details. Each transport object supports:
- traps List<Property Map>
- (List) SNMP trap details. Each trap object supports:
- users List<Property Map>
- (List) SNMP user information. Each user object supports:
GetClusterProfilesV2ClusterProfileSnmpConfigLink
GetClusterProfilesV2ClusterProfileSnmpConfigTransport
GetClusterProfilesV2ClusterProfileSnmpConfigTrap
- Addresses
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config Trap Address> - (Block) An unique address block that supports:
- Community
String string - (String) Community string (plaintext) for SNMP version 2.0.
- Engine
Id string - (String) SNMP engine ID (hexadecimal string, e.g. 0x12345678).
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config Trap Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Port int
- (Integer) SNMP port.
- Protocol string
- (String) SNMP protocol type. Allowed values:
- Receiver
Name string - (String, max 64 chars) SNMP receiver name.
- Should
Inform bool - (Boolean) SNMP inform mode status.
- Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- Version string
- (String) SNMP version. Allowed values:
- Addresses
[]Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address - (Block) An unique address block that supports:
- Community
String string - (String) Community string (plaintext) for SNMP version 2.0.
- Engine
Id string - (String) SNMP engine ID (hexadecimal string, e.g. 0x12345678).
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Links
[]Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Port int
- (Integer) SNMP port.
- Protocol string
- (String) SNMP protocol type. Allowed values:
- Receiver
Name string - (String, max 64 chars) SNMP receiver name.
- Should
Inform bool - (Boolean) SNMP inform mode status.
- Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- Version string
- (String) SNMP version. Allowed values:
- addresses list(object)
- (Block) An unique address block that supports:
- community_
string string - (String) Community string (plaintext) for SNMP version 2.0.
- engine_
id string - (String) SNMP engine ID (hexadecimal string, e.g. 0x12345678).
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- links list(object)
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- port number
- (Integer) SNMP port.
- protocol string
- (String) SNMP protocol type. Allowed values:
- receiver_
name string - (String, max 64 chars) SNMP receiver name.
- should_
inform bool - (Boolean) SNMP inform mode status.
- tenant_
id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- version string
- (String) SNMP version. Allowed values:
- addresses
List<Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address> - (Block) An unique address block that supports:
- community
String String - (String) Community string (plaintext) for SNMP version 2.0.
- engine
Id String - (String) SNMP engine ID (hexadecimal string, e.g. 0x12345678).
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- links
List<Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- port Integer
- (Integer) SNMP port.
- protocol String
- (String) SNMP protocol type. Allowed values:
- receiver
Name String - (String, max 64 chars) SNMP receiver name.
- should
Inform Boolean - (Boolean) SNMP inform mode status.
- tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username String
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- version String
- (String) SNMP version. Allowed values:
- addresses
Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address[] - (Block) An unique address block that supports:
- community
String string - (String) Community string (plaintext) for SNMP version 2.0.
- engine
Id string - (String) SNMP engine ID (hexadecimal string, e.g. 0x12345678).
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- links
Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- port number
- (Integer) SNMP port.
- protocol string
- (String) SNMP protocol type. Allowed values:
- receiver
Name string - (String, max 64 chars) SNMP receiver name.
- should
Inform boolean - (Boolean) SNMP inform mode status.
- tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- version string
- (String) SNMP version. Allowed values:
- addresses
Sequence[Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address] - (Block) An unique address block that supports:
- community_
string str - (String) Community string (plaintext) for SNMP version 2.0.
- engine_
id str - (String) SNMP engine ID (hexadecimal string, e.g. 0x12345678).
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- links
Sequence[Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- port int
- (Integer) SNMP port.
- protocol str
- (String) SNMP protocol type. Allowed values:
- receiver_
name str - (String, max 64 chars) SNMP receiver name.
- should_
inform bool - (Boolean) SNMP inform mode status.
- tenant_
id str - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username str
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- version str
- (String) SNMP version. Allowed values:
- addresses List<Property Map>
- (Block) An unique address block that supports:
- community
String String - (String) Community string (plaintext) for SNMP version 2.0.
- engine
Id String - (String) SNMP engine ID (hexadecimal string, e.g. 0x12345678).
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- port Number
- (Integer) SNMP port.
- protocol String
- (String) SNMP protocol type. Allowed values:
- receiver
Name String - (String, max 64 chars) SNMP receiver name.
- should
Inform Boolean - (Boolean) SNMP inform mode status.
- tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username String
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- version String
- (String) SNMP version. Allowed values:
GetClusterProfilesV2ClusterProfileSnmpConfigTrapAddress
- Ipv4s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv4> - (Optional) ip address params.
- Ipv6s
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv6> - (Optional) Ip address params.
- Ipv4s
[]Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv4 - (Optional) ip address params.
- Ipv6s
[]Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv6 - (Optional) Ip address params.
- ipv4s list(object)
- (Optional) ip address params.
- ipv6s list(object)
- (Optional) Ip address params.
- ipv4s
List<Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv4> - (Optional) ip address params.
- ipv6s
List<Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv6> - (Optional) Ip address params.
- ipv4s
Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv4[] - (Optional) ip address params.
- ipv6s
Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv6[] - (Optional) Ip address params.
- ipv4s
Sequence[Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv4] - (Optional) ip address params.
- ipv6s
Sequence[Get
Cluster Profiles V2Cluster Profile Snmp Config Trap Address Ipv6] - (Optional) Ip address params.
- ipv4s List<Property Map>
- (Optional) ip address params.
- ipv6s List<Property Map>
- (Optional) Ip address params.
GetClusterProfilesV2ClusterProfileSnmpConfigTrapAddressIpv4
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfileSnmpConfigTrapAddressIpv6
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- Value string
- (Required) Ip address.
- Prefix
Length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix_
length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Integer - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value string
- (Required) Ip address.
- prefix
Length number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value str
- (Required) Ip address.
- prefix_
length int - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
- value String
- (Required) Ip address.
- prefix
Length Number - (Optional, default 128) The prefix length of the network to which this host IPv6 address belongs.
GetClusterProfilesV2ClusterProfileSnmpConfigTrapLink
GetClusterProfilesV2ClusterProfileSnmpConfigUser
- Auth
Key string - (String) SNMP user authentication key (must not contain single quotes).
- Auth
Type string - (String) SNMP user authentication type. Allowed values:
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Cluster Profiles V2Cluster Profile Snmp Config User Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Priv
Key string - (String) SNMP user encryption key (must not contain single quotes).
- Priv
Type string - (String) SNMP user encryption type. Allowed values:
- Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- Auth
Key string - (String) SNMP user authentication key (must not contain single quotes).
- Auth
Type string - (String) SNMP user authentication type. Allowed values:
- Ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- Links
[]Get
Cluster Profiles V2Cluster Profile Snmp Config User Link - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- Priv
Key string - (String) SNMP user encryption key (must not contain single quotes).
- Priv
Type string - (String) SNMP user encryption type. Allowed values:
- Tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- Username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- auth_
key string - (String) SNMP user authentication key (must not contain single quotes).
- auth_
type string - (String) SNMP user authentication type. Allowed values:
- ext_
id string - A globally unique identifier of an instance that is suitable for external consumption.
- links list(object)
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- priv_
key string - (String) SNMP user encryption key (must not contain single quotes).
- priv_
type string - (String) SNMP user encryption type. Allowed values:
- tenant_
id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- auth
Key String - (String) SNMP user authentication key (must not contain single quotes).
- auth
Type String - (String) SNMP user authentication type. Allowed values:
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- links
List<Get
Cluster Profiles V2Cluster Profile Snmp Config User Link> - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- priv
Key String - (String) SNMP user encryption key (must not contain single quotes).
- priv
Type String - (String) SNMP user encryption type. Allowed values:
- tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username String
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- auth
Key string - (String) SNMP user authentication key (must not contain single quotes).
- auth
Type string - (String) SNMP user authentication type. Allowed values:
- ext
Id string - A globally unique identifier of an instance that is suitable for external consumption.
- links
Get
Cluster Profiles V2Cluster Profile Snmp Config User Link[] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- priv
Key string - (String) SNMP user encryption key (must not contain single quotes).
- priv
Type string - (String) SNMP user encryption type. Allowed values:
- tenant
Id string - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username string
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- auth_
key str - (String) SNMP user authentication key (must not contain single quotes).
- auth_
type str - (String) SNMP user authentication type. Allowed values:
- ext_
id str - A globally unique identifier of an instance that is suitable for external consumption.
- links
Sequence[Get
Cluster Profiles V2Cluster Profile Snmp Config User Link] - A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- priv_
key str - (String) SNMP user encryption key (must not contain single quotes).
- priv_
type str - (String) SNMP user encryption type. Allowed values:
- tenant_
id str - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username str
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
- auth
Key String - (String) SNMP user authentication key (must not contain single quotes).
- auth
Type String - (String) SNMP user authentication type. Allowed values:
- ext
Id String - A globally unique identifier of an instance that is suitable for external consumption.
- links List<Property Map>
- A HATEOAS style link for the response. Each link contains a user-friendly name identifying the link and an address for retrieving the particular resource.
- priv
Key String - (String) SNMP user encryption key (must not contain single quotes).
- priv
Type String - (String) SNMP user encryption type. Allowed values:
- tenant
Id String - globally unique identifier that represents the tenant that owns this entity. The system automatically assigns it, and it and is immutable from an API consumer perspective (some use cases may cause this Id to change - For instance, a use case may require the transfer of ownership of the entity, but these cases are handled automatically on the server).
- username String
- (String, max 64 chars) SNMP username. Required for SNMP trap v3 version.
GetClusterProfilesV2ClusterProfileSnmpConfigUserLink
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanixTerraform Provider.
published on Tuesday, May 26, 2026 by Piers Karsenbarg