@nebius/js-sdk - v0.2.54
    Preparing search index...

    Interface GroupMembershipStatus

    Represents the nebius.iam.v1.GroupMembershipStatus protobuf message.

    interface GroupMembershipStatus {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.iam.v1.GroupMembershipStatus";
        groupMemberMetadata?: ResourceMetadata;
        groupMemberStatus?:
            | {
                $case: "tenantUserAccountStatus";
                tenantUserAccountStatus: TenantUserAccountStatus;
            }
            | {
                $case: "serviceAccountStatus";
                serviceAccountStatus: ServiceAccountStatus;
            };
        [key: symbol]: Uint8Array<ArrayBufferLike>
        | (() => unknown)
        | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined

      Represents the nebius.iam.v1.GroupMembershipStatus protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.iam.v1.GroupMembershipStatus protobuf message.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.iam.v1.GroupMembershipStatus"

    Contains the fully qualified protobuf type name.

    groupMemberMetadata?: ResourceMetadata

    Contains the group_member_metadata protobuf field.

    groupMemberStatus?:
        | {
            $case: "tenantUserAccountStatus";
            tenantUserAccountStatus: TenantUserAccountStatus;
        }
        | {
            $case: "serviceAccountStatus";
            serviceAccountStatus: ServiceAccountStatus;
        }

    Contains the selected value for the group_member_status protobuf oneof.

    Type Declaration

    • {
          $case: "tenantUserAccountStatus";
          tenantUserAccountStatus: TenantUserAccountStatus;
      }
      • $case: "tenantUserAccountStatus"

        Contains the case.

      • tenantUserAccountStatus: TenantUserAccountStatus

        Contains the tenant user account status.

    • { $case: "serviceAccountStatus"; serviceAccountStatus: ServiceAccountStatus }
      • $case: "serviceAccountStatus"

        Contains the case.

      • serviceAccountStatus: ServiceAccountStatus

        Contains the service account status.