1. Packages
  2. Google Cloud Native
  3. API Docs
  4. cloudidentity
  5. cloudidentity/v1beta1
  6. Membership

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.cloudidentity/v1beta1.Membership

Explore with Pulumi AI

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

Creates a Membership. Auto-naming is currently not supported for this resource.

Create Membership Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Membership(name: string, args: MembershipArgs, opts?: CustomResourceOptions);
@overload
def Membership(resource_name: str,
               args: MembershipArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def Membership(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               group_id: Optional[str] = None,
               preferred_member_key: Optional[EntityKeyArgs] = None,
               member_key: Optional[EntityKeyArgs] = None,
               roles: Optional[Sequence[MembershipRoleArgs]] = None)
func NewMembership(ctx *Context, name string, args MembershipArgs, opts ...ResourceOption) (*Membership, error)
public Membership(string name, MembershipArgs args, CustomResourceOptions? opts = null)
public Membership(String name, MembershipArgs args)
public Membership(String name, MembershipArgs args, CustomResourceOptions options)
type: google-native:cloudidentity/v1beta1:Membership
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. MembershipArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. MembershipArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. MembershipArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. MembershipArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MembershipArgs
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 google_nativeMembershipResource = new GoogleNative.CloudIdentity.V1Beta1.Membership("google-nativeMembershipResource", new()
{
    GroupId = "string",
    PreferredMemberKey = new GoogleNative.CloudIdentity.V1Beta1.Inputs.EntityKeyArgs
    {
        Id = "string",
        Namespace = "string",
    },
    MemberKey = new GoogleNative.CloudIdentity.V1Beta1.Inputs.EntityKeyArgs
    {
        Id = "string",
        Namespace = "string",
    },
    Roles = new[]
    {
        new GoogleNative.CloudIdentity.V1Beta1.Inputs.MembershipRoleArgs
        {
            ExpiryDetail = new GoogleNative.CloudIdentity.V1Beta1.Inputs.ExpiryDetailArgs
            {
                ExpireTime = "string",
            },
            Name = "string",
            RestrictionEvaluations = new GoogleNative.CloudIdentity.V1Beta1.Inputs.RestrictionEvaluationsArgs
            {
                MemberRestrictionEvaluation = null,
            },
        },
    },
});
Copy
example, err := cloudidentityv1beta1.NewMembership(ctx, "google-nativeMembershipResource", &cloudidentityv1beta1.MembershipArgs{
	GroupId: pulumi.String("string"),
	PreferredMemberKey: &cloudidentity.EntityKeyArgs{
		Id:        pulumi.String("string"),
		Namespace: pulumi.String("string"),
	},
	MemberKey: &cloudidentity.EntityKeyArgs{
		Id:        pulumi.String("string"),
		Namespace: pulumi.String("string"),
	},
	Roles: cloudidentity.MembershipRoleArray{
		&cloudidentity.MembershipRoleArgs{
			ExpiryDetail: &cloudidentity.ExpiryDetailArgs{
				ExpireTime: pulumi.String("string"),
			},
			Name: pulumi.String("string"),
			RestrictionEvaluations: &cloudidentity.RestrictionEvaluationsArgs{
				MemberRestrictionEvaluation: &cloudidentity.MembershipRoleRestrictionEvaluationArgs{},
			},
		},
	},
})
Copy
var google_nativeMembershipResource = new Membership("google-nativeMembershipResource", MembershipArgs.builder()
    .groupId("string")
    .preferredMemberKey(EntityKeyArgs.builder()
        .id("string")
        .namespace("string")
        .build())
    .memberKey(EntityKeyArgs.builder()
        .id("string")
        .namespace("string")
        .build())
    .roles(MembershipRoleArgs.builder()
        .expiryDetail(ExpiryDetailArgs.builder()
            .expireTime("string")
            .build())
        .name("string")
        .restrictionEvaluations(RestrictionEvaluationsArgs.builder()
            .memberRestrictionEvaluation()
            .build())
        .build())
    .build());
Copy
google_native_membership_resource = google_native.cloudidentity.v1beta1.Membership("google-nativeMembershipResource",
    group_id="string",
    preferred_member_key={
        "id": "string",
        "namespace": "string",
    },
    member_key={
        "id": "string",
        "namespace": "string",
    },
    roles=[{
        "expiry_detail": {
            "expire_time": "string",
        },
        "name": "string",
        "restriction_evaluations": {
            "member_restriction_evaluation": {},
        },
    }])
Copy
const google_nativeMembershipResource = new google_native.cloudidentity.v1beta1.Membership("google-nativeMembershipResource", {
    groupId: "string",
    preferredMemberKey: {
        id: "string",
        namespace: "string",
    },
    memberKey: {
        id: "string",
        namespace: "string",
    },
    roles: [{
        expiryDetail: {
            expireTime: "string",
        },
        name: "string",
        restrictionEvaluations: {
            memberRestrictionEvaluation: {},
        },
    }],
});
Copy
type: google-native:cloudidentity/v1beta1:Membership
properties:
    groupId: string
    memberKey:
        id: string
        namespace: string
    preferredMemberKey:
        id: string
        namespace: string
    roles:
        - expiryDetail:
            expireTime: string
          name: string
          restrictionEvaluations:
            memberRestrictionEvaluation: {}
Copy

Membership 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 Membership resource accepts the following input properties:

GroupId
This property is required.
Changes to this property will trigger replacement.
string
PreferredMemberKey This property is required. Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.EntityKey
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
MemberKey Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.EntityKey
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
Roles List<Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.MembershipRole>
The MembershipRoles that apply to the Membership. If unspecified, defaults to a single MembershipRole with name MEMBER. Must not contain duplicate MembershipRoles with the same name.
GroupId
This property is required.
Changes to this property will trigger replacement.
string
PreferredMemberKey This property is required. EntityKeyArgs
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
MemberKey EntityKeyArgs
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
Roles []MembershipRoleArgs
The MembershipRoles that apply to the Membership. If unspecified, defaults to a single MembershipRole with name MEMBER. Must not contain duplicate MembershipRoles with the same name.
groupId
This property is required.
Changes to this property will trigger replacement.
String
preferredMemberKey This property is required. EntityKey
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
memberKey EntityKey
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
roles List<MembershipRole>
The MembershipRoles that apply to the Membership. If unspecified, defaults to a single MembershipRole with name MEMBER. Must not contain duplicate MembershipRoles with the same name.
groupId
This property is required.
Changes to this property will trigger replacement.
string
preferredMemberKey This property is required. EntityKey
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
memberKey EntityKey
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
roles MembershipRole[]
The MembershipRoles that apply to the Membership. If unspecified, defaults to a single MembershipRole with name MEMBER. Must not contain duplicate MembershipRoles with the same name.
group_id
This property is required.
Changes to this property will trigger replacement.
str
preferred_member_key This property is required. EntityKeyArgs
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
member_key EntityKeyArgs
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
roles Sequence[MembershipRoleArgs]
The MembershipRoles that apply to the Membership. If unspecified, defaults to a single MembershipRole with name MEMBER. Must not contain duplicate MembershipRoles with the same name.
groupId
This property is required.
Changes to this property will trigger replacement.
String
preferredMemberKey This property is required. Property Map
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
memberKey Property Map
Immutable. The EntityKey of the member. Either member_key or preferred_member_key must be set when calling MembershipsService.CreateMembership but not both; both shall be set when returned.
roles List<Property Map>
The MembershipRoles that apply to the Membership. If unspecified, defaults to a single MembershipRole with name MEMBER. Must not contain duplicate MembershipRoles with the same name.

Outputs

All input properties are implicitly available as output properties. Additionally, the Membership resource produces the following output properties:

CreateTime string
The time when the Membership was created.
DeliverySetting string
Delivery setting associated with the membership.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name of the Membership. Shall be of the form groups/{group_id}/memberships/{membership_id}.
Type string
The type of the membership.
UpdateTime string
The time when the Membership was last updated.
CreateTime string
The time when the Membership was created.
DeliverySetting string
Delivery setting associated with the membership.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The resource name of the Membership. Shall be of the form groups/{group_id}/memberships/{membership_id}.
Type string
The type of the membership.
UpdateTime string
The time when the Membership was last updated.
createTime String
The time when the Membership was created.
deliverySetting String
Delivery setting associated with the membership.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name of the Membership. Shall be of the form groups/{group_id}/memberships/{membership_id}.
type String
The type of the membership.
updateTime String
The time when the Membership was last updated.
createTime string
The time when the Membership was created.
deliverySetting string
Delivery setting associated with the membership.
id string
The provider-assigned unique ID for this managed resource.
name string
The resource name of the Membership. Shall be of the form groups/{group_id}/memberships/{membership_id}.
type string
The type of the membership.
updateTime string
The time when the Membership was last updated.
create_time str
The time when the Membership was created.
delivery_setting str
Delivery setting associated with the membership.
id str
The provider-assigned unique ID for this managed resource.
name str
The resource name of the Membership. Shall be of the form groups/{group_id}/memberships/{membership_id}.
type str
The type of the membership.
update_time str
The time when the Membership was last updated.
createTime String
The time when the Membership was created.
deliverySetting String
Delivery setting associated with the membership.
id String
The provider-assigned unique ID for this managed resource.
name String
The resource name of the Membership. Shall be of the form groups/{group_id}/memberships/{membership_id}.
type String
The type of the membership.
updateTime String
The time when the Membership was last updated.

Supporting Types

EntityKey
, EntityKeyArgs

Id string
The ID of the entity. For Google-managed entities, the id must be the email address of an existing group or user. For external-identity-mapped entities, the id must be a string conforming to the Identity Source's requirements. Must be unique within a namespace.
Namespace string
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
Id string
The ID of the entity. For Google-managed entities, the id must be the email address of an existing group or user. For external-identity-mapped entities, the id must be a string conforming to the Identity Source's requirements. Must be unique within a namespace.
Namespace string
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
id String
The ID of the entity. For Google-managed entities, the id must be the email address of an existing group or user. For external-identity-mapped entities, the id must be a string conforming to the Identity Source's requirements. Must be unique within a namespace.
namespace String
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
id string
The ID of the entity. For Google-managed entities, the id must be the email address of an existing group or user. For external-identity-mapped entities, the id must be a string conforming to the Identity Source's requirements. Must be unique within a namespace.
namespace string
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
id str
The ID of the entity. For Google-managed entities, the id must be the email address of an existing group or user. For external-identity-mapped entities, the id must be a string conforming to the Identity Source's requirements. Must be unique within a namespace.
namespace str
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
id String
The ID of the entity. For Google-managed entities, the id must be the email address of an existing group or user. For external-identity-mapped entities, the id must be a string conforming to the Identity Source's requirements. Must be unique within a namespace.
namespace String
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.

EntityKeyResponse
, EntityKeyResponseArgs

Namespace This property is required. string
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
Namespace This property is required. string
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
namespace This property is required. String
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
namespace This property is required. string
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
namespace This property is required. str
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.
namespace This property is required. String
The namespace in which the entity exists. If not specified, the EntityKey represents a Google-managed entity such as a Google user or a Google Group. If specified, the EntityKey represents an external-identity-mapped group. The namespace must correspond to an identity source created in Admin Console and must be in the form of identitysources/{identity_source_id}.

ExpiryDetail
, ExpiryDetailArgs

ExpireTime string
The time at which the MembershipRole will expire.
ExpireTime string
The time at which the MembershipRole will expire.
expireTime String
The time at which the MembershipRole will expire.
expireTime string
The time at which the MembershipRole will expire.
expire_time str
The time at which the MembershipRole will expire.
expireTime String
The time at which the MembershipRole will expire.

ExpiryDetailResponse
, ExpiryDetailResponseArgs

ExpireTime This property is required. string
The time at which the MembershipRole will expire.
ExpireTime This property is required. string
The time at which the MembershipRole will expire.
expireTime This property is required. String
The time at which the MembershipRole will expire.
expireTime This property is required. string
The time at which the MembershipRole will expire.
expire_time This property is required. str
The time at which the MembershipRole will expire.
expireTime This property is required. String
The time at which the MembershipRole will expire.

MembershipRole
, MembershipRoleArgs

ExpiryDetail Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.ExpiryDetail
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
Name string
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
RestrictionEvaluations Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.RestrictionEvaluations
Evaluations of restrictions applied to parent group on this membership.
ExpiryDetail ExpiryDetail
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
Name string
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
RestrictionEvaluations RestrictionEvaluations
Evaluations of restrictions applied to parent group on this membership.
expiryDetail ExpiryDetail
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
name String
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
restrictionEvaluations RestrictionEvaluations
Evaluations of restrictions applied to parent group on this membership.
expiryDetail ExpiryDetail
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
name string
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
restrictionEvaluations RestrictionEvaluations
Evaluations of restrictions applied to parent group on this membership.
expiry_detail ExpiryDetail
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
name str
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
restriction_evaluations RestrictionEvaluations
Evaluations of restrictions applied to parent group on this membership.
expiryDetail Property Map
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
name String
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
restrictionEvaluations Property Map
Evaluations of restrictions applied to parent group on this membership.

MembershipRoleResponse
, MembershipRoleResponseArgs

ExpiryDetail This property is required. Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.ExpiryDetailResponse
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
Name This property is required. string
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
RestrictionEvaluations This property is required. Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.RestrictionEvaluationsResponse
Evaluations of restrictions applied to parent group on this membership.
ExpiryDetail This property is required. ExpiryDetailResponse
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
Name This property is required. string
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
RestrictionEvaluations This property is required. RestrictionEvaluationsResponse
Evaluations of restrictions applied to parent group on this membership.
expiryDetail This property is required. ExpiryDetailResponse
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
name This property is required. String
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
restrictionEvaluations This property is required. RestrictionEvaluationsResponse
Evaluations of restrictions applied to parent group on this membership.
expiryDetail This property is required. ExpiryDetailResponse
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
name This property is required. string
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
restrictionEvaluations This property is required. RestrictionEvaluationsResponse
Evaluations of restrictions applied to parent group on this membership.
expiry_detail This property is required. ExpiryDetailResponse
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
name This property is required. str
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
restriction_evaluations This property is required. RestrictionEvaluationsResponse
Evaluations of restrictions applied to parent group on this membership.
expiryDetail This property is required. Property Map
The expiry details of the MembershipRole. Expiry details are only supported for MEMBER MembershipRoles. May be set if name is MEMBER. Must not be set if name is any other value.
name This property is required. String
The name of the MembershipRole. Must be one of OWNER, MANAGER, MEMBER.
restrictionEvaluations This property is required. Property Map
Evaluations of restrictions applied to parent group on this membership.

MembershipRoleRestrictionEvaluationResponse
, MembershipRoleRestrictionEvaluationResponseArgs

State This property is required. string
The current state of the restriction
State This property is required. string
The current state of the restriction
state This property is required. String
The current state of the restriction
state This property is required. string
The current state of the restriction
state This property is required. str
The current state of the restriction
state This property is required. String
The current state of the restriction

RestrictionEvaluations
, RestrictionEvaluationsArgs

MemberRestrictionEvaluation Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.MembershipRoleRestrictionEvaluation
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
MemberRestrictionEvaluation MembershipRoleRestrictionEvaluation
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
memberRestrictionEvaluation MembershipRoleRestrictionEvaluation
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
memberRestrictionEvaluation MembershipRoleRestrictionEvaluation
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
member_restriction_evaluation MembershipRoleRestrictionEvaluation
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
memberRestrictionEvaluation Property Map
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.

RestrictionEvaluationsResponse
, RestrictionEvaluationsResponseArgs

MemberRestrictionEvaluation This property is required. Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.MembershipRoleRestrictionEvaluationResponse
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
MemberRestrictionEvaluation This property is required. MembershipRoleRestrictionEvaluationResponse
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
memberRestrictionEvaluation This property is required. MembershipRoleRestrictionEvaluationResponse
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
memberRestrictionEvaluation This property is required. MembershipRoleRestrictionEvaluationResponse
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
member_restriction_evaluation This property is required. MembershipRoleRestrictionEvaluationResponse
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
memberRestrictionEvaluation This property is required. Property Map
Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.

Package Details

Repository
Google Cloud Native pulumi/pulumi-google-native
License
Apache-2.0

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi