v1

package
v0.17.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 17, 2022 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// Default value (not valid)
	DynamicGroupQueryResourceTypeResourceTypeUnspecified = DynamicGroupQueryResourceType("RESOURCE_TYPE_UNSPECIFIED")
	// For queries on User
	DynamicGroupQueryResourceTypeUser = DynamicGroupQueryResourceType("USER")
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Device

type Device struct {
	pulumi.CustomResourceState

	// Attributes specific to Android devices.
	AndroidSpecificAttributes GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput `pulumi:"androidSpecificAttributes"`
	// Asset tag of the device.
	AssetTag pulumi.StringOutput `pulumi:"assetTag"`
	// Baseband version of the device.
	BasebandVersion pulumi.StringOutput `pulumi:"basebandVersion"`
	// Device bootloader version. Example: 0.6.7.
	BootloaderVersion pulumi.StringOutput `pulumi:"bootloaderVersion"`
	// Device brand. Example: Samsung.
	Brand pulumi.StringOutput `pulumi:"brand"`
	// Build number of the device.
	BuildNumber pulumi.StringOutput `pulumi:"buildNumber"`
	// Represents whether the Device is compromised.
	CompromisedState pulumi.StringOutput `pulumi:"compromisedState"`
	// When the Company-Owned device was imported. This field is empty for BYOD devices.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// Type of device.
	DeviceType pulumi.StringOutput `pulumi:"deviceType"`
	// Whether developer options is enabled on device.
	EnabledDeveloperOptions pulumi.BoolOutput `pulumi:"enabledDeveloperOptions"`
	// Whether USB debugging is enabled on device.
	EnabledUsbDebugging pulumi.BoolOutput `pulumi:"enabledUsbDebugging"`
	// Device encryption state.
	EncryptionState pulumi.StringOutput `pulumi:"encryptionState"`
	// IMEI number of device if GSM device; empty otherwise.
	Imei pulumi.StringOutput `pulumi:"imei"`
	// Kernel version of the device.
	KernelVersion pulumi.StringOutput `pulumi:"kernelVersion"`
	// Most recent time when device synced with this service.
	LastSyncTime pulumi.StringOutput `pulumi:"lastSyncTime"`
	// Management state of the device
	ManagementState pulumi.StringOutput `pulumi:"managementState"`
	// Device manufacturer. Example: Motorola.
	Manufacturer pulumi.StringOutput `pulumi:"manufacturer"`
	// MEID number of device if CDMA device; empty otherwise.
	Meid pulumi.StringOutput `pulumi:"meid"`
	// Model name of device. Example: Pixel 3.
	Model pulumi.StringOutput `pulumi:"model"`
	// [Resource name](https://cloud.google.com/apis/design/resource_names) of the Device in format: `devices/{device}`, where device is the unique id assigned to the Device.
	Name pulumi.StringOutput `pulumi:"name"`
	// Mobile or network operator of device, if available.
	NetworkOperator pulumi.StringOutput `pulumi:"networkOperator"`
	// OS version of the device. Example: Android 8.1.0.
	OsVersion pulumi.StringOutput `pulumi:"osVersion"`
	// Domain name for Google accounts on device. Type for other accounts on device. On Android, will only be populated if |ownership_privilege| is |PROFILE_OWNER| or |DEVICE_OWNER|. Does not include the account signed in to the device policy app if that account's domain has only one account. Examples: "com.example", "xyz.com".
	OtherAccounts pulumi.StringArrayOutput `pulumi:"otherAccounts"`
	// Whether the device is owned by the company or an individual
	OwnerType pulumi.StringOutput `pulumi:"ownerType"`
	// OS release version. Example: 6.0.
	ReleaseVersion pulumi.StringOutput `pulumi:"releaseVersion"`
	// OS security patch update time on device.
	SecurityPatchTime pulumi.StringOutput `pulumi:"securityPatchTime"`
	// Serial Number of device. Example: HT82V1A01076.
	SerialNumber pulumi.StringOutput `pulumi:"serialNumber"`
	// WiFi MAC addresses of device.
	WifiMacAddresses pulumi.StringArrayOutput `pulumi:"wifiMacAddresses"`
}

Creates a device. Only company-owned device may be created. **Note**: This method is available only to customers who have one of the following SKUs: Enterprise Standard, Enterprise Plus, Enterprise for Education, and Cloud Identity Premium Auto-naming is currently not supported for this resource.

func GetDevice

func GetDevice(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *DeviceState, opts ...pulumi.ResourceOption) (*Device, error)

GetDevice gets an existing Device resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewDevice

func NewDevice(ctx *pulumi.Context,
	name string, args *DeviceArgs, opts ...pulumi.ResourceOption) (*Device, error)

NewDevice registers a new resource with the given unique name, arguments, and options.

func (*Device) ElementType

func (*Device) ElementType() reflect.Type

func (*Device) ToDeviceOutput

func (i *Device) ToDeviceOutput() DeviceOutput

func (*Device) ToDeviceOutputWithContext

func (i *Device) ToDeviceOutputWithContext(ctx context.Context) DeviceOutput

type DeviceArgs

type DeviceArgs struct {
	// Asset tag of the device.
	AssetTag pulumi.StringPtrInput
	// Optional. [Resource name](https://cloud.google.com/apis/design/resource_names) of the customer. If you're using this API for your own organization, use `customers/my_customer` If you're using this API to manage another organization, use `customers/{customer}`, where customer is the customer to whom the device belongs.
	Customer pulumi.StringPtrInput
	// Most recent time when device synced with this service.
	LastSyncTime pulumi.StringPtrInput
	// Serial Number of device. Example: HT82V1A01076.
	SerialNumber pulumi.StringPtrInput
	// WiFi MAC addresses of device.
	WifiMacAddresses pulumi.StringArrayInput
}

The set of arguments for constructing a Device resource.

func (DeviceArgs) ElementType

func (DeviceArgs) ElementType() reflect.Type

type DeviceInput

type DeviceInput interface {
	pulumi.Input

	ToDeviceOutput() DeviceOutput
	ToDeviceOutputWithContext(ctx context.Context) DeviceOutput
}

type DeviceOutput

type DeviceOutput struct{ *pulumi.OutputState }

func (DeviceOutput) ElementType

func (DeviceOutput) ElementType() reflect.Type

func (DeviceOutput) ToDeviceOutput

func (o DeviceOutput) ToDeviceOutput() DeviceOutput

func (DeviceOutput) ToDeviceOutputWithContext

func (o DeviceOutput) ToDeviceOutputWithContext(ctx context.Context) DeviceOutput

type DeviceState

type DeviceState struct {
}

func (DeviceState) ElementType

func (DeviceState) ElementType() reflect.Type

type DynamicGroupMetadata

type DynamicGroupMetadata struct {
	// Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups.
	Queries []DynamicGroupQuery `pulumi:"queries"`
}

Dynamic group metadata like queries and status.

type DynamicGroupMetadataArgs

type DynamicGroupMetadataArgs struct {
	// Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups.
	Queries DynamicGroupQueryArrayInput `pulumi:"queries"`
}

Dynamic group metadata like queries and status.

func (DynamicGroupMetadataArgs) ElementType

func (DynamicGroupMetadataArgs) ElementType() reflect.Type

func (DynamicGroupMetadataArgs) ToDynamicGroupMetadataOutput

func (i DynamicGroupMetadataArgs) ToDynamicGroupMetadataOutput() DynamicGroupMetadataOutput

func (DynamicGroupMetadataArgs) ToDynamicGroupMetadataOutputWithContext

func (i DynamicGroupMetadataArgs) ToDynamicGroupMetadataOutputWithContext(ctx context.Context) DynamicGroupMetadataOutput

func (DynamicGroupMetadataArgs) ToDynamicGroupMetadataPtrOutput

func (i DynamicGroupMetadataArgs) ToDynamicGroupMetadataPtrOutput() DynamicGroupMetadataPtrOutput

func (DynamicGroupMetadataArgs) ToDynamicGroupMetadataPtrOutputWithContext

func (i DynamicGroupMetadataArgs) ToDynamicGroupMetadataPtrOutputWithContext(ctx context.Context) DynamicGroupMetadataPtrOutput

type DynamicGroupMetadataInput

type DynamicGroupMetadataInput interface {
	pulumi.Input

	ToDynamicGroupMetadataOutput() DynamicGroupMetadataOutput
	ToDynamicGroupMetadataOutputWithContext(context.Context) DynamicGroupMetadataOutput
}

DynamicGroupMetadataInput is an input type that accepts DynamicGroupMetadataArgs and DynamicGroupMetadataOutput values. You can construct a concrete instance of `DynamicGroupMetadataInput` via:

DynamicGroupMetadataArgs{...}

type DynamicGroupMetadataOutput

type DynamicGroupMetadataOutput struct{ *pulumi.OutputState }

Dynamic group metadata like queries and status.

func (DynamicGroupMetadataOutput) ElementType

func (DynamicGroupMetadataOutput) ElementType() reflect.Type

func (DynamicGroupMetadataOutput) Queries

Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups.

func (DynamicGroupMetadataOutput) ToDynamicGroupMetadataOutput

func (o DynamicGroupMetadataOutput) ToDynamicGroupMetadataOutput() DynamicGroupMetadataOutput

func (DynamicGroupMetadataOutput) ToDynamicGroupMetadataOutputWithContext

func (o DynamicGroupMetadataOutput) ToDynamicGroupMetadataOutputWithContext(ctx context.Context) DynamicGroupMetadataOutput

func (DynamicGroupMetadataOutput) ToDynamicGroupMetadataPtrOutput

func (o DynamicGroupMetadataOutput) ToDynamicGroupMetadataPtrOutput() DynamicGroupMetadataPtrOutput

func (DynamicGroupMetadataOutput) ToDynamicGroupMetadataPtrOutputWithContext

func (o DynamicGroupMetadataOutput) ToDynamicGroupMetadataPtrOutputWithContext(ctx context.Context) DynamicGroupMetadataPtrOutput

type DynamicGroupMetadataPtrInput

type DynamicGroupMetadataPtrInput interface {
	pulumi.Input

	ToDynamicGroupMetadataPtrOutput() DynamicGroupMetadataPtrOutput
	ToDynamicGroupMetadataPtrOutputWithContext(context.Context) DynamicGroupMetadataPtrOutput
}

DynamicGroupMetadataPtrInput is an input type that accepts DynamicGroupMetadataArgs, DynamicGroupMetadataPtr and DynamicGroupMetadataPtrOutput values. You can construct a concrete instance of `DynamicGroupMetadataPtrInput` via:

        DynamicGroupMetadataArgs{...}

or:

        nil

type DynamicGroupMetadataPtrOutput

type DynamicGroupMetadataPtrOutput struct{ *pulumi.OutputState }

func (DynamicGroupMetadataPtrOutput) Elem

func (DynamicGroupMetadataPtrOutput) ElementType

func (DynamicGroupMetadataPtrOutput) Queries

Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups.

func (DynamicGroupMetadataPtrOutput) ToDynamicGroupMetadataPtrOutput

func (o DynamicGroupMetadataPtrOutput) ToDynamicGroupMetadataPtrOutput() DynamicGroupMetadataPtrOutput

func (DynamicGroupMetadataPtrOutput) ToDynamicGroupMetadataPtrOutputWithContext

func (o DynamicGroupMetadataPtrOutput) ToDynamicGroupMetadataPtrOutputWithContext(ctx context.Context) DynamicGroupMetadataPtrOutput

type DynamicGroupMetadataResponse

type DynamicGroupMetadataResponse struct {
	// Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups.
	Queries []DynamicGroupQueryResponse `pulumi:"queries"`
	// Status of the dynamic group.
	Status DynamicGroupStatusResponse `pulumi:"status"`
}

Dynamic group metadata like queries and status.

type DynamicGroupMetadataResponseOutput

type DynamicGroupMetadataResponseOutput struct{ *pulumi.OutputState }

Dynamic group metadata like queries and status.

func (DynamicGroupMetadataResponseOutput) ElementType

func (DynamicGroupMetadataResponseOutput) Queries

Memberships will be the union of all queries. Only one entry with USER resource is currently supported. Customers can create up to 100 dynamic groups.

func (DynamicGroupMetadataResponseOutput) Status

Status of the dynamic group.

func (DynamicGroupMetadataResponseOutput) ToDynamicGroupMetadataResponseOutput

func (o DynamicGroupMetadataResponseOutput) ToDynamicGroupMetadataResponseOutput() DynamicGroupMetadataResponseOutput

func (DynamicGroupMetadataResponseOutput) ToDynamicGroupMetadataResponseOutputWithContext

func (o DynamicGroupMetadataResponseOutput) ToDynamicGroupMetadataResponseOutputWithContext(ctx context.Context) DynamicGroupMetadataResponseOutput

type DynamicGroupQuery

type DynamicGroupQuery struct {
	// Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')` All users with any variation of the name John Doe (case-insensitive queries add `equalsIgnoreCase()` to the value being queried). `user.name.value.equalsIgnoreCase('jOhn DoE')`
	Query *string `pulumi:"query"`
	// Resource type for the Dynamic Group Query
	ResourceType *DynamicGroupQueryResourceType `pulumi:"resourceType"`
}

Defines a query on a resource.

type DynamicGroupQueryArgs

type DynamicGroupQueryArgs struct {
	// Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')` All users with any variation of the name John Doe (case-insensitive queries add `equalsIgnoreCase()` to the value being queried). `user.name.value.equalsIgnoreCase('jOhn DoE')`
	Query pulumi.StringPtrInput `pulumi:"query"`
	// Resource type for the Dynamic Group Query
	ResourceType DynamicGroupQueryResourceTypePtrInput `pulumi:"resourceType"`
}

Defines a query on a resource.

func (DynamicGroupQueryArgs) ElementType

func (DynamicGroupQueryArgs) ElementType() reflect.Type

func (DynamicGroupQueryArgs) ToDynamicGroupQueryOutput

func (i DynamicGroupQueryArgs) ToDynamicGroupQueryOutput() DynamicGroupQueryOutput

func (DynamicGroupQueryArgs) ToDynamicGroupQueryOutputWithContext

func (i DynamicGroupQueryArgs) ToDynamicGroupQueryOutputWithContext(ctx context.Context) DynamicGroupQueryOutput

type DynamicGroupQueryArray

type DynamicGroupQueryArray []DynamicGroupQueryInput

func (DynamicGroupQueryArray) ElementType

func (DynamicGroupQueryArray) ElementType() reflect.Type

func (DynamicGroupQueryArray) ToDynamicGroupQueryArrayOutput

func (i DynamicGroupQueryArray) ToDynamicGroupQueryArrayOutput() DynamicGroupQueryArrayOutput

func (DynamicGroupQueryArray) ToDynamicGroupQueryArrayOutputWithContext

func (i DynamicGroupQueryArray) ToDynamicGroupQueryArrayOutputWithContext(ctx context.Context) DynamicGroupQueryArrayOutput

type DynamicGroupQueryArrayInput

type DynamicGroupQueryArrayInput interface {
	pulumi.Input

	ToDynamicGroupQueryArrayOutput() DynamicGroupQueryArrayOutput
	ToDynamicGroupQueryArrayOutputWithContext(context.Context) DynamicGroupQueryArrayOutput
}

DynamicGroupQueryArrayInput is an input type that accepts DynamicGroupQueryArray and DynamicGroupQueryArrayOutput values. You can construct a concrete instance of `DynamicGroupQueryArrayInput` via:

DynamicGroupQueryArray{ DynamicGroupQueryArgs{...} }

type DynamicGroupQueryArrayOutput

type DynamicGroupQueryArrayOutput struct{ *pulumi.OutputState }

func (DynamicGroupQueryArrayOutput) ElementType

func (DynamicGroupQueryArrayOutput) Index

func (DynamicGroupQueryArrayOutput) ToDynamicGroupQueryArrayOutput

func (o DynamicGroupQueryArrayOutput) ToDynamicGroupQueryArrayOutput() DynamicGroupQueryArrayOutput

func (DynamicGroupQueryArrayOutput) ToDynamicGroupQueryArrayOutputWithContext

func (o DynamicGroupQueryArrayOutput) ToDynamicGroupQueryArrayOutputWithContext(ctx context.Context) DynamicGroupQueryArrayOutput

type DynamicGroupQueryInput

type DynamicGroupQueryInput interface {
	pulumi.Input

	ToDynamicGroupQueryOutput() DynamicGroupQueryOutput
	ToDynamicGroupQueryOutputWithContext(context.Context) DynamicGroupQueryOutput
}

DynamicGroupQueryInput is an input type that accepts DynamicGroupQueryArgs and DynamicGroupQueryOutput values. You can construct a concrete instance of `DynamicGroupQueryInput` via:

DynamicGroupQueryArgs{...}

type DynamicGroupQueryOutput

type DynamicGroupQueryOutput struct{ *pulumi.OutputState }

Defines a query on a resource.

func (DynamicGroupQueryOutput) ElementType

func (DynamicGroupQueryOutput) ElementType() reflect.Type

func (DynamicGroupQueryOutput) Query

Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')` All users with any variation of the name John Doe (case-insensitive queries add `equalsIgnoreCase()` to the value being queried). `user.name.value.equalsIgnoreCase('jOhn DoE')`

func (DynamicGroupQueryOutput) ResourceType

Resource type for the Dynamic Group Query

func (DynamicGroupQueryOutput) ToDynamicGroupQueryOutput

func (o DynamicGroupQueryOutput) ToDynamicGroupQueryOutput() DynamicGroupQueryOutput

func (DynamicGroupQueryOutput) ToDynamicGroupQueryOutputWithContext

func (o DynamicGroupQueryOutput) ToDynamicGroupQueryOutputWithContext(ctx context.Context) DynamicGroupQueryOutput

type DynamicGroupQueryResourceType added in v0.4.0

type DynamicGroupQueryResourceType string

Resource type for the Dynamic Group Query

func (DynamicGroupQueryResourceType) ElementType added in v0.4.0

func (DynamicGroupQueryResourceType) ToDynamicGroupQueryResourceTypeOutput added in v0.6.0

func (e DynamicGroupQueryResourceType) ToDynamicGroupQueryResourceTypeOutput() DynamicGroupQueryResourceTypeOutput

func (DynamicGroupQueryResourceType) ToDynamicGroupQueryResourceTypeOutputWithContext added in v0.6.0

func (e DynamicGroupQueryResourceType) ToDynamicGroupQueryResourceTypeOutputWithContext(ctx context.Context) DynamicGroupQueryResourceTypeOutput

func (DynamicGroupQueryResourceType) ToDynamicGroupQueryResourceTypePtrOutput added in v0.6.0

func (e DynamicGroupQueryResourceType) ToDynamicGroupQueryResourceTypePtrOutput() DynamicGroupQueryResourceTypePtrOutput

func (DynamicGroupQueryResourceType) ToDynamicGroupQueryResourceTypePtrOutputWithContext added in v0.6.0

func (e DynamicGroupQueryResourceType) ToDynamicGroupQueryResourceTypePtrOutputWithContext(ctx context.Context) DynamicGroupQueryResourceTypePtrOutput

func (DynamicGroupQueryResourceType) ToStringOutput added in v0.4.0

func (DynamicGroupQueryResourceType) ToStringOutputWithContext added in v0.4.0

func (e DynamicGroupQueryResourceType) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (DynamicGroupQueryResourceType) ToStringPtrOutput added in v0.4.0

func (DynamicGroupQueryResourceType) ToStringPtrOutputWithContext added in v0.4.0

func (e DynamicGroupQueryResourceType) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type DynamicGroupQueryResourceTypeInput added in v0.6.0

type DynamicGroupQueryResourceTypeInput interface {
	pulumi.Input

	ToDynamicGroupQueryResourceTypeOutput() DynamicGroupQueryResourceTypeOutput
	ToDynamicGroupQueryResourceTypeOutputWithContext(context.Context) DynamicGroupQueryResourceTypeOutput
}

DynamicGroupQueryResourceTypeInput is an input type that accepts DynamicGroupQueryResourceTypeArgs and DynamicGroupQueryResourceTypeOutput values. You can construct a concrete instance of `DynamicGroupQueryResourceTypeInput` via:

DynamicGroupQueryResourceTypeArgs{...}

type DynamicGroupQueryResourceTypeOutput added in v0.6.0

type DynamicGroupQueryResourceTypeOutput struct{ *pulumi.OutputState }

func (DynamicGroupQueryResourceTypeOutput) ElementType added in v0.6.0

func (DynamicGroupQueryResourceTypeOutput) ToDynamicGroupQueryResourceTypeOutput added in v0.6.0

func (o DynamicGroupQueryResourceTypeOutput) ToDynamicGroupQueryResourceTypeOutput() DynamicGroupQueryResourceTypeOutput

func (DynamicGroupQueryResourceTypeOutput) ToDynamicGroupQueryResourceTypeOutputWithContext added in v0.6.0

func (o DynamicGroupQueryResourceTypeOutput) ToDynamicGroupQueryResourceTypeOutputWithContext(ctx context.Context) DynamicGroupQueryResourceTypeOutput

func (DynamicGroupQueryResourceTypeOutput) ToDynamicGroupQueryResourceTypePtrOutput added in v0.6.0

func (o DynamicGroupQueryResourceTypeOutput) ToDynamicGroupQueryResourceTypePtrOutput() DynamicGroupQueryResourceTypePtrOutput

func (DynamicGroupQueryResourceTypeOutput) ToDynamicGroupQueryResourceTypePtrOutputWithContext added in v0.6.0

func (o DynamicGroupQueryResourceTypeOutput) ToDynamicGroupQueryResourceTypePtrOutputWithContext(ctx context.Context) DynamicGroupQueryResourceTypePtrOutput

func (DynamicGroupQueryResourceTypeOutput) ToStringOutput added in v0.6.0

func (DynamicGroupQueryResourceTypeOutput) ToStringOutputWithContext added in v0.6.0

func (o DynamicGroupQueryResourceTypeOutput) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (DynamicGroupQueryResourceTypeOutput) ToStringPtrOutput added in v0.6.0

func (DynamicGroupQueryResourceTypeOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o DynamicGroupQueryResourceTypeOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type DynamicGroupQueryResourceTypePtrInput added in v0.6.0

type DynamicGroupQueryResourceTypePtrInput interface {
	pulumi.Input

	ToDynamicGroupQueryResourceTypePtrOutput() DynamicGroupQueryResourceTypePtrOutput
	ToDynamicGroupQueryResourceTypePtrOutputWithContext(context.Context) DynamicGroupQueryResourceTypePtrOutput
}

func DynamicGroupQueryResourceTypePtr added in v0.6.0

func DynamicGroupQueryResourceTypePtr(v string) DynamicGroupQueryResourceTypePtrInput

type DynamicGroupQueryResourceTypePtrOutput added in v0.6.0

type DynamicGroupQueryResourceTypePtrOutput struct{ *pulumi.OutputState }

func (DynamicGroupQueryResourceTypePtrOutput) Elem added in v0.6.0

func (DynamicGroupQueryResourceTypePtrOutput) ElementType added in v0.6.0

func (DynamicGroupQueryResourceTypePtrOutput) ToDynamicGroupQueryResourceTypePtrOutput added in v0.6.0

func (o DynamicGroupQueryResourceTypePtrOutput) ToDynamicGroupQueryResourceTypePtrOutput() DynamicGroupQueryResourceTypePtrOutput

func (DynamicGroupQueryResourceTypePtrOutput) ToDynamicGroupQueryResourceTypePtrOutputWithContext added in v0.6.0

func (o DynamicGroupQueryResourceTypePtrOutput) ToDynamicGroupQueryResourceTypePtrOutputWithContext(ctx context.Context) DynamicGroupQueryResourceTypePtrOutput

func (DynamicGroupQueryResourceTypePtrOutput) ToStringPtrOutput added in v0.6.0

func (DynamicGroupQueryResourceTypePtrOutput) ToStringPtrOutputWithContext added in v0.6.0

func (o DynamicGroupQueryResourceTypePtrOutput) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type DynamicGroupQueryResponse

type DynamicGroupQueryResponse struct {
	// Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')` All users with any variation of the name John Doe (case-insensitive queries add `equalsIgnoreCase()` to the value being queried). `user.name.value.equalsIgnoreCase('jOhn DoE')`
	Query string `pulumi:"query"`
	// Resource type for the Dynamic Group Query
	ResourceType string `pulumi:"resourceType"`
}

Defines a query on a resource.

type DynamicGroupQueryResponseArrayOutput

type DynamicGroupQueryResponseArrayOutput struct{ *pulumi.OutputState }

func (DynamicGroupQueryResponseArrayOutput) ElementType

func (DynamicGroupQueryResponseArrayOutput) Index

func (DynamicGroupQueryResponseArrayOutput) ToDynamicGroupQueryResponseArrayOutput

func (o DynamicGroupQueryResponseArrayOutput) ToDynamicGroupQueryResponseArrayOutput() DynamicGroupQueryResponseArrayOutput

func (DynamicGroupQueryResponseArrayOutput) ToDynamicGroupQueryResponseArrayOutputWithContext

func (o DynamicGroupQueryResponseArrayOutput) ToDynamicGroupQueryResponseArrayOutputWithContext(ctx context.Context) DynamicGroupQueryResponseArrayOutput

type DynamicGroupQueryResponseOutput

type DynamicGroupQueryResponseOutput struct{ *pulumi.OutputState }

Defines a query on a resource.

func (DynamicGroupQueryResponseOutput) ElementType

func (DynamicGroupQueryResponseOutput) Query

Query that determines the memberships of the dynamic group. Examples: All users with at least one `organizations.department` of engineering. `user.organizations.exists(org, org.department=='engineering')` All users with at least one location that has `area` of `foo` and `building_id` of `bar`. `user.locations.exists(loc, loc.area=='foo' && loc.building_id=='bar')` All users with any variation of the name John Doe (case-insensitive queries add `equalsIgnoreCase()` to the value being queried). `user.name.value.equalsIgnoreCase('jOhn DoE')`

func (DynamicGroupQueryResponseOutput) ResourceType

Resource type for the Dynamic Group Query

func (DynamicGroupQueryResponseOutput) ToDynamicGroupQueryResponseOutput

func (o DynamicGroupQueryResponseOutput) ToDynamicGroupQueryResponseOutput() DynamicGroupQueryResponseOutput

func (DynamicGroupQueryResponseOutput) ToDynamicGroupQueryResponseOutputWithContext

func (o DynamicGroupQueryResponseOutput) ToDynamicGroupQueryResponseOutputWithContext(ctx context.Context) DynamicGroupQueryResponseOutput

type DynamicGroupStatusResponse

type DynamicGroupStatusResponse struct {
	// Status of the dynamic group.
	Status string `pulumi:"status"`
	// The latest time at which the dynamic group is guaranteed to be in the given status. If status is `UP_TO_DATE`, the latest time at which the dynamic group was confirmed to be up-to-date. If status is `UPDATING_MEMBERSHIPS`, the time at which dynamic group was created.
	StatusTime string `pulumi:"statusTime"`
}

The current status of a dynamic group along with timestamp.

type DynamicGroupStatusResponseOutput

type DynamicGroupStatusResponseOutput struct{ *pulumi.OutputState }

The current status of a dynamic group along with timestamp.

func (DynamicGroupStatusResponseOutput) ElementType

func (DynamicGroupStatusResponseOutput) Status

Status of the dynamic group.

func (DynamicGroupStatusResponseOutput) StatusTime

The latest time at which the dynamic group is guaranteed to be in the given status. If status is `UP_TO_DATE`, the latest time at which the dynamic group was confirmed to be up-to-date. If status is `UPDATING_MEMBERSHIPS`, the time at which dynamic group was created.

func (DynamicGroupStatusResponseOutput) ToDynamicGroupStatusResponseOutput

func (o DynamicGroupStatusResponseOutput) ToDynamicGroupStatusResponseOutput() DynamicGroupStatusResponseOutput

func (DynamicGroupStatusResponseOutput) ToDynamicGroupStatusResponseOutputWithContext

func (o DynamicGroupStatusResponseOutput) ToDynamicGroupStatusResponseOutputWithContext(ctx context.Context) DynamicGroupStatusResponseOutput

type EntityKey

type EntityKey struct {
	// The ID of the entity. For Google-managed entities, the `id` should 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`.
	Id *string `pulumi:"id"`
	// 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}`.
	Namespace *string `pulumi:"namespace"`
}

A unique identifier for an entity in the Cloud Identity Groups API. An entity can represent either a group with an optional `namespace` or a user without a `namespace`. The combination of `id` and `namespace` must be unique; however, the same `id` can be used with different `namespace`s.

type EntityKeyArgs

type EntityKeyArgs struct {
	// The ID of the entity. For Google-managed entities, the `id` should 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`.
	Id pulumi.StringPtrInput `pulumi:"id"`
	// 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}`.
	Namespace pulumi.StringPtrInput `pulumi:"namespace"`
}

A unique identifier for an entity in the Cloud Identity Groups API. An entity can represent either a group with an optional `namespace` or a user without a `namespace`. The combination of `id` and `namespace` must be unique; however, the same `id` can be used with different `namespace`s.

func (EntityKeyArgs) ElementType

func (EntityKeyArgs) ElementType() reflect.Type

func (EntityKeyArgs) ToEntityKeyOutput

func (i EntityKeyArgs) ToEntityKeyOutput() EntityKeyOutput

func (EntityKeyArgs) ToEntityKeyOutputWithContext

func (i EntityKeyArgs) ToEntityKeyOutputWithContext(ctx context.Context) EntityKeyOutput

type EntityKeyInput

type EntityKeyInput interface {
	pulumi.Input

	ToEntityKeyOutput() EntityKeyOutput
	ToEntityKeyOutputWithContext(context.Context) EntityKeyOutput
}

EntityKeyInput is an input type that accepts EntityKeyArgs and EntityKeyOutput values. You can construct a concrete instance of `EntityKeyInput` via:

EntityKeyArgs{...}

type EntityKeyOutput

type EntityKeyOutput struct{ *pulumi.OutputState }

A unique identifier for an entity in the Cloud Identity Groups API. An entity can represent either a group with an optional `namespace` or a user without a `namespace`. The combination of `id` and `namespace` must be unique; however, the same `id` can be used with different `namespace`s.

func (EntityKeyOutput) ElementType

func (EntityKeyOutput) ElementType() reflect.Type

func (EntityKeyOutput) Id

The ID of the entity. For Google-managed entities, the `id` should 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`.

func (EntityKeyOutput) Namespace

func (o EntityKeyOutput) Namespace() pulumi.StringPtrOutput

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}`.

func (EntityKeyOutput) ToEntityKeyOutput

func (o EntityKeyOutput) ToEntityKeyOutput() EntityKeyOutput

func (EntityKeyOutput) ToEntityKeyOutputWithContext

func (o EntityKeyOutput) ToEntityKeyOutputWithContext(ctx context.Context) EntityKeyOutput

type EntityKeyResponse

type EntityKeyResponse struct {
	// 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}`.
	Namespace string `pulumi:"namespace"`
}

A unique identifier for an entity in the Cloud Identity Groups API. An entity can represent either a group with an optional `namespace` or a user without a `namespace`. The combination of `id` and `namespace` must be unique; however, the same `id` can be used with different `namespace`s.

type EntityKeyResponseOutput

type EntityKeyResponseOutput struct{ *pulumi.OutputState }

A unique identifier for an entity in the Cloud Identity Groups API. An entity can represent either a group with an optional `namespace` or a user without a `namespace`. The combination of `id` and `namespace` must be unique; however, the same `id` can be used with different `namespace`s.

func (EntityKeyResponseOutput) ElementType

func (EntityKeyResponseOutput) ElementType() reflect.Type

func (EntityKeyResponseOutput) Namespace

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}`.

func (EntityKeyResponseOutput) ToEntityKeyResponseOutput

func (o EntityKeyResponseOutput) ToEntityKeyResponseOutput() EntityKeyResponseOutput

func (EntityKeyResponseOutput) ToEntityKeyResponseOutputWithContext

func (o EntityKeyResponseOutput) ToEntityKeyResponseOutputWithContext(ctx context.Context) EntityKeyResponseOutput

type ExpiryDetail

type ExpiryDetail struct {
	// The time at which the `MembershipRole` will expire.
	ExpireTime *string `pulumi:"expireTime"`
}

The `MembershipRole` expiry details.

type ExpiryDetailArgs

type ExpiryDetailArgs struct {
	// The time at which the `MembershipRole` will expire.
	ExpireTime pulumi.StringPtrInput `pulumi:"expireTime"`
}

The `MembershipRole` expiry details.

func (ExpiryDetailArgs) ElementType

func (ExpiryDetailArgs) ElementType() reflect.Type

func (ExpiryDetailArgs) ToExpiryDetailOutput

func (i ExpiryDetailArgs) ToExpiryDetailOutput() ExpiryDetailOutput

func (ExpiryDetailArgs) ToExpiryDetailOutputWithContext

func (i ExpiryDetailArgs) ToExpiryDetailOutputWithContext(ctx context.Context) ExpiryDetailOutput

func (ExpiryDetailArgs) ToExpiryDetailPtrOutput

func (i ExpiryDetailArgs) ToExpiryDetailPtrOutput() ExpiryDetailPtrOutput

func (ExpiryDetailArgs) ToExpiryDetailPtrOutputWithContext

func (i ExpiryDetailArgs) ToExpiryDetailPtrOutputWithContext(ctx context.Context) ExpiryDetailPtrOutput

type ExpiryDetailInput

type ExpiryDetailInput interface {
	pulumi.Input

	ToExpiryDetailOutput() ExpiryDetailOutput
	ToExpiryDetailOutputWithContext(context.Context) ExpiryDetailOutput
}

ExpiryDetailInput is an input type that accepts ExpiryDetailArgs and ExpiryDetailOutput values. You can construct a concrete instance of `ExpiryDetailInput` via:

ExpiryDetailArgs{...}

type ExpiryDetailOutput

type ExpiryDetailOutput struct{ *pulumi.OutputState }

The `MembershipRole` expiry details.

func (ExpiryDetailOutput) ElementType

func (ExpiryDetailOutput) ElementType() reflect.Type

func (ExpiryDetailOutput) ExpireTime

func (o ExpiryDetailOutput) ExpireTime() pulumi.StringPtrOutput

The time at which the `MembershipRole` will expire.

func (ExpiryDetailOutput) ToExpiryDetailOutput

func (o ExpiryDetailOutput) ToExpiryDetailOutput() ExpiryDetailOutput

func (ExpiryDetailOutput) ToExpiryDetailOutputWithContext

func (o ExpiryDetailOutput) ToExpiryDetailOutputWithContext(ctx context.Context) ExpiryDetailOutput

func (ExpiryDetailOutput) ToExpiryDetailPtrOutput

func (o ExpiryDetailOutput) ToExpiryDetailPtrOutput() ExpiryDetailPtrOutput

func (ExpiryDetailOutput) ToExpiryDetailPtrOutputWithContext

func (o ExpiryDetailOutput) ToExpiryDetailPtrOutputWithContext(ctx context.Context) ExpiryDetailPtrOutput

type ExpiryDetailPtrInput

type ExpiryDetailPtrInput interface {
	pulumi.Input

	ToExpiryDetailPtrOutput() ExpiryDetailPtrOutput
	ToExpiryDetailPtrOutputWithContext(context.Context) ExpiryDetailPtrOutput
}

ExpiryDetailPtrInput is an input type that accepts ExpiryDetailArgs, ExpiryDetailPtr and ExpiryDetailPtrOutput values. You can construct a concrete instance of `ExpiryDetailPtrInput` via:

        ExpiryDetailArgs{...}

or:

        nil

type ExpiryDetailPtrOutput

type ExpiryDetailPtrOutput struct{ *pulumi.OutputState }

func (ExpiryDetailPtrOutput) Elem

func (ExpiryDetailPtrOutput) ElementType

func (ExpiryDetailPtrOutput) ElementType() reflect.Type

func (ExpiryDetailPtrOutput) ExpireTime

The time at which the `MembershipRole` will expire.

func (ExpiryDetailPtrOutput) ToExpiryDetailPtrOutput

func (o ExpiryDetailPtrOutput) ToExpiryDetailPtrOutput() ExpiryDetailPtrOutput

func (ExpiryDetailPtrOutput) ToExpiryDetailPtrOutputWithContext

func (o ExpiryDetailPtrOutput) ToExpiryDetailPtrOutputWithContext(ctx context.Context) ExpiryDetailPtrOutput

type ExpiryDetailResponse

type ExpiryDetailResponse struct {
	// The time at which the `MembershipRole` will expire.
	ExpireTime string `pulumi:"expireTime"`
}

The `MembershipRole` expiry details.

type ExpiryDetailResponseOutput

type ExpiryDetailResponseOutput struct{ *pulumi.OutputState }

The `MembershipRole` expiry details.

func (ExpiryDetailResponseOutput) ElementType

func (ExpiryDetailResponseOutput) ElementType() reflect.Type

func (ExpiryDetailResponseOutput) ExpireTime

The time at which the `MembershipRole` will expire.

func (ExpiryDetailResponseOutput) ToExpiryDetailResponseOutput

func (o ExpiryDetailResponseOutput) ToExpiryDetailResponseOutput() ExpiryDetailResponseOutput

func (ExpiryDetailResponseOutput) ToExpiryDetailResponseOutputWithContext

func (o ExpiryDetailResponseOutput) ToExpiryDetailResponseOutputWithContext(ctx context.Context) ExpiryDetailResponseOutput

type GoogleAppsCloudidentityDevicesV1AndroidAttributesResponse

type GoogleAppsCloudidentityDevicesV1AndroidAttributesResponse struct {
	// Whether applications from unknown sources can be installed on device.
	EnabledUnknownSources bool `pulumi:"enabledUnknownSources"`
	// Whether this account is on an owner/primary profile. For phones, only true for owner profiles. Android 4+ devices can have secondary or restricted user profiles.
	OwnerProfileAccount bool `pulumi:"ownerProfileAccount"`
	// Ownership privileges on device.
	OwnershipPrivilege string `pulumi:"ownershipPrivilege"`
	// Whether device supports Android work profiles. If false, this service will not block access to corp data even if an administrator turns on the "Enforce Work Profile" policy.
	SupportsWorkProfile bool `pulumi:"supportsWorkProfile"`
}

Resource representing the Android specific attributes of a Device.

type GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput

type GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput struct{ *pulumi.OutputState }

Resource representing the Android specific attributes of a Device.

func (GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput) ElementType

func (GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput) EnabledUnknownSources

Whether applications from unknown sources can be installed on device.

func (GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput) OwnerProfileAccount

Whether this account is on an owner/primary profile. For phones, only true for owner profiles. Android 4+ devices can have secondary or restricted user profiles.

func (GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput) OwnershipPrivilege

Ownership privileges on device.

func (GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput) SupportsWorkProfile

Whether device supports Android work profiles. If false, this service will not block access to corp data even if an administrator turns on the "Enforce Work Profile" policy.

func (GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput) ToGoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput

func (GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput) ToGoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutputWithContext

func (o GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput) ToGoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutputWithContext(ctx context.Context) GoogleAppsCloudidentityDevicesV1AndroidAttributesResponseOutput

type Group

type Group struct {
	pulumi.CustomResourceState

	// The time when the `Group` was created.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// An extended description to help users determine the purpose of a `Group`. Must not be longer than 4,096 characters.
	Description pulumi.StringOutput `pulumi:"description"`
	// The display name of the `Group`.
	DisplayName pulumi.StringOutput `pulumi:"displayName"`
	// Optional. Dynamic group metadata like queries and status.
	DynamicGroupMetadata DynamicGroupMetadataResponseOutput `pulumi:"dynamicGroupMetadata"`
	// The `EntityKey` of the `Group`.
	GroupKey EntityKeyResponseOutput `pulumi:"groupKey"`
	// One or more label entries that apply to the Group. Currently supported labels contain a key with an empty value. Google Groups are the default type of group and have a label with a key of `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing Google Groups can have an additional label with a key of `cloudidentity.googleapis.com/groups.security` and an empty value added to them. **This is an immutable change and the security label cannot be removed once added.** Dynamic groups have a label with a key of `cloudidentity.googleapis.com/groups.dynamic`. Identity-mapped groups for Cloud Search have a label with a key of `system/groups/external` and an empty value.
	Labels pulumi.StringMapOutput `pulumi:"labels"`
	// The [resource name](https://cloud.google.com/apis/design/resource_names) of the `Group`. Shall be of the form `groups/{group}`.
	Name pulumi.StringOutput `pulumi:"name"`
	// Immutable. The resource name of the entity under which this `Group` resides in the Cloud Identity resource hierarchy. Must be of the form `identitysources/{identity_source}` for external- identity-mapped groups or `customers/{customer}` for Google Groups. The `customer` must begin with "C" (for example, 'C046psxkn').
	Parent pulumi.StringOutput `pulumi:"parent"`
	// The time when the `Group` was last updated.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

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

func GetGroup

func GetGroup(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *GroupState, opts ...pulumi.ResourceOption) (*Group, error)

GetGroup gets an existing Group resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewGroup

func NewGroup(ctx *pulumi.Context,
	name string, args *GroupArgs, opts ...pulumi.ResourceOption) (*Group, error)

NewGroup registers a new resource with the given unique name, arguments, and options.

func (*Group) ElementType

func (*Group) ElementType() reflect.Type

func (*Group) ToGroupOutput

func (i *Group) ToGroupOutput() GroupOutput

func (*Group) ToGroupOutputWithContext

func (i *Group) ToGroupOutputWithContext(ctx context.Context) GroupOutput

type GroupArgs

type GroupArgs struct {
	// An extended description to help users determine the purpose of a `Group`. Must not be longer than 4,096 characters.
	Description pulumi.StringPtrInput
	// The display name of the `Group`.
	DisplayName pulumi.StringPtrInput
	// Optional. Dynamic group metadata like queries and status.
	DynamicGroupMetadata DynamicGroupMetadataPtrInput
	// The `EntityKey` of the `Group`.
	GroupKey EntityKeyInput
	// Optional. The initial configuration option for the `Group`.
	InitialGroupConfig pulumi.StringPtrInput
	// One or more label entries that apply to the Group. Currently supported labels contain a key with an empty value. Google Groups are the default type of group and have a label with a key of `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing Google Groups can have an additional label with a key of `cloudidentity.googleapis.com/groups.security` and an empty value added to them. **This is an immutable change and the security label cannot be removed once added.** Dynamic groups have a label with a key of `cloudidentity.googleapis.com/groups.dynamic`. Identity-mapped groups for Cloud Search have a label with a key of `system/groups/external` and an empty value.
	Labels pulumi.StringMapInput
	// Immutable. The resource name of the entity under which this `Group` resides in the Cloud Identity resource hierarchy. Must be of the form `identitysources/{identity_source}` for external- identity-mapped groups or `customers/{customer}` for Google Groups. The `customer` must begin with "C" (for example, 'C046psxkn').
	Parent pulumi.StringInput
}

The set of arguments for constructing a Group resource.

func (GroupArgs) ElementType

func (GroupArgs) ElementType() reflect.Type

type GroupInput

type GroupInput interface {
	pulumi.Input

	ToGroupOutput() GroupOutput
	ToGroupOutputWithContext(ctx context.Context) GroupOutput
}

type GroupOutput

type GroupOutput struct{ *pulumi.OutputState }

func (GroupOutput) ElementType

func (GroupOutput) ElementType() reflect.Type

func (GroupOutput) ToGroupOutput

func (o GroupOutput) ToGroupOutput() GroupOutput

func (GroupOutput) ToGroupOutputWithContext

func (o GroupOutput) ToGroupOutputWithContext(ctx context.Context) GroupOutput

type GroupState

type GroupState struct {
}

func (GroupState) ElementType

func (GroupState) ElementType() reflect.Type

type LookupDeviceArgs added in v0.4.0

type LookupDeviceArgs struct {
	Customer *string `pulumi:"customer"`
	DeviceId string  `pulumi:"deviceId"`
}

type LookupDeviceOutputArgs added in v0.8.0

type LookupDeviceOutputArgs struct {
	Customer pulumi.StringPtrInput `pulumi:"customer"`
	DeviceId pulumi.StringInput    `pulumi:"deviceId"`
}

func (LookupDeviceOutputArgs) ElementType added in v0.8.0

func (LookupDeviceOutputArgs) ElementType() reflect.Type

type LookupDeviceResult added in v0.4.0

type LookupDeviceResult struct {
	// Attributes specific to Android devices.
	AndroidSpecificAttributes GoogleAppsCloudidentityDevicesV1AndroidAttributesResponse `pulumi:"androidSpecificAttributes"`
	// Asset tag of the device.
	AssetTag string `pulumi:"assetTag"`
	// Baseband version of the device.
	BasebandVersion string `pulumi:"basebandVersion"`
	// Device bootloader version. Example: 0.6.7.
	BootloaderVersion string `pulumi:"bootloaderVersion"`
	// Device brand. Example: Samsung.
	Brand string `pulumi:"brand"`
	// Build number of the device.
	BuildNumber string `pulumi:"buildNumber"`
	// Represents whether the Device is compromised.
	CompromisedState string `pulumi:"compromisedState"`
	// When the Company-Owned device was imported. This field is empty for BYOD devices.
	CreateTime string `pulumi:"createTime"`
	// Type of device.
	DeviceType string `pulumi:"deviceType"`
	// Whether developer options is enabled on device.
	EnabledDeveloperOptions bool `pulumi:"enabledDeveloperOptions"`
	// Whether USB debugging is enabled on device.
	EnabledUsbDebugging bool `pulumi:"enabledUsbDebugging"`
	// Device encryption state.
	EncryptionState string `pulumi:"encryptionState"`
	// IMEI number of device if GSM device; empty otherwise.
	Imei string `pulumi:"imei"`
	// Kernel version of the device.
	KernelVersion string `pulumi:"kernelVersion"`
	// Most recent time when device synced with this service.
	LastSyncTime string `pulumi:"lastSyncTime"`
	// Management state of the device
	ManagementState string `pulumi:"managementState"`
	// Device manufacturer. Example: Motorola.
	Manufacturer string `pulumi:"manufacturer"`
	// MEID number of device if CDMA device; empty otherwise.
	Meid string `pulumi:"meid"`
	// Model name of device. Example: Pixel 3.
	Model string `pulumi:"model"`
	// [Resource name](https://cloud.google.com/apis/design/resource_names) of the Device in format: `devices/{device}`, where device is the unique id assigned to the Device.
	Name string `pulumi:"name"`
	// Mobile or network operator of device, if available.
	NetworkOperator string `pulumi:"networkOperator"`
	// OS version of the device. Example: Android 8.1.0.
	OsVersion string `pulumi:"osVersion"`
	// Domain name for Google accounts on device. Type for other accounts on device. On Android, will only be populated if |ownership_privilege| is |PROFILE_OWNER| or |DEVICE_OWNER|. Does not include the account signed in to the device policy app if that account's domain has only one account. Examples: "com.example", "xyz.com".
	OtherAccounts []string `pulumi:"otherAccounts"`
	// Whether the device is owned by the company or an individual
	OwnerType string `pulumi:"ownerType"`
	// OS release version. Example: 6.0.
	ReleaseVersion string `pulumi:"releaseVersion"`
	// OS security patch update time on device.
	SecurityPatchTime string `pulumi:"securityPatchTime"`
	// Serial Number of device. Example: HT82V1A01076.
	SerialNumber string `pulumi:"serialNumber"`
	// WiFi MAC addresses of device.
	WifiMacAddresses []string `pulumi:"wifiMacAddresses"`
}

func LookupDevice added in v0.4.0

func LookupDevice(ctx *pulumi.Context, args *LookupDeviceArgs, opts ...pulumi.InvokeOption) (*LookupDeviceResult, error)

Retrieves the specified device.

type LookupDeviceResultOutput added in v0.8.0

type LookupDeviceResultOutput struct{ *pulumi.OutputState }

func LookupDeviceOutput added in v0.8.0

func LookupDeviceOutput(ctx *pulumi.Context, args LookupDeviceOutputArgs, opts ...pulumi.InvokeOption) LookupDeviceResultOutput

func (LookupDeviceResultOutput) AndroidSpecificAttributes added in v0.8.0

Attributes specific to Android devices.

func (LookupDeviceResultOutput) AssetTag added in v0.8.0

Asset tag of the device.

func (LookupDeviceResultOutput) BasebandVersion added in v0.8.0

func (o LookupDeviceResultOutput) BasebandVersion() pulumi.StringOutput

Baseband version of the device.

func (LookupDeviceResultOutput) BootloaderVersion added in v0.8.0

func (o LookupDeviceResultOutput) BootloaderVersion() pulumi.StringOutput

Device bootloader version. Example: 0.6.7.

func (LookupDeviceResultOutput) Brand added in v0.8.0

Device brand. Example: Samsung.

func (LookupDeviceResultOutput) BuildNumber added in v0.8.0

Build number of the device.

func (LookupDeviceResultOutput) CompromisedState added in v0.8.0

func (o LookupDeviceResultOutput) CompromisedState() pulumi.StringOutput

Represents whether the Device is compromised.

func (LookupDeviceResultOutput) CreateTime added in v0.8.0

When the Company-Owned device was imported. This field is empty for BYOD devices.

func (LookupDeviceResultOutput) DeviceType added in v0.8.0

Type of device.

func (LookupDeviceResultOutput) ElementType added in v0.8.0

func (LookupDeviceResultOutput) ElementType() reflect.Type

func (LookupDeviceResultOutput) EnabledDeveloperOptions added in v0.8.0

func (o LookupDeviceResultOutput) EnabledDeveloperOptions() pulumi.BoolOutput

Whether developer options is enabled on device.

func (LookupDeviceResultOutput) EnabledUsbDebugging added in v0.8.0

func (o LookupDeviceResultOutput) EnabledUsbDebugging() pulumi.BoolOutput

Whether USB debugging is enabled on device.

func (LookupDeviceResultOutput) EncryptionState added in v0.8.0

func (o LookupDeviceResultOutput) EncryptionState() pulumi.StringOutput

Device encryption state.

func (LookupDeviceResultOutput) Imei added in v0.8.0

IMEI number of device if GSM device; empty otherwise.

func (LookupDeviceResultOutput) KernelVersion added in v0.8.0

func (o LookupDeviceResultOutput) KernelVersion() pulumi.StringOutput

Kernel version of the device.

func (LookupDeviceResultOutput) LastSyncTime added in v0.8.0

func (o LookupDeviceResultOutput) LastSyncTime() pulumi.StringOutput

Most recent time when device synced with this service.

func (LookupDeviceResultOutput) ManagementState added in v0.8.0

func (o LookupDeviceResultOutput) ManagementState() pulumi.StringOutput

Management state of the device

func (LookupDeviceResultOutput) Manufacturer added in v0.8.0

func (o LookupDeviceResultOutput) Manufacturer() pulumi.StringOutput

Device manufacturer. Example: Motorola.

func (LookupDeviceResultOutput) Meid added in v0.8.0

MEID number of device if CDMA device; empty otherwise.

func (LookupDeviceResultOutput) Model added in v0.8.0

Model name of device. Example: Pixel 3.

func (LookupDeviceResultOutput) Name added in v0.8.0

[Resource name](https://cloud.google.com/apis/design/resource_names) of the Device in format: `devices/{device}`, where device is the unique id assigned to the Device.

func (LookupDeviceResultOutput) NetworkOperator added in v0.8.0

func (o LookupDeviceResultOutput) NetworkOperator() pulumi.StringOutput

Mobile or network operator of device, if available.

func (LookupDeviceResultOutput) OsVersion added in v0.8.0

OS version of the device. Example: Android 8.1.0.

func (LookupDeviceResultOutput) OtherAccounts added in v0.8.0

Domain name for Google accounts on device. Type for other accounts on device. On Android, will only be populated if |ownership_privilege| is |PROFILE_OWNER| or |DEVICE_OWNER|. Does not include the account signed in to the device policy app if that account's domain has only one account. Examples: "com.example", "xyz.com".

func (LookupDeviceResultOutput) OwnerType added in v0.8.0

Whether the device is owned by the company or an individual

func (LookupDeviceResultOutput) ReleaseVersion added in v0.8.0

func (o LookupDeviceResultOutput) ReleaseVersion() pulumi.StringOutput

OS release version. Example: 6.0.

func (LookupDeviceResultOutput) SecurityPatchTime added in v0.8.0

func (o LookupDeviceResultOutput) SecurityPatchTime() pulumi.StringOutput

OS security patch update time on device.

func (LookupDeviceResultOutput) SerialNumber added in v0.8.0

func (o LookupDeviceResultOutput) SerialNumber() pulumi.StringOutput

Serial Number of device. Example: HT82V1A01076.

func (LookupDeviceResultOutput) ToLookupDeviceResultOutput added in v0.8.0

func (o LookupDeviceResultOutput) ToLookupDeviceResultOutput() LookupDeviceResultOutput

func (LookupDeviceResultOutput) ToLookupDeviceResultOutputWithContext added in v0.8.0

func (o LookupDeviceResultOutput) ToLookupDeviceResultOutputWithContext(ctx context.Context) LookupDeviceResultOutput

func (LookupDeviceResultOutput) WifiMacAddresses added in v0.8.0

func (o LookupDeviceResultOutput) WifiMacAddresses() pulumi.StringArrayOutput

WiFi MAC addresses of device.

type LookupGroupArgs added in v0.4.0

type LookupGroupArgs struct {
	GroupId string `pulumi:"groupId"`
}

type LookupGroupOutputArgs added in v0.8.0

type LookupGroupOutputArgs struct {
	GroupId pulumi.StringInput `pulumi:"groupId"`
}

func (LookupGroupOutputArgs) ElementType added in v0.8.0

func (LookupGroupOutputArgs) ElementType() reflect.Type

type LookupGroupResult added in v0.4.0

type LookupGroupResult struct {
	// The time when the `Group` was created.
	CreateTime string `pulumi:"createTime"`
	// An extended description to help users determine the purpose of a `Group`. Must not be longer than 4,096 characters.
	Description string `pulumi:"description"`
	// The display name of the `Group`.
	DisplayName string `pulumi:"displayName"`
	// Optional. Dynamic group metadata like queries and status.
	DynamicGroupMetadata DynamicGroupMetadataResponse `pulumi:"dynamicGroupMetadata"`
	// The `EntityKey` of the `Group`.
	GroupKey EntityKeyResponse `pulumi:"groupKey"`
	// One or more label entries that apply to the Group. Currently supported labels contain a key with an empty value. Google Groups are the default type of group and have a label with a key of `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing Google Groups can have an additional label with a key of `cloudidentity.googleapis.com/groups.security` and an empty value added to them. **This is an immutable change and the security label cannot be removed once added.** Dynamic groups have a label with a key of `cloudidentity.googleapis.com/groups.dynamic`. Identity-mapped groups for Cloud Search have a label with a key of `system/groups/external` and an empty value.
	Labels map[string]string `pulumi:"labels"`
	// The [resource name](https://cloud.google.com/apis/design/resource_names) of the `Group`. Shall be of the form `groups/{group}`.
	Name string `pulumi:"name"`
	// Immutable. The resource name of the entity under which this `Group` resides in the Cloud Identity resource hierarchy. Must be of the form `identitysources/{identity_source}` for external- identity-mapped groups or `customers/{customer}` for Google Groups. The `customer` must begin with "C" (for example, 'C046psxkn').
	Parent string `pulumi:"parent"`
	// The time when the `Group` was last updated.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupGroup added in v0.4.0

func LookupGroup(ctx *pulumi.Context, args *LookupGroupArgs, opts ...pulumi.InvokeOption) (*LookupGroupResult, error)

Retrieves a `Group`.

type LookupGroupResultOutput added in v0.8.0

type LookupGroupResultOutput struct{ *pulumi.OutputState }

func LookupGroupOutput added in v0.8.0

func LookupGroupOutput(ctx *pulumi.Context, args LookupGroupOutputArgs, opts ...pulumi.InvokeOption) LookupGroupResultOutput

func (LookupGroupResultOutput) CreateTime added in v0.8.0

The time when the `Group` was created.

func (LookupGroupResultOutput) Description added in v0.8.0

An extended description to help users determine the purpose of a `Group`. Must not be longer than 4,096 characters.

func (LookupGroupResultOutput) DisplayName added in v0.8.0

The display name of the `Group`.

func (LookupGroupResultOutput) DynamicGroupMetadata added in v0.8.0

Optional. Dynamic group metadata like queries and status.

func (LookupGroupResultOutput) ElementType added in v0.8.0

func (LookupGroupResultOutput) ElementType() reflect.Type

func (LookupGroupResultOutput) GroupKey added in v0.8.0

The `EntityKey` of the `Group`.

func (LookupGroupResultOutput) Labels added in v0.8.0

One or more label entries that apply to the Group. Currently supported labels contain a key with an empty value. Google Groups are the default type of group and have a label with a key of `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing Google Groups can have an additional label with a key of `cloudidentity.googleapis.com/groups.security` and an empty value added to them. **This is an immutable change and the security label cannot be removed once added.** Dynamic groups have a label with a key of `cloudidentity.googleapis.com/groups.dynamic`. Identity-mapped groups for Cloud Search have a label with a key of `system/groups/external` and an empty value.

func (LookupGroupResultOutput) Name added in v0.8.0

The [resource name](https://cloud.google.com/apis/design/resource_names) of the `Group`. Shall be of the form `groups/{group}`.

func (LookupGroupResultOutput) Parent added in v0.8.0

Immutable. The resource name of the entity under which this `Group` resides in the Cloud Identity resource hierarchy. Must be of the form `identitysources/{identity_source}` for external- identity-mapped groups or `customers/{customer}` for Google Groups. The `customer` must begin with "C" (for example, 'C046psxkn').

func (LookupGroupResultOutput) ToLookupGroupResultOutput added in v0.8.0

func (o LookupGroupResultOutput) ToLookupGroupResultOutput() LookupGroupResultOutput

func (LookupGroupResultOutput) ToLookupGroupResultOutputWithContext added in v0.8.0

func (o LookupGroupResultOutput) ToLookupGroupResultOutputWithContext(ctx context.Context) LookupGroupResultOutput

func (LookupGroupResultOutput) UpdateTime added in v0.8.0

The time when the `Group` was last updated.

type LookupMembershipArgs added in v0.4.0

type LookupMembershipArgs struct {
	GroupId      string `pulumi:"groupId"`
	MembershipId string `pulumi:"membershipId"`
}

type LookupMembershipOutputArgs added in v0.8.0

type LookupMembershipOutputArgs struct {
	GroupId      pulumi.StringInput `pulumi:"groupId"`
	MembershipId pulumi.StringInput `pulumi:"membershipId"`
}

func (LookupMembershipOutputArgs) ElementType added in v0.8.0

func (LookupMembershipOutputArgs) ElementType() reflect.Type

type LookupMembershipResult added in v0.4.0

type LookupMembershipResult struct {
	// The time when the `Membership` was created.
	CreateTime string `pulumi:"createTime"`
	// The [resource name](https://cloud.google.com/apis/design/resource_names) of the `Membership`. Shall be of the form `groups/{group}/memberships/{membership}`.
	Name string `pulumi:"name"`
	// Immutable. The `EntityKey` of the member.
	PreferredMemberKey EntityKeyResponse `pulumi:"preferredMemberKey"`
	// The `MembershipRole`s that apply to the `Membership`. If unspecified, defaults to a single `MembershipRole` with `name` `MEMBER`. Must not contain duplicate `MembershipRole`s with the same `name`.
	Roles []MembershipRoleResponse `pulumi:"roles"`
	// The type of the membership.
	Type string `pulumi:"type"`
	// The time when the `Membership` was last updated.
	UpdateTime string `pulumi:"updateTime"`
}

func LookupMembership added in v0.4.0

func LookupMembership(ctx *pulumi.Context, args *LookupMembershipArgs, opts ...pulumi.InvokeOption) (*LookupMembershipResult, error)

Retrieves a `Membership`.

type LookupMembershipResultOutput added in v0.8.0

type LookupMembershipResultOutput struct{ *pulumi.OutputState }

func LookupMembershipOutput added in v0.8.0

func (LookupMembershipResultOutput) CreateTime added in v0.8.0

The time when the `Membership` was created.

func (LookupMembershipResultOutput) ElementType added in v0.8.0

func (LookupMembershipResultOutput) Name added in v0.8.0

The [resource name](https://cloud.google.com/apis/design/resource_names) of the `Membership`. Shall be of the form `groups/{group}/memberships/{membership}`.

func (LookupMembershipResultOutput) PreferredMemberKey added in v0.8.0

Immutable. The `EntityKey` of the member.

func (LookupMembershipResultOutput) Roles added in v0.8.0

The `MembershipRole`s that apply to the `Membership`. If unspecified, defaults to a single `MembershipRole` with `name` `MEMBER`. Must not contain duplicate `MembershipRole`s with the same `name`.

func (LookupMembershipResultOutput) ToLookupMembershipResultOutput added in v0.8.0

func (o LookupMembershipResultOutput) ToLookupMembershipResultOutput() LookupMembershipResultOutput

func (LookupMembershipResultOutput) ToLookupMembershipResultOutputWithContext added in v0.8.0

func (o LookupMembershipResultOutput) ToLookupMembershipResultOutputWithContext(ctx context.Context) LookupMembershipResultOutput

func (LookupMembershipResultOutput) Type added in v0.8.0

The type of the membership.

func (LookupMembershipResultOutput) UpdateTime added in v0.8.0

The time when the `Membership` was last updated.

type Membership added in v0.3.0

type Membership struct {
	pulumi.CustomResourceState

	// The time when the `Membership` was created.
	CreateTime pulumi.StringOutput `pulumi:"createTime"`
	// The [resource name](https://cloud.google.com/apis/design/resource_names) of the `Membership`. Shall be of the form `groups/{group}/memberships/{membership}`.
	Name pulumi.StringOutput `pulumi:"name"`
	// Immutable. The `EntityKey` of the member.
	PreferredMemberKey EntityKeyResponseOutput `pulumi:"preferredMemberKey"`
	// The `MembershipRole`s that apply to the `Membership`. If unspecified, defaults to a single `MembershipRole` with `name` `MEMBER`. Must not contain duplicate `MembershipRole`s with the same `name`.
	Roles MembershipRoleResponseArrayOutput `pulumi:"roles"`
	// The type of the membership.
	Type pulumi.StringOutput `pulumi:"type"`
	// The time when the `Membership` was last updated.
	UpdateTime pulumi.StringOutput `pulumi:"updateTime"`
}

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

func GetMembership added in v0.3.0

func GetMembership(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *MembershipState, opts ...pulumi.ResourceOption) (*Membership, error)

GetMembership gets an existing Membership resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewMembership added in v0.3.0

func NewMembership(ctx *pulumi.Context,
	name string, args *MembershipArgs, opts ...pulumi.ResourceOption) (*Membership, error)

NewMembership registers a new resource with the given unique name, arguments, and options.

func (*Membership) ElementType added in v0.3.0

func (*Membership) ElementType() reflect.Type

func (*Membership) ToMembershipOutput added in v0.3.0

func (i *Membership) ToMembershipOutput() MembershipOutput

func (*Membership) ToMembershipOutputWithContext added in v0.3.0

func (i *Membership) ToMembershipOutputWithContext(ctx context.Context) MembershipOutput

type MembershipArgs added in v0.3.0

type MembershipArgs struct {
	GroupId pulumi.StringInput
	// Immutable. The `EntityKey` of the member.
	PreferredMemberKey EntityKeyInput
	// The `MembershipRole`s that apply to the `Membership`. If unspecified, defaults to a single `MembershipRole` with `name` `MEMBER`. Must not contain duplicate `MembershipRole`s with the same `name`.
	Roles MembershipRoleArrayInput
}

The set of arguments for constructing a Membership resource.

func (MembershipArgs) ElementType added in v0.3.0

func (MembershipArgs) ElementType() reflect.Type

type MembershipInput added in v0.3.0

type MembershipInput interface {
	pulumi.Input

	ToMembershipOutput() MembershipOutput
	ToMembershipOutputWithContext(ctx context.Context) MembershipOutput
}

type MembershipOutput added in v0.3.0

type MembershipOutput struct{ *pulumi.OutputState }

func (MembershipOutput) ElementType added in v0.3.0

func (MembershipOutput) ElementType() reflect.Type

func (MembershipOutput) ToMembershipOutput added in v0.3.0

func (o MembershipOutput) ToMembershipOutput() MembershipOutput

func (MembershipOutput) ToMembershipOutputWithContext added in v0.3.0

func (o MembershipOutput) ToMembershipOutputWithContext(ctx context.Context) MembershipOutput

type MembershipRole

type MembershipRole struct {
	// 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.
	ExpiryDetail *ExpiryDetail `pulumi:"expiryDetail"`
	// The name of the `MembershipRole`. Must be one of `OWNER`, `MANAGER`, `MEMBER`.
	Name *string `pulumi:"name"`
	// Evaluations of restrictions applied to parent group on this membership.
	RestrictionEvaluations *RestrictionEvaluations `pulumi:"restrictionEvaluations"`
}

A membership role within the Cloud Identity Groups API. A `MembershipRole` defines the privileges granted to a `Membership`.

type MembershipRoleArgs

type MembershipRoleArgs struct {
	// 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.
	ExpiryDetail ExpiryDetailPtrInput `pulumi:"expiryDetail"`
	// The name of the `MembershipRole`. Must be one of `OWNER`, `MANAGER`, `MEMBER`.
	Name pulumi.StringPtrInput `pulumi:"name"`
	// Evaluations of restrictions applied to parent group on this membership.
	RestrictionEvaluations RestrictionEvaluationsPtrInput `pulumi:"restrictionEvaluations"`
}

A membership role within the Cloud Identity Groups API. A `MembershipRole` defines the privileges granted to a `Membership`.

func (MembershipRoleArgs) ElementType

func (MembershipRoleArgs) ElementType() reflect.Type

func (MembershipRoleArgs) ToMembershipRoleOutput

func (i MembershipRoleArgs) ToMembershipRoleOutput() MembershipRoleOutput

func (MembershipRoleArgs) ToMembershipRoleOutputWithContext

func (i MembershipRoleArgs) ToMembershipRoleOutputWithContext(ctx context.Context) MembershipRoleOutput

type MembershipRoleArray

type MembershipRoleArray []MembershipRoleInput

func (MembershipRoleArray) ElementType

func (MembershipRoleArray) ElementType() reflect.Type

func (MembershipRoleArray) ToMembershipRoleArrayOutput

func (i MembershipRoleArray) ToMembershipRoleArrayOutput() MembershipRoleArrayOutput

func (MembershipRoleArray) ToMembershipRoleArrayOutputWithContext

func (i MembershipRoleArray) ToMembershipRoleArrayOutputWithContext(ctx context.Context) MembershipRoleArrayOutput

type MembershipRoleArrayInput

type MembershipRoleArrayInput interface {
	pulumi.Input

	ToMembershipRoleArrayOutput() MembershipRoleArrayOutput
	ToMembershipRoleArrayOutputWithContext(context.Context) MembershipRoleArrayOutput
}

MembershipRoleArrayInput is an input type that accepts MembershipRoleArray and MembershipRoleArrayOutput values. You can construct a concrete instance of `MembershipRoleArrayInput` via:

MembershipRoleArray{ MembershipRoleArgs{...} }

type MembershipRoleArrayOutput

type MembershipRoleArrayOutput struct{ *pulumi.OutputState }

func (MembershipRoleArrayOutput) ElementType

func (MembershipRoleArrayOutput) ElementType() reflect.Type

func (MembershipRoleArrayOutput) Index

func (MembershipRoleArrayOutput) ToMembershipRoleArrayOutput

func (o MembershipRoleArrayOutput) ToMembershipRoleArrayOutput() MembershipRoleArrayOutput

func (MembershipRoleArrayOutput) ToMembershipRoleArrayOutputWithContext

func (o MembershipRoleArrayOutput) ToMembershipRoleArrayOutputWithContext(ctx context.Context) MembershipRoleArrayOutput

type MembershipRoleInput

type MembershipRoleInput interface {
	pulumi.Input

	ToMembershipRoleOutput() MembershipRoleOutput
	ToMembershipRoleOutputWithContext(context.Context) MembershipRoleOutput
}

MembershipRoleInput is an input type that accepts MembershipRoleArgs and MembershipRoleOutput values. You can construct a concrete instance of `MembershipRoleInput` via:

MembershipRoleArgs{...}

type MembershipRoleOutput

type MembershipRoleOutput struct{ *pulumi.OutputState }

A membership role within the Cloud Identity Groups API. A `MembershipRole` defines the privileges granted to a `Membership`.

func (MembershipRoleOutput) ElementType

func (MembershipRoleOutput) ElementType() reflect.Type

func (MembershipRoleOutput) 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.

func (MembershipRoleOutput) Name

The name of the `MembershipRole`. Must be one of `OWNER`, `MANAGER`, `MEMBER`.

func (MembershipRoleOutput) RestrictionEvaluations added in v0.11.0

func (o MembershipRoleOutput) RestrictionEvaluations() RestrictionEvaluationsPtrOutput

Evaluations of restrictions applied to parent group on this membership.

func (MembershipRoleOutput) ToMembershipRoleOutput

func (o MembershipRoleOutput) ToMembershipRoleOutput() MembershipRoleOutput

func (MembershipRoleOutput) ToMembershipRoleOutputWithContext

func (o MembershipRoleOutput) ToMembershipRoleOutputWithContext(ctx context.Context) MembershipRoleOutput

type MembershipRoleResponse

type MembershipRoleResponse struct {
	// 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.
	ExpiryDetail ExpiryDetailResponse `pulumi:"expiryDetail"`
	// The name of the `MembershipRole`. Must be one of `OWNER`, `MANAGER`, `MEMBER`.
	Name string `pulumi:"name"`
	// Evaluations of restrictions applied to parent group on this membership.
	RestrictionEvaluations RestrictionEvaluationsResponse `pulumi:"restrictionEvaluations"`
}

A membership role within the Cloud Identity Groups API. A `MembershipRole` defines the privileges granted to a `Membership`.

type MembershipRoleResponseArrayOutput

type MembershipRoleResponseArrayOutput struct{ *pulumi.OutputState }

func (MembershipRoleResponseArrayOutput) ElementType

func (MembershipRoleResponseArrayOutput) Index

func (MembershipRoleResponseArrayOutput) ToMembershipRoleResponseArrayOutput

func (o MembershipRoleResponseArrayOutput) ToMembershipRoleResponseArrayOutput() MembershipRoleResponseArrayOutput

func (MembershipRoleResponseArrayOutput) ToMembershipRoleResponseArrayOutputWithContext

func (o MembershipRoleResponseArrayOutput) ToMembershipRoleResponseArrayOutputWithContext(ctx context.Context) MembershipRoleResponseArrayOutput

type MembershipRoleResponseOutput

type MembershipRoleResponseOutput struct{ *pulumi.OutputState }

A membership role within the Cloud Identity Groups API. A `MembershipRole` defines the privileges granted to a `Membership`.

func (MembershipRoleResponseOutput) ElementType

func (MembershipRoleResponseOutput) 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.

func (MembershipRoleResponseOutput) Name

The name of the `MembershipRole`. Must be one of `OWNER`, `MANAGER`, `MEMBER`.

func (MembershipRoleResponseOutput) RestrictionEvaluations added in v0.11.0

Evaluations of restrictions applied to parent group on this membership.

func (MembershipRoleResponseOutput) ToMembershipRoleResponseOutput

func (o MembershipRoleResponseOutput) ToMembershipRoleResponseOutput() MembershipRoleResponseOutput

func (MembershipRoleResponseOutput) ToMembershipRoleResponseOutputWithContext

func (o MembershipRoleResponseOutput) ToMembershipRoleResponseOutputWithContext(ctx context.Context) MembershipRoleResponseOutput

type MembershipRoleRestrictionEvaluation added in v0.11.0

type MembershipRoleRestrictionEvaluation struct {
}

The evaluated state of this restriction.

type MembershipRoleRestrictionEvaluationArgs added in v0.11.0

type MembershipRoleRestrictionEvaluationArgs struct {
}

The evaluated state of this restriction.

func (MembershipRoleRestrictionEvaluationArgs) ElementType added in v0.11.0

func (MembershipRoleRestrictionEvaluationArgs) ToMembershipRoleRestrictionEvaluationOutput added in v0.11.0

func (i MembershipRoleRestrictionEvaluationArgs) ToMembershipRoleRestrictionEvaluationOutput() MembershipRoleRestrictionEvaluationOutput

func (MembershipRoleRestrictionEvaluationArgs) ToMembershipRoleRestrictionEvaluationOutputWithContext added in v0.11.0

func (i MembershipRoleRestrictionEvaluationArgs) ToMembershipRoleRestrictionEvaluationOutputWithContext(ctx context.Context) MembershipRoleRestrictionEvaluationOutput

func (MembershipRoleRestrictionEvaluationArgs) ToMembershipRoleRestrictionEvaluationPtrOutput added in v0.11.0

func (i MembershipRoleRestrictionEvaluationArgs) ToMembershipRoleRestrictionEvaluationPtrOutput() MembershipRoleRestrictionEvaluationPtrOutput

func (MembershipRoleRestrictionEvaluationArgs) ToMembershipRoleRestrictionEvaluationPtrOutputWithContext added in v0.11.0

func (i MembershipRoleRestrictionEvaluationArgs) ToMembershipRoleRestrictionEvaluationPtrOutputWithContext(ctx context.Context) MembershipRoleRestrictionEvaluationPtrOutput

type MembershipRoleRestrictionEvaluationInput added in v0.11.0

type MembershipRoleRestrictionEvaluationInput interface {
	pulumi.Input

	ToMembershipRoleRestrictionEvaluationOutput() MembershipRoleRestrictionEvaluationOutput
	ToMembershipRoleRestrictionEvaluationOutputWithContext(context.Context) MembershipRoleRestrictionEvaluationOutput
}

MembershipRoleRestrictionEvaluationInput is an input type that accepts MembershipRoleRestrictionEvaluationArgs and MembershipRoleRestrictionEvaluationOutput values. You can construct a concrete instance of `MembershipRoleRestrictionEvaluationInput` via:

MembershipRoleRestrictionEvaluationArgs{...}

type MembershipRoleRestrictionEvaluationOutput added in v0.11.0

type MembershipRoleRestrictionEvaluationOutput struct{ *pulumi.OutputState }

The evaluated state of this restriction.

func (MembershipRoleRestrictionEvaluationOutput) ElementType added in v0.11.0

func (MembershipRoleRestrictionEvaluationOutput) ToMembershipRoleRestrictionEvaluationOutput added in v0.11.0

func (o MembershipRoleRestrictionEvaluationOutput) ToMembershipRoleRestrictionEvaluationOutput() MembershipRoleRestrictionEvaluationOutput

func (MembershipRoleRestrictionEvaluationOutput) ToMembershipRoleRestrictionEvaluationOutputWithContext added in v0.11.0

func (o MembershipRoleRestrictionEvaluationOutput) ToMembershipRoleRestrictionEvaluationOutputWithContext(ctx context.Context) MembershipRoleRestrictionEvaluationOutput

func (MembershipRoleRestrictionEvaluationOutput) ToMembershipRoleRestrictionEvaluationPtrOutput added in v0.11.0

func (o MembershipRoleRestrictionEvaluationOutput) ToMembershipRoleRestrictionEvaluationPtrOutput() MembershipRoleRestrictionEvaluationPtrOutput

func (MembershipRoleRestrictionEvaluationOutput) ToMembershipRoleRestrictionEvaluationPtrOutputWithContext added in v0.11.0

func (o MembershipRoleRestrictionEvaluationOutput) ToMembershipRoleRestrictionEvaluationPtrOutputWithContext(ctx context.Context) MembershipRoleRestrictionEvaluationPtrOutput

type MembershipRoleRestrictionEvaluationPtrInput added in v0.11.0

type MembershipRoleRestrictionEvaluationPtrInput interface {
	pulumi.Input

	ToMembershipRoleRestrictionEvaluationPtrOutput() MembershipRoleRestrictionEvaluationPtrOutput
	ToMembershipRoleRestrictionEvaluationPtrOutputWithContext(context.Context) MembershipRoleRestrictionEvaluationPtrOutput
}

MembershipRoleRestrictionEvaluationPtrInput is an input type that accepts MembershipRoleRestrictionEvaluationArgs, MembershipRoleRestrictionEvaluationPtr and MembershipRoleRestrictionEvaluationPtrOutput values. You can construct a concrete instance of `MembershipRoleRestrictionEvaluationPtrInput` via:

        MembershipRoleRestrictionEvaluationArgs{...}

or:

        nil

type MembershipRoleRestrictionEvaluationPtrOutput added in v0.11.0

type MembershipRoleRestrictionEvaluationPtrOutput struct{ *pulumi.OutputState }

func (MembershipRoleRestrictionEvaluationPtrOutput) Elem added in v0.11.0

func (MembershipRoleRestrictionEvaluationPtrOutput) ElementType added in v0.11.0

func (MembershipRoleRestrictionEvaluationPtrOutput) ToMembershipRoleRestrictionEvaluationPtrOutput added in v0.11.0

func (o MembershipRoleRestrictionEvaluationPtrOutput) ToMembershipRoleRestrictionEvaluationPtrOutput() MembershipRoleRestrictionEvaluationPtrOutput

func (MembershipRoleRestrictionEvaluationPtrOutput) ToMembershipRoleRestrictionEvaluationPtrOutputWithContext added in v0.11.0

func (o MembershipRoleRestrictionEvaluationPtrOutput) ToMembershipRoleRestrictionEvaluationPtrOutputWithContext(ctx context.Context) MembershipRoleRestrictionEvaluationPtrOutput

type MembershipRoleRestrictionEvaluationResponse added in v0.11.0

type MembershipRoleRestrictionEvaluationResponse struct {
	// The current state of the restriction
	State string `pulumi:"state"`
}

The evaluated state of this restriction.

type MembershipRoleRestrictionEvaluationResponseOutput added in v0.11.0

type MembershipRoleRestrictionEvaluationResponseOutput struct{ *pulumi.OutputState }

The evaluated state of this restriction.

func (MembershipRoleRestrictionEvaluationResponseOutput) ElementType added in v0.11.0

func (MembershipRoleRestrictionEvaluationResponseOutput) State added in v0.11.0

The current state of the restriction

func (MembershipRoleRestrictionEvaluationResponseOutput) ToMembershipRoleRestrictionEvaluationResponseOutput added in v0.11.0

func (o MembershipRoleRestrictionEvaluationResponseOutput) ToMembershipRoleRestrictionEvaluationResponseOutput() MembershipRoleRestrictionEvaluationResponseOutput

func (MembershipRoleRestrictionEvaluationResponseOutput) ToMembershipRoleRestrictionEvaluationResponseOutputWithContext added in v0.11.0

func (o MembershipRoleRestrictionEvaluationResponseOutput) ToMembershipRoleRestrictionEvaluationResponseOutputWithContext(ctx context.Context) MembershipRoleRestrictionEvaluationResponseOutput

type MembershipState added in v0.3.0

type MembershipState struct {
}

func (MembershipState) ElementType added in v0.3.0

func (MembershipState) ElementType() reflect.Type

type RestrictionEvaluations added in v0.11.0

type RestrictionEvaluations struct {
	// Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
	MemberRestrictionEvaluation *MembershipRoleRestrictionEvaluation `pulumi:"memberRestrictionEvaluation"`
}

Evaluations of restrictions applied to parent group on this membership.

type RestrictionEvaluationsArgs added in v0.11.0

type RestrictionEvaluationsArgs struct {
	// Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
	MemberRestrictionEvaluation MembershipRoleRestrictionEvaluationPtrInput `pulumi:"memberRestrictionEvaluation"`
}

Evaluations of restrictions applied to parent group on this membership.

func (RestrictionEvaluationsArgs) ElementType added in v0.11.0

func (RestrictionEvaluationsArgs) ElementType() reflect.Type

func (RestrictionEvaluationsArgs) ToRestrictionEvaluationsOutput added in v0.11.0

func (i RestrictionEvaluationsArgs) ToRestrictionEvaluationsOutput() RestrictionEvaluationsOutput

func (RestrictionEvaluationsArgs) ToRestrictionEvaluationsOutputWithContext added in v0.11.0

func (i RestrictionEvaluationsArgs) ToRestrictionEvaluationsOutputWithContext(ctx context.Context) RestrictionEvaluationsOutput

func (RestrictionEvaluationsArgs) ToRestrictionEvaluationsPtrOutput added in v0.11.0

func (i RestrictionEvaluationsArgs) ToRestrictionEvaluationsPtrOutput() RestrictionEvaluationsPtrOutput

func (RestrictionEvaluationsArgs) ToRestrictionEvaluationsPtrOutputWithContext added in v0.11.0

func (i RestrictionEvaluationsArgs) ToRestrictionEvaluationsPtrOutputWithContext(ctx context.Context) RestrictionEvaluationsPtrOutput

type RestrictionEvaluationsInput added in v0.11.0

type RestrictionEvaluationsInput interface {
	pulumi.Input

	ToRestrictionEvaluationsOutput() RestrictionEvaluationsOutput
	ToRestrictionEvaluationsOutputWithContext(context.Context) RestrictionEvaluationsOutput
}

RestrictionEvaluationsInput is an input type that accepts RestrictionEvaluationsArgs and RestrictionEvaluationsOutput values. You can construct a concrete instance of `RestrictionEvaluationsInput` via:

RestrictionEvaluationsArgs{...}

type RestrictionEvaluationsOutput added in v0.11.0

type RestrictionEvaluationsOutput struct{ *pulumi.OutputState }

Evaluations of restrictions applied to parent group on this membership.

func (RestrictionEvaluationsOutput) ElementType added in v0.11.0

func (RestrictionEvaluationsOutput) MemberRestrictionEvaluation added in v0.11.0

Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.

func (RestrictionEvaluationsOutput) ToRestrictionEvaluationsOutput added in v0.11.0

func (o RestrictionEvaluationsOutput) ToRestrictionEvaluationsOutput() RestrictionEvaluationsOutput

func (RestrictionEvaluationsOutput) ToRestrictionEvaluationsOutputWithContext added in v0.11.0

func (o RestrictionEvaluationsOutput) ToRestrictionEvaluationsOutputWithContext(ctx context.Context) RestrictionEvaluationsOutput

func (RestrictionEvaluationsOutput) ToRestrictionEvaluationsPtrOutput added in v0.11.0

func (o RestrictionEvaluationsOutput) ToRestrictionEvaluationsPtrOutput() RestrictionEvaluationsPtrOutput

func (RestrictionEvaluationsOutput) ToRestrictionEvaluationsPtrOutputWithContext added in v0.11.0

func (o RestrictionEvaluationsOutput) ToRestrictionEvaluationsPtrOutputWithContext(ctx context.Context) RestrictionEvaluationsPtrOutput

type RestrictionEvaluationsPtrInput added in v0.11.0

type RestrictionEvaluationsPtrInput interface {
	pulumi.Input

	ToRestrictionEvaluationsPtrOutput() RestrictionEvaluationsPtrOutput
	ToRestrictionEvaluationsPtrOutputWithContext(context.Context) RestrictionEvaluationsPtrOutput
}

RestrictionEvaluationsPtrInput is an input type that accepts RestrictionEvaluationsArgs, RestrictionEvaluationsPtr and RestrictionEvaluationsPtrOutput values. You can construct a concrete instance of `RestrictionEvaluationsPtrInput` via:

        RestrictionEvaluationsArgs{...}

or:

        nil

func RestrictionEvaluationsPtr added in v0.11.0

func RestrictionEvaluationsPtr(v *RestrictionEvaluationsArgs) RestrictionEvaluationsPtrInput

type RestrictionEvaluationsPtrOutput added in v0.11.0

type RestrictionEvaluationsPtrOutput struct{ *pulumi.OutputState }

func (RestrictionEvaluationsPtrOutput) Elem added in v0.11.0

func (RestrictionEvaluationsPtrOutput) ElementType added in v0.11.0

func (RestrictionEvaluationsPtrOutput) MemberRestrictionEvaluation added in v0.11.0

Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.

func (RestrictionEvaluationsPtrOutput) ToRestrictionEvaluationsPtrOutput added in v0.11.0

func (o RestrictionEvaluationsPtrOutput) ToRestrictionEvaluationsPtrOutput() RestrictionEvaluationsPtrOutput

func (RestrictionEvaluationsPtrOutput) ToRestrictionEvaluationsPtrOutputWithContext added in v0.11.0

func (o RestrictionEvaluationsPtrOutput) ToRestrictionEvaluationsPtrOutputWithContext(ctx context.Context) RestrictionEvaluationsPtrOutput

type RestrictionEvaluationsResponse added in v0.11.0

type RestrictionEvaluationsResponse struct {
	// Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.
	MemberRestrictionEvaluation MembershipRoleRestrictionEvaluationResponse `pulumi:"memberRestrictionEvaluation"`
}

Evaluations of restrictions applied to parent group on this membership.

type RestrictionEvaluationsResponseOutput added in v0.11.0

type RestrictionEvaluationsResponseOutput struct{ *pulumi.OutputState }

Evaluations of restrictions applied to parent group on this membership.

func (RestrictionEvaluationsResponseOutput) ElementType added in v0.11.0

func (RestrictionEvaluationsResponseOutput) MemberRestrictionEvaluation added in v0.11.0

Evaluation of the member restriction applied to this membership. Empty if the user lacks permission to view the restriction evaluation.

func (RestrictionEvaluationsResponseOutput) ToRestrictionEvaluationsResponseOutput added in v0.11.0

func (o RestrictionEvaluationsResponseOutput) ToRestrictionEvaluationsResponseOutput() RestrictionEvaluationsResponseOutput

func (RestrictionEvaluationsResponseOutput) ToRestrictionEvaluationsResponseOutputWithContext added in v0.11.0

func (o RestrictionEvaluationsResponseOutput) ToRestrictionEvaluationsResponseOutputWithContext(ctx context.Context) RestrictionEvaluationsResponseOutput

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL