Skip to content

Commit

Permalink
Generated 2023-01-20 for csas.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jun 11, 2024
1 parent d1da79b commit 597428b
Show file tree
Hide file tree
Showing 3 changed files with 253 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 1.8.2135 - 2024-6-11
- Generated 2023-01-20 for `csas`.


## 1.8.2134 - 2024-6-6
- Generated 2023-01-20 for `csas`.

Expand Down
248 changes: 248 additions & 0 deletions src/Csas/V20230120/CsasApiResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
* @method DeletePrivateAccessPolicy deletePrivateAccessPolicy(array $options = [])
* @method DeletePrivateAccessTag deletePrivateAccessTag(array $options = [])
* @method DeleteRegistrationPolicies deleteRegistrationPolicies(array $options = [])
* @method DeleteUserDevices deleteUserDevices(array $options = [])
* @method DeleteUserGroup deleteUserGroup(array $options = [])
* @method DetachApplication2Connector detachApplication2Connector(array $options = [])
* @method ExportUserDevices exportUserDevices(array $options = [])
* @method GetActiveIdpConfig getActiveIdpConfig(array $options = [])
* @method GetClientUser getClientUser(array $options = [])
* @method GetDynamicRoute getDynamicRoute(array $options = [])
Expand Down Expand Up @@ -996,6 +998,31 @@ public function withPolicyIds($value)
}
}

/**
* @method string getDeviceTags()
* @method string getSourceIp()
* @method $this withSourceIp($value)
*/
class DeleteUserDevices extends Rpc
{

/** @var string */
public $method = 'POST';

/**
* @param string $value
*
* @return $this
*/
public function withDeviceTags($value)
{
$this->data['DeviceTags'] = $value;
$this->options['form_params']['DeviceTags'] = $value;

return $this;
}
}

/**
* @method string getUserGroupId()
* @method string getSourceIp()
Expand Down Expand Up @@ -1060,6 +1087,227 @@ public function withApplicationIds($value)
}
}

/**
* @method string getMac()
* @method string getDeviceTypes()
* @method string getHostname()
* @method string getAppStatuses()
* @method string getDlpStatuses()
* @method string getSourceIp()
* @method $this withSourceIp($value)
* @method string getSaseUserId()
* @method string getNacStatuses()
* @method string getDepartment()
* @method string getIaStatuses()
* @method string getDeviceBelong()
* @method string getSharingStatus()
* @method string getDeviceTags()
* @method string getDeviceStatuses()
* @method string getPaStatuses()
* @method string getUsername()
*/
class ExportUserDevices extends Rpc
{

/** @var string */
public $method = 'POST';

/**
* @param string $value
*
* @return $this
*/
public function withMac($value)
{
$this->data['Mac'] = $value;
$this->options['form_params']['Mac'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withDeviceTypes($value)
{
$this->data['DeviceTypes'] = $value;
$this->options['form_params']['DeviceTypes'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withHostname($value)
{
$this->data['Hostname'] = $value;
$this->options['form_params']['Hostname'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withAppStatuses($value)
{
$this->data['AppStatuses'] = $value;
$this->options['form_params']['AppStatuses'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withDlpStatuses($value)
{
$this->data['DlpStatuses'] = $value;
$this->options['form_params']['DlpStatuses'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withSaseUserId($value)
{
$this->data['SaseUserId'] = $value;
$this->options['form_params']['SaseUserId'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withNacStatuses($value)
{
$this->data['NacStatuses'] = $value;
$this->options['form_params']['NacStatuses'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withDepartment($value)
{
$this->data['Department'] = $value;
$this->options['form_params']['Department'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withIaStatuses($value)
{
$this->data['IaStatuses'] = $value;
$this->options['form_params']['IaStatuses'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withDeviceBelong($value)
{
$this->data['DeviceBelong'] = $value;
$this->options['form_params']['DeviceBelong'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withSharingStatus($value)
{
$this->data['SharingStatus'] = $value;
$this->options['form_params']['SharingStatus'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withDeviceTags($value)
{
$this->data['DeviceTags'] = $value;
$this->options['form_params']['DeviceTags'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withDeviceStatuses($value)
{
$this->data['DeviceStatuses'] = $value;
$this->options['form_params']['DeviceStatuses'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withPaStatuses($value)
{
$this->data['PaStatuses'] = $value;
$this->options['form_params']['PaStatuses'] = $value;

return $this;
}

/**
* @param string $value
*
* @return $this
*/
public function withUsername($value)
{
$this->data['Username'] = $value;
$this->options['form_params']['Username'] = $value;

return $this;
}
}

class GetActiveIdpConfig extends Rpc
{
}
Expand Down
2 changes: 1 addition & 1 deletion src/Release.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Release
/**
* Version of the SDK
*/
const VERSION = '1.8.2134';
const VERSION = '1.8.2135';

/**
* @param Event $event
Expand Down

0 comments on commit 597428b

Please sign in to comment.