intersight.IamUserGroup
User Group provides a way to assign permissions to a group of users based on the IdP attributes received after authentication.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const iamPermission = config.require("iamPermission");
const idpMoid = config.require("idpMoid");
const iamUserGroup1 = new intersight.IamUserGroup("iamUserGroup1", {
idps: [{
moid: idpMoid,
objectType: "iam.Idp",
}],
permissions: [{
moid: iamPermission,
objectType: "iam.Permission",
classId: "iam.Permission",
}],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
iam_permission = config.require("iamPermission")
idp_moid = config.require("idpMoid")
iam_user_group1 = intersight.IamUserGroup("iamUserGroup1",
idps=[{
"moid": idp_moid,
"object_type": "iam.Idp",
}],
permissions=[{
"moid": iam_permission,
"object_type": "iam.Permission",
"class_id": "iam.Permission",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
iamPermission := cfg.Require("iamPermission")
idpMoid := cfg.Require("idpMoid")
_, err := intersight.NewIamUserGroup(ctx, "iamUserGroup1", &intersight.IamUserGroupArgs{
Idps: intersight.IamUserGroupIdpArray{
&intersight.IamUserGroupIdpArgs{
Moid: pulumi.String(idpMoid),
ObjectType: pulumi.String("iam.Idp"),
},
},
Permissions: intersight.IamUserGroupPermissionArray{
&intersight.IamUserGroupPermissionArgs{
Moid: pulumi.String(iamPermission),
ObjectType: pulumi.String("iam.Permission"),
ClassId: pulumi.String("iam.Permission"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var iamPermission = config.Require("iamPermission");
var idpMoid = config.Require("idpMoid");
var iamUserGroup1 = new Intersight.IamUserGroup("iamUserGroup1", new()
{
Idps = new[]
{
new Intersight.Inputs.IamUserGroupIdpArgs
{
Moid = idpMoid,
ObjectType = "iam.Idp",
},
},
Permissions = new[]
{
new Intersight.Inputs.IamUserGroupPermissionArgs
{
Moid = iamPermission,
ObjectType = "iam.Permission",
ClassId = "iam.Permission",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.IamUserGroup;
import com.pulumi.intersight.IamUserGroupArgs;
import com.pulumi.intersight.inputs.IamUserGroupIdpArgs;
import com.pulumi.intersight.inputs.IamUserGroupPermissionArgs;
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 config = ctx.config();
final var iamPermission = config.get("iamPermission");
final var idpMoid = config.get("idpMoid");
var iamUserGroup1 = new IamUserGroup("iamUserGroup1", IamUserGroupArgs.builder()
.idps(IamUserGroupIdpArgs.builder()
.moid(idpMoid)
.objectType("iam.Idp")
.build())
.permissions(IamUserGroupPermissionArgs.builder()
.moid(iamPermission)
.objectType("iam.Permission")
.classId("iam.Permission")
.build())
.build());
}
}
configuration:
iamPermission:
type: string
idpMoid:
type: string
resources:
iamUserGroup1:
type: intersight:IamUserGroup
properties:
idps:
- moid: ${idpMoid}
objectType: iam.Idp
permissions:
- moid: ${iamPermission}
objectType: iam.Permission
classId: iam.Permission
Create IamUserGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IamUserGroup(name: string, args?: IamUserGroupArgs, opts?: CustomResourceOptions);
@overload
def IamUserGroup(resource_name: str,
args: Optional[IamUserGroupArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def IamUserGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_activation_time: Optional[str] = None,
access_expiry_time: Optional[str] = None,
access_link: Optional[str] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[IamUserGroupAncestorArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
domain_group_moid: Optional[str] = None,
group_type: Optional[str] = None,
iam_user_group_id: Optional[str] = None,
idpreferences: Optional[Sequence[IamUserGroupIdpreferenceArgs]] = None,
idps: Optional[Sequence[IamUserGroupIdpArgs]] = None,
instruction: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[IamUserGroupParentArgs]] = None,
permission_resources: Optional[Sequence[IamUserGroupPermissionResourceArgs]] = None,
permissions: Optional[Sequence[IamUserGroupPermissionArgs]] = None,
qualifiers: Optional[Sequence[IamUserGroupQualifierArgs]] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[IamUserGroupTagArgs]] = None,
unique_reference_id: Optional[str] = None,
users: Optional[Sequence[IamUserGroupUserArgs]] = None,
version_contexts: Optional[Sequence[IamUserGroupVersionContextArgs]] = None)
func NewIamUserGroup(ctx *Context, name string, args *IamUserGroupArgs, opts ...ResourceOption) (*IamUserGroup, error)
public IamUserGroup(string name, IamUserGroupArgs? args = null, CustomResourceOptions? opts = null)
public IamUserGroup(String name, IamUserGroupArgs args)
public IamUserGroup(String name, IamUserGroupArgs args, CustomResourceOptions options)
type: intersight:IamUserGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args IamUserGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args IamUserGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args IamUserGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IamUserGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IamUserGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var iamUserGroupResource = new Intersight.IamUserGroup("iamUserGroupResource", new()
{
AccessActivationTime = "string",
AccessExpiryTime = "string",
AccessLink = "string",
AccountMoid = "string",
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.IamUserGroupAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ClassId = "string",
CreateTime = "string",
DomainGroupMoid = "string",
GroupType = "string",
IamUserGroupId = "string",
Idpreferences = new[]
{
new Intersight.Inputs.IamUserGroupIdpreferenceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Idps = new[]
{
new Intersight.Inputs.IamUserGroupIdpArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Instruction = "string",
ModTime = "string",
Moid = "string",
Name = "string",
ObjectType = "string",
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.IamUserGroupParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.IamUserGroupPermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Permissions = new[]
{
new Intersight.Inputs.IamUserGroupPermissionArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Qualifiers = new[]
{
new Intersight.Inputs.IamUserGroupQualifierArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
SharedScope = "string",
Tags = new[]
{
new Intersight.Inputs.IamUserGroupTagArgs
{
AdditionalProperties = "string",
AncestorDefinitions = new[]
{
new Intersight.Inputs.IamUserGroupTagAncestorDefinitionArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Definitions = new[]
{
new Intersight.Inputs.IamUserGroupTagDefinitionArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Key = "string",
Propagated = false,
Type = "string",
Value = "string",
},
},
UniqueReferenceId = "string",
Users = new[]
{
new Intersight.Inputs.IamUserGroupUserArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
VersionContexts = new[]
{
new Intersight.Inputs.IamUserGroupVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.IamUserGroupVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.IamUserGroupVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
});
example, err := intersight.NewIamUserGroup(ctx, "iamUserGroupResource", &intersight.IamUserGroupArgs{
AccessActivationTime: pulumi.String("string"),
AccessExpiryTime: pulumi.String("string"),
AccessLink: pulumi.String("string"),
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.IamUserGroupAncestorArray{
&intersight.IamUserGroupAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
GroupType: pulumi.String("string"),
IamUserGroupId: pulumi.String("string"),
Idpreferences: intersight.IamUserGroupIdpreferenceArray{
&intersight.IamUserGroupIdpreferenceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Idps: intersight.IamUserGroupIdpArray{
&intersight.IamUserGroupIdpArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Instruction: pulumi.String("string"),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: intersight.IamUserGroupParentArray{
&intersight.IamUserGroupParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.IamUserGroupPermissionResourceArray{
&intersight.IamUserGroupPermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Permissions: intersight.IamUserGroupPermissionArray{
&intersight.IamUserGroupPermissionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Qualifiers: intersight.IamUserGroupQualifierArray{
&intersight.IamUserGroupQualifierArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
SharedScope: pulumi.String("string"),
Tags: intersight.IamUserGroupTagArray{
&intersight.IamUserGroupTagArgs{
AdditionalProperties: pulumi.String("string"),
AncestorDefinitions: intersight.IamUserGroupTagAncestorDefinitionArray{
&intersight.IamUserGroupTagAncestorDefinitionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Definitions: intersight.IamUserGroupTagDefinitionArray{
&intersight.IamUserGroupTagDefinitionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Key: pulumi.String("string"),
Propagated: pulumi.Bool(false),
Type: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
UniqueReferenceId: pulumi.String("string"),
Users: intersight.IamUserGroupUserArray{
&intersight.IamUserGroupUserArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
VersionContexts: intersight.IamUserGroupVersionContextArray{
&intersight.IamUserGroupVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.IamUserGroupVersionContextInterestedMoArray{
&intersight.IamUserGroupVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: intersight.IamUserGroupVersionContextRefMoArray{
&intersight.IamUserGroupVersionContextRefMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Timestamp: pulumi.String("string"),
VersionType: pulumi.String("string"),
},
},
})
var iamUserGroupResource = new IamUserGroup("iamUserGroupResource", IamUserGroupArgs.builder()
.accessActivationTime("string")
.accessExpiryTime("string")
.accessLink("string")
.accountMoid("string")
.additionalProperties("string")
.ancestors(IamUserGroupAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.classId("string")
.createTime("string")
.domainGroupMoid("string")
.groupType("string")
.iamUserGroupId("string")
.idpreferences(IamUserGroupIdpreferenceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.idps(IamUserGroupIdpArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.instruction("string")
.modTime("string")
.moid("string")
.name("string")
.objectType("string")
.owners("string")
.parents(IamUserGroupParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(IamUserGroupPermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissions(IamUserGroupPermissionArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.qualifiers(IamUserGroupQualifierArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.sharedScope("string")
.tags(IamUserGroupTagArgs.builder()
.additionalProperties("string")
.ancestorDefinitions(IamUserGroupTagAncestorDefinitionArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.definitions(IamUserGroupTagDefinitionArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.key("string")
.propagated(false)
.type("string")
.value("string")
.build())
.uniqueReferenceId("string")
.users(IamUserGroupUserArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.versionContexts(IamUserGroupVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(IamUserGroupVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(IamUserGroupVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.build());
iam_user_group_resource = intersight.IamUserGroup("iamUserGroupResource",
access_activation_time="string",
access_expiry_time="string",
access_link="string",
account_moid="string",
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
class_id="string",
create_time="string",
domain_group_moid="string",
group_type="string",
iam_user_group_id="string",
idpreferences=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
idps=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
instruction="string",
mod_time="string",
moid="string",
name="string",
object_type="string",
owners=["string"],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
permissions=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
qualifiers=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
shared_scope="string",
tags=[{
"additional_properties": "string",
"ancestor_definitions": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"definitions": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"key": "string",
"propagated": False,
"type": "string",
"value": "string",
}],
unique_reference_id="string",
users=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
version_contexts=[{
"additional_properties": "string",
"class_id": "string",
"interested_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"marked_for_deletion": False,
"nr_version": "string",
"object_type": "string",
"ref_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"timestamp": "string",
"version_type": "string",
}])
const iamUserGroupResource = new intersight.IamUserGroup("iamUserGroupResource", {
accessActivationTime: "string",
accessExpiryTime: "string",
accessLink: "string",
accountMoid: "string",
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
classId: "string",
createTime: "string",
domainGroupMoid: "string",
groupType: "string",
iamUserGroupId: "string",
idpreferences: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
idps: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
instruction: "string",
modTime: "string",
moid: "string",
name: "string",
objectType: "string",
owners: ["string"],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
permissions: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
qualifiers: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
sharedScope: "string",
tags: [{
additionalProperties: "string",
ancestorDefinitions: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
definitions: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
key: "string",
propagated: false,
type: "string",
value: "string",
}],
uniqueReferenceId: "string",
users: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
versionContexts: [{
additionalProperties: "string",
classId: "string",
interestedMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
markedForDeletion: false,
nrVersion: "string",
objectType: "string",
refMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
timestamp: "string",
versionType: "string",
}],
});
type: intersight:IamUserGroup
properties:
accessActivationTime: string
accessExpiryTime: string
accessLink: string
accountMoid: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
classId: string
createTime: string
domainGroupMoid: string
groupType: string
iamUserGroupId: string
idpreferences:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
idps:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
instruction: string
modTime: string
moid: string
name: string
objectType: string
owners:
- string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
permissions:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
qualifiers:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
sharedScope: string
tags:
- additionalProperties: string
ancestorDefinitions:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
definitions:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
key: string
propagated: false
type: string
value: string
uniqueReferenceId: string
users:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
versionContexts:
- additionalProperties: string
classId: string
interestedMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
markedForDeletion: false
nrVersion: string
objectType: string
refMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
timestamp: string
versionType: string
IamUserGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The IamUserGroup resource accepts the following input properties:
- Access
Activation stringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- Access
Expiry stringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- Access
Link string - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Iam
User Group Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Group
Type string - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - Iam
User stringGroup Id - Idpreferences
List<Iam
User Group Idpreference> - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Idps
List<Iam
User Group Idp> - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Instruction string
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of the user group which the dynamic/or guest user belongs to.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Iam
User Group Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<IamUser Group Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Permissions
List<Iam
User Group Permission> - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- Qualifiers
List<Iam
User Group Qualifier> - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Iam
User Group Tag> - This complex property has following sub-properties:
- Unique
Reference stringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- Users
List<Iam
User Group User> - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- Version
Contexts List<IamUser Group Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Access
Activation stringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- Access
Expiry stringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- Access
Link string - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Iam
User Group Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Group
Type string - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - Iam
User stringGroup Id - Idpreferences
[]Iam
User Group Idpreference Args - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Idps
[]Iam
User Group Idp Args - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Instruction string
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of the user group which the dynamic/or guest user belongs to.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Iam
User Group Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []IamUser Group Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Permissions
[]Iam
User Group Permission Args - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- Qualifiers
[]Iam
User Group Qualifier Args - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- []Iam
User Group Tag Args - This complex property has following sub-properties:
- Unique
Reference stringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- Users
[]Iam
User Group User Args - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- Version
Contexts []IamUser Group Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Activation StringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- access
Expiry StringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- access
Link String - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Iam
User Group Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- group
Type String - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - iam
User StringGroup Id - idpreferences
List<Iam
User Group Idpreference> - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- idps
List<Iam
User Group Idp> - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- instruction String
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of the user group which the dynamic/or guest user belongs to.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Iam
User Group Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<IamUser Group Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- permissions
List<Iam
User Group Permission> - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- qualifiers
List<Iam
User Group Qualifier> - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Iam
User Group Tag> - This complex property has following sub-properties:
- unique
Reference StringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- users
List<Iam
User Group User> - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- version
Contexts List<IamUser Group Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Activation stringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- access
Expiry stringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- access
Link string - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Iam
User Group Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- group
Type string - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - iam
User stringGroup Id - idpreferences
Iam
User Group Idpreference[] - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- idps
Iam
User Group Idp[] - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- instruction string
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- The name of the user group which the dynamic/or guest user belongs to.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Iam
User Group Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources IamUser Group Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- permissions
Iam
User Group Permission[] - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- qualifiers
Iam
User Group Qualifier[] - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Iam
User Group Tag[] - This complex property has following sub-properties:
- unique
Reference stringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- users
Iam
User Group User[] - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- version
Contexts IamUser Group Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access_
activation_ strtime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- access_
expiry_ strtime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- access_
link str - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Iam
User Group Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- group_
type str - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - iam_
user_ strgroup_ id - idpreferences
Sequence[Iam
User Group Idpreference Args] - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- idps
Sequence[Iam
User Group Idp Args] - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- instruction str
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- The name of the user group which the dynamic/or guest user belongs to.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Iam
User Group Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[IamUser Group Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- permissions
Sequence[Iam
User Group Permission Args] - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- qualifiers
Sequence[Iam
User Group Qualifier Args] - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Sequence[Iam
User Group Tag Args] - This complex property has following sub-properties:
- unique_
reference_ strid - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- users
Sequence[Iam
User Group User Args] - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- version_
contexts Sequence[IamUser Group Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Activation StringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- access
Expiry StringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- access
Link String - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- group
Type String - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - iam
User StringGroup Id - idpreferences List<Property Map>
- A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- idps List<Property Map>
- A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- instruction String
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of the user group which the dynamic/or guest user belongs to.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- permissions List<Property Map>
- An array of relationships to iamPermission resources. This complex property has following sub-properties:
- qualifiers List<Property Map>
- A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Property Map>
- This complex property has following sub-properties:
- unique
Reference StringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- users List<Property Map>
- (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the IamUserGroup resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing IamUserGroup Resource
Get an existing IamUserGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: IamUserGroupState, opts?: CustomResourceOptions): IamUserGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_activation_time: Optional[str] = None,
access_expiry_time: Optional[str] = None,
access_link: Optional[str] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[IamUserGroupAncestorArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
domain_group_moid: Optional[str] = None,
group_type: Optional[str] = None,
iam_user_group_id: Optional[str] = None,
idpreferences: Optional[Sequence[IamUserGroupIdpreferenceArgs]] = None,
idps: Optional[Sequence[IamUserGroupIdpArgs]] = None,
instruction: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[IamUserGroupParentArgs]] = None,
permission_resources: Optional[Sequence[IamUserGroupPermissionResourceArgs]] = None,
permissions: Optional[Sequence[IamUserGroupPermissionArgs]] = None,
qualifiers: Optional[Sequence[IamUserGroupQualifierArgs]] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[IamUserGroupTagArgs]] = None,
unique_reference_id: Optional[str] = None,
users: Optional[Sequence[IamUserGroupUserArgs]] = None,
version_contexts: Optional[Sequence[IamUserGroupVersionContextArgs]] = None) -> IamUserGroup
func GetIamUserGroup(ctx *Context, name string, id IDInput, state *IamUserGroupState, opts ...ResourceOption) (*IamUserGroup, error)
public static IamUserGroup Get(string name, Input<string> id, IamUserGroupState? state, CustomResourceOptions? opts = null)
public static IamUserGroup get(String name, Output<String> id, IamUserGroupState state, CustomResourceOptions options)
resources: _: type: intersight:IamUserGroup get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Activation stringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- Access
Expiry stringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- Access
Link string - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Iam
User Group Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Group
Type string - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - Iam
User stringGroup Id - Idpreferences
List<Iam
User Group Idpreference> - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Idps
List<Iam
User Group Idp> - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Instruction string
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of the user group which the dynamic/or guest user belongs to.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Iam
User Group Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<IamUser Group Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Permissions
List<Iam
User Group Permission> - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- Qualifiers
List<Iam
User Group Qualifier> - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Iam
User Group Tag> - This complex property has following sub-properties:
- Unique
Reference stringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- Users
List<Iam
User Group User> - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- Version
Contexts List<IamUser Group Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Access
Activation stringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- Access
Expiry stringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- Access
Link string - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Iam
User Group Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Group
Type string - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - Iam
User stringGroup Id - Idpreferences
[]Iam
User Group Idpreference Args - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Idps
[]Iam
User Group Idp Args - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Instruction string
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of the user group which the dynamic/or guest user belongs to.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Iam
User Group Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []IamUser Group Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Permissions
[]Iam
User Group Permission Args - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- Qualifiers
[]Iam
User Group Qualifier Args - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- []Iam
User Group Tag Args - This complex property has following sub-properties:
- Unique
Reference stringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- Users
[]Iam
User Group User Args - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- Version
Contexts []IamUser Group Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Activation StringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- access
Expiry StringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- access
Link String - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Iam
User Group Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- group
Type String - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - iam
User StringGroup Id - idpreferences
List<Iam
User Group Idpreference> - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- idps
List<Iam
User Group Idp> - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- instruction String
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of the user group which the dynamic/or guest user belongs to.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Iam
User Group Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<IamUser Group Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- permissions
List<Iam
User Group Permission> - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- qualifiers
List<Iam
User Group Qualifier> - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Iam
User Group Tag> - This complex property has following sub-properties:
- unique
Reference StringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- users
List<Iam
User Group User> - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- version
Contexts List<IamUser Group Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Activation stringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- access
Expiry stringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- access
Link string - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Iam
User Group Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- group
Type string - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - iam
User stringGroup Id - idpreferences
Iam
User Group Idpreference[] - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- idps
Iam
User Group Idp[] - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- instruction string
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- The name of the user group which the dynamic/or guest user belongs to.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Iam
User Group Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources IamUser Group Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- permissions
Iam
User Group Permission[] - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- qualifiers
Iam
User Group Qualifier[] - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Iam
User Group Tag[] - This complex property has following sub-properties:
- unique
Reference stringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- users
Iam
User Group User[] - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- version
Contexts IamUser Group Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access_
activation_ strtime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- access_
expiry_ strtime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- access_
link str - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Iam
User Group Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- group_
type str - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - iam_
user_ strgroup_ id - idpreferences
Sequence[Iam
User Group Idpreference Args] - A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- idps
Sequence[Iam
User Group Idp Args] - A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- instruction str
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- The name of the user group which the dynamic/or guest user belongs to.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Iam
User Group Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[IamUser Group Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- permissions
Sequence[Iam
User Group Permission Args] - An array of relationships to iamPermission resources. This complex property has following sub-properties:
- qualifiers
Sequence[Iam
User Group Qualifier Args] - A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Sequence[Iam
User Group Tag Args] - This complex property has following sub-properties:
- unique_
reference_ strid - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- users
Sequence[Iam
User Group User Args] - (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- version_
contexts Sequence[IamUser Group Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Activation StringTime - AccessActivationTime indicates the activation time for the guest user's access to the Account. Before this time, if guest user tries to login to the account, access the account will be denied.
- access
Expiry StringTime - AccessExpiryTime indicates the expiration time for the guest user's access to the Account. Its value can only be assigned a date that falls within the range determined by the maximum expiration time configured for the API entries. The AccessExpiry date can be edited to be earlier or later.
- access
Link String - (ReadOnly) AccessLink using which the guest user uses to log in to Intersight.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- group
Type String - Group type determines the type of groups that is being associated with users. By default, Default User group will be used for associating dynamic user login. If the value of the User Group is set to guest, then this type of user group will be used for guest user login.*
Default
- Default User Group Type used for dynamic users login.*Guest
- Guest User Group type used for guest users login. - iam
User StringGroup Id - idpreferences List<Property Map>
- A reference to a iamIdpReference resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- idps List<Property Map>
- A reference to a iamIdp resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- instruction String
- Instruction property holds detailed guidance and information intended for individuals accessing the system as guest users. It holds the information to assist guests in navigating the platform, understanding policies, and performing necessary actions to ensure a seamless and secure user experience.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of the user group which the dynamic/or guest user belongs to.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- permissions List<Property Map>
- An array of relationships to iamPermission resources. This complex property has following sub-properties:
- qualifiers List<Property Map>
- A reference to a iamAbstractQualifier resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Property Map>
- This complex property has following sub-properties:
- unique
Reference StringId - (ReadOnly) A random mixed character string which is unique per user groups. UniqueReferenceId is used as key for identifying the guest user groups.
- users List<Property Map>
- (ReadOnly) An array of relationships to iamUser resources. This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
IamUserGroupAncestor, IamUserGroupAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupIdp, IamUserGroupIdpArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupIdpreference, IamUserGroupIdpreferenceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupParent, IamUserGroupParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupPermission, IamUserGroupPermissionArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupPermissionResource, IamUserGroupPermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupQualifier, IamUserGroupQualifierArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupTag, IamUserGroupTagArgs
- Additional
Properties string - Ancestor
Definitions List<IamUser Group Tag Ancestor Definition> - This complex property has following sub-properties:
- Definitions
List<Iam
User Group Tag Definition> - (ReadOnly) The definition is a reference to the tag definition object.The tag definition object contains the properties of the tag such as name, type, and description. This complex property has following sub-properties:
- Key string
- The string representation of a tag key.
- Propagated bool
- (ReadOnly) Propagated is a boolean flag that indicates whether the tag is propagated to the related managed objects.
- Type string
- (ReadOnly) An enum type that defines the type of tag. Supported values are 'pathtag' and 'keyvalue'.*
KeyValue
- KeyValue type of tag. Key is required for these tags. Value is optional.*PathTag
- Key contain path information. Value is not present for these tags. The path is created by using the '/' character as a delimiter.For example, if the tag is \ A/B/C\ , then \ A\ is the parent tag, \ B\ is the child tag of \ A\ and \ C\ is the child tag of \ B\ . - Value string
- The string representation of a tag value.
- Additional
Properties string - Ancestor
Definitions []IamUser Group Tag Ancestor Definition - This complex property has following sub-properties:
- Definitions
[]Iam
User Group Tag Definition - (ReadOnly) The definition is a reference to the tag definition object.The tag definition object contains the properties of the tag such as name, type, and description. This complex property has following sub-properties:
- Key string
- The string representation of a tag key.
- Propagated bool
- (ReadOnly) Propagated is a boolean flag that indicates whether the tag is propagated to the related managed objects.
- Type string
- (ReadOnly) An enum type that defines the type of tag. Supported values are 'pathtag' and 'keyvalue'.*
KeyValue
- KeyValue type of tag. Key is required for these tags. Value is optional.*PathTag
- Key contain path information. Value is not present for these tags. The path is created by using the '/' character as a delimiter.For example, if the tag is \ A/B/C\ , then \ A\ is the parent tag, \ B\ is the child tag of \ A\ and \ C\ is the child tag of \ B\ . - Value string
- The string representation of a tag value.
- additional
Properties String - ancestor
Definitions List<IamUser Group Tag Ancestor Definition> - This complex property has following sub-properties:
- definitions
List<Iam
User Group Tag Definition> - (ReadOnly) The definition is a reference to the tag definition object.The tag definition object contains the properties of the tag such as name, type, and description. This complex property has following sub-properties:
- key String
- The string representation of a tag key.
- propagated Boolean
- (ReadOnly) Propagated is a boolean flag that indicates whether the tag is propagated to the related managed objects.
- type String
- (ReadOnly) An enum type that defines the type of tag. Supported values are 'pathtag' and 'keyvalue'.*
KeyValue
- KeyValue type of tag. Key is required for these tags. Value is optional.*PathTag
- Key contain path information. Value is not present for these tags. The path is created by using the '/' character as a delimiter.For example, if the tag is \ A/B/C\ , then \ A\ is the parent tag, \ B\ is the child tag of \ A\ and \ C\ is the child tag of \ B\ . - value String
- The string representation of a tag value.
- additional
Properties string - ancestor
Definitions IamUser Group Tag Ancestor Definition[] - This complex property has following sub-properties:
- definitions
Iam
User Group Tag Definition[] - (ReadOnly) The definition is a reference to the tag definition object.The tag definition object contains the properties of the tag such as name, type, and description. This complex property has following sub-properties:
- key string
- The string representation of a tag key.
- propagated boolean
- (ReadOnly) Propagated is a boolean flag that indicates whether the tag is propagated to the related managed objects.
- type string
- (ReadOnly) An enum type that defines the type of tag. Supported values are 'pathtag' and 'keyvalue'.*
KeyValue
- KeyValue type of tag. Key is required for these tags. Value is optional.*PathTag
- Key contain path information. Value is not present for these tags. The path is created by using the '/' character as a delimiter.For example, if the tag is \ A/B/C\ , then \ A\ is the parent tag, \ B\ is the child tag of \ A\ and \ C\ is the child tag of \ B\ . - value string
- The string representation of a tag value.
- additional_
properties str - ancestor_
definitions Sequence[IamUser Group Tag Ancestor Definition] - This complex property has following sub-properties:
- definitions
Sequence[Iam
User Group Tag Definition] - (ReadOnly) The definition is a reference to the tag definition object.The tag definition object contains the properties of the tag such as name, type, and description. This complex property has following sub-properties:
- key str
- The string representation of a tag key.
- propagated bool
- (ReadOnly) Propagated is a boolean flag that indicates whether the tag is propagated to the related managed objects.
- type str
- (ReadOnly) An enum type that defines the type of tag. Supported values are 'pathtag' and 'keyvalue'.*
KeyValue
- KeyValue type of tag. Key is required for these tags. Value is optional.*PathTag
- Key contain path information. Value is not present for these tags. The path is created by using the '/' character as a delimiter.For example, if the tag is \ A/B/C\ , then \ A\ is the parent tag, \ B\ is the child tag of \ A\ and \ C\ is the child tag of \ B\ . - value str
- The string representation of a tag value.
- additional
Properties String - ancestor
Definitions List<Property Map> - This complex property has following sub-properties:
- definitions List<Property Map>
- (ReadOnly) The definition is a reference to the tag definition object.The tag definition object contains the properties of the tag such as name, type, and description. This complex property has following sub-properties:
- key String
- The string representation of a tag key.
- propagated Boolean
- (ReadOnly) Propagated is a boolean flag that indicates whether the tag is propagated to the related managed objects.
- type String
- (ReadOnly) An enum type that defines the type of tag. Supported values are 'pathtag' and 'keyvalue'.*
KeyValue
- KeyValue type of tag. Key is required for these tags. Value is optional.*PathTag
- Key contain path information. Value is not present for these tags. The path is created by using the '/' character as a delimiter.For example, if the tag is \ A/B/C\ , then \ A\ is the parent tag, \ B\ is the child tag of \ A\ and \ C\ is the child tag of \ B\ . - value String
- The string representation of a tag value.
IamUserGroupTagAncestorDefinition, IamUserGroupTagAncestorDefinitionArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupTagDefinition, IamUserGroupTagDefinitionArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupUser, IamUserGroupUserArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupVersionContext, IamUserGroupVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<IamUser Group Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<IamUser Group Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []IamUser Group Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []IamUser Group Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<IamUser Group Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<IamUser Group Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos IamUser Group Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos IamUser Group Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[IamUser Group Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[IamUser Group Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
IamUserGroupVersionContextInterestedMo, IamUserGroupVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
IamUserGroupVersionContextRefMo, IamUserGroupVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_iam_user_group
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/iamUserGroup:IamUserGroup example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the
intersight
Terraform Provider.