Nutanix v0.7.4 published on Friday, Mar 21, 2025 by Piers Karsenbarg
nutanix.getServiceGroupsV2
Explore with Pulumi AI
List all the service Groups.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as nutanix from "@pulumi/nutanix";
const serviceGroup = nutanix.getServiceGroupsV2({});
const serviceGroupFiltered = nutanix.getServiceGroupsV2({
filter: "name eq '%[1]s'",
});
import pulumi
import pulumi_nutanix as nutanix
service_group = nutanix.get_service_groups_v2()
service_group_filtered = nutanix.get_service_groups_v2(filter="name eq '%[1]s'")
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.LookupServiceGroupsV2(ctx, &nutanix.LookupServiceGroupsV2Args{}, nil)
if err != nil {
return err
}
_, err = nutanix.LookupServiceGroupsV2(ctx, &nutanix.LookupServiceGroupsV2Args{
Filter: pulumi.StringRef("name eq '%[1]s'"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Nutanix = Pulumi.Nutanix;
return await Deployment.RunAsync(() =>
{
var serviceGroup = Nutanix.GetServiceGroupsV2.Invoke();
var serviceGroupFiltered = Nutanix.GetServiceGroupsV2.Invoke(new()
{
Filter = "name eq '%[1]s'",
});
});
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.GetServiceGroupsV2Args;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var serviceGroup = NutanixFunctions.getServiceGroupsV2();
final var serviceGroupFiltered = NutanixFunctions.getServiceGroupsV2(GetServiceGroupsV2Args.builder()
.filter("name eq '%[1]s'")
.build());
}
}
variables:
serviceGroup:
fn::invoke:
function: nutanix:getServiceGroupsV2
arguments: {}
serviceGroupFiltered:
fn::invoke:
function: nutanix:getServiceGroupsV2
arguments:
filter: name eq '%[1]s'
Using getServiceGroupsV2
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 getServiceGroupsV2(args: GetServiceGroupsV2Args, opts?: InvokeOptions): Promise<GetServiceGroupsV2Result>
function getServiceGroupsV2Output(args: GetServiceGroupsV2OutputArgs, opts?: InvokeOptions): Output<GetServiceGroupsV2Result>
def get_service_groups_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) -> GetServiceGroupsV2Result
def get_service_groups_v2_output(filter: Optional[pulumi.Input[str]] = None,
limit: Optional[pulumi.Input[int]] = None,
order_by: Optional[pulumi.Input[str]] = None,
page: Optional[pulumi.Input[int]] = None,
select: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceGroupsV2Result]
func LookupServiceGroupsV2(ctx *Context, args *LookupServiceGroupsV2Args, opts ...InvokeOption) (*LookupServiceGroupsV2Result, error)
func LookupServiceGroupsV2Output(ctx *Context, args *LookupServiceGroupsV2OutputArgs, opts ...InvokeOption) LookupServiceGroupsV2ResultOutput
> Note: This function is named LookupServiceGroupsV2
in the Go SDK.
public static class GetServiceGroupsV2
{
public static Task<GetServiceGroupsV2Result> InvokeAsync(GetServiceGroupsV2Args args, InvokeOptions? opts = null)
public static Output<GetServiceGroupsV2Result> Invoke(GetServiceGroupsV2InvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetServiceGroupsV2Result> getServiceGroupsV2(GetServiceGroupsV2Args args, InvokeOptions options)
public static Output<GetServiceGroupsV2Result> getServiceGroupsV2(GetServiceGroupsV2Args args, InvokeOptions options)
fn::invoke:
function: nutanix:index/getServiceGroupsV2:getServiceGroupsV2
arguments:
# arguments dictionary
The following arguments are supported:
- Filter string
- A URL query parameter that allows clients to filter a collection of resources.
- 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
- 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
- Filter string
- A URL query parameter that allows clients to filter a collection of resources.
- 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
- 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
- filter String
- A URL query parameter that allows clients to filter a collection of resources.
- 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
- 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
- filter string
- A URL query parameter that allows clients to filter a collection of resources.
- 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
- 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
- filter str
- A URL query parameter that allows clients to filter a collection of resources.
- 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
- 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
- filter String
- A URL query parameter that allows clients to filter a collection of resources.
- 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
- 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
getServiceGroupsV2 Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Groups List<PiersKarsenbarg. Nutanix. Outputs. Get Service Groups V2Service Group> - Filter string
- Limit int
- Order
By string - Page int
- Select string
- Id string
- The provider-assigned unique ID for this managed resource.
- Service
Groups []GetService Groups V2Service Group - Filter string
- Limit int
- Order
By string - Page int
- Select string
- id String
- The provider-assigned unique ID for this managed resource.
- service
Groups List<GetService Groups V2Service Group> - filter String
- limit Integer
- order
By String - page Integer
- select String
- id string
- The provider-assigned unique ID for this managed resource.
- service
Groups GetService Groups V2Service Group[] - filter string
- limit number
- order
By string - page number
- select string
- id str
- The provider-assigned unique ID for this managed resource.
- service_
groups Sequence[GetService Groups V2Service Group] - filter str
- limit int
- order_
by str - page int
- select str
- id String
- The provider-assigned unique ID for this managed resource.
- service
Groups List<Property Map> - filter String
- limit Number
- order
By String - page Number
- select String
Supporting Types
GetServiceGroupsV2ServiceGroup
- Created
By string - created by.
- Description string
- A user defined annotation for an service Group.
- Ext
Id string - service group UUID.
- Icmp
Services List<PiersKarsenbarg. Nutanix. Inputs. Get Service Groups V2Service Group Icmp Service> - Icmp Type Code List.
- Is
System boolDefined - Service Group is system defined or not.
- Links
List<Piers
Karsenbarg. Nutanix. Inputs. Get Service Groups V2Service Group 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
- A short identifier for an service Group.
- Policy
References List<string> - Reference to policy associated with Service Group.
- Tcp
Services List<PiersKarsenbarg. Nutanix. Inputs. Get Service Groups V2Service Group Tcp Service> - List of TCP ports in the service.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity.
- Udp
Services List<PiersKarsenbarg. Nutanix. Inputs. Get Service Groups V2Service Group Udp Service> - List of UDP ports in the service.
- Created
By string - created by.
- Description string
- A user defined annotation for an service Group.
- Ext
Id string - service group UUID.
- Icmp
Services []GetService Groups V2Service Group Icmp Service - Icmp Type Code List.
- Is
System boolDefined - Service Group is system defined or not.
- Links
[]Get
Service Groups V2Service Group 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
- A short identifier for an service Group.
- Policy
References []string - Reference to policy associated with Service Group.
- Tcp
Services []GetService Groups V2Service Group Tcp Service - List of TCP ports in the service.
- Tenant
Id string - A globally unique identifier that represents the tenant that owns this entity.
- Udp
Services []GetService Groups V2Service Group Udp Service - List of UDP ports in the service.
- created
By String - created by.
- description String
- A user defined annotation for an service Group.
- ext
Id String - service group UUID.
- icmp
Services List<GetService Groups V2Service Group Icmp Service> - Icmp Type Code List.
- is
System BooleanDefined - Service Group is system defined or not.
- links
List<Get
Service Groups V2Service Group 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
- A short identifier for an service Group.
- policy
References List<String> - Reference to policy associated with Service Group.
- tcp
Services List<GetService Groups V2Service Group Tcp Service> - List of TCP ports in the service.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity.
- udp
Services List<GetService Groups V2Service Group Udp Service> - List of UDP ports in the service.
- created
By string - created by.
- description string
- A user defined annotation for an service Group.
- ext
Id string - service group UUID.
- icmp
Services GetService Groups V2Service Group Icmp Service[] - Icmp Type Code List.
- is
System booleanDefined - Service Group is system defined or not.
- links
Get
Service Groups V2Service Group 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
- A short identifier for an service Group.
- policy
References string[] - Reference to policy associated with Service Group.
- tcp
Services GetService Groups V2Service Group Tcp Service[] - List of TCP ports in the service.
- tenant
Id string - A globally unique identifier that represents the tenant that owns this entity.
- udp
Services GetService Groups V2Service Group Udp Service[] - List of UDP ports in the service.
- created_
by str - created by.
- description str
- A user defined annotation for an service Group.
- ext_
id str - service group UUID.
- icmp_
services Sequence[GetService Groups V2Service Group Icmp Service] - Icmp Type Code List.
- is_
system_ booldefined - Service Group is system defined or not.
- links
Sequence[Get
Service Groups V2Service Group 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
- A short identifier for an service Group.
- policy_
references Sequence[str] - Reference to policy associated with Service Group.
- tcp_
services Sequence[GetService Groups V2Service Group Tcp Service] - List of TCP ports in the service.
- tenant_
id str - A globally unique identifier that represents the tenant that owns this entity.
- udp_
services Sequence[GetService Groups V2Service Group Udp Service] - List of UDP ports in the service.
- created
By String - created by.
- description String
- A user defined annotation for an service Group.
- ext
Id String - service group UUID.
- icmp
Services List<Property Map> - Icmp Type Code List.
- is
System BooleanDefined - Service Group is system defined 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.
- name String
- A short identifier for an service Group.
- policy
References List<String> - Reference to policy associated with Service Group.
- tcp
Services List<Property Map> - List of TCP ports in the service.
- tenant
Id String - A globally unique identifier that represents the tenant that owns this entity.
- udp
Services List<Property Map> - List of UDP ports in the service.
GetServiceGroupsV2ServiceGroupIcmpService
- Code int
- Icmp service Code. Ignore this field if Code has to be ANY
- Is
All boolAllowed - Set this field to true if both Type and Code is ANY.
- Type int
- Icmp service Type. Ignore this field if Type has to be ANY.
- Code int
- Icmp service Code. Ignore this field if Code has to be ANY
- Is
All boolAllowed - Set this field to true if both Type and Code is ANY.
- Type int
- Icmp service Type. Ignore this field if Type has to be ANY.
- code Integer
- Icmp service Code. Ignore this field if Code has to be ANY
- is
All BooleanAllowed - Set this field to true if both Type and Code is ANY.
- type Integer
- Icmp service Type. Ignore this field if Type has to be ANY.
- code number
- Icmp service Code. Ignore this field if Code has to be ANY
- is
All booleanAllowed - Set this field to true if both Type and Code is ANY.
- type number
- Icmp service Type. Ignore this field if Type has to be ANY.
- code int
- Icmp service Code. Ignore this field if Code has to be ANY
- is_
all_ boolallowed - Set this field to true if both Type and Code is ANY.
- type int
- Icmp service Type. Ignore this field if Type has to be ANY.
- code Number
- Icmp service Code. Ignore this field if Code has to be ANY
- is
All BooleanAllowed - Set this field to true if both Type and Code is ANY.
- type Number
- Icmp service Type. Ignore this field if Type has to be ANY.
GetServiceGroupsV2ServiceGroupLink
GetServiceGroupsV2ServiceGroupTcpService
- end_
port int - end port
- start_
port int - start port
GetServiceGroupsV2ServiceGroupUdpService
- end_
port int - end port
- start_
port int - start port
Package Details
- Repository
- nutanix pierskarsenbarg/pulumi-nutanix
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
nutanix
Terraform Provider.