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 Oct 30, 2024
1 parent cd9c11e commit 07135ef
Show file tree
Hide file tree
Showing 3 changed files with 109 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.2212 - 2024-10-30
- Generated 2023-01-20 for `csas`.


## 1.8.2211 - 2024-10-30
- Support describe and modify NVMe on instance.

Expand Down
104 changes: 104 additions & 0 deletions src/Csas/V20230120/CsasApiResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,11 @@ class CreateIdpDepartment extends Rpc
* @method string getProtocol()
* @method string getSourceIp()
* @method $this withSourceIp($value)
* @method string getL7ProxyDomainCustom()
* @method string getL7ProxyDomainPrivate()
* @method string getBrowserAccessStatus()
* @method string getTagIds()
* @method string getL7ProxyDomainAutomaticPrefix()
* @method string getPortRanges()
* @method string getName()
* @method string getStatus()
Expand Down Expand Up @@ -369,6 +373,45 @@ public function withProtocol($value)
return $this;
}

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

return $this;
}

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

return $this;
}

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

return $this;
}

/**
* @param string $value
*
Expand All @@ -382,6 +425,19 @@ public function withTagIds($value)
return $this;
}

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

return $this;
}

/**
* @param string $value
*
Expand Down Expand Up @@ -1006,6 +1062,8 @@ public function withHeight($value)
* @method string getImageEmbedJpegQuality()
* @method string getWatermarkInfoUint()
* @method string getWmInfoUint()
* @method string getCsvControl()
* @method $this withCsvControl($value)
* @method string getFilename()
* @method string getWmInfoSize()
* @method string getWmInfoBytesB64()
Expand Down Expand Up @@ -1194,6 +1252,8 @@ public function withVideoBitrate($value)
* @method $this withSourceIp($value)
* @method string getWmType()
* @method string getImageDetectLevel()
* @method string getCsvControl()
* @method $this withCsvControl($value)
* @method string getFilename()
* @method string getWmInfoSize()
* @method string getFileUrl()
Expand Down Expand Up @@ -2197,6 +2257,8 @@ class ListPopTrafficStatistics extends Rpc
* @method $this withCurrentPage($value)
* @method string getApplicationIds()
* @method $this withApplicationIds($value)
* @method string getAccessModes()
* @method $this withAccessModes($value)
* @method string getName()
* @method $this withName($value)
* @method string getStatus()
Expand Down Expand Up @@ -2835,7 +2897,10 @@ public function withStatus($value)
* @method string getSourceIp()
* @method $this withSourceIp($value)
* @method string getApplicationId()
* @method string getL7ProxyDomainCustom()
* @method string getL7ProxyDomainPrivate()
* @method string getTagIds()
* @method string getL7ProxyDomainAutomaticPrefix()
* @method string getPortRanges()
* @method string getModifyType()
* @method string getStatus()
Expand Down Expand Up @@ -2895,6 +2960,32 @@ public function withApplicationId($value)
return $this;
}

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

return $this;
}

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

return $this;
}

/**
* @param string $value
*
Expand All @@ -2908,6 +2999,19 @@ public function withTagIds($value)
return $this;
}

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

return $this;
}

/**
* @param string $value
*
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.2211';
const VERSION = '1.8.2212';

/**
* @param Event $event
Expand Down

0 comments on commit 07135ef

Please sign in to comment.