Skip to content

Commit

Permalink
由明锻发起的ONS SDK自动发布, BUILD_ID=185, 版本号:2.0.0
Browse files Browse the repository at this point in the history
发布日志:
1, 写资源接口增加访问权限控制,仅限铂金版客户使用。
2, 修改版本号为2017-09-18。
3, 新增消息轨迹查询接口。
  • Loading branch information
Qingtang-SDK committed Sep 19, 2017
1 parent c05fed2 commit 1584b43
Show file tree
Hide file tree
Showing 54 changed files with 4,796 additions and 0 deletions.
5 changes: 5 additions & 0 deletions aliyun-php-sdk-ons/ChangeLog.txt
@@ -0,0 +1,5 @@
2017-09-19 Version: 2.0.0
1, 写资源接口增加访问权限控制,仅限铂金版客户使用。
2, 修改版本号为2017-09-18。
3, 新增消息轨迹查询接口。

@@ -0,0 +1,74 @@
<?php
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 Ons\Request\V20170918;

class OnsBuyOrdersProduceRequest extends \RpcAcsRequest
{
function __construct()
{
parent::__construct("Ons", "2017-09-18", "OnsBuyOrdersProduce");
$this->setMethod("POST");
}

private $preventCache;

private $onsRegionId;

private $onsPlatform;

private $data;

public function getPreventCache() {
return $this->preventCache;
}

public function setPreventCache($preventCache) {
$this->preventCache = $preventCache;
$this->queryParameters["PreventCache"]=$preventCache;
}

public function getOnsRegionId() {
return $this->onsRegionId;
}

public function setOnsRegionId($onsRegionId) {
$this->onsRegionId = $onsRegionId;
$this->queryParameters["OnsRegionId"]=$onsRegionId;
}

public function getOnsPlatform() {
return $this->onsPlatform;
}

public function setOnsPlatform($onsPlatform) {
$this->onsPlatform = $onsPlatform;
$this->queryParameters["OnsPlatform"]=$onsPlatform;
}

public function getdata() {
return $this->data;
}

public function setdata($data) {
$this->data = $data;
$this->queryParameters["data"]=$data;
}

}
@@ -0,0 +1,85 @@
<?php
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 Ons\Request\V20170918;

class OnsConsumerAccumulateRequest extends \RpcAcsRequest
{
function __construct()
{
parent::__construct("Ons", "2017-09-18", "OnsConsumerAccumulate");
$this->setMethod("POST");
}

private $preventCache;

private $onsRegionId;

private $onsPlatform;

private $consumerId;

private $detail;

public function getPreventCache() {
return $this->preventCache;
}

public function setPreventCache($preventCache) {
$this->preventCache = $preventCache;
$this->queryParameters["PreventCache"]=$preventCache;
}

public function getOnsRegionId() {
return $this->onsRegionId;
}

public function setOnsRegionId($onsRegionId) {
$this->onsRegionId = $onsRegionId;
$this->queryParameters["OnsRegionId"]=$onsRegionId;
}

public function getOnsPlatform() {
return $this->onsPlatform;
}

public function setOnsPlatform($onsPlatform) {
$this->onsPlatform = $onsPlatform;
$this->queryParameters["OnsPlatform"]=$onsPlatform;
}

public function getConsumerId() {
return $this->consumerId;
}

public function setConsumerId($consumerId) {
$this->consumerId = $consumerId;
$this->queryParameters["ConsumerId"]=$consumerId;
}

public function getDetail() {
return $this->detail;
}

public function setDetail($detail) {
$this->detail = $detail;
$this->queryParameters["Detail"]=$detail;
}

}
@@ -0,0 +1,74 @@
<?php
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 Ons\Request\V20170918;

class OnsConsumerGetConnectionRequest extends \RpcAcsRequest
{
function __construct()
{
parent::__construct("Ons", "2017-09-18", "OnsConsumerGetConnection");
$this->setMethod("POST");
}

private $preventCache;

private $onsRegionId;

private $onsPlatform;

private $consumerId;

public function getPreventCache() {
return $this->preventCache;
}

public function setPreventCache($preventCache) {
$this->preventCache = $preventCache;
$this->queryParameters["PreventCache"]=$preventCache;
}

public function getOnsRegionId() {
return $this->onsRegionId;
}

public function setOnsRegionId($onsRegionId) {
$this->onsRegionId = $onsRegionId;
$this->queryParameters["OnsRegionId"]=$onsRegionId;
}

public function getOnsPlatform() {
return $this->onsPlatform;
}

public function setOnsPlatform($onsPlatform) {
$this->onsPlatform = $onsPlatform;
$this->queryParameters["OnsPlatform"]=$onsPlatform;
}

public function getConsumerId() {
return $this->consumerId;
}

public function setConsumerId($consumerId) {
$this->consumerId = $consumerId;
$this->queryParameters["ConsumerId"]=$consumerId;
}

}
@@ -0,0 +1,107 @@
<?php
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 Ons\Request\V20170918;

class OnsConsumerResetOffsetRequest extends \RpcAcsRequest
{
function __construct()
{
parent::__construct("Ons", "2017-09-18", "OnsConsumerResetOffset");
$this->setMethod("POST");
}

private $preventCache;

private $onsRegionId;

private $onsPlatform;

private $consumerId;

private $topic;

private $resetTimestamp;

private $type;

public function getPreventCache() {
return $this->preventCache;
}

public function setPreventCache($preventCache) {
$this->preventCache = $preventCache;
$this->queryParameters["PreventCache"]=$preventCache;
}

public function getOnsRegionId() {
return $this->onsRegionId;
}

public function setOnsRegionId($onsRegionId) {
$this->onsRegionId = $onsRegionId;
$this->queryParameters["OnsRegionId"]=$onsRegionId;
}

public function getOnsPlatform() {
return $this->onsPlatform;
}

public function setOnsPlatform($onsPlatform) {
$this->onsPlatform = $onsPlatform;
$this->queryParameters["OnsPlatform"]=$onsPlatform;
}

public function getConsumerId() {
return $this->consumerId;
}

public function setConsumerId($consumerId) {
$this->consumerId = $consumerId;
$this->queryParameters["ConsumerId"]=$consumerId;
}

public function getTopic() {
return $this->topic;
}

public function setTopic($topic) {
$this->topic = $topic;
$this->queryParameters["Topic"]=$topic;
}

public function getResetTimestamp() {
return $this->resetTimestamp;
}

public function setResetTimestamp($resetTimestamp) {
$this->resetTimestamp = $resetTimestamp;
$this->queryParameters["ResetTimestamp"]=$resetTimestamp;
}

public function getType() {
return $this->type;
}

public function setType($type) {
$this->type = $type;
$this->queryParameters["Type"]=$type;
}

}

0 comments on commit 1584b43

Please sign in to comment.