regenerate code
This commit is contained in:
@@ -411,6 +411,78 @@ LiveClient::AddLiveAppSnapshotConfigOutcomeCallable LiveClient::addLiveAppSnapsh
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::AddLiveAudioAuditConfigOutcome LiveClient::addLiveAudioAuditConfig(const AddLiveAudioAuditConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return AddLiveAudioAuditConfigOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return AddLiveAudioAuditConfigOutcome(AddLiveAudioAuditConfigResult(outcome.result()));
|
||||
else
|
||||
return AddLiveAudioAuditConfigOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::addLiveAudioAuditConfigAsync(const AddLiveAudioAuditConfigRequest& request, const AddLiveAudioAuditConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, addLiveAudioAuditConfig(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::AddLiveAudioAuditConfigOutcomeCallable LiveClient::addLiveAudioAuditConfigCallable(const AddLiveAudioAuditConfigRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<AddLiveAudioAuditConfigOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->addLiveAudioAuditConfig(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::AddLiveAudioAuditNotifyConfigOutcome LiveClient::addLiveAudioAuditNotifyConfig(const AddLiveAudioAuditNotifyConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return AddLiveAudioAuditNotifyConfigOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return AddLiveAudioAuditNotifyConfigOutcome(AddLiveAudioAuditNotifyConfigResult(outcome.result()));
|
||||
else
|
||||
return AddLiveAudioAuditNotifyConfigOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::addLiveAudioAuditNotifyConfigAsync(const AddLiveAudioAuditNotifyConfigRequest& request, const AddLiveAudioAuditNotifyConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, addLiveAudioAuditNotifyConfig(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::AddLiveAudioAuditNotifyConfigOutcomeCallable LiveClient::addLiveAudioAuditNotifyConfigCallable(const AddLiveAudioAuditNotifyConfigRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<AddLiveAudioAuditNotifyConfigOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->addLiveAudioAuditNotifyConfig(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::AddLiveDetectNotifyConfigOutcome LiveClient::addLiveDetectNotifyConfig(const AddLiveDetectNotifyConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -987,6 +1059,42 @@ LiveClient::CompleteBoardRecordOutcomeCallable LiveClient::completeBoardRecordCa
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::ControlHtmlResourceOutcome LiveClient::controlHtmlResource(const ControlHtmlResourceRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return ControlHtmlResourceOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return ControlHtmlResourceOutcome(ControlHtmlResourceResult(outcome.result()));
|
||||
else
|
||||
return ControlHtmlResourceOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::controlHtmlResourceAsync(const ControlHtmlResourceRequest& request, const ControlHtmlResourceAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, controlHtmlResource(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::ControlHtmlResourceOutcomeCallable LiveClient::controlHtmlResourceCallable(const ControlHtmlResourceRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<ControlHtmlResourceOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->controlHtmlResource(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::CopyCasterOutcome LiveClient::copyCaster(const CopyCasterRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -1563,6 +1671,42 @@ LiveClient::DeleteCasterVideoResourceOutcomeCallable LiveClient::deleteCasterVid
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DeleteHtmlResourceOutcome LiveClient::deleteHtmlResource(const DeleteHtmlResourceRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DeleteHtmlResourceOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DeleteHtmlResourceOutcome(DeleteHtmlResourceResult(outcome.result()));
|
||||
else
|
||||
return DeleteHtmlResourceOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::deleteHtmlResourceAsync(const DeleteHtmlResourceRequest& request, const DeleteHtmlResourceAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, deleteHtmlResource(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DeleteHtmlResourceOutcomeCallable LiveClient::deleteHtmlResourceCallable(const DeleteHtmlResourceRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DeleteHtmlResourceOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->deleteHtmlResource(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DeleteLiveAppRecordConfigOutcome LiveClient::deleteLiveAppRecordConfig(const DeleteLiveAppRecordConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -1635,6 +1779,78 @@ LiveClient::DeleteLiveAppSnapshotConfigOutcomeCallable LiveClient::deleteLiveApp
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DeleteLiveAudioAuditConfigOutcome LiveClient::deleteLiveAudioAuditConfig(const DeleteLiveAudioAuditConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DeleteLiveAudioAuditConfigOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DeleteLiveAudioAuditConfigOutcome(DeleteLiveAudioAuditConfigResult(outcome.result()));
|
||||
else
|
||||
return DeleteLiveAudioAuditConfigOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::deleteLiveAudioAuditConfigAsync(const DeleteLiveAudioAuditConfigRequest& request, const DeleteLiveAudioAuditConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, deleteLiveAudioAuditConfig(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DeleteLiveAudioAuditConfigOutcomeCallable LiveClient::deleteLiveAudioAuditConfigCallable(const DeleteLiveAudioAuditConfigRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DeleteLiveAudioAuditConfigOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->deleteLiveAudioAuditConfig(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DeleteLiveAudioAuditNotifyConfigOutcome LiveClient::deleteLiveAudioAuditNotifyConfig(const DeleteLiveAudioAuditNotifyConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DeleteLiveAudioAuditNotifyConfigOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DeleteLiveAudioAuditNotifyConfigOutcome(DeleteLiveAudioAuditNotifyConfigResult(outcome.result()));
|
||||
else
|
||||
return DeleteLiveAudioAuditNotifyConfigOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::deleteLiveAudioAuditNotifyConfigAsync(const DeleteLiveAudioAuditNotifyConfigRequest& request, const DeleteLiveAudioAuditNotifyConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, deleteLiveAudioAuditNotifyConfig(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DeleteLiveAudioAuditNotifyConfigOutcomeCallable LiveClient::deleteLiveAudioAuditNotifyConfigCallable(const DeleteLiveAudioAuditNotifyConfigRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DeleteLiveAudioAuditNotifyConfigOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->deleteLiveAudioAuditNotifyConfig(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DeleteLiveDetectNotifyConfigOutcome LiveClient::deleteLiveDetectNotifyConfig(const DeleteLiveDetectNotifyConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -2715,6 +2931,114 @@ LiveClient::DescribeHlsLiveStreamRealTimeBpsDataOutcomeCallable LiveClient::desc
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeHtmlResourceOutcome LiveClient::describeHtmlResource(const DescribeHtmlResourceRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeHtmlResourceOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeHtmlResourceOutcome(DescribeHtmlResourceResult(outcome.result()));
|
||||
else
|
||||
return DescribeHtmlResourceOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::describeHtmlResourceAsync(const DescribeHtmlResourceRequest& request, const DescribeHtmlResourceAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeHtmlResource(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DescribeHtmlResourceOutcomeCallable LiveClient::describeHtmlResourceCallable(const DescribeHtmlResourceRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeHtmlResourceOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeHtmlResource(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveAudioAuditConfigOutcome LiveClient::describeLiveAudioAuditConfig(const DescribeLiveAudioAuditConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeLiveAudioAuditConfigOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeLiveAudioAuditConfigOutcome(DescribeLiveAudioAuditConfigResult(outcome.result()));
|
||||
else
|
||||
return DescribeLiveAudioAuditConfigOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::describeLiveAudioAuditConfigAsync(const DescribeLiveAudioAuditConfigRequest& request, const DescribeLiveAudioAuditConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeLiveAudioAuditConfig(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveAudioAuditConfigOutcomeCallable LiveClient::describeLiveAudioAuditConfigCallable(const DescribeLiveAudioAuditConfigRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeLiveAudioAuditConfigOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeLiveAudioAuditConfig(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveAudioAuditNotifyConfigOutcome LiveClient::describeLiveAudioAuditNotifyConfig(const DescribeLiveAudioAuditNotifyConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeLiveAudioAuditNotifyConfigOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeLiveAudioAuditNotifyConfigOutcome(DescribeLiveAudioAuditNotifyConfigResult(outcome.result()));
|
||||
else
|
||||
return DescribeLiveAudioAuditNotifyConfigOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::describeLiveAudioAuditNotifyConfigAsync(const DescribeLiveAudioAuditNotifyConfigRequest& request, const DescribeLiveAudioAuditNotifyConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeLiveAudioAuditNotifyConfig(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveAudioAuditNotifyConfigOutcomeCallable LiveClient::describeLiveAudioAuditNotifyConfigCallable(const DescribeLiveAudioAuditNotifyConfigRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeLiveAudioAuditNotifyConfigOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeLiveAudioAuditNotifyConfig(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveCertificateDetailOutcome LiveClient::describeLiveCertificateDetail(const DescribeLiveCertificateDetailRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -3111,6 +3435,78 @@ LiveClient::DescribeLiveDomainOnlineUserNumOutcomeCallable LiveClient::describeL
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveDomainPushBpsDataOutcome LiveClient::describeLiveDomainPushBpsData(const DescribeLiveDomainPushBpsDataRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeLiveDomainPushBpsDataOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeLiveDomainPushBpsDataOutcome(DescribeLiveDomainPushBpsDataResult(outcome.result()));
|
||||
else
|
||||
return DescribeLiveDomainPushBpsDataOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::describeLiveDomainPushBpsDataAsync(const DescribeLiveDomainPushBpsDataRequest& request, const DescribeLiveDomainPushBpsDataAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeLiveDomainPushBpsData(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveDomainPushBpsDataOutcomeCallable LiveClient::describeLiveDomainPushBpsDataCallable(const DescribeLiveDomainPushBpsDataRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeLiveDomainPushBpsDataOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeLiveDomainPushBpsData(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveDomainPushTrafficDataOutcome LiveClient::describeLiveDomainPushTrafficData(const DescribeLiveDomainPushTrafficDataRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeLiveDomainPushTrafficDataOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeLiveDomainPushTrafficDataOutcome(DescribeLiveDomainPushTrafficDataResult(outcome.result()));
|
||||
else
|
||||
return DescribeLiveDomainPushTrafficDataOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::describeLiveDomainPushTrafficDataAsync(const DescribeLiveDomainPushTrafficDataRequest& request, const DescribeLiveDomainPushTrafficDataAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeLiveDomainPushTrafficData(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveDomainPushTrafficDataOutcomeCallable LiveClient::describeLiveDomainPushTrafficDataCallable(const DescribeLiveDomainPushTrafficDataRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeLiveDomainPushTrafficDataOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeLiveDomainPushTrafficData(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveDomainRealTimeBpsDataOutcome LiveClient::describeLiveDomainRealTimeBpsData(const DescribeLiveDomainRealTimeBpsDataRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -4371,6 +4767,42 @@ LiveClient::DescribeLiveStreamsPublishListOutcomeCallable LiveClient::describeLi
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveTagResourcesOutcome LiveClient::describeLiveTagResources(const DescribeLiveTagResourcesRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeLiveTagResourcesOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeLiveTagResourcesOutcome(DescribeLiveTagResourcesResult(outcome.result()));
|
||||
else
|
||||
return DescribeLiveTagResourcesOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::describeLiveTagResourcesAsync(const DescribeLiveTagResourcesRequest& request, const DescribeLiveTagResourcesAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeLiveTagResources(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveTagResourcesOutcomeCallable LiveClient::describeLiveTagResourcesCallable(const DescribeLiveTagResourcesRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeLiveTagResourcesOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeLiveTagResources(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveTopDomainsByFlowOutcome LiveClient::describeLiveTopDomainsByFlow(const DescribeLiveTopDomainsByFlowRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -4443,6 +4875,42 @@ LiveClient::DescribeLiveUserDomainsOutcomeCallable LiveClient::describeLiveUserD
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveUserTagsOutcome LiveClient::describeLiveUserTags(const DescribeLiveUserTagsRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return DescribeLiveUserTagsOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return DescribeLiveUserTagsOutcome(DescribeLiveUserTagsResult(outcome.result()));
|
||||
else
|
||||
return DescribeLiveUserTagsOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::describeLiveUserTagsAsync(const DescribeLiveUserTagsRequest& request, const DescribeLiveUserTagsAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, describeLiveUserTags(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::DescribeLiveUserTagsOutcomeCallable LiveClient::describeLiveUserTagsCallable(const DescribeLiveUserTagsRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<DescribeLiveUserTagsOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->describeLiveUserTags(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::DescribeRecordOutcome LiveClient::describeRecord(const DescribeRecordRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -4767,6 +5235,42 @@ LiveClient::DisableLiveRealtimeLogDeliveryOutcomeCallable LiveClient::disableLiv
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::EditHtmlResourceOutcome LiveClient::editHtmlResource(const EditHtmlResourceRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return EditHtmlResourceOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return EditHtmlResourceOutcome(EditHtmlResourceResult(outcome.result()));
|
||||
else
|
||||
return EditHtmlResourceOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::editHtmlResourceAsync(const EditHtmlResourceRequest& request, const EditHtmlResourceAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, editHtmlResource(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::EditHtmlResourceOutcomeCallable LiveClient::editHtmlResourceCallable(const EditHtmlResourceRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<EditHtmlResourceOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->editHtmlResource(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::EffectCasterUrgentOutcome LiveClient::effectCasterUrgent(const EffectCasterUrgentRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -6207,6 +6711,78 @@ LiveClient::StopLiveIndexOutcomeCallable LiveClient::stopLiveIndexCallable(const
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::TagLiveResourcesOutcome LiveClient::tagLiveResources(const TagLiveResourcesRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return TagLiveResourcesOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return TagLiveResourcesOutcome(TagLiveResourcesResult(outcome.result()));
|
||||
else
|
||||
return TagLiveResourcesOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::tagLiveResourcesAsync(const TagLiveResourcesRequest& request, const TagLiveResourcesAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, tagLiveResources(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::TagLiveResourcesOutcomeCallable LiveClient::tagLiveResourcesCallable(const TagLiveResourcesRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<TagLiveResourcesOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->tagLiveResources(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::UnTagLiveResourcesOutcome LiveClient::unTagLiveResources(const UnTagLiveResourcesRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return UnTagLiveResourcesOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return UnTagLiveResourcesOutcome(UnTagLiveResourcesResult(outcome.result()));
|
||||
else
|
||||
return UnTagLiveResourcesOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::unTagLiveResourcesAsync(const UnTagLiveResourcesRequest& request, const UnTagLiveResourcesAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, unTagLiveResources(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::UnTagLiveResourcesOutcomeCallable LiveClient::unTagLiveResourcesCallable(const UnTagLiveResourcesRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<UnTagLiveResourcesOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->unTagLiveResources(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::UpdateBoardOutcome LiveClient::updateBoard(const UpdateBoardRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
@@ -6387,6 +6963,78 @@ LiveClient::UpdateLiveAppSnapshotConfigOutcomeCallable LiveClient::updateLiveApp
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::UpdateLiveAudioAuditConfigOutcome LiveClient::updateLiveAudioAuditConfig(const UpdateLiveAudioAuditConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return UpdateLiveAudioAuditConfigOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return UpdateLiveAudioAuditConfigOutcome(UpdateLiveAudioAuditConfigResult(outcome.result()));
|
||||
else
|
||||
return UpdateLiveAudioAuditConfigOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::updateLiveAudioAuditConfigAsync(const UpdateLiveAudioAuditConfigRequest& request, const UpdateLiveAudioAuditConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, updateLiveAudioAuditConfig(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::UpdateLiveAudioAuditConfigOutcomeCallable LiveClient::updateLiveAudioAuditConfigCallable(const UpdateLiveAudioAuditConfigRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<UpdateLiveAudioAuditConfigOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->updateLiveAudioAuditConfig(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::UpdateLiveAudioAuditNotifyConfigOutcome LiveClient::updateLiveAudioAuditNotifyConfig(const UpdateLiveAudioAuditNotifyConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return UpdateLiveAudioAuditNotifyConfigOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return UpdateLiveAudioAuditNotifyConfigOutcome(UpdateLiveAudioAuditNotifyConfigResult(outcome.result()));
|
||||
else
|
||||
return UpdateLiveAudioAuditNotifyConfigOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void LiveClient::updateLiveAudioAuditNotifyConfigAsync(const UpdateLiveAudioAuditNotifyConfigRequest& request, const UpdateLiveAudioAuditNotifyConfigAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, updateLiveAudioAuditNotifyConfig(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
LiveClient::UpdateLiveAudioAuditNotifyConfigOutcomeCallable LiveClient::updateLiveAudioAuditNotifyConfigCallable(const UpdateLiveAudioAuditNotifyConfigRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<UpdateLiveAudioAuditNotifyConfigOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->updateLiveAudioAuditNotifyConfig(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
LiveClient::UpdateLiveDetectNotifyConfigOutcome LiveClient::updateLiveDetectNotifyConfig(const UpdateLiveDetectNotifyConfigRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
|
||||
@@ -20,11 +20,24 @@ using AlibabaCloud::Live::Model::AddCasterComponentRequest;
|
||||
|
||||
AddCasterComponentRequest::AddCasterComponentRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddCasterComponent")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddCasterComponentRequest::~AddCasterComponentRequest()
|
||||
{}
|
||||
|
||||
std::string AddCasterComponentRequest::getHtmlLayerContent()const
|
||||
{
|
||||
return htmlLayerContent_;
|
||||
}
|
||||
|
||||
void AddCasterComponentRequest::setHtmlLayerContent(const std::string& htmlLayerContent)
|
||||
{
|
||||
htmlLayerContent_ = htmlLayerContent;
|
||||
setParameter("HtmlLayerContent", htmlLayerContent);
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getImageLayerContent()const
|
||||
{
|
||||
return imageLayerContent_;
|
||||
@@ -33,7 +46,7 @@ std::string AddCasterComponentRequest::getImageLayerContent()const
|
||||
void AddCasterComponentRequest::setImageLayerContent(const std::string& imageLayerContent)
|
||||
{
|
||||
imageLayerContent_ = imageLayerContent;
|
||||
setCoreParameter("ImageLayerContent", imageLayerContent);
|
||||
setParameter("ImageLayerContent", imageLayerContent);
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getComponentName()const
|
||||
@@ -44,7 +57,18 @@ std::string AddCasterComponentRequest::getComponentName()const
|
||||
void AddCasterComponentRequest::setComponentName(const std::string& componentName)
|
||||
{
|
||||
componentName_ = componentName;
|
||||
setCoreParameter("ComponentName", componentName);
|
||||
setParameter("ComponentName", componentName);
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getLayerOrder()const
|
||||
{
|
||||
return layerOrder_;
|
||||
}
|
||||
|
||||
void AddCasterComponentRequest::setLayerOrder(const std::string& layerOrder)
|
||||
{
|
||||
layerOrder_ = layerOrder;
|
||||
setParameter("LayerOrder", layerOrder);
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getCasterId()const
|
||||
@@ -55,7 +79,7 @@ std::string AddCasterComponentRequest::getCasterId()const
|
||||
void AddCasterComponentRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getComponentLayer()const
|
||||
@@ -66,7 +90,7 @@ std::string AddCasterComponentRequest::getComponentLayer()const
|
||||
void AddCasterComponentRequest::setComponentLayer(const std::string& componentLayer)
|
||||
{
|
||||
componentLayer_ = componentLayer;
|
||||
setCoreParameter("ComponentLayer", componentLayer);
|
||||
setParameter("ComponentLayer", componentLayer);
|
||||
}
|
||||
|
||||
long AddCasterComponentRequest::getOwnerId()const
|
||||
@@ -77,7 +101,7 @@ long AddCasterComponentRequest::getOwnerId()const
|
||||
void AddCasterComponentRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getComponentType()const
|
||||
@@ -88,7 +112,7 @@ std::string AddCasterComponentRequest::getComponentType()const
|
||||
void AddCasterComponentRequest::setComponentType(const std::string& componentType)
|
||||
{
|
||||
componentType_ = componentType;
|
||||
setCoreParameter("ComponentType", componentType);
|
||||
setParameter("ComponentType", componentType);
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getLocationId()const
|
||||
@@ -99,7 +123,7 @@ std::string AddCasterComponentRequest::getLocationId()const
|
||||
void AddCasterComponentRequest::setLocationId(const std::string& locationId)
|
||||
{
|
||||
locationId_ = locationId;
|
||||
setCoreParameter("LocationId", locationId);
|
||||
setParameter("LocationId", locationId);
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getEffect()const
|
||||
@@ -110,7 +134,7 @@ std::string AddCasterComponentRequest::getEffect()const
|
||||
void AddCasterComponentRequest::setEffect(const std::string& effect)
|
||||
{
|
||||
effect_ = effect;
|
||||
setCoreParameter("Effect", effect);
|
||||
setParameter("Effect", effect);
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getCaptionLayerContent()const
|
||||
@@ -121,7 +145,7 @@ std::string AddCasterComponentRequest::getCaptionLayerContent()const
|
||||
void AddCasterComponentRequest::setCaptionLayerContent(const std::string& captionLayerContent)
|
||||
{
|
||||
captionLayerContent_ = captionLayerContent;
|
||||
setCoreParameter("CaptionLayerContent", captionLayerContent);
|
||||
setParameter("CaptionLayerContent", captionLayerContent);
|
||||
}
|
||||
|
||||
std::string AddCasterComponentRequest::getTextLayerContent()const
|
||||
@@ -132,6 +156,6 @@ std::string AddCasterComponentRequest::getTextLayerContent()const
|
||||
void AddCasterComponentRequest::setTextLayerContent(const std::string& textLayerContent)
|
||||
{
|
||||
textLayerContent_ = textLayerContent;
|
||||
setCoreParameter("TextLayerContent", textLayerContent);
|
||||
setParameter("TextLayerContent", textLayerContent);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddCasterEpisodeGroupContentRequest;
|
||||
|
||||
AddCasterEpisodeGroupContentRequest::AddCasterEpisodeGroupContentRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddCasterEpisodeGroupContent")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddCasterEpisodeGroupContentRequest::~AddCasterEpisodeGroupContentRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddCasterEpisodeGroupContentRequest::getClientToken()const
|
||||
void AddCasterEpisodeGroupContentRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
setParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeGroupContentRequest::getContent()const
|
||||
@@ -44,7 +46,7 @@ std::string AddCasterEpisodeGroupContentRequest::getContent()const
|
||||
void AddCasterEpisodeGroupContentRequest::setContent(const std::string& content)
|
||||
{
|
||||
content_ = content;
|
||||
setCoreParameter("Content", content);
|
||||
setParameter("Content", content);
|
||||
}
|
||||
|
||||
long AddCasterEpisodeGroupContentRequest::getOwnerId()const
|
||||
@@ -55,6 +57,6 @@ long AddCasterEpisodeGroupContentRequest::getOwnerId()const
|
||||
void AddCasterEpisodeGroupContentRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddCasterEpisodeGroupRequest;
|
||||
|
||||
AddCasterEpisodeGroupRequest::AddCasterEpisodeGroupRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddCasterEpisodeGroup")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddCasterEpisodeGroupRequest::~AddCasterEpisodeGroupRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddCasterEpisodeGroupRequest::getClientToken()const
|
||||
void AddCasterEpisodeGroupRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
setParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeGroupRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string AddCasterEpisodeGroupRequest::getStartTime()const
|
||||
void AddCasterEpisodeGroupRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeGroupRequest::getSideOutputUrl()const
|
||||
@@ -55,7 +57,7 @@ std::string AddCasterEpisodeGroupRequest::getSideOutputUrl()const
|
||||
void AddCasterEpisodeGroupRequest::setSideOutputUrl(const std::string& sideOutputUrl)
|
||||
{
|
||||
sideOutputUrl_ = sideOutputUrl;
|
||||
setCoreParameter("SideOutputUrl", sideOutputUrl);
|
||||
setParameter("SideOutputUrl", sideOutputUrl);
|
||||
}
|
||||
|
||||
std::vector<AddCasterEpisodeGroupRequest::Item> AddCasterEpisodeGroupRequest::getItem()const
|
||||
@@ -66,12 +68,11 @@ std::vector<AddCasterEpisodeGroupRequest::Item> AddCasterEpisodeGroupRequest::ge
|
||||
void AddCasterEpisodeGroupRequest::setItem(const std::vector<Item>& item)
|
||||
{
|
||||
item_ = item;
|
||||
int i = 0;
|
||||
for(int i = 0; i!= item.size(); i++) {
|
||||
auto obj = item.at(i);
|
||||
std::string str ="Item."+ std::to_string(i);
|
||||
setCoreParameter(str + ".ItemName", obj.itemName);
|
||||
setCoreParameter(str + ".VodUrl", obj.vodUrl);
|
||||
for(int dep1 = 0; dep1!= item.size(); dep1++) {
|
||||
auto itemObj = item.at(dep1);
|
||||
std::string itemObjStr = "Item." + std::to_string(dep1 + 1);
|
||||
setParameter(itemObjStr + ".ItemName", itemObj.itemName);
|
||||
setParameter(itemObjStr + ".VodUrl", itemObj.vodUrl);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -83,7 +84,7 @@ std::string AddCasterEpisodeGroupRequest::getDomainName()const
|
||||
void AddCasterEpisodeGroupRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long AddCasterEpisodeGroupRequest::getOwnerId()const
|
||||
@@ -94,7 +95,7 @@ long AddCasterEpisodeGroupRequest::getOwnerId()const
|
||||
void AddCasterEpisodeGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int AddCasterEpisodeGroupRequest::getRepeatNum()const
|
||||
@@ -105,7 +106,7 @@ int AddCasterEpisodeGroupRequest::getRepeatNum()const
|
||||
void AddCasterEpisodeGroupRequest::setRepeatNum(int repeatNum)
|
||||
{
|
||||
repeatNum_ = repeatNum;
|
||||
setCoreParameter("RepeatNum", std::to_string(repeatNum));
|
||||
setParameter("RepeatNum", std::to_string(repeatNum));
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeGroupRequest::getCallbackUrl()const
|
||||
@@ -116,6 +117,6 @@ std::string AddCasterEpisodeGroupRequest::getCallbackUrl()const
|
||||
void AddCasterEpisodeGroupRequest::setCallbackUrl(const std::string& callbackUrl)
|
||||
{
|
||||
callbackUrl_ = callbackUrl;
|
||||
setCoreParameter("CallbackUrl", callbackUrl);
|
||||
setParameter("CallbackUrl", callbackUrl);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddCasterEpisodeRequest;
|
||||
|
||||
AddCasterEpisodeRequest::AddCasterEpisodeRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddCasterEpisode")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddCasterEpisodeRequest::~AddCasterEpisodeRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddCasterEpisodeRequest::getEpisodeName()const
|
||||
void AddCasterEpisodeRequest::setEpisodeName(const std::string& episodeName)
|
||||
{
|
||||
episodeName_ = episodeName;
|
||||
setCoreParameter("EpisodeName", episodeName);
|
||||
setParameter("EpisodeName", episodeName);
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string AddCasterEpisodeRequest::getStartTime()const
|
||||
void AddCasterEpisodeRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeRequest::getResourceId()const
|
||||
@@ -55,7 +57,7 @@ std::string AddCasterEpisodeRequest::getResourceId()const
|
||||
void AddCasterEpisodeRequest::setResourceId(const std::string& resourceId)
|
||||
{
|
||||
resourceId_ = resourceId;
|
||||
setCoreParameter("ResourceId", resourceId);
|
||||
setParameter("ResourceId", resourceId);
|
||||
}
|
||||
|
||||
std::vector<std::string> AddCasterEpisodeRequest::getComponentId()const
|
||||
@@ -66,8 +68,9 @@ std::vector<std::string> AddCasterEpisodeRequest::getComponentId()const
|
||||
void AddCasterEpisodeRequest::setComponentId(const std::vector<std::string>& componentId)
|
||||
{
|
||||
componentId_ = componentId;
|
||||
for(int i = 0; i!= componentId.size(); i++)
|
||||
setCoreParameter("ComponentId."+ std::to_string(i), componentId.at(i));
|
||||
for(int dep1 = 0; dep1!= componentId.size(); dep1++) {
|
||||
setParameter("ComponentId."+ std::to_string(dep1), componentId.at(dep1));
|
||||
}
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeRequest::getCasterId()const
|
||||
@@ -78,7 +81,7 @@ std::string AddCasterEpisodeRequest::getCasterId()const
|
||||
void AddCasterEpisodeRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeRequest::getEpisodeType()const
|
||||
@@ -89,7 +92,7 @@ std::string AddCasterEpisodeRequest::getEpisodeType()const
|
||||
void AddCasterEpisodeRequest::setEpisodeType(const std::string& episodeType)
|
||||
{
|
||||
episodeType_ = episodeType;
|
||||
setCoreParameter("EpisodeType", episodeType);
|
||||
setParameter("EpisodeType", episodeType);
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeRequest::getEndTime()const
|
||||
@@ -100,7 +103,7 @@ std::string AddCasterEpisodeRequest::getEndTime()const
|
||||
void AddCasterEpisodeRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long AddCasterEpisodeRequest::getOwnerId()const
|
||||
@@ -111,7 +114,7 @@ long AddCasterEpisodeRequest::getOwnerId()const
|
||||
void AddCasterEpisodeRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddCasterEpisodeRequest::getSwitchType()const
|
||||
@@ -122,6 +125,6 @@ std::string AddCasterEpisodeRequest::getSwitchType()const
|
||||
void AddCasterEpisodeRequest::setSwitchType(const std::string& switchType)
|
||||
{
|
||||
switchType_ = switchType;
|
||||
setCoreParameter("SwitchType", switchType);
|
||||
setParameter("SwitchType", switchType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddCasterLayoutRequest;
|
||||
|
||||
AddCasterLayoutRequest::AddCasterLayoutRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddCasterLayout")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddCasterLayoutRequest::~AddCasterLayoutRequest()
|
||||
{}
|
||||
@@ -33,8 +35,9 @@ std::vector<std::string> AddCasterLayoutRequest::getBlendList()const
|
||||
void AddCasterLayoutRequest::setBlendList(const std::vector<std::string>& blendList)
|
||||
{
|
||||
blendList_ = blendList;
|
||||
for(int i = 0; i!= blendList.size(); i++)
|
||||
setCoreParameter("BlendList."+ std::to_string(i), blendList.at(i));
|
||||
for(int dep1 = 0; dep1!= blendList.size(); dep1++) {
|
||||
setParameter("BlendList."+ std::to_string(dep1), blendList.at(dep1));
|
||||
}
|
||||
}
|
||||
|
||||
std::string AddCasterLayoutRequest::getCasterId()const
|
||||
@@ -45,7 +48,7 @@ std::string AddCasterLayoutRequest::getCasterId()const
|
||||
void AddCasterLayoutRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long AddCasterLayoutRequest::getOwnerId()const
|
||||
@@ -56,7 +59,7 @@ long AddCasterLayoutRequest::getOwnerId()const
|
||||
void AddCasterLayoutRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::vector<AddCasterLayoutRequest::AudioLayer> AddCasterLayoutRequest::getAudioLayer()const
|
||||
@@ -67,13 +70,12 @@ std::vector<AddCasterLayoutRequest::AudioLayer> AddCasterLayoutRequest::getAudio
|
||||
void AddCasterLayoutRequest::setAudioLayer(const std::vector<AudioLayer>& audioLayer)
|
||||
{
|
||||
audioLayer_ = audioLayer;
|
||||
int i = 0;
|
||||
for(int i = 0; i!= audioLayer.size(); i++) {
|
||||
auto obj = audioLayer.at(i);
|
||||
std::string str ="AudioLayer."+ std::to_string(i);
|
||||
setCoreParameter(str + ".VolumeRate", std::to_string(obj.volumeRate));
|
||||
setCoreParameter(str + ".ValidChannel", obj.validChannel);
|
||||
setCoreParameter(str + ".FixedDelayDuration", std::to_string(obj.fixedDelayDuration));
|
||||
for(int dep1 = 0; dep1!= audioLayer.size(); dep1++) {
|
||||
auto audioLayerObj = audioLayer.at(dep1);
|
||||
std::string audioLayerObjStr = "AudioLayer." + std::to_string(dep1 + 1);
|
||||
setParameter(audioLayerObjStr + ".VolumeRate", std::to_string(audioLayerObj.volumeRate));
|
||||
setParameter(audioLayerObjStr + ".ValidChannel", audioLayerObj.validChannel);
|
||||
setParameter(audioLayerObjStr + ".FixedDelayDuration", std::to_string(audioLayerObj.fixedDelayDuration));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -85,16 +87,17 @@ std::vector<AddCasterLayoutRequest::VideoLayer> AddCasterLayoutRequest::getVideo
|
||||
void AddCasterLayoutRequest::setVideoLayer(const std::vector<VideoLayer>& videoLayer)
|
||||
{
|
||||
videoLayer_ = videoLayer;
|
||||
int i = 0;
|
||||
for(int i = 0; i!= videoLayer.size(); i++) {
|
||||
auto obj = videoLayer.at(i);
|
||||
std::string str ="VideoLayer."+ std::to_string(i);
|
||||
setCoreParameter(str + ".FillMode", obj.fillMode);
|
||||
setCoreParameter(str + ".HeightNormalized", std::to_string(obj.heightNormalized));
|
||||
setCoreParameter(str + ".WidthNormalized", std::to_string(obj.widthNormalized));
|
||||
setCoreParameter(str + ".PositionRefer", obj.positionRefer);
|
||||
for(int i = 0; i!= obj.positionNormalized.size(); i++)
|
||||
setCoreParameter(str + ".PositionNormalized."+ std::to_string(i), std::to_string(obj.positionNormalized.at(i)));
|
||||
for(int dep1 = 0; dep1!= videoLayer.size(); dep1++) {
|
||||
auto videoLayerObj = videoLayer.at(dep1);
|
||||
std::string videoLayerObjStr = "VideoLayer." + std::to_string(dep1 + 1);
|
||||
setParameter(videoLayerObjStr + ".FillMode", videoLayerObj.fillMode);
|
||||
setParameter(videoLayerObjStr + ".HeightNormalized", std::to_string(videoLayerObj.heightNormalized));
|
||||
setParameter(videoLayerObjStr + ".WidthNormalized", std::to_string(videoLayerObj.widthNormalized));
|
||||
setParameter(videoLayerObjStr + ".PositionRefer", videoLayerObj.positionRefer);
|
||||
for(int dep2 = 0; dep2!= videoLayerObj.positionNormalized.size(); dep2++) {
|
||||
setParameter(videoLayerObjStr + ".PositionNormalized."+ std::to_string(dep2), std::to_string(videoLayerObj.positionNormalized.at(dep2)));
|
||||
}
|
||||
setParameter(videoLayerObjStr + ".FixedDelayDuration", std::to_string(videoLayerObj.fixedDelayDuration));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -106,7 +109,8 @@ std::vector<std::string> AddCasterLayoutRequest::getMixList()const
|
||||
void AddCasterLayoutRequest::setMixList(const std::vector<std::string>& mixList)
|
||||
{
|
||||
mixList_ = mixList;
|
||||
mixList_ = mixList;
|
||||
for(int i = 0; i!= mixList.size(); i++)
|
||||
for(int dep1 = 0; dep1!= mixList.size(); dep1++) {
|
||||
setParameter("MixList."+ std::to_string(dep1), mixList.at(dep1));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddCasterProgramRequest;
|
||||
|
||||
AddCasterProgramRequest::AddCasterProgramRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddCasterProgram")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddCasterProgramRequest::~AddCasterProgramRequest()
|
||||
{}
|
||||
@@ -33,17 +35,18 @@ std::vector<AddCasterProgramRequest::Episode> AddCasterProgramRequest::getEpisod
|
||||
void AddCasterProgramRequest::setEpisode(const std::vector<Episode>& episode)
|
||||
{
|
||||
episode_ = episode;
|
||||
int i = 0;
|
||||
for(int i = 0; i!= episode.size(); i++) {
|
||||
auto obj = episode.at(i);
|
||||
std::string str ="Episode."+ std::to_string(i);
|
||||
setCoreParameter(str + ".EpisodeType", obj.episodeType);
|
||||
setCoreParameter(str + ".EpisodeName", obj.episodeName);
|
||||
setCoreParameter(str + ".ResourceId", obj.resourceId);
|
||||
for(int i = 0; i!= obj.componentId.size(); i++)
|
||||
setCoreParameter(str + ".ComponentId."+ std::to_string(i), obj.componentId.at(i));
|
||||
setCoreParameter(str + ".StartTime", obj.startTime);
|
||||
setCoreParameter(str + ".EndTime", obj.endTime);
|
||||
for(int dep1 = 0; dep1!= episode.size(); dep1++) {
|
||||
auto episodeObj = episode.at(dep1);
|
||||
std::string episodeObjStr = "Episode." + std::to_string(dep1 + 1);
|
||||
setParameter(episodeObjStr + ".EpisodeType", episodeObj.episodeType);
|
||||
setParameter(episodeObjStr + ".EpisodeName", episodeObj.episodeName);
|
||||
setParameter(episodeObjStr + ".ResourceId", episodeObj.resourceId);
|
||||
for(int dep2 = 0; dep2!= episodeObj.componentId.size(); dep2++) {
|
||||
setParameter(episodeObjStr + ".ComponentId."+ std::to_string(dep2), episodeObj.componentId.at(dep2));
|
||||
}
|
||||
setParameter(episodeObjStr + ".StartTime", episodeObj.startTime);
|
||||
setParameter(episodeObjStr + ".EndTime", episodeObj.endTime);
|
||||
setParameter(episodeObjStr + ".SwitchType", episodeObj.switchType);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -55,7 +58,7 @@ std::string AddCasterProgramRequest::getCasterId()const
|
||||
void AddCasterProgramRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
casterId_ = casterId;
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long AddCasterProgramRequest::getOwnerId()const
|
||||
@@ -66,6 +69,6 @@ long AddCasterProgramRequest::getOwnerId()const
|
||||
void AddCasterProgramRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddCasterVideoResourceRequest;
|
||||
|
||||
AddCasterVideoResourceRequest::AddCasterVideoResourceRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddCasterVideoResource")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddCasterVideoResourceRequest::~AddCasterVideoResourceRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ int AddCasterVideoResourceRequest::getEndOffset()const
|
||||
void AddCasterVideoResourceRequest::setEndOffset(int endOffset)
|
||||
{
|
||||
endOffset_ = endOffset;
|
||||
setCoreParameter("EndOffset", std::to_string(endOffset));
|
||||
setParameter("EndOffset", std::to_string(endOffset));
|
||||
}
|
||||
|
||||
std::string AddCasterVideoResourceRequest::getMaterialId()const
|
||||
@@ -44,7 +46,7 @@ std::string AddCasterVideoResourceRequest::getMaterialId()const
|
||||
void AddCasterVideoResourceRequest::setMaterialId(const std::string& materialId)
|
||||
{
|
||||
materialId_ = materialId;
|
||||
setCoreParameter("MaterialId", materialId);
|
||||
setParameter("MaterialId", materialId);
|
||||
}
|
||||
|
||||
std::string AddCasterVideoResourceRequest::getVodUrl()const
|
||||
@@ -55,7 +57,18 @@ std::string AddCasterVideoResourceRequest::getVodUrl()const
|
||||
void AddCasterVideoResourceRequest::setVodUrl(const std::string& vodUrl)
|
||||
{
|
||||
vodUrl_ = vodUrl;
|
||||
setCoreParameter("VodUrl", vodUrl);
|
||||
setParameter("VodUrl", vodUrl);
|
||||
}
|
||||
|
||||
std::string AddCasterVideoResourceRequest::getStreamId()const
|
||||
{
|
||||
return streamId_;
|
||||
}
|
||||
|
||||
void AddCasterVideoResourceRequest::setStreamId(const std::string& streamId)
|
||||
{
|
||||
streamId_ = streamId;
|
||||
setParameter("StreamId", streamId);
|
||||
}
|
||||
|
||||
std::string AddCasterVideoResourceRequest::getCasterId()const
|
||||
@@ -66,7 +79,7 @@ std::string AddCasterVideoResourceRequest::getCasterId()const
|
||||
void AddCasterVideoResourceRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long AddCasterVideoResourceRequest::getOwnerId()const
|
||||
@@ -77,7 +90,7 @@ long AddCasterVideoResourceRequest::getOwnerId()const
|
||||
void AddCasterVideoResourceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int AddCasterVideoResourceRequest::getBeginOffset()const
|
||||
@@ -88,7 +101,7 @@ int AddCasterVideoResourceRequest::getBeginOffset()const
|
||||
void AddCasterVideoResourceRequest::setBeginOffset(int beginOffset)
|
||||
{
|
||||
beginOffset_ = beginOffset;
|
||||
setCoreParameter("BeginOffset", std::to_string(beginOffset));
|
||||
setParameter("BeginOffset", std::to_string(beginOffset));
|
||||
}
|
||||
|
||||
std::string AddCasterVideoResourceRequest::getLiveStreamUrl()const
|
||||
@@ -99,7 +112,7 @@ std::string AddCasterVideoResourceRequest::getLiveStreamUrl()const
|
||||
void AddCasterVideoResourceRequest::setLiveStreamUrl(const std::string& liveStreamUrl)
|
||||
{
|
||||
liveStreamUrl_ = liveStreamUrl;
|
||||
setCoreParameter("LiveStreamUrl", liveStreamUrl);
|
||||
setParameter("LiveStreamUrl", liveStreamUrl);
|
||||
}
|
||||
|
||||
std::string AddCasterVideoResourceRequest::getLocationId()const
|
||||
@@ -110,7 +123,7 @@ std::string AddCasterVideoResourceRequest::getLocationId()const
|
||||
void AddCasterVideoResourceRequest::setLocationId(const std::string& locationId)
|
||||
{
|
||||
locationId_ = locationId;
|
||||
setCoreParameter("LocationId", locationId);
|
||||
setParameter("LocationId", locationId);
|
||||
}
|
||||
|
||||
int AddCasterVideoResourceRequest::getPtsCallbackInterval()const
|
||||
@@ -121,7 +134,7 @@ int AddCasterVideoResourceRequest::getPtsCallbackInterval()const
|
||||
void AddCasterVideoResourceRequest::setPtsCallbackInterval(int ptsCallbackInterval)
|
||||
{
|
||||
ptsCallbackInterval_ = ptsCallbackInterval;
|
||||
setCoreParameter("PtsCallbackInterval", std::to_string(ptsCallbackInterval));
|
||||
setParameter("PtsCallbackInterval", std::to_string(ptsCallbackInterval));
|
||||
}
|
||||
|
||||
std::string AddCasterVideoResourceRequest::getResourceName()const
|
||||
@@ -132,7 +145,7 @@ std::string AddCasterVideoResourceRequest::getResourceName()const
|
||||
void AddCasterVideoResourceRequest::setResourceName(const std::string& resourceName)
|
||||
{
|
||||
resourceName_ = resourceName;
|
||||
setCoreParameter("ResourceName", resourceName);
|
||||
setParameter("ResourceName", resourceName);
|
||||
}
|
||||
|
||||
int AddCasterVideoResourceRequest::getRepeatNum()const
|
||||
@@ -143,6 +156,6 @@ int AddCasterVideoResourceRequest::getRepeatNum()const
|
||||
void AddCasterVideoResourceRequest::setRepeatNum(int repeatNum)
|
||||
{
|
||||
repeatNum_ = repeatNum;
|
||||
setCoreParameter("RepeatNum", std::to_string(repeatNum));
|
||||
setParameter("RepeatNum", std::to_string(repeatNum));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddCustomLiveStreamTranscodeRequest;
|
||||
|
||||
AddCustomLiveStreamTranscodeRequest::AddCustomLiveStreamTranscodeRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddCustomLiveStreamTranscode")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddCustomLiveStreamTranscodeRequest::~AddCustomLiveStreamTranscodeRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddCustomLiveStreamTranscodeRequest::get_Template()const
|
||||
void AddCustomLiveStreamTranscodeRequest::set_Template(const std::string& _template)
|
||||
{
|
||||
_template_ = _template;
|
||||
setCoreParameter("_Template", _template);
|
||||
setParameter("_Template", _template);
|
||||
}
|
||||
|
||||
std::string AddCustomLiveStreamTranscodeRequest::getGop()const
|
||||
@@ -44,7 +46,7 @@ std::string AddCustomLiveStreamTranscodeRequest::getGop()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setGop(const std::string& gop)
|
||||
{
|
||||
gop_ = gop;
|
||||
setCoreParameter("Gop", gop);
|
||||
setParameter("Gop", gop);
|
||||
}
|
||||
|
||||
std::string AddCustomLiveStreamTranscodeRequest::getAudioCodec()const
|
||||
@@ -55,7 +57,7 @@ std::string AddCustomLiveStreamTranscodeRequest::getAudioCodec()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setAudioCodec(const std::string& audioCodec)
|
||||
{
|
||||
audioCodec_ = audioCodec;
|
||||
setCoreParameter("AudioCodec", audioCodec);
|
||||
setParameter("AudioCodec", audioCodec);
|
||||
}
|
||||
|
||||
std::string AddCustomLiveStreamTranscodeRequest::getTemplateType()const
|
||||
@@ -66,7 +68,7 @@ std::string AddCustomLiveStreamTranscodeRequest::getTemplateType()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setTemplateType(const std::string& templateType)
|
||||
{
|
||||
templateType_ = templateType;
|
||||
setCoreParameter("TemplateType", templateType);
|
||||
setParameter("TemplateType", templateType);
|
||||
}
|
||||
|
||||
std::string AddCustomLiveStreamTranscodeRequest::getAudioProfile()const
|
||||
@@ -77,7 +79,7 @@ std::string AddCustomLiveStreamTranscodeRequest::getAudioProfile()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setAudioProfile(const std::string& audioProfile)
|
||||
{
|
||||
audioProfile_ = audioProfile;
|
||||
setCoreParameter("AudioProfile", audioProfile);
|
||||
setParameter("AudioProfile", audioProfile);
|
||||
}
|
||||
|
||||
int AddCustomLiveStreamTranscodeRequest::getHeight()const
|
||||
@@ -88,7 +90,7 @@ int AddCustomLiveStreamTranscodeRequest::getHeight()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setHeight(int height)
|
||||
{
|
||||
height_ = height;
|
||||
setCoreParameter("Height", std::to_string(height));
|
||||
setParameter("Height", std::to_string(height));
|
||||
}
|
||||
|
||||
std::string AddCustomLiveStreamTranscodeRequest::getApp()const
|
||||
@@ -99,7 +101,7 @@ std::string AddCustomLiveStreamTranscodeRequest::getApp()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setApp(const std::string& app)
|
||||
{
|
||||
app_ = app;
|
||||
setCoreParameter("App", app);
|
||||
setParameter("App", app);
|
||||
}
|
||||
|
||||
int AddCustomLiveStreamTranscodeRequest::getAudioChannelNum()const
|
||||
@@ -110,7 +112,7 @@ int AddCustomLiveStreamTranscodeRequest::getAudioChannelNum()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setAudioChannelNum(int audioChannelNum)
|
||||
{
|
||||
audioChannelNum_ = audioChannelNum;
|
||||
setCoreParameter("AudioChannelNum", std::to_string(audioChannelNum));
|
||||
setParameter("AudioChannelNum", std::to_string(audioChannelNum));
|
||||
}
|
||||
|
||||
int AddCustomLiveStreamTranscodeRequest::getProfile()const
|
||||
@@ -121,7 +123,7 @@ int AddCustomLiveStreamTranscodeRequest::getProfile()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setProfile(int profile)
|
||||
{
|
||||
profile_ = profile;
|
||||
setCoreParameter("Profile", std::to_string(profile));
|
||||
setParameter("Profile", std::to_string(profile));
|
||||
}
|
||||
|
||||
int AddCustomLiveStreamTranscodeRequest::getFPS()const
|
||||
@@ -132,7 +134,7 @@ int AddCustomLiveStreamTranscodeRequest::getFPS()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setFPS(int fPS)
|
||||
{
|
||||
fPS_ = fPS;
|
||||
setCoreParameter("FPS", std::to_string(fPS));
|
||||
setParameter("FPS", std::to_string(fPS));
|
||||
}
|
||||
|
||||
long AddCustomLiveStreamTranscodeRequest::getOwnerId()const
|
||||
@@ -143,7 +145,7 @@ long AddCustomLiveStreamTranscodeRequest::getOwnerId()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int AddCustomLiveStreamTranscodeRequest::getAudioRate()const
|
||||
@@ -154,7 +156,7 @@ int AddCustomLiveStreamTranscodeRequest::getAudioRate()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setAudioRate(int audioRate)
|
||||
{
|
||||
audioRate_ = audioRate;
|
||||
setCoreParameter("AudioRate", std::to_string(audioRate));
|
||||
setParameter("AudioRate", std::to_string(audioRate));
|
||||
}
|
||||
|
||||
int AddCustomLiveStreamTranscodeRequest::getAudioBitrate()const
|
||||
@@ -165,7 +167,7 @@ int AddCustomLiveStreamTranscodeRequest::getAudioBitrate()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setAudioBitrate(int audioBitrate)
|
||||
{
|
||||
audioBitrate_ = audioBitrate;
|
||||
setCoreParameter("AudioBitrate", std::to_string(audioBitrate));
|
||||
setParameter("AudioBitrate", std::to_string(audioBitrate));
|
||||
}
|
||||
|
||||
std::string AddCustomLiveStreamTranscodeRequest::getDomain()const
|
||||
@@ -176,7 +178,7 @@ std::string AddCustomLiveStreamTranscodeRequest::getDomain()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setDomain(const std::string& domain)
|
||||
{
|
||||
domain_ = domain;
|
||||
setCoreParameter("Domain", domain);
|
||||
setParameter("Domain", domain);
|
||||
}
|
||||
|
||||
int AddCustomLiveStreamTranscodeRequest::getWidth()const
|
||||
@@ -187,7 +189,7 @@ int AddCustomLiveStreamTranscodeRequest::getWidth()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setWidth(int width)
|
||||
{
|
||||
width_ = width;
|
||||
setCoreParameter("Width", std::to_string(width));
|
||||
setParameter("Width", std::to_string(width));
|
||||
}
|
||||
|
||||
int AddCustomLiveStreamTranscodeRequest::getVideoBitrate()const
|
||||
@@ -198,6 +200,6 @@ int AddCustomLiveStreamTranscodeRequest::getVideoBitrate()const
|
||||
void AddCustomLiveStreamTranscodeRequest::setVideoBitrate(int videoBitrate)
|
||||
{
|
||||
videoBitrate_ = videoBitrate;
|
||||
setCoreParameter("VideoBitrate", std::to_string(videoBitrate));
|
||||
setParameter("VideoBitrate", std::to_string(videoBitrate));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLiveAppRecordConfigRequest;
|
||||
|
||||
AddLiveAppRecordConfigRequest::AddLiveAppRecordConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveAppRecordConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveAppRecordConfigRequest::~AddLiveAppRecordConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddLiveAppRecordConfigRequest::getOssEndpoint()const
|
||||
void AddLiveAppRecordConfigRequest::setOssEndpoint(const std::string& ossEndpoint)
|
||||
{
|
||||
ossEndpoint_ = ossEndpoint;
|
||||
setCoreParameter("OssEndpoint", ossEndpoint);
|
||||
setParameter("OssEndpoint", ossEndpoint);
|
||||
}
|
||||
|
||||
std::string AddLiveAppRecordConfigRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string AddLiveAppRecordConfigRequest::getStartTime()const
|
||||
void AddLiveAppRecordConfigRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string AddLiveAppRecordConfigRequest::getAppName()const
|
||||
@@ -55,7 +57,7 @@ std::string AddLiveAppRecordConfigRequest::getAppName()const
|
||||
void AddLiveAppRecordConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string AddLiveAppRecordConfigRequest::getSecurityToken()const
|
||||
@@ -66,7 +68,7 @@ std::string AddLiveAppRecordConfigRequest::getSecurityToken()const
|
||||
void AddLiveAppRecordConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
int AddLiveAppRecordConfigRequest::getOnDemand()const
|
||||
@@ -77,7 +79,7 @@ int AddLiveAppRecordConfigRequest::getOnDemand()const
|
||||
void AddLiveAppRecordConfigRequest::setOnDemand(int onDemand)
|
||||
{
|
||||
onDemand_ = onDemand;
|
||||
setCoreParameter("OnDemand", std::to_string(onDemand));
|
||||
setParameter("OnDemand", std::to_string(onDemand));
|
||||
}
|
||||
|
||||
std::string AddLiveAppRecordConfigRequest::getStreamName()const
|
||||
@@ -88,7 +90,7 @@ std::string AddLiveAppRecordConfigRequest::getStreamName()const
|
||||
void AddLiveAppRecordConfigRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setCoreParameter("StreamName", streamName);
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string AddLiveAppRecordConfigRequest::getOssBucket()const
|
||||
@@ -99,7 +101,7 @@ std::string AddLiveAppRecordConfigRequest::getOssBucket()const
|
||||
void AddLiveAppRecordConfigRequest::setOssBucket(const std::string& ossBucket)
|
||||
{
|
||||
ossBucket_ = ossBucket;
|
||||
setCoreParameter("OssBucket", ossBucket);
|
||||
setParameter("OssBucket", ossBucket);
|
||||
}
|
||||
|
||||
std::string AddLiveAppRecordConfigRequest::getDomainName()const
|
||||
@@ -110,7 +112,7 @@ std::string AddLiveAppRecordConfigRequest::getDomainName()const
|
||||
void AddLiveAppRecordConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string AddLiveAppRecordConfigRequest::getEndTime()const
|
||||
@@ -121,7 +123,7 @@ std::string AddLiveAppRecordConfigRequest::getEndTime()const
|
||||
void AddLiveAppRecordConfigRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long AddLiveAppRecordConfigRequest::getOwnerId()const
|
||||
@@ -132,7 +134,7 @@ long AddLiveAppRecordConfigRequest::getOwnerId()const
|
||||
void AddLiveAppRecordConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::vector<AddLiveAppRecordConfigRequest::RecordFormat> AddLiveAppRecordConfigRequest::getRecordFormat()const
|
||||
@@ -143,14 +145,13 @@ std::vector<AddLiveAppRecordConfigRequest::RecordFormat> AddLiveAppRecordConfigR
|
||||
void AddLiveAppRecordConfigRequest::setRecordFormat(const std::vector<RecordFormat>& recordFormat)
|
||||
{
|
||||
recordFormat_ = recordFormat;
|
||||
int i = 0;
|
||||
for(int i = 0; i!= recordFormat.size(); i++) {
|
||||
auto obj = recordFormat.at(i);
|
||||
std::string str ="RecordFormat."+ std::to_string(i);
|
||||
setCoreParameter(str + ".SliceOssObjectPrefix", obj.sliceOssObjectPrefix);
|
||||
setCoreParameter(str + ".Format", obj.format);
|
||||
setCoreParameter(str + ".OssObjectPrefix", obj.ossObjectPrefix);
|
||||
setCoreParameter(str + ".CycleDuration", std::to_string(obj.cycleDuration));
|
||||
for(int dep1 = 0; dep1!= recordFormat.size(); dep1++) {
|
||||
auto recordFormatObj = recordFormat.at(dep1);
|
||||
std::string recordFormatObjStr = "RecordFormat." + std::to_string(dep1 + 1);
|
||||
setParameter(recordFormatObjStr + ".SliceOssObjectPrefix", recordFormatObj.sliceOssObjectPrefix);
|
||||
setParameter(recordFormatObjStr + ".Format", recordFormatObj.format);
|
||||
setParameter(recordFormatObjStr + ".OssObjectPrefix", recordFormatObj.ossObjectPrefix);
|
||||
setParameter(recordFormatObjStr + ".CycleDuration", std::to_string(recordFormatObj.cycleDuration));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLiveAppSnapshotConfigRequest;
|
||||
|
||||
AddLiveAppSnapshotConfigRequest::AddLiveAppSnapshotConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveAppSnapshotConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveAppSnapshotConfigRequest::~AddLiveAppSnapshotConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ int AddLiveAppSnapshotConfigRequest::getTimeInterval()const
|
||||
void AddLiveAppSnapshotConfigRequest::setTimeInterval(int timeInterval)
|
||||
{
|
||||
timeInterval_ = timeInterval;
|
||||
setCoreParameter("TimeInterval", std::to_string(timeInterval));
|
||||
setParameter("TimeInterval", std::to_string(timeInterval));
|
||||
}
|
||||
|
||||
std::string AddLiveAppSnapshotConfigRequest::getOssEndpoint()const
|
||||
@@ -44,7 +46,7 @@ std::string AddLiveAppSnapshotConfigRequest::getOssEndpoint()const
|
||||
void AddLiveAppSnapshotConfigRequest::setOssEndpoint(const std::string& ossEndpoint)
|
||||
{
|
||||
ossEndpoint_ = ossEndpoint;
|
||||
setCoreParameter("OssEndpoint", ossEndpoint);
|
||||
setParameter("OssEndpoint", ossEndpoint);
|
||||
}
|
||||
|
||||
std::string AddLiveAppSnapshotConfigRequest::getAppName()const
|
||||
@@ -55,7 +57,7 @@ std::string AddLiveAppSnapshotConfigRequest::getAppName()const
|
||||
void AddLiveAppSnapshotConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string AddLiveAppSnapshotConfigRequest::getSecurityToken()const
|
||||
@@ -66,7 +68,7 @@ std::string AddLiveAppSnapshotConfigRequest::getSecurityToken()const
|
||||
void AddLiveAppSnapshotConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AddLiveAppSnapshotConfigRequest::getOverwriteOssObject()const
|
||||
@@ -77,7 +79,7 @@ std::string AddLiveAppSnapshotConfigRequest::getOverwriteOssObject()const
|
||||
void AddLiveAppSnapshotConfigRequest::setOverwriteOssObject(const std::string& overwriteOssObject)
|
||||
{
|
||||
overwriteOssObject_ = overwriteOssObject;
|
||||
setCoreParameter("OverwriteOssObject", overwriteOssObject);
|
||||
setParameter("OverwriteOssObject", overwriteOssObject);
|
||||
}
|
||||
|
||||
std::string AddLiveAppSnapshotConfigRequest::getOssBucket()const
|
||||
@@ -88,7 +90,7 @@ std::string AddLiveAppSnapshotConfigRequest::getOssBucket()const
|
||||
void AddLiveAppSnapshotConfigRequest::setOssBucket(const std::string& ossBucket)
|
||||
{
|
||||
ossBucket_ = ossBucket;
|
||||
setCoreParameter("OssBucket", ossBucket);
|
||||
setParameter("OssBucket", ossBucket);
|
||||
}
|
||||
|
||||
std::string AddLiveAppSnapshotConfigRequest::getDomainName()const
|
||||
@@ -99,7 +101,7 @@ std::string AddLiveAppSnapshotConfigRequest::getDomainName()const
|
||||
void AddLiveAppSnapshotConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string AddLiveAppSnapshotConfigRequest::getSequenceOssObject()const
|
||||
@@ -110,7 +112,7 @@ std::string AddLiveAppSnapshotConfigRequest::getSequenceOssObject()const
|
||||
void AddLiveAppSnapshotConfigRequest::setSequenceOssObject(const std::string& sequenceOssObject)
|
||||
{
|
||||
sequenceOssObject_ = sequenceOssObject;
|
||||
setCoreParameter("SequenceOssObject", sequenceOssObject);
|
||||
setParameter("SequenceOssObject", sequenceOssObject);
|
||||
}
|
||||
|
||||
long AddLiveAppSnapshotConfigRequest::getOwnerId()const
|
||||
@@ -121,6 +123,6 @@ long AddLiveAppSnapshotConfigRequest::getOwnerId()const
|
||||
void AddLiveAppSnapshotConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
117
live/src/model/AddLiveAudioAuditConfigRequest.cc
Normal file
117
live/src/model/AddLiveAudioAuditConfigRequest.cc
Normal file
@@ -0,0 +1,117 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/AddLiveAudioAuditConfigRequest.h>
|
||||
|
||||
using AlibabaCloud::Live::Model::AddLiveAudioAuditConfigRequest;
|
||||
|
||||
AddLiveAudioAuditConfigRequest::AddLiveAudioAuditConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveAudioAuditConfig")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveAudioAuditConfigRequest::~AddLiveAudioAuditConfigRequest()
|
||||
{}
|
||||
|
||||
std::string AddLiveAudioAuditConfigRequest::getOssEndpoint()const
|
||||
{
|
||||
return ossEndpoint_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditConfigRequest::setOssEndpoint(const std::string& ossEndpoint)
|
||||
{
|
||||
ossEndpoint_ = ossEndpoint;
|
||||
setParameter("OssEndpoint", ossEndpoint);
|
||||
}
|
||||
|
||||
std::string AddLiveAudioAuditConfigRequest::getOssObject()const
|
||||
{
|
||||
return ossObject_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditConfigRequest::setOssObject(const std::string& ossObject)
|
||||
{
|
||||
ossObject_ = ossObject;
|
||||
setParameter("OssObject", ossObject);
|
||||
}
|
||||
|
||||
std::string AddLiveAudioAuditConfigRequest::getAppName()const
|
||||
{
|
||||
return appName_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string AddLiveAudioAuditConfigRequest::getStreamName()const
|
||||
{
|
||||
return streamName_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditConfigRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string AddLiveAudioAuditConfigRequest::getOssBucket()const
|
||||
{
|
||||
return ossBucket_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditConfigRequest::setOssBucket(const std::string& ossBucket)
|
||||
{
|
||||
ossBucket_ = ossBucket;
|
||||
setParameter("OssBucket", ossBucket);
|
||||
}
|
||||
|
||||
std::string AddLiveAudioAuditConfigRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long AddLiveAudioAuditConfigRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddLiveAudioAuditConfigRequest::getBizType()const
|
||||
{
|
||||
return bizType_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditConfigRequest::setBizType(const std::string& bizType)
|
||||
{
|
||||
bizType_ = bizType;
|
||||
setParameter("BizType", bizType);
|
||||
}
|
||||
|
||||
44
live/src/model/AddLiveAudioAuditConfigResult.cc
Normal file
44
live/src/model/AddLiveAudioAuditConfigResult.cc
Normal file
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/AddLiveAudioAuditConfigResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Live;
|
||||
using namespace AlibabaCloud::Live::Model;
|
||||
|
||||
AddLiveAudioAuditConfigResult::AddLiveAudioAuditConfigResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
AddLiveAudioAuditConfigResult::AddLiveAudioAuditConfigResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
AddLiveAudioAuditConfigResult::~AddLiveAudioAuditConfigResult()
|
||||
{}
|
||||
|
||||
void AddLiveAudioAuditConfigResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
|
||||
}
|
||||
|
||||
73
live/src/model/AddLiveAudioAuditNotifyConfigRequest.cc
Normal file
73
live/src/model/AddLiveAudioAuditNotifyConfigRequest.cc
Normal file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/AddLiveAudioAuditNotifyConfigRequest.h>
|
||||
|
||||
using AlibabaCloud::Live::Model::AddLiveAudioAuditNotifyConfigRequest;
|
||||
|
||||
AddLiveAudioAuditNotifyConfigRequest::AddLiveAudioAuditNotifyConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveAudioAuditNotifyConfig")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveAudioAuditNotifyConfigRequest::~AddLiveAudioAuditNotifyConfigRequest()
|
||||
{}
|
||||
|
||||
std::string AddLiveAudioAuditNotifyConfigRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditNotifyConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long AddLiveAudioAuditNotifyConfigRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditNotifyConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddLiveAudioAuditNotifyConfigRequest::getCallbackTemplate()const
|
||||
{
|
||||
return callbackTemplate_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditNotifyConfigRequest::setCallbackTemplate(const std::string& callbackTemplate)
|
||||
{
|
||||
callbackTemplate_ = callbackTemplate;
|
||||
setParameter("CallbackTemplate", callbackTemplate);
|
||||
}
|
||||
|
||||
std::string AddLiveAudioAuditNotifyConfigRequest::getCallback()const
|
||||
{
|
||||
return callback_;
|
||||
}
|
||||
|
||||
void AddLiveAudioAuditNotifyConfigRequest::setCallback(const std::string& callback)
|
||||
{
|
||||
callback_ = callback;
|
||||
setParameter("Callback", callback);
|
||||
}
|
||||
|
||||
44
live/src/model/AddLiveAudioAuditNotifyConfigResult.cc
Normal file
44
live/src/model/AddLiveAudioAuditNotifyConfigResult.cc
Normal file
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/AddLiveAudioAuditNotifyConfigResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Live;
|
||||
using namespace AlibabaCloud::Live::Model;
|
||||
|
||||
AddLiveAudioAuditNotifyConfigResult::AddLiveAudioAuditNotifyConfigResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
AddLiveAudioAuditNotifyConfigResult::AddLiveAudioAuditNotifyConfigResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
AddLiveAudioAuditNotifyConfigResult::~AddLiveAudioAuditNotifyConfigResult()
|
||||
{}
|
||||
|
||||
void AddLiveAudioAuditNotifyConfigResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLiveDetectNotifyConfigRequest;
|
||||
|
||||
AddLiveDetectNotifyConfigRequest::AddLiveDetectNotifyConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveDetectNotifyConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveDetectNotifyConfigRequest::~AddLiveDetectNotifyConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddLiveDetectNotifyConfigRequest::getDomainName()const
|
||||
void AddLiveDetectNotifyConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long AddLiveDetectNotifyConfigRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long AddLiveDetectNotifyConfigRequest::getOwnerId()const
|
||||
void AddLiveDetectNotifyConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddLiveDetectNotifyConfigRequest::getSecurityToken()const
|
||||
@@ -55,7 +57,7 @@ std::string AddLiveDetectNotifyConfigRequest::getSecurityToken()const
|
||||
void AddLiveDetectNotifyConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AddLiveDetectNotifyConfigRequest::getNotifyUrl()const
|
||||
@@ -66,6 +68,6 @@ std::string AddLiveDetectNotifyConfigRequest::getNotifyUrl()const
|
||||
void AddLiveDetectNotifyConfigRequest::setNotifyUrl(const std::string& notifyUrl)
|
||||
{
|
||||
notifyUrl_ = notifyUrl;
|
||||
setCoreParameter("NotifyUrl", notifyUrl);
|
||||
setParameter("NotifyUrl", notifyUrl);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLiveDomainMappingRequest;
|
||||
|
||||
AddLiveDomainMappingRequest::AddLiveDomainMappingRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveDomainMapping")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveDomainMappingRequest::~AddLiveDomainMappingRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long AddLiveDomainMappingRequest::getOwnerId()const
|
||||
void AddLiveDomainMappingRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddLiveDomainMappingRequest::getPullDomain()const
|
||||
@@ -44,7 +46,7 @@ std::string AddLiveDomainMappingRequest::getPullDomain()const
|
||||
void AddLiveDomainMappingRequest::setPullDomain(const std::string& pullDomain)
|
||||
{
|
||||
pullDomain_ = pullDomain;
|
||||
setCoreParameter("PullDomain", pullDomain);
|
||||
setParameter("PullDomain", pullDomain);
|
||||
}
|
||||
|
||||
std::string AddLiveDomainMappingRequest::getSecurityToken()const
|
||||
@@ -55,7 +57,7 @@ std::string AddLiveDomainMappingRequest::getSecurityToken()const
|
||||
void AddLiveDomainMappingRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AddLiveDomainMappingRequest::getPushDomain()const
|
||||
@@ -66,6 +68,6 @@ std::string AddLiveDomainMappingRequest::getPushDomain()const
|
||||
void AddLiveDomainMappingRequest::setPushDomain(const std::string& pushDomain)
|
||||
{
|
||||
pushDomain_ = pushDomain;
|
||||
setCoreParameter("PushDomain", pushDomain);
|
||||
setParameter("PushDomain", pushDomain);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLiveDomainRequest;
|
||||
|
||||
AddLiveDomainRequest::AddLiveDomainRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveDomain")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveDomainRequest::~AddLiveDomainRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddLiveDomainRequest::getSecurityToken()const
|
||||
void AddLiveDomainRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AddLiveDomainRequest::getScope()const
|
||||
@@ -44,7 +46,7 @@ std::string AddLiveDomainRequest::getScope()const
|
||||
void AddLiveDomainRequest::setScope(const std::string& scope)
|
||||
{
|
||||
scope_ = scope;
|
||||
setCoreParameter("Scope", scope);
|
||||
setParameter("Scope", scope);
|
||||
}
|
||||
|
||||
std::string AddLiveDomainRequest::getTopLevelDomain()const
|
||||
@@ -55,7 +57,7 @@ std::string AddLiveDomainRequest::getTopLevelDomain()const
|
||||
void AddLiveDomainRequest::setTopLevelDomain(const std::string& topLevelDomain)
|
||||
{
|
||||
topLevelDomain_ = topLevelDomain;
|
||||
setCoreParameter("TopLevelDomain", topLevelDomain);
|
||||
setParameter("TopLevelDomain", topLevelDomain);
|
||||
}
|
||||
|
||||
std::string AddLiveDomainRequest::getOwnerAccount()const
|
||||
@@ -66,7 +68,7 @@ std::string AddLiveDomainRequest::getOwnerAccount()const
|
||||
void AddLiveDomainRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string AddLiveDomainRequest::getDomainName()const
|
||||
@@ -77,7 +79,7 @@ std::string AddLiveDomainRequest::getDomainName()const
|
||||
void AddLiveDomainRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long AddLiveDomainRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long AddLiveDomainRequest::getOwnerId()const
|
||||
void AddLiveDomainRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddLiveDomainRequest::getRegion()const
|
||||
@@ -99,7 +101,7 @@ std::string AddLiveDomainRequest::getRegion()const
|
||||
void AddLiveDomainRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setCoreParameter("Region", region);
|
||||
setParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string AddLiveDomainRequest::getCheckUrl()const
|
||||
@@ -110,7 +112,7 @@ std::string AddLiveDomainRequest::getCheckUrl()const
|
||||
void AddLiveDomainRequest::setCheckUrl(const std::string& checkUrl)
|
||||
{
|
||||
checkUrl_ = checkUrl;
|
||||
setCoreParameter("CheckUrl", checkUrl);
|
||||
setParameter("CheckUrl", checkUrl);
|
||||
}
|
||||
|
||||
std::string AddLiveDomainRequest::getLiveDomainType()const
|
||||
@@ -121,6 +123,6 @@ std::string AddLiveDomainRequest::getLiveDomainType()const
|
||||
void AddLiveDomainRequest::setLiveDomainType(const std::string& liveDomainType)
|
||||
{
|
||||
liveDomainType_ = liveDomainType;
|
||||
setCoreParameter("LiveDomainType", liveDomainType);
|
||||
setParameter("LiveDomainType", liveDomainType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLivePullStreamInfoConfigRequest;
|
||||
|
||||
AddLivePullStreamInfoConfigRequest::AddLivePullStreamInfoConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLivePullStreamInfoConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLivePullStreamInfoConfigRequest::~AddLivePullStreamInfoConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddLivePullStreamInfoConfigRequest::getStartTime()const
|
||||
void AddLivePullStreamInfoConfigRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string AddLivePullStreamInfoConfigRequest::getAppName()const
|
||||
@@ -44,7 +46,7 @@ std::string AddLivePullStreamInfoConfigRequest::getAppName()const
|
||||
void AddLivePullStreamInfoConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string AddLivePullStreamInfoConfigRequest::getStreamName()const
|
||||
@@ -55,7 +57,7 @@ std::string AddLivePullStreamInfoConfigRequest::getStreamName()const
|
||||
void AddLivePullStreamInfoConfigRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setCoreParameter("StreamName", streamName);
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string AddLivePullStreamInfoConfigRequest::getDomainName()const
|
||||
@@ -66,7 +68,7 @@ std::string AddLivePullStreamInfoConfigRequest::getDomainName()const
|
||||
void AddLivePullStreamInfoConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string AddLivePullStreamInfoConfigRequest::getEndTime()const
|
||||
@@ -77,7 +79,7 @@ std::string AddLivePullStreamInfoConfigRequest::getEndTime()const
|
||||
void AddLivePullStreamInfoConfigRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long AddLivePullStreamInfoConfigRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long AddLivePullStreamInfoConfigRequest::getOwnerId()const
|
||||
void AddLivePullStreamInfoConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddLivePullStreamInfoConfigRequest::getSourceUrl()const
|
||||
@@ -99,6 +101,6 @@ std::string AddLivePullStreamInfoConfigRequest::getSourceUrl()const
|
||||
void AddLivePullStreamInfoConfigRequest::setSourceUrl(const std::string& sourceUrl)
|
||||
{
|
||||
sourceUrl_ = sourceUrl;
|
||||
setCoreParameter("SourceUrl", sourceUrl);
|
||||
setParameter("SourceUrl", sourceUrl);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLiveRecordNotifyConfigRequest;
|
||||
|
||||
AddLiveRecordNotifyConfigRequest::AddLiveRecordNotifyConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveRecordNotifyConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveRecordNotifyConfigRequest::~AddLiveRecordNotifyConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddLiveRecordNotifyConfigRequest::getOnDemandUrl()const
|
||||
void AddLiveRecordNotifyConfigRequest::setOnDemandUrl(const std::string& onDemandUrl)
|
||||
{
|
||||
onDemandUrl_ = onDemandUrl;
|
||||
setCoreParameter("OnDemandUrl", onDemandUrl);
|
||||
setParameter("OnDemandUrl", onDemandUrl);
|
||||
}
|
||||
|
||||
std::string AddLiveRecordNotifyConfigRequest::getSecurityToken()const
|
||||
@@ -44,7 +46,7 @@ std::string AddLiveRecordNotifyConfigRequest::getSecurityToken()const
|
||||
void AddLiveRecordNotifyConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AddLiveRecordNotifyConfigRequest::getNotifyUrl()const
|
||||
@@ -55,7 +57,7 @@ std::string AddLiveRecordNotifyConfigRequest::getNotifyUrl()const
|
||||
void AddLiveRecordNotifyConfigRequest::setNotifyUrl(const std::string& notifyUrl)
|
||||
{
|
||||
notifyUrl_ = notifyUrl;
|
||||
setCoreParameter("NotifyUrl", notifyUrl);
|
||||
setParameter("NotifyUrl", notifyUrl);
|
||||
}
|
||||
|
||||
bool AddLiveRecordNotifyConfigRequest::getNeedStatusNotify()const
|
||||
@@ -66,7 +68,7 @@ bool AddLiveRecordNotifyConfigRequest::getNeedStatusNotify()const
|
||||
void AddLiveRecordNotifyConfigRequest::setNeedStatusNotify(bool needStatusNotify)
|
||||
{
|
||||
needStatusNotify_ = needStatusNotify;
|
||||
setCoreParameter("NeedStatusNotify", needStatusNotify ? "true" : "false");
|
||||
setParameter("NeedStatusNotify", needStatusNotify ? "true" : "false");
|
||||
}
|
||||
|
||||
std::string AddLiveRecordNotifyConfigRequest::getDomainName()const
|
||||
@@ -77,7 +79,7 @@ std::string AddLiveRecordNotifyConfigRequest::getDomainName()const
|
||||
void AddLiveRecordNotifyConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long AddLiveRecordNotifyConfigRequest::getOwnerId()const
|
||||
@@ -88,6 +90,6 @@ long AddLiveRecordNotifyConfigRequest::getOwnerId()const
|
||||
void AddLiveRecordNotifyConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLiveRecordVodConfigRequest;
|
||||
|
||||
AddLiveRecordVodConfigRequest::AddLiveRecordVodConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveRecordVodConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveRecordVodConfigRequest::~AddLiveRecordVodConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddLiveRecordVodConfigRequest::getAutoCompose()const
|
||||
void AddLiveRecordVodConfigRequest::setAutoCompose(const std::string& autoCompose)
|
||||
{
|
||||
autoCompose_ = autoCompose;
|
||||
setCoreParameter("AutoCompose", autoCompose);
|
||||
setParameter("AutoCompose", autoCompose);
|
||||
}
|
||||
|
||||
std::string AddLiveRecordVodConfigRequest::getComposeVodTranscodeGroupId()const
|
||||
@@ -44,7 +46,7 @@ std::string AddLiveRecordVodConfigRequest::getComposeVodTranscodeGroupId()const
|
||||
void AddLiveRecordVodConfigRequest::setComposeVodTranscodeGroupId(const std::string& composeVodTranscodeGroupId)
|
||||
{
|
||||
composeVodTranscodeGroupId_ = composeVodTranscodeGroupId;
|
||||
setCoreParameter("ComposeVodTranscodeGroupId", composeVodTranscodeGroupId);
|
||||
setParameter("ComposeVodTranscodeGroupId", composeVodTranscodeGroupId);
|
||||
}
|
||||
|
||||
std::string AddLiveRecordVodConfigRequest::getStorageLocation()const
|
||||
@@ -55,7 +57,7 @@ std::string AddLiveRecordVodConfigRequest::getStorageLocation()const
|
||||
void AddLiveRecordVodConfigRequest::setStorageLocation(const std::string& storageLocation)
|
||||
{
|
||||
storageLocation_ = storageLocation;
|
||||
setCoreParameter("StorageLocation", storageLocation);
|
||||
setParameter("StorageLocation", storageLocation);
|
||||
}
|
||||
|
||||
std::string AddLiveRecordVodConfigRequest::getAppName()const
|
||||
@@ -66,7 +68,7 @@ std::string AddLiveRecordVodConfigRequest::getAppName()const
|
||||
void AddLiveRecordVodConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string AddLiveRecordVodConfigRequest::getStreamName()const
|
||||
@@ -77,7 +79,7 @@ std::string AddLiveRecordVodConfigRequest::getStreamName()const
|
||||
void AddLiveRecordVodConfigRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setCoreParameter("StreamName", streamName);
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string AddLiveRecordVodConfigRequest::getVodTranscodeGroupId()const
|
||||
@@ -88,7 +90,7 @@ std::string AddLiveRecordVodConfigRequest::getVodTranscodeGroupId()const
|
||||
void AddLiveRecordVodConfigRequest::setVodTranscodeGroupId(const std::string& vodTranscodeGroupId)
|
||||
{
|
||||
vodTranscodeGroupId_ = vodTranscodeGroupId;
|
||||
setCoreParameter("VodTranscodeGroupId", vodTranscodeGroupId);
|
||||
setParameter("VodTranscodeGroupId", vodTranscodeGroupId);
|
||||
}
|
||||
|
||||
std::string AddLiveRecordVodConfigRequest::getDomainName()const
|
||||
@@ -99,7 +101,7 @@ std::string AddLiveRecordVodConfigRequest::getDomainName()const
|
||||
void AddLiveRecordVodConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
int AddLiveRecordVodConfigRequest::getCycleDuration()const
|
||||
@@ -110,7 +112,7 @@ int AddLiveRecordVodConfigRequest::getCycleDuration()const
|
||||
void AddLiveRecordVodConfigRequest::setCycleDuration(int cycleDuration)
|
||||
{
|
||||
cycleDuration_ = cycleDuration;
|
||||
setCoreParameter("CycleDuration", std::to_string(cycleDuration));
|
||||
setParameter("CycleDuration", std::to_string(cycleDuration));
|
||||
}
|
||||
|
||||
long AddLiveRecordVodConfigRequest::getOwnerId()const
|
||||
@@ -121,6 +123,6 @@ long AddLiveRecordVodConfigRequest::getOwnerId()const
|
||||
void AddLiveRecordVodConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLiveSnapshotDetectPornConfigRequest;
|
||||
|
||||
AddLiveSnapshotDetectPornConfigRequest::AddLiveSnapshotDetectPornConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveSnapshotDetectPornConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveSnapshotDetectPornConfigRequest::~AddLiveSnapshotDetectPornConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddLiveSnapshotDetectPornConfigRequest::getOssEndpoint()const
|
||||
void AddLiveSnapshotDetectPornConfigRequest::setOssEndpoint(const std::string& ossEndpoint)
|
||||
{
|
||||
ossEndpoint_ = ossEndpoint;
|
||||
setCoreParameter("OssEndpoint", ossEndpoint);
|
||||
setParameter("OssEndpoint", ossEndpoint);
|
||||
}
|
||||
|
||||
std::string AddLiveSnapshotDetectPornConfigRequest::getOssObject()const
|
||||
@@ -44,7 +46,7 @@ std::string AddLiveSnapshotDetectPornConfigRequest::getOssObject()const
|
||||
void AddLiveSnapshotDetectPornConfigRequest::setOssObject(const std::string& ossObject)
|
||||
{
|
||||
ossObject_ = ossObject;
|
||||
setCoreParameter("OssObject", ossObject);
|
||||
setParameter("OssObject", ossObject);
|
||||
}
|
||||
|
||||
std::vector<std::string> AddLiveSnapshotDetectPornConfigRequest::getScene()const
|
||||
@@ -55,8 +57,9 @@ std::vector<std::string> AddLiveSnapshotDetectPornConfigRequest::getScene()const
|
||||
void AddLiveSnapshotDetectPornConfigRequest::setScene(const std::vector<std::string>& scene)
|
||||
{
|
||||
scene_ = scene;
|
||||
for(int i = 0; i!= scene.size(); i++)
|
||||
setCoreParameter("Scene."+ std::to_string(i), scene.at(i));
|
||||
for(int dep1 = 0; dep1!= scene.size(); dep1++) {
|
||||
setParameter("Scene."+ std::to_string(dep1), scene.at(dep1));
|
||||
}
|
||||
}
|
||||
|
||||
std::string AddLiveSnapshotDetectPornConfigRequest::getAppName()const
|
||||
@@ -67,7 +70,7 @@ std::string AddLiveSnapshotDetectPornConfigRequest::getAppName()const
|
||||
void AddLiveSnapshotDetectPornConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string AddLiveSnapshotDetectPornConfigRequest::getSecurityToken()const
|
||||
@@ -78,7 +81,7 @@ std::string AddLiveSnapshotDetectPornConfigRequest::getSecurityToken()const
|
||||
void AddLiveSnapshotDetectPornConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AddLiveSnapshotDetectPornConfigRequest::getOssBucket()const
|
||||
@@ -89,7 +92,7 @@ std::string AddLiveSnapshotDetectPornConfigRequest::getOssBucket()const
|
||||
void AddLiveSnapshotDetectPornConfigRequest::setOssBucket(const std::string& ossBucket)
|
||||
{
|
||||
ossBucket_ = ossBucket;
|
||||
setCoreParameter("OssBucket", ossBucket);
|
||||
setParameter("OssBucket", ossBucket);
|
||||
}
|
||||
|
||||
std::string AddLiveSnapshotDetectPornConfigRequest::getDomainName()const
|
||||
@@ -100,7 +103,7 @@ std::string AddLiveSnapshotDetectPornConfigRequest::getDomainName()const
|
||||
void AddLiveSnapshotDetectPornConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long AddLiveSnapshotDetectPornConfigRequest::getOwnerId()const
|
||||
@@ -111,7 +114,7 @@ long AddLiveSnapshotDetectPornConfigRequest::getOwnerId()const
|
||||
void AddLiveSnapshotDetectPornConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int AddLiveSnapshotDetectPornConfigRequest::getInterval()const
|
||||
@@ -122,6 +125,6 @@ int AddLiveSnapshotDetectPornConfigRequest::getInterval()const
|
||||
void AddLiveSnapshotDetectPornConfigRequest::setInterval(int interval)
|
||||
{
|
||||
interval_ = interval;
|
||||
setCoreParameter("Interval", std::to_string(interval));
|
||||
setParameter("Interval", std::to_string(interval));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddLiveStreamTranscodeRequest;
|
||||
|
||||
AddLiveStreamTranscodeRequest::AddLiveStreamTranscodeRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddLiveStreamTranscode")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddLiveStreamTranscodeRequest::~AddLiveStreamTranscodeRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddLiveStreamTranscodeRequest::get_Template()const
|
||||
void AddLiveStreamTranscodeRequest::set_Template(const std::string& _template)
|
||||
{
|
||||
_template_ = _template;
|
||||
setCoreParameter("_Template", _template);
|
||||
setParameter("_Template", _template);
|
||||
}
|
||||
|
||||
std::string AddLiveStreamTranscodeRequest::getSecurityToken()const
|
||||
@@ -44,7 +46,7 @@ std::string AddLiveStreamTranscodeRequest::getSecurityToken()const
|
||||
void AddLiveStreamTranscodeRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string AddLiveStreamTranscodeRequest::getApp()const
|
||||
@@ -55,7 +57,7 @@ std::string AddLiveStreamTranscodeRequest::getApp()const
|
||||
void AddLiveStreamTranscodeRequest::setApp(const std::string& app)
|
||||
{
|
||||
app_ = app;
|
||||
setCoreParameter("App", app);
|
||||
setParameter("App", app);
|
||||
}
|
||||
|
||||
long AddLiveStreamTranscodeRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long AddLiveStreamTranscodeRequest::getOwnerId()const
|
||||
void AddLiveStreamTranscodeRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AddLiveStreamTranscodeRequest::getDomain()const
|
||||
@@ -77,6 +79,6 @@ std::string AddLiveStreamTranscodeRequest::getDomain()const
|
||||
void AddLiveStreamTranscodeRequest::setDomain(const std::string& domain)
|
||||
{
|
||||
domain_ = domain;
|
||||
setCoreParameter("Domain", domain);
|
||||
setParameter("Domain", domain);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AddTrancodeSEIRequest;
|
||||
|
||||
AddTrancodeSEIRequest::AddTrancodeSEIRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AddTrancodeSEI")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AddTrancodeSEIRequest::~AddTrancodeSEIRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string AddTrancodeSEIRequest::getPattern()const
|
||||
void AddTrancodeSEIRequest::setPattern(const std::string& pattern)
|
||||
{
|
||||
pattern_ = pattern;
|
||||
setCoreParameter("Pattern", pattern);
|
||||
setParameter("Pattern", pattern);
|
||||
}
|
||||
|
||||
std::string AddTrancodeSEIRequest::getAppName()const
|
||||
@@ -44,7 +46,7 @@ std::string AddTrancodeSEIRequest::getAppName()const
|
||||
void AddTrancodeSEIRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
int AddTrancodeSEIRequest::getRepeat()const
|
||||
@@ -55,7 +57,7 @@ int AddTrancodeSEIRequest::getRepeat()const
|
||||
void AddTrancodeSEIRequest::setRepeat(int repeat)
|
||||
{
|
||||
repeat_ = repeat;
|
||||
setCoreParameter("Repeat", std::to_string(repeat));
|
||||
setParameter("Repeat", std::to_string(repeat));
|
||||
}
|
||||
|
||||
std::string AddTrancodeSEIRequest::getText()const
|
||||
@@ -66,7 +68,7 @@ std::string AddTrancodeSEIRequest::getText()const
|
||||
void AddTrancodeSEIRequest::setText(const std::string& text)
|
||||
{
|
||||
text_ = text;
|
||||
setCoreParameter("Text", text);
|
||||
setParameter("Text", text);
|
||||
}
|
||||
|
||||
std::string AddTrancodeSEIRequest::getStreamName()const
|
||||
@@ -77,7 +79,7 @@ std::string AddTrancodeSEIRequest::getStreamName()const
|
||||
void AddTrancodeSEIRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setCoreParameter("StreamName", streamName);
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string AddTrancodeSEIRequest::getDomainName()const
|
||||
@@ -88,7 +90,7 @@ std::string AddTrancodeSEIRequest::getDomainName()const
|
||||
void AddTrancodeSEIRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long AddTrancodeSEIRequest::getOwnerId()const
|
||||
@@ -99,7 +101,7 @@ long AddTrancodeSEIRequest::getOwnerId()const
|
||||
void AddTrancodeSEIRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int AddTrancodeSEIRequest::getDelay()const
|
||||
@@ -110,6 +112,6 @@ int AddTrancodeSEIRequest::getDelay()const
|
||||
void AddTrancodeSEIRequest::setDelay(int delay)
|
||||
{
|
||||
delay_ = delay;
|
||||
setCoreParameter("Delay", std::to_string(delay));
|
||||
setParameter("Delay", std::to_string(delay));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::AllowPushStreamRequest;
|
||||
|
||||
AllowPushStreamRequest::AllowPushStreamRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "AllowPushStream")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
AllowPushStreamRequest::~AllowPushStreamRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long AllowPushStreamRequest::getOwnerId()const
|
||||
void AllowPushStreamRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string AllowPushStreamRequest::getRoomId()const
|
||||
@@ -44,7 +46,7 @@ std::string AllowPushStreamRequest::getRoomId()const
|
||||
void AllowPushStreamRequest::setRoomId(const std::string& roomId)
|
||||
{
|
||||
roomId_ = roomId;
|
||||
setCoreParameter("RoomId", roomId);
|
||||
setParameter("RoomId", roomId);
|
||||
}
|
||||
|
||||
std::string AllowPushStreamRequest::getAppId()const
|
||||
@@ -55,6 +57,6 @@ std::string AllowPushStreamRequest::getAppId()const
|
||||
void AllowPushStreamRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::ApplyBoardTokenRequest;
|
||||
|
||||
ApplyBoardTokenRequest::ApplyBoardTokenRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "ApplyBoardToken")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ApplyBoardTokenRequest::~ApplyBoardTokenRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string ApplyBoardTokenRequest::getBoardId()const
|
||||
void ApplyBoardTokenRequest::setBoardId(const std::string& boardId)
|
||||
{
|
||||
boardId_ = boardId;
|
||||
setCoreParameter("BoardId", boardId);
|
||||
setParameter("BoardId", boardId);
|
||||
}
|
||||
|
||||
std::string ApplyBoardTokenRequest::getAppUid()const
|
||||
@@ -44,7 +46,7 @@ std::string ApplyBoardTokenRequest::getAppUid()const
|
||||
void ApplyBoardTokenRequest::setAppUid(const std::string& appUid)
|
||||
{
|
||||
appUid_ = appUid;
|
||||
setCoreParameter("AppUid", appUid);
|
||||
setParameter("AppUid", appUid);
|
||||
}
|
||||
|
||||
long ApplyBoardTokenRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long ApplyBoardTokenRequest::getOwnerId()const
|
||||
void ApplyBoardTokenRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ApplyBoardTokenRequest::getAppId()const
|
||||
@@ -66,6 +68,6 @@ std::string ApplyBoardTokenRequest::getAppId()const
|
||||
void ApplyBoardTokenRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::ApplyRecordTokenRequest;
|
||||
|
||||
ApplyRecordTokenRequest::ApplyRecordTokenRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "ApplyRecordToken")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ApplyRecordTokenRequest::~ApplyRecordTokenRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long ApplyRecordTokenRequest::getOwnerId()const
|
||||
void ApplyRecordTokenRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ApplyRecordTokenRequest::getAppId()const
|
||||
@@ -44,6 +46,6 @@ std::string ApplyRecordTokenRequest::getAppId()const
|
||||
void ApplyRecordTokenRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::BatchDeleteLiveDomainConfigsRequest;
|
||||
|
||||
BatchDeleteLiveDomainConfigsRequest::BatchDeleteLiveDomainConfigsRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "BatchDeleteLiveDomainConfigs")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
BatchDeleteLiveDomainConfigsRequest::~BatchDeleteLiveDomainConfigsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string BatchDeleteLiveDomainConfigsRequest::getFunctionNames()const
|
||||
void BatchDeleteLiveDomainConfigsRequest::setFunctionNames(const std::string& functionNames)
|
||||
{
|
||||
functionNames_ = functionNames;
|
||||
setCoreParameter("FunctionNames", functionNames);
|
||||
setParameter("FunctionNames", functionNames);
|
||||
}
|
||||
|
||||
std::string BatchDeleteLiveDomainConfigsRequest::getDomainNames()const
|
||||
@@ -44,7 +46,7 @@ std::string BatchDeleteLiveDomainConfigsRequest::getDomainNames()const
|
||||
void BatchDeleteLiveDomainConfigsRequest::setDomainNames(const std::string& domainNames)
|
||||
{
|
||||
domainNames_ = domainNames;
|
||||
setCoreParameter("DomainNames", domainNames);
|
||||
setParameter("DomainNames", domainNames);
|
||||
}
|
||||
|
||||
std::string BatchDeleteLiveDomainConfigsRequest::getOwnerAccount()const
|
||||
@@ -55,7 +57,7 @@ std::string BatchDeleteLiveDomainConfigsRequest::getOwnerAccount()const
|
||||
void BatchDeleteLiveDomainConfigsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long BatchDeleteLiveDomainConfigsRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long BatchDeleteLiveDomainConfigsRequest::getOwnerId()const
|
||||
void BatchDeleteLiveDomainConfigsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string BatchDeleteLiveDomainConfigsRequest::getSecurityToken()const
|
||||
@@ -77,6 +79,6 @@ std::string BatchDeleteLiveDomainConfigsRequest::getSecurityToken()const
|
||||
void BatchDeleteLiveDomainConfigsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::BatchSetLiveDomainConfigsRequest;
|
||||
|
||||
BatchSetLiveDomainConfigsRequest::BatchSetLiveDomainConfigsRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "BatchSetLiveDomainConfigs")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
BatchSetLiveDomainConfigsRequest::~BatchSetLiveDomainConfigsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string BatchSetLiveDomainConfigsRequest::getFunctions()const
|
||||
void BatchSetLiveDomainConfigsRequest::setFunctions(const std::string& functions)
|
||||
{
|
||||
functions_ = functions;
|
||||
setCoreParameter("Functions", functions);
|
||||
setParameter("Functions", functions);
|
||||
}
|
||||
|
||||
std::string BatchSetLiveDomainConfigsRequest::getDomainNames()const
|
||||
@@ -44,7 +46,7 @@ std::string BatchSetLiveDomainConfigsRequest::getDomainNames()const
|
||||
void BatchSetLiveDomainConfigsRequest::setDomainNames(const std::string& domainNames)
|
||||
{
|
||||
domainNames_ = domainNames;
|
||||
setCoreParameter("DomainNames", domainNames);
|
||||
setParameter("DomainNames", domainNames);
|
||||
}
|
||||
|
||||
std::string BatchSetLiveDomainConfigsRequest::getOwnerAccount()const
|
||||
@@ -55,7 +57,7 @@ std::string BatchSetLiveDomainConfigsRequest::getOwnerAccount()const
|
||||
void BatchSetLiveDomainConfigsRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
long BatchSetLiveDomainConfigsRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long BatchSetLiveDomainConfigsRequest::getOwnerId()const
|
||||
void BatchSetLiveDomainConfigsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string BatchSetLiveDomainConfigsRequest::getSecurityToken()const
|
||||
@@ -77,6 +79,6 @@ std::string BatchSetLiveDomainConfigsRequest::getSecurityToken()const
|
||||
void BatchSetLiveDomainConfigsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::CompleteBoardRecordRequest;
|
||||
|
||||
CompleteBoardRecordRequest::CompleteBoardRecordRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "CompleteBoardRecord")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CompleteBoardRecordRequest::~CompleteBoardRecordRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string CompleteBoardRecordRequest::getEndTime()const
|
||||
void CompleteBoardRecordRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long CompleteBoardRecordRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long CompleteBoardRecordRequest::getOwnerId()const
|
||||
void CompleteBoardRecordRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CompleteBoardRecordRequest::getRecordId()const
|
||||
@@ -55,7 +57,7 @@ std::string CompleteBoardRecordRequest::getRecordId()const
|
||||
void CompleteBoardRecordRequest::setRecordId(const std::string& recordId)
|
||||
{
|
||||
recordId_ = recordId;
|
||||
setCoreParameter("RecordId", recordId);
|
||||
setParameter("RecordId", recordId);
|
||||
}
|
||||
|
||||
std::string CompleteBoardRecordRequest::getAppId()const
|
||||
@@ -66,6 +68,6 @@ std::string CompleteBoardRecordRequest::getAppId()const
|
||||
void CompleteBoardRecordRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::CompleteBoardRequest;
|
||||
|
||||
CompleteBoardRequest::CompleteBoardRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "CompleteBoard")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CompleteBoardRequest::~CompleteBoardRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long CompleteBoardRequest::getOwnerId()const
|
||||
void CompleteBoardRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CompleteBoardRequest::getAppId()const
|
||||
@@ -44,7 +46,7 @@ std::string CompleteBoardRequest::getAppId()const
|
||||
void CompleteBoardRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
std::string CompleteBoardRequest::getBoardId()const
|
||||
@@ -55,6 +57,6 @@ std::string CompleteBoardRequest::getBoardId()const
|
||||
void CompleteBoardRequest::setBoardId(const std::string& boardId)
|
||||
{
|
||||
boardId_ = boardId;
|
||||
setCoreParameter("BoardId", boardId);
|
||||
setParameter("BoardId", boardId);
|
||||
}
|
||||
|
||||
|
||||
84
live/src/model/ControlHtmlResourceRequest.cc
Normal file
84
live/src/model/ControlHtmlResourceRequest.cc
Normal file
@@ -0,0 +1,84 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/ControlHtmlResourceRequest.h>
|
||||
|
||||
using AlibabaCloud::Live::Model::ControlHtmlResourceRequest;
|
||||
|
||||
ControlHtmlResourceRequest::ControlHtmlResourceRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "ControlHtmlResource")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
ControlHtmlResourceRequest::~ControlHtmlResourceRequest()
|
||||
{}
|
||||
|
||||
std::string ControlHtmlResourceRequest::getHtmlUrl()const
|
||||
{
|
||||
return htmlUrl_;
|
||||
}
|
||||
|
||||
void ControlHtmlResourceRequest::setHtmlUrl(const std::string& htmlUrl)
|
||||
{
|
||||
htmlUrl_ = htmlUrl;
|
||||
setParameter("HtmlUrl", htmlUrl);
|
||||
}
|
||||
|
||||
std::string ControlHtmlResourceRequest::getCasterId()const
|
||||
{
|
||||
return casterId_;
|
||||
}
|
||||
|
||||
void ControlHtmlResourceRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long ControlHtmlResourceRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void ControlHtmlResourceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string ControlHtmlResourceRequest::getOperate()const
|
||||
{
|
||||
return operate_;
|
||||
}
|
||||
|
||||
void ControlHtmlResourceRequest::setOperate(const std::string& operate)
|
||||
{
|
||||
operate_ = operate;
|
||||
setParameter("Operate", operate);
|
||||
}
|
||||
|
||||
std::string ControlHtmlResourceRequest::getHtmlResourceId()const
|
||||
{
|
||||
return htmlResourceId_;
|
||||
}
|
||||
|
||||
void ControlHtmlResourceRequest::setHtmlResourceId(const std::string& htmlResourceId)
|
||||
{
|
||||
htmlResourceId_ = htmlResourceId;
|
||||
setParameter("HtmlResourceId", htmlResourceId);
|
||||
}
|
||||
|
||||
51
live/src/model/ControlHtmlResourceResult.cc
Normal file
51
live/src/model/ControlHtmlResourceResult.cc
Normal file
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/ControlHtmlResourceResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Live;
|
||||
using namespace AlibabaCloud::Live::Model;
|
||||
|
||||
ControlHtmlResourceResult::ControlHtmlResourceResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
ControlHtmlResourceResult::ControlHtmlResourceResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
ControlHtmlResourceResult::~ControlHtmlResourceResult()
|
||||
{}
|
||||
|
||||
void ControlHtmlResourceResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["StreamId"].isNull())
|
||||
streamId_ = value["StreamId"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string ControlHtmlResourceResult::getStreamId()const
|
||||
{
|
||||
return streamId_;
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::CopyCasterRequest;
|
||||
|
||||
CopyCasterRequest::CopyCasterRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "CopyCaster")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CopyCasterRequest::~CopyCasterRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string CopyCasterRequest::getClientToken()const
|
||||
void CopyCasterRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
setParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CopyCasterRequest::getCasterName()const
|
||||
@@ -44,7 +46,7 @@ std::string CopyCasterRequest::getCasterName()const
|
||||
void CopyCasterRequest::setCasterName(const std::string& casterName)
|
||||
{
|
||||
casterName_ = casterName;
|
||||
setCoreParameter("CasterName", casterName);
|
||||
setParameter("CasterName", casterName);
|
||||
}
|
||||
|
||||
std::string CopyCasterRequest::getSrcCasterId()const
|
||||
@@ -55,7 +57,7 @@ std::string CopyCasterRequest::getSrcCasterId()const
|
||||
void CopyCasterRequest::setSrcCasterId(const std::string& srcCasterId)
|
||||
{
|
||||
srcCasterId_ = srcCasterId;
|
||||
setCoreParameter("SrcCasterId", srcCasterId);
|
||||
setParameter("SrcCasterId", srcCasterId);
|
||||
}
|
||||
|
||||
long CopyCasterRequest::getOwnerId()const
|
||||
@@ -66,6 +68,6 @@ long CopyCasterRequest::getOwnerId()const
|
||||
void CopyCasterRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::CopyCasterSceneConfigRequest;
|
||||
|
||||
CopyCasterSceneConfigRequest::CopyCasterSceneConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "CopyCasterSceneConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CopyCasterSceneConfigRequest::~CopyCasterSceneConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string CopyCasterSceneConfigRequest::getFromSceneId()const
|
||||
void CopyCasterSceneConfigRequest::setFromSceneId(const std::string& fromSceneId)
|
||||
{
|
||||
fromSceneId_ = fromSceneId;
|
||||
setCoreParameter("FromSceneId", fromSceneId);
|
||||
setParameter("FromSceneId", fromSceneId);
|
||||
}
|
||||
|
||||
std::string CopyCasterSceneConfigRequest::getToSceneId()const
|
||||
@@ -44,7 +46,7 @@ std::string CopyCasterSceneConfigRequest::getToSceneId()const
|
||||
void CopyCasterSceneConfigRequest::setToSceneId(const std::string& toSceneId)
|
||||
{
|
||||
toSceneId_ = toSceneId;
|
||||
setCoreParameter("ToSceneId", toSceneId);
|
||||
setParameter("ToSceneId", toSceneId);
|
||||
}
|
||||
|
||||
std::string CopyCasterSceneConfigRequest::getCasterId()const
|
||||
@@ -55,7 +57,7 @@ std::string CopyCasterSceneConfigRequest::getCasterId()const
|
||||
void CopyCasterSceneConfigRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long CopyCasterSceneConfigRequest::getOwnerId()const
|
||||
@@ -66,6 +68,6 @@ long CopyCasterSceneConfigRequest::getOwnerId()const
|
||||
void CopyCasterSceneConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::CreateBoardRequest;
|
||||
|
||||
CreateBoardRequest::CreateBoardRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "CreateBoard")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CreateBoardRequest::~CreateBoardRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string CreateBoardRequest::getAppUid()const
|
||||
void CreateBoardRequest::setAppUid(const std::string& appUid)
|
||||
{
|
||||
appUid_ = appUid;
|
||||
setCoreParameter("AppUid", appUid);
|
||||
setParameter("AppUid", appUid);
|
||||
}
|
||||
|
||||
long CreateBoardRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long CreateBoardRequest::getOwnerId()const
|
||||
void CreateBoardRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateBoardRequest::getAppId()const
|
||||
@@ -55,6 +57,6 @@ std::string CreateBoardRequest::getAppId()const
|
||||
void CreateBoardRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::CreateCasterRequest;
|
||||
|
||||
CreateCasterRequest::CreateCasterRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "CreateCaster")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CreateCasterRequest::~CreateCasterRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string CreateCasterRequest::getClientToken()const
|
||||
void CreateCasterRequest::setClientToken(const std::string& clientToken)
|
||||
{
|
||||
clientToken_ = clientToken;
|
||||
setCoreParameter("ClientToken", clientToken);
|
||||
setParameter("ClientToken", clientToken);
|
||||
}
|
||||
|
||||
std::string CreateCasterRequest::getCasterName()const
|
||||
@@ -44,7 +46,7 @@ std::string CreateCasterRequest::getCasterName()const
|
||||
void CreateCasterRequest::setCasterName(const std::string& casterName)
|
||||
{
|
||||
casterName_ = casterName;
|
||||
setCoreParameter("CasterName", casterName);
|
||||
setParameter("CasterName", casterName);
|
||||
}
|
||||
|
||||
std::string CreateCasterRequest::getCasterTemplate()const
|
||||
@@ -55,7 +57,7 @@ std::string CreateCasterRequest::getCasterTemplate()const
|
||||
void CreateCasterRequest::setCasterTemplate(const std::string& casterTemplate)
|
||||
{
|
||||
casterTemplate_ = casterTemplate;
|
||||
setCoreParameter("CasterTemplate", casterTemplate);
|
||||
setParameter("CasterTemplate", casterTemplate);
|
||||
}
|
||||
|
||||
std::string CreateCasterRequest::getExpireTime()const
|
||||
@@ -66,7 +68,7 @@ std::string CreateCasterRequest::getExpireTime()const
|
||||
void CreateCasterRequest::setExpireTime(const std::string& expireTime)
|
||||
{
|
||||
expireTime_ = expireTime;
|
||||
setCoreParameter("ExpireTime", expireTime);
|
||||
setParameter("ExpireTime", expireTime);
|
||||
}
|
||||
|
||||
int CreateCasterRequest::getNormType()const
|
||||
@@ -77,7 +79,7 @@ int CreateCasterRequest::getNormType()const
|
||||
void CreateCasterRequest::setNormType(int normType)
|
||||
{
|
||||
normType_ = normType;
|
||||
setCoreParameter("NormType", std::to_string(normType));
|
||||
setParameter("NormType", std::to_string(normType));
|
||||
}
|
||||
|
||||
long CreateCasterRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long CreateCasterRequest::getOwnerId()const
|
||||
void CreateCasterRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateCasterRequest::getPurchaseTime()const
|
||||
@@ -99,7 +101,7 @@ std::string CreateCasterRequest::getPurchaseTime()const
|
||||
void CreateCasterRequest::setPurchaseTime(const std::string& purchaseTime)
|
||||
{
|
||||
purchaseTime_ = purchaseTime;
|
||||
setCoreParameter("PurchaseTime", purchaseTime);
|
||||
setParameter("PurchaseTime", purchaseTime);
|
||||
}
|
||||
|
||||
std::string CreateCasterRequest::getChargeType()const
|
||||
@@ -110,6 +112,6 @@ std::string CreateCasterRequest::getChargeType()const
|
||||
void CreateCasterRequest::setChargeType(const std::string& chargeType)
|
||||
{
|
||||
chargeType_ = chargeType;
|
||||
setCoreParameter("ChargeType", chargeType);
|
||||
setParameter("ChargeType", chargeType);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,63 +20,65 @@ using AlibabaCloud::Live::Model::CreateLiveRealTimeLogDeliveryRequest;
|
||||
|
||||
CreateLiveRealTimeLogDeliveryRequest::CreateLiveRealTimeLogDeliveryRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "CreateLiveRealTimeLogDelivery")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Get);
|
||||
}
|
||||
|
||||
CreateLiveRealTimeLogDeliveryRequest::~CreateLiveRealTimeLogDeliveryRequest()
|
||||
{}
|
||||
|
||||
std::string CreateLiveRealTimeLogDeliveryRequest::getProject()const
|
||||
{
|
||||
return project_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setProject(const std::string& project)
|
||||
{
|
||||
project_ = project;
|
||||
setCoreParameter("Project", project);
|
||||
}
|
||||
|
||||
std::string CreateLiveRealTimeLogDeliveryRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long CreateLiveRealTimeLogDeliveryRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateLiveRealTimeLogDeliveryRequest::getRegion()const
|
||||
{
|
||||
return region_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setCoreParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string CreateLiveRealTimeLogDeliveryRequest::getLogstore()const
|
||||
{
|
||||
return logstore_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setLogstore(const std::string& logstore)
|
||||
{
|
||||
logstore_ = logstore;
|
||||
setCoreParameter("Logstore", logstore);
|
||||
}
|
||||
|
||||
std::string CreateLiveRealTimeLogDeliveryRequest::getProject()const
|
||||
{
|
||||
return project_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setProject(const std::string& project)
|
||||
{
|
||||
project_ = project;
|
||||
setParameter("Project", project);
|
||||
}
|
||||
|
||||
std::string CreateLiveRealTimeLogDeliveryRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long CreateLiveRealTimeLogDeliveryRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateLiveRealTimeLogDeliveryRequest::getRegion()const
|
||||
{
|
||||
return region_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string CreateLiveRealTimeLogDeliveryRequest::getLogstore()const
|
||||
{
|
||||
return logstore_;
|
||||
}
|
||||
|
||||
void CreateLiveRealTimeLogDeliveryRequest::setLogstore(const std::string& logstore)
|
||||
{
|
||||
logstore_ = logstore;
|
||||
setParameter("Logstore", logstore);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::CreateLiveStreamRecordIndexFilesRequest;
|
||||
|
||||
CreateLiveStreamRecordIndexFilesRequest::CreateLiveStreamRecordIndexFilesRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "CreateLiveStreamRecordIndexFiles")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CreateLiveStreamRecordIndexFilesRequest::~CreateLiveStreamRecordIndexFilesRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string CreateLiveStreamRecordIndexFilesRequest::getOssEndpoint()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setOssEndpoint(const std::string& ossEndpoint)
|
||||
{
|
||||
ossEndpoint_ = ossEndpoint;
|
||||
setCoreParameter("OssEndpoint", ossEndpoint);
|
||||
setParameter("OssEndpoint", ossEndpoint);
|
||||
}
|
||||
|
||||
std::string CreateLiveStreamRecordIndexFilesRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string CreateLiveStreamRecordIndexFilesRequest::getStartTime()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string CreateLiveStreamRecordIndexFilesRequest::getOssObject()const
|
||||
@@ -55,7 +57,7 @@ std::string CreateLiveStreamRecordIndexFilesRequest::getOssObject()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setOssObject(const std::string& ossObject)
|
||||
{
|
||||
ossObject_ = ossObject;
|
||||
setCoreParameter("OssObject", ossObject);
|
||||
setParameter("OssObject", ossObject);
|
||||
}
|
||||
|
||||
std::string CreateLiveStreamRecordIndexFilesRequest::getAppName()const
|
||||
@@ -66,7 +68,7 @@ std::string CreateLiveStreamRecordIndexFilesRequest::getAppName()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string CreateLiveStreamRecordIndexFilesRequest::getSecurityToken()const
|
||||
@@ -77,7 +79,7 @@ std::string CreateLiveStreamRecordIndexFilesRequest::getSecurityToken()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string CreateLiveStreamRecordIndexFilesRequest::getStreamName()const
|
||||
@@ -88,7 +90,7 @@ std::string CreateLiveStreamRecordIndexFilesRequest::getStreamName()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setCoreParameter("StreamName", streamName);
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string CreateLiveStreamRecordIndexFilesRequest::getOssBucket()const
|
||||
@@ -99,7 +101,7 @@ std::string CreateLiveStreamRecordIndexFilesRequest::getOssBucket()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setOssBucket(const std::string& ossBucket)
|
||||
{
|
||||
ossBucket_ = ossBucket;
|
||||
setCoreParameter("OssBucket", ossBucket);
|
||||
setParameter("OssBucket", ossBucket);
|
||||
}
|
||||
|
||||
std::string CreateLiveStreamRecordIndexFilesRequest::getDomainName()const
|
||||
@@ -110,7 +112,7 @@ std::string CreateLiveStreamRecordIndexFilesRequest::getDomainName()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string CreateLiveStreamRecordIndexFilesRequest::getEndTime()const
|
||||
@@ -121,7 +123,7 @@ std::string CreateLiveStreamRecordIndexFilesRequest::getEndTime()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long CreateLiveStreamRecordIndexFilesRequest::getOwnerId()const
|
||||
@@ -132,6 +134,6 @@ long CreateLiveStreamRecordIndexFilesRequest::getOwnerId()const
|
||||
void CreateLiveStreamRecordIndexFilesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::CreateRoomRequest;
|
||||
|
||||
CreateRoomRequest::CreateRoomRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "CreateRoom")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
CreateRoomRequest::~CreateRoomRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string CreateRoomRequest::getTemplateIds()const
|
||||
void CreateRoomRequest::setTemplateIds(const std::string& templateIds)
|
||||
{
|
||||
templateIds_ = templateIds;
|
||||
setCoreParameter("TemplateIds", templateIds);
|
||||
setParameter("TemplateIds", templateIds);
|
||||
}
|
||||
|
||||
std::string CreateRoomRequest::getAnchorId()const
|
||||
@@ -44,7 +46,7 @@ std::string CreateRoomRequest::getAnchorId()const
|
||||
void CreateRoomRequest::setAnchorId(const std::string& anchorId)
|
||||
{
|
||||
anchorId_ = anchorId;
|
||||
setCoreParameter("AnchorId", anchorId);
|
||||
setParameter("AnchorId", anchorId);
|
||||
}
|
||||
|
||||
bool CreateRoomRequest::getUseAppTranscode()const
|
||||
@@ -55,7 +57,7 @@ bool CreateRoomRequest::getUseAppTranscode()const
|
||||
void CreateRoomRequest::setUseAppTranscode(bool useAppTranscode)
|
||||
{
|
||||
useAppTranscode_ = useAppTranscode;
|
||||
setCoreParameter("UseAppTranscode", useAppTranscode ? "true" : "false");
|
||||
setParameter("UseAppTranscode", useAppTranscode ? "true" : "false");
|
||||
}
|
||||
|
||||
long CreateRoomRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long CreateRoomRequest::getOwnerId()const
|
||||
void CreateRoomRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string CreateRoomRequest::getRoomId()const
|
||||
@@ -77,7 +79,7 @@ std::string CreateRoomRequest::getRoomId()const
|
||||
void CreateRoomRequest::setRoomId(const std::string& roomId)
|
||||
{
|
||||
roomId_ = roomId;
|
||||
setCoreParameter("RoomId", roomId);
|
||||
setParameter("RoomId", roomId);
|
||||
}
|
||||
|
||||
std::string CreateRoomRequest::getAppId()const
|
||||
@@ -88,6 +90,6 @@ std::string CreateRoomRequest::getAppId()const
|
||||
void CreateRoomRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteBoardRequest;
|
||||
|
||||
DeleteBoardRequest::DeleteBoardRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteBoard")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteBoardRequest::~DeleteBoardRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteBoardRequest::getOwnerId()const
|
||||
void DeleteBoardRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteBoardRequest::getAppId()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteBoardRequest::getAppId()const
|
||||
void DeleteBoardRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
std::string DeleteBoardRequest::getBoardId()const
|
||||
@@ -55,6 +57,6 @@ std::string DeleteBoardRequest::getBoardId()const
|
||||
void DeleteBoardRequest::setBoardId(const std::string& boardId)
|
||||
{
|
||||
boardId_ = boardId;
|
||||
setCoreParameter("BoardId", boardId);
|
||||
setParameter("BoardId", boardId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteCasterComponentRequest;
|
||||
|
||||
DeleteCasterComponentRequest::DeleteCasterComponentRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteCasterComponent")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteCasterComponentRequest::~DeleteCasterComponentRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteCasterComponentRequest::getComponentId()const
|
||||
void DeleteCasterComponentRequest::setComponentId(const std::string& componentId)
|
||||
{
|
||||
componentId_ = componentId;
|
||||
setCoreParameter("ComponentId", componentId);
|
||||
setParameter("ComponentId", componentId);
|
||||
}
|
||||
|
||||
std::string DeleteCasterComponentRequest::getCasterId()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteCasterComponentRequest::getCasterId()const
|
||||
void DeleteCasterComponentRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DeleteCasterComponentRequest::getOwnerId()const
|
||||
@@ -55,6 +57,6 @@ long DeleteCasterComponentRequest::getOwnerId()const
|
||||
void DeleteCasterComponentRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteCasterEpisodeGroupRequest;
|
||||
|
||||
DeleteCasterEpisodeGroupRequest::DeleteCasterEpisodeGroupRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteCasterEpisodeGroup")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteCasterEpisodeGroupRequest::~DeleteCasterEpisodeGroupRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteCasterEpisodeGroupRequest::getProgramId()const
|
||||
void DeleteCasterEpisodeGroupRequest::setProgramId(const std::string& programId)
|
||||
{
|
||||
programId_ = programId;
|
||||
setCoreParameter("ProgramId", programId);
|
||||
setParameter("ProgramId", programId);
|
||||
}
|
||||
|
||||
long DeleteCasterEpisodeGroupRequest::getOwnerId()const
|
||||
@@ -44,6 +46,6 @@ long DeleteCasterEpisodeGroupRequest::getOwnerId()const
|
||||
void DeleteCasterEpisodeGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteCasterEpisodeRequest;
|
||||
|
||||
DeleteCasterEpisodeRequest::DeleteCasterEpisodeRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteCasterEpisode")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteCasterEpisodeRequest::~DeleteCasterEpisodeRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteCasterEpisodeRequest::getCasterId()const
|
||||
void DeleteCasterEpisodeRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DeleteCasterEpisodeRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DeleteCasterEpisodeRequest::getOwnerId()const
|
||||
void DeleteCasterEpisodeRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteCasterEpisodeRequest::getEpisodeId()const
|
||||
@@ -55,6 +57,6 @@ std::string DeleteCasterEpisodeRequest::getEpisodeId()const
|
||||
void DeleteCasterEpisodeRequest::setEpisodeId(const std::string& episodeId)
|
||||
{
|
||||
episodeId_ = episodeId;
|
||||
setCoreParameter("EpisodeId", episodeId);
|
||||
setParameter("EpisodeId", episodeId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteCasterLayoutRequest;
|
||||
|
||||
DeleteCasterLayoutRequest::DeleteCasterLayoutRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteCasterLayout")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteCasterLayoutRequest::~DeleteCasterLayoutRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteCasterLayoutRequest::getLayoutId()const
|
||||
void DeleteCasterLayoutRequest::setLayoutId(const std::string& layoutId)
|
||||
{
|
||||
layoutId_ = layoutId;
|
||||
setCoreParameter("LayoutId", layoutId);
|
||||
setParameter("LayoutId", layoutId);
|
||||
}
|
||||
|
||||
std::string DeleteCasterLayoutRequest::getCasterId()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteCasterLayoutRequest::getCasterId()const
|
||||
void DeleteCasterLayoutRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DeleteCasterLayoutRequest::getOwnerId()const
|
||||
@@ -55,6 +57,6 @@ long DeleteCasterLayoutRequest::getOwnerId()const
|
||||
void DeleteCasterLayoutRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteCasterProgramRequest;
|
||||
|
||||
DeleteCasterProgramRequest::DeleteCasterProgramRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteCasterProgram")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteCasterProgramRequest::~DeleteCasterProgramRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteCasterProgramRequest::getCasterId()const
|
||||
void DeleteCasterProgramRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DeleteCasterProgramRequest::getOwnerId()const
|
||||
@@ -44,6 +46,6 @@ long DeleteCasterProgramRequest::getOwnerId()const
|
||||
void DeleteCasterProgramRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteCasterRequest;
|
||||
|
||||
DeleteCasterRequest::DeleteCasterRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteCaster")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteCasterRequest::~DeleteCasterRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteCasterRequest::getCasterId()const
|
||||
void DeleteCasterRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DeleteCasterRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DeleteCasterRequest::getOwnerId()const
|
||||
void DeleteCasterRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteCasterRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string DeleteCasterRequest::getSecurityToken()const
|
||||
void DeleteCasterRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteCasterSceneConfigRequest;
|
||||
|
||||
DeleteCasterSceneConfigRequest::DeleteCasterSceneConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteCasterSceneConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteCasterSceneConfigRequest::~DeleteCasterSceneConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteCasterSceneConfigRequest::getType()const
|
||||
void DeleteCasterSceneConfigRequest::setType(const std::string& type)
|
||||
{
|
||||
type_ = type;
|
||||
setCoreParameter("Type", type);
|
||||
setParameter("Type", type);
|
||||
}
|
||||
|
||||
std::string DeleteCasterSceneConfigRequest::getCasterId()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteCasterSceneConfigRequest::getCasterId()const
|
||||
void DeleteCasterSceneConfigRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DeleteCasterSceneConfigRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteCasterSceneConfigRequest::getOwnerId()const
|
||||
void DeleteCasterSceneConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteCasterSceneConfigRequest::getSceneId()const
|
||||
@@ -66,6 +68,6 @@ std::string DeleteCasterSceneConfigRequest::getSceneId()const
|
||||
void DeleteCasterSceneConfigRequest::setSceneId(const std::string& sceneId)
|
||||
{
|
||||
sceneId_ = sceneId;
|
||||
setCoreParameter("SceneId", sceneId);
|
||||
setParameter("SceneId", sceneId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteCasterVideoResourceRequest;
|
||||
|
||||
DeleteCasterVideoResourceRequest::DeleteCasterVideoResourceRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteCasterVideoResource")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteCasterVideoResourceRequest::~DeleteCasterVideoResourceRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteCasterVideoResourceRequest::getResourceId()const
|
||||
void DeleteCasterVideoResourceRequest::setResourceId(const std::string& resourceId)
|
||||
{
|
||||
resourceId_ = resourceId;
|
||||
setCoreParameter("ResourceId", resourceId);
|
||||
setParameter("ResourceId", resourceId);
|
||||
}
|
||||
|
||||
std::string DeleteCasterVideoResourceRequest::getCasterId()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteCasterVideoResourceRequest::getCasterId()const
|
||||
void DeleteCasterVideoResourceRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DeleteCasterVideoResourceRequest::getOwnerId()const
|
||||
@@ -55,6 +57,6 @@ long DeleteCasterVideoResourceRequest::getOwnerId()const
|
||||
void DeleteCasterVideoResourceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
73
live/src/model/DeleteHtmlResourceRequest.cc
Normal file
73
live/src/model/DeleteHtmlResourceRequest.cc
Normal file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DeleteHtmlResourceRequest.h>
|
||||
|
||||
using AlibabaCloud::Live::Model::DeleteHtmlResourceRequest;
|
||||
|
||||
DeleteHtmlResourceRequest::DeleteHtmlResourceRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteHtmlResource")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteHtmlResourceRequest::~DeleteHtmlResourceRequest()
|
||||
{}
|
||||
|
||||
std::string DeleteHtmlResourceRequest::getHtmlUrl()const
|
||||
{
|
||||
return htmlUrl_;
|
||||
}
|
||||
|
||||
void DeleteHtmlResourceRequest::setHtmlUrl(const std::string& htmlUrl)
|
||||
{
|
||||
htmlUrl_ = htmlUrl;
|
||||
setParameter("HtmlUrl", htmlUrl);
|
||||
}
|
||||
|
||||
std::string DeleteHtmlResourceRequest::getCasterId()const
|
||||
{
|
||||
return casterId_;
|
||||
}
|
||||
|
||||
void DeleteHtmlResourceRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DeleteHtmlResourceRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DeleteHtmlResourceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteHtmlResourceRequest::getHtmlResourceId()const
|
||||
{
|
||||
return htmlResourceId_;
|
||||
}
|
||||
|
||||
void DeleteHtmlResourceRequest::setHtmlResourceId(const std::string& htmlResourceId)
|
||||
{
|
||||
htmlResourceId_ = htmlResourceId;
|
||||
setParameter("HtmlResourceId", htmlResourceId);
|
||||
}
|
||||
|
||||
44
live/src/model/DeleteHtmlResourceResult.cc
Normal file
44
live/src/model/DeleteHtmlResourceResult.cc
Normal file
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DeleteHtmlResourceResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Live;
|
||||
using namespace AlibabaCloud::Live::Model;
|
||||
|
||||
DeleteHtmlResourceResult::DeleteHtmlResourceResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DeleteHtmlResourceResult::DeleteHtmlResourceResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DeleteHtmlResourceResult::~DeleteHtmlResourceResult()
|
||||
{}
|
||||
|
||||
void DeleteHtmlResourceResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveAppRecordConfigRequest;
|
||||
|
||||
DeleteLiveAppRecordConfigRequest::DeleteLiveAppRecordConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveAppRecordConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveAppRecordConfigRequest::~DeleteLiveAppRecordConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveAppRecordConfigRequest::getAppName()const
|
||||
void DeleteLiveAppRecordConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string DeleteLiveAppRecordConfigRequest::getSecurityToken()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteLiveAppRecordConfigRequest::getSecurityToken()const
|
||||
void DeleteLiveAppRecordConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteLiveAppRecordConfigRequest::getStreamName()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteLiveAppRecordConfigRequest::getStreamName()const
|
||||
void DeleteLiveAppRecordConfigRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setCoreParameter("StreamName", streamName);
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string DeleteLiveAppRecordConfigRequest::getDomainName()const
|
||||
@@ -66,7 +68,7 @@ std::string DeleteLiveAppRecordConfigRequest::getDomainName()const
|
||||
void DeleteLiveAppRecordConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveAppRecordConfigRequest::getOwnerId()const
|
||||
@@ -77,6 +79,6 @@ long DeleteLiveAppRecordConfigRequest::getOwnerId()const
|
||||
void DeleteLiveAppRecordConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveAppSnapshotConfigRequest;
|
||||
|
||||
DeleteLiveAppSnapshotConfigRequest::DeleteLiveAppSnapshotConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveAppSnapshotConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveAppSnapshotConfigRequest::~DeleteLiveAppSnapshotConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveAppSnapshotConfigRequest::getAppName()const
|
||||
void DeleteLiveAppSnapshotConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string DeleteLiveAppSnapshotConfigRequest::getSecurityToken()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteLiveAppSnapshotConfigRequest::getSecurityToken()const
|
||||
void DeleteLiveAppSnapshotConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteLiveAppSnapshotConfigRequest::getDomainName()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteLiveAppSnapshotConfigRequest::getDomainName()const
|
||||
void DeleteLiveAppSnapshotConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveAppSnapshotConfigRequest::getOwnerId()const
|
||||
@@ -66,6 +68,6 @@ long DeleteLiveAppSnapshotConfigRequest::getOwnerId()const
|
||||
void DeleteLiveAppSnapshotConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
73
live/src/model/DeleteLiveAudioAuditConfigRequest.cc
Normal file
73
live/src/model/DeleteLiveAudioAuditConfigRequest.cc
Normal file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DeleteLiveAudioAuditConfigRequest.h>
|
||||
|
||||
using AlibabaCloud::Live::Model::DeleteLiveAudioAuditConfigRequest;
|
||||
|
||||
DeleteLiveAudioAuditConfigRequest::DeleteLiveAudioAuditConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveAudioAuditConfig")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveAudioAuditConfigRequest::~DeleteLiveAudioAuditConfigRequest()
|
||||
{}
|
||||
|
||||
std::string DeleteLiveAudioAuditConfigRequest::getAppName()const
|
||||
{
|
||||
return appName_;
|
||||
}
|
||||
|
||||
void DeleteLiveAudioAuditConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string DeleteLiveAudioAuditConfigRequest::getStreamName()const
|
||||
{
|
||||
return streamName_;
|
||||
}
|
||||
|
||||
void DeleteLiveAudioAuditConfigRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string DeleteLiveAudioAuditConfigRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DeleteLiveAudioAuditConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveAudioAuditConfigRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DeleteLiveAudioAuditConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
44
live/src/model/DeleteLiveAudioAuditConfigResult.cc
Normal file
44
live/src/model/DeleteLiveAudioAuditConfigResult.cc
Normal file
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DeleteLiveAudioAuditConfigResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Live;
|
||||
using namespace AlibabaCloud::Live::Model;
|
||||
|
||||
DeleteLiveAudioAuditConfigResult::DeleteLiveAudioAuditConfigResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DeleteLiveAudioAuditConfigResult::DeleteLiveAudioAuditConfigResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DeleteLiveAudioAuditConfigResult::~DeleteLiveAudioAuditConfigResult()
|
||||
{}
|
||||
|
||||
void DeleteLiveAudioAuditConfigResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
|
||||
}
|
||||
|
||||
51
live/src/model/DeleteLiveAudioAuditNotifyConfigRequest.cc
Normal file
51
live/src/model/DeleteLiveAudioAuditNotifyConfigRequest.cc
Normal file
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DeleteLiveAudioAuditNotifyConfigRequest.h>
|
||||
|
||||
using AlibabaCloud::Live::Model::DeleteLiveAudioAuditNotifyConfigRequest;
|
||||
|
||||
DeleteLiveAudioAuditNotifyConfigRequest::DeleteLiveAudioAuditNotifyConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveAudioAuditNotifyConfig")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveAudioAuditNotifyConfigRequest::~DeleteLiveAudioAuditNotifyConfigRequest()
|
||||
{}
|
||||
|
||||
std::string DeleteLiveAudioAuditNotifyConfigRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DeleteLiveAudioAuditNotifyConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveAudioAuditNotifyConfigRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DeleteLiveAudioAuditNotifyConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
44
live/src/model/DeleteLiveAudioAuditNotifyConfigResult.cc
Normal file
44
live/src/model/DeleteLiveAudioAuditNotifyConfigResult.cc
Normal file
@@ -0,0 +1,44 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DeleteLiveAudioAuditNotifyConfigResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Live;
|
||||
using namespace AlibabaCloud::Live::Model;
|
||||
|
||||
DeleteLiveAudioAuditNotifyConfigResult::DeleteLiveAudioAuditNotifyConfigResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DeleteLiveAudioAuditNotifyConfigResult::DeleteLiveAudioAuditNotifyConfigResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DeleteLiveAudioAuditNotifyConfigResult::~DeleteLiveAudioAuditNotifyConfigResult()
|
||||
{}
|
||||
|
||||
void DeleteLiveAudioAuditNotifyConfigResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveDetectNotifyConfigRequest;
|
||||
|
||||
DeleteLiveDetectNotifyConfigRequest::DeleteLiveDetectNotifyConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveDetectNotifyConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveDetectNotifyConfigRequest::~DeleteLiveDetectNotifyConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveDetectNotifyConfigRequest::getDomainName()const
|
||||
void DeleteLiveDetectNotifyConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveDetectNotifyConfigRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DeleteLiveDetectNotifyConfigRequest::getOwnerId()const
|
||||
void DeleteLiveDetectNotifyConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveDetectNotifyConfigRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string DeleteLiveDetectNotifyConfigRequest::getSecurityToken()const
|
||||
void DeleteLiveDetectNotifyConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveDomainMappingRequest;
|
||||
|
||||
DeleteLiveDomainMappingRequest::DeleteLiveDomainMappingRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveDomainMapping")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveDomainMappingRequest::~DeleteLiveDomainMappingRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteLiveDomainMappingRequest::getOwnerId()const
|
||||
void DeleteLiveDomainMappingRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveDomainMappingRequest::getPullDomain()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteLiveDomainMappingRequest::getPullDomain()const
|
||||
void DeleteLiveDomainMappingRequest::setPullDomain(const std::string& pullDomain)
|
||||
{
|
||||
pullDomain_ = pullDomain;
|
||||
setCoreParameter("PullDomain", pullDomain);
|
||||
setParameter("PullDomain", pullDomain);
|
||||
}
|
||||
|
||||
std::string DeleteLiveDomainMappingRequest::getSecurityToken()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteLiveDomainMappingRequest::getSecurityToken()const
|
||||
void DeleteLiveDomainMappingRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteLiveDomainMappingRequest::getPushDomain()const
|
||||
@@ -66,6 +68,6 @@ std::string DeleteLiveDomainMappingRequest::getPushDomain()const
|
||||
void DeleteLiveDomainMappingRequest::setPushDomain(const std::string& pushDomain)
|
||||
{
|
||||
pushDomain_ = pushDomain;
|
||||
setCoreParameter("PushDomain", pushDomain);
|
||||
setParameter("PushDomain", pushDomain);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveDomainRequest;
|
||||
|
||||
DeleteLiveDomainRequest::DeleteLiveDomainRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveDomain")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveDomainRequest::~DeleteLiveDomainRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveDomainRequest::getOwnerAccount()const
|
||||
void DeleteLiveDomainRequest::setOwnerAccount(const std::string& ownerAccount)
|
||||
{
|
||||
ownerAccount_ = ownerAccount;
|
||||
setCoreParameter("OwnerAccount", ownerAccount);
|
||||
setParameter("OwnerAccount", ownerAccount);
|
||||
}
|
||||
|
||||
std::string DeleteLiveDomainRequest::getDomainName()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteLiveDomainRequest::getDomainName()const
|
||||
void DeleteLiveDomainRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveDomainRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DeleteLiveDomainRequest::getOwnerId()const
|
||||
void DeleteLiveDomainRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveDomainRequest::getSecurityToken()const
|
||||
@@ -66,6 +68,6 @@ std::string DeleteLiveDomainRequest::getSecurityToken()const
|
||||
void DeleteLiveDomainRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveLazyPullStreamInfoConfigRequest;
|
||||
|
||||
DeleteLiveLazyPullStreamInfoConfigRequest::DeleteLiveLazyPullStreamInfoConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveLazyPullStreamInfoConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveLazyPullStreamInfoConfigRequest::~DeleteLiveLazyPullStreamInfoConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveLazyPullStreamInfoConfigRequest::getDomainName()const
|
||||
void DeleteLiveLazyPullStreamInfoConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveLazyPullStreamInfoConfigRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DeleteLiveLazyPullStreamInfoConfigRequest::getOwnerId()const
|
||||
void DeleteLiveLazyPullStreamInfoConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveLazyPullStreamInfoConfigRequest::getAppName()const
|
||||
@@ -55,6 +57,6 @@ std::string DeleteLiveLazyPullStreamInfoConfigRequest::getAppName()const
|
||||
void DeleteLiveLazyPullStreamInfoConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLivePullStreamInfoConfigRequest;
|
||||
|
||||
DeleteLivePullStreamInfoConfigRequest::DeleteLivePullStreamInfoConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLivePullStreamInfoConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLivePullStreamInfoConfigRequest::~DeleteLivePullStreamInfoConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLivePullStreamInfoConfigRequest::getAppName()const
|
||||
void DeleteLivePullStreamInfoConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string DeleteLivePullStreamInfoConfigRequest::getSecurityToken()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteLivePullStreamInfoConfigRequest::getSecurityToken()const
|
||||
void DeleteLivePullStreamInfoConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteLivePullStreamInfoConfigRequest::getStreamName()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteLivePullStreamInfoConfigRequest::getStreamName()const
|
||||
void DeleteLivePullStreamInfoConfigRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setCoreParameter("StreamName", streamName);
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string DeleteLivePullStreamInfoConfigRequest::getDomainName()const
|
||||
@@ -66,7 +68,7 @@ std::string DeleteLivePullStreamInfoConfigRequest::getDomainName()const
|
||||
void DeleteLivePullStreamInfoConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLivePullStreamInfoConfigRequest::getOwnerId()const
|
||||
@@ -77,6 +79,6 @@ long DeleteLivePullStreamInfoConfigRequest::getOwnerId()const
|
||||
void DeleteLivePullStreamInfoConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,52 +20,54 @@ using AlibabaCloud::Live::Model::DeleteLiveRealTimeLogLogstoreRequest;
|
||||
|
||||
DeleteLiveRealTimeLogLogstoreRequest::DeleteLiveRealTimeLogLogstoreRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveRealTimeLogLogstore")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Get);
|
||||
}
|
||||
|
||||
DeleteLiveRealTimeLogLogstoreRequest::~DeleteLiveRealTimeLogLogstoreRequest()
|
||||
{}
|
||||
|
||||
std::string DeleteLiveRealTimeLogLogstoreRequest::getProject()const
|
||||
{
|
||||
return project_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealTimeLogLogstoreRequest::setProject(const std::string& project)
|
||||
{
|
||||
project_ = project;
|
||||
setCoreParameter("Project", project);
|
||||
}
|
||||
|
||||
long DeleteLiveRealTimeLogLogstoreRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealTimeLogLogstoreRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealTimeLogLogstoreRequest::getRegion()const
|
||||
{
|
||||
return region_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealTimeLogLogstoreRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setCoreParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealTimeLogLogstoreRequest::getLogstore()const
|
||||
{
|
||||
return logstore_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealTimeLogLogstoreRequest::setLogstore(const std::string& logstore)
|
||||
{
|
||||
logstore_ = logstore;
|
||||
setCoreParameter("Logstore", logstore);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealTimeLogLogstoreRequest::getProject()const
|
||||
{
|
||||
return project_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealTimeLogLogstoreRequest::setProject(const std::string& project)
|
||||
{
|
||||
project_ = project;
|
||||
setParameter("Project", project);
|
||||
}
|
||||
|
||||
long DeleteLiveRealTimeLogLogstoreRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealTimeLogLogstoreRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealTimeLogLogstoreRequest::getRegion()const
|
||||
{
|
||||
return region_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealTimeLogLogstoreRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealTimeLogLogstoreRequest::getLogstore()const
|
||||
{
|
||||
return logstore_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealTimeLogLogstoreRequest::setLogstore(const std::string& logstore)
|
||||
{
|
||||
logstore_ = logstore;
|
||||
setParameter("Logstore", logstore);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,63 +20,65 @@ using AlibabaCloud::Live::Model::DeleteLiveRealtimeLogDeliveryRequest;
|
||||
|
||||
DeleteLiveRealtimeLogDeliveryRequest::DeleteLiveRealtimeLogDeliveryRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveRealtimeLogDelivery")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Get);
|
||||
}
|
||||
|
||||
DeleteLiveRealtimeLogDeliveryRequest::~DeleteLiveRealtimeLogDeliveryRequest()
|
||||
{}
|
||||
|
||||
std::string DeleteLiveRealtimeLogDeliveryRequest::getProject()const
|
||||
{
|
||||
return project_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setProject(const std::string& project)
|
||||
{
|
||||
project_ = project;
|
||||
setCoreParameter("Project", project);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealtimeLogDeliveryRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveRealtimeLogDeliveryRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealtimeLogDeliveryRequest::getRegion()const
|
||||
{
|
||||
return region_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setCoreParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealtimeLogDeliveryRequest::getLogstore()const
|
||||
{
|
||||
return logstore_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setLogstore(const std::string& logstore)
|
||||
{
|
||||
logstore_ = logstore;
|
||||
setCoreParameter("Logstore", logstore);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealtimeLogDeliveryRequest::getProject()const
|
||||
{
|
||||
return project_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setProject(const std::string& project)
|
||||
{
|
||||
project_ = project;
|
||||
setParameter("Project", project);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealtimeLogDeliveryRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveRealtimeLogDeliveryRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealtimeLogDeliveryRequest::getRegion()const
|
||||
{
|
||||
return region_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRealtimeLogDeliveryRequest::getLogstore()const
|
||||
{
|
||||
return logstore_;
|
||||
}
|
||||
|
||||
void DeleteLiveRealtimeLogDeliveryRequest::setLogstore(const std::string& logstore)
|
||||
{
|
||||
logstore_ = logstore;
|
||||
setParameter("Logstore", logstore);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveRecordNotifyConfigRequest;
|
||||
|
||||
DeleteLiveRecordNotifyConfigRequest::DeleteLiveRecordNotifyConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveRecordNotifyConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveRecordNotifyConfigRequest::~DeleteLiveRecordNotifyConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveRecordNotifyConfigRequest::getDomainName()const
|
||||
void DeleteLiveRecordNotifyConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveRecordNotifyConfigRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DeleteLiveRecordNotifyConfigRequest::getOwnerId()const
|
||||
void DeleteLiveRecordNotifyConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveRecordNotifyConfigRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string DeleteLiveRecordNotifyConfigRequest::getSecurityToken()const
|
||||
void DeleteLiveRecordNotifyConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveRecordVodConfigRequest;
|
||||
|
||||
DeleteLiveRecordVodConfigRequest::DeleteLiveRecordVodConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveRecordVodConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveRecordVodConfigRequest::~DeleteLiveRecordVodConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveRecordVodConfigRequest::getAppName()const
|
||||
void DeleteLiveRecordVodConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRecordVodConfigRequest::getStreamName()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteLiveRecordVodConfigRequest::getStreamName()const
|
||||
void DeleteLiveRecordVodConfigRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setCoreParameter("StreamName", streamName);
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string DeleteLiveRecordVodConfigRequest::getDomainName()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteLiveRecordVodConfigRequest::getDomainName()const
|
||||
void DeleteLiveRecordVodConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveRecordVodConfigRequest::getOwnerId()const
|
||||
@@ -66,6 +68,6 @@ long DeleteLiveRecordVodConfigRequest::getOwnerId()const
|
||||
void DeleteLiveRecordVodConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveSnapshotDetectPornConfigRequest;
|
||||
|
||||
DeleteLiveSnapshotDetectPornConfigRequest::DeleteLiveSnapshotDetectPornConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveSnapshotDetectPornConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveSnapshotDetectPornConfigRequest::~DeleteLiveSnapshotDetectPornConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveSnapshotDetectPornConfigRequest::getDomainName()const
|
||||
void DeleteLiveSnapshotDetectPornConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveSnapshotDetectPornConfigRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DeleteLiveSnapshotDetectPornConfigRequest::getOwnerId()const
|
||||
void DeleteLiveSnapshotDetectPornConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveSnapshotDetectPornConfigRequest::getAppName()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteLiveSnapshotDetectPornConfigRequest::getAppName()const
|
||||
void DeleteLiveSnapshotDetectPornConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setCoreParameter("AppName", appName);
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string DeleteLiveSnapshotDetectPornConfigRequest::getSecurityToken()const
|
||||
@@ -66,6 +68,6 @@ std::string DeleteLiveSnapshotDetectPornConfigRequest::getSecurityToken()const
|
||||
void DeleteLiveSnapshotDetectPornConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveStreamTranscodeRequest;
|
||||
|
||||
DeleteLiveStreamTranscodeRequest::DeleteLiveStreamTranscodeRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveStreamTranscode")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveStreamTranscodeRequest::~DeleteLiveStreamTranscodeRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveStreamTranscodeRequest::get_Template()const
|
||||
void DeleteLiveStreamTranscodeRequest::set_Template(const std::string& _template)
|
||||
{
|
||||
_template_ = _template;
|
||||
setCoreParameter("_Template", _template);
|
||||
setParameter("_Template", _template);
|
||||
}
|
||||
|
||||
std::string DeleteLiveStreamTranscodeRequest::getSecurityToken()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteLiveStreamTranscodeRequest::getSecurityToken()const
|
||||
void DeleteLiveStreamTranscodeRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
std::string DeleteLiveStreamTranscodeRequest::getApp()const
|
||||
@@ -55,7 +57,7 @@ std::string DeleteLiveStreamTranscodeRequest::getApp()const
|
||||
void DeleteLiveStreamTranscodeRequest::setApp(const std::string& app)
|
||||
{
|
||||
app_ = app;
|
||||
setCoreParameter("App", app);
|
||||
setParameter("App", app);
|
||||
}
|
||||
|
||||
long DeleteLiveStreamTranscodeRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long DeleteLiveStreamTranscodeRequest::getOwnerId()const
|
||||
void DeleteLiveStreamTranscodeRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteLiveStreamTranscodeRequest::getDomain()const
|
||||
@@ -77,6 +79,6 @@ std::string DeleteLiveStreamTranscodeRequest::getDomain()const
|
||||
void DeleteLiveStreamTranscodeRequest::setDomain(const std::string& domain)
|
||||
{
|
||||
domain_ = domain;
|
||||
setCoreParameter("Domain", domain);
|
||||
setParameter("Domain", domain);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteLiveStreamsNotifyUrlConfigRequest;
|
||||
|
||||
DeleteLiveStreamsNotifyUrlConfigRequest::DeleteLiveStreamsNotifyUrlConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteLiveStreamsNotifyUrlConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteLiveStreamsNotifyUrlConfigRequest::~DeleteLiveStreamsNotifyUrlConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DeleteLiveStreamsNotifyUrlConfigRequest::getDomainName()const
|
||||
void DeleteLiveStreamsNotifyUrlConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DeleteLiveStreamsNotifyUrlConfigRequest::getOwnerId()const
|
||||
@@ -44,6 +46,6 @@ long DeleteLiveStreamsNotifyUrlConfigRequest::getOwnerId()const
|
||||
void DeleteLiveStreamsNotifyUrlConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DeleteRoomRequest;
|
||||
|
||||
DeleteRoomRequest::DeleteRoomRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DeleteRoom")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DeleteRoomRequest::~DeleteRoomRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DeleteRoomRequest::getOwnerId()const
|
||||
void DeleteRoomRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DeleteRoomRequest::getRoomId()const
|
||||
@@ -44,7 +46,7 @@ std::string DeleteRoomRequest::getRoomId()const
|
||||
void DeleteRoomRequest::setRoomId(const std::string& roomId)
|
||||
{
|
||||
roomId_ = roomId;
|
||||
setCoreParameter("RoomId", roomId);
|
||||
setParameter("RoomId", roomId);
|
||||
}
|
||||
|
||||
std::string DeleteRoomRequest::getAppId()const
|
||||
@@ -55,6 +57,6 @@ std::string DeleteRoomRequest::getAppId()const
|
||||
void DeleteRoomRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeBoardEventsRequest;
|
||||
|
||||
DescribeBoardEventsRequest::DescribeBoardEventsRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeBoardEvents")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeBoardEventsRequest::~DescribeBoardEventsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeBoardEventsRequest::getStartTime()const
|
||||
void DescribeBoardEventsRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeBoardEventsRequest::getBoardId()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeBoardEventsRequest::getBoardId()const
|
||||
void DescribeBoardEventsRequest::setBoardId(const std::string& boardId)
|
||||
{
|
||||
boardId_ = boardId;
|
||||
setCoreParameter("BoardId", boardId);
|
||||
setParameter("BoardId", boardId);
|
||||
}
|
||||
|
||||
std::string DescribeBoardEventsRequest::getEndTime()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeBoardEventsRequest::getEndTime()const
|
||||
void DescribeBoardEventsRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeBoardEventsRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long DescribeBoardEventsRequest::getOwnerId()const
|
||||
void DescribeBoardEventsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeBoardEventsRequest::getAppId()const
|
||||
@@ -77,6 +79,6 @@ std::string DescribeBoardEventsRequest::getAppId()const
|
||||
void DescribeBoardEventsRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeBoardSnapshotRequest;
|
||||
|
||||
DescribeBoardSnapshotRequest::DescribeBoardSnapshotRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeBoardSnapshot")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeBoardSnapshotRequest::~DescribeBoardSnapshotRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ long DescribeBoardSnapshotRequest::getOwnerId()const
|
||||
void DescribeBoardSnapshotRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeBoardSnapshotRequest::getAppId()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeBoardSnapshotRequest::getAppId()const
|
||||
void DescribeBoardSnapshotRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
std::string DescribeBoardSnapshotRequest::getBoardId()const
|
||||
@@ -55,6 +57,6 @@ std::string DescribeBoardSnapshotRequest::getBoardId()const
|
||||
void DescribeBoardSnapshotRequest::setBoardId(const std::string& boardId)
|
||||
{
|
||||
boardId_ = boardId;
|
||||
setCoreParameter("BoardId", boardId);
|
||||
setParameter("BoardId", boardId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeBoardsRequest;
|
||||
|
||||
DescribeBoardsRequest::DescribeBoardsRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeBoards")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeBoardsRequest::~DescribeBoardsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ int DescribeBoardsRequest::getPageNum()const
|
||||
void DescribeBoardsRequest::setPageNum(int pageNum)
|
||||
{
|
||||
pageNum_ = pageNum;
|
||||
setCoreParameter("PageNum", std::to_string(pageNum));
|
||||
setParameter("PageNum", std::to_string(pageNum));
|
||||
}
|
||||
|
||||
int DescribeBoardsRequest::getPageSize()const
|
||||
@@ -44,7 +46,7 @@ int DescribeBoardsRequest::getPageSize()const
|
||||
void DescribeBoardsRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
long DescribeBoardsRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DescribeBoardsRequest::getOwnerId()const
|
||||
void DescribeBoardsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeBoardsRequest::getAppId()const
|
||||
@@ -66,6 +68,6 @@ std::string DescribeBoardsRequest::getAppId()const
|
||||
void DescribeBoardsRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterChannelsRequest;
|
||||
|
||||
DescribeCasterChannelsRequest::DescribeCasterChannelsRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterChannels")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterChannelsRequest::~DescribeCasterChannelsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterChannelsRequest::getCasterId()const
|
||||
void DescribeCasterChannelsRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterChannelsRequest::getOwnerId()const
|
||||
@@ -44,6 +46,6 @@ long DescribeCasterChannelsRequest::getOwnerId()const
|
||||
void DescribeCasterChannelsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterComponentsRequest;
|
||||
|
||||
DescribeCasterComponentsRequest::DescribeCasterComponentsRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterComponents")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterComponentsRequest::~DescribeCasterComponentsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterComponentsRequest::getComponentId()const
|
||||
void DescribeCasterComponentsRequest::setComponentId(const std::string& componentId)
|
||||
{
|
||||
componentId_ = componentId;
|
||||
setCoreParameter("ComponentId", componentId);
|
||||
setParameter("ComponentId", componentId);
|
||||
}
|
||||
|
||||
std::string DescribeCasterComponentsRequest::getCasterId()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeCasterComponentsRequest::getCasterId()const
|
||||
void DescribeCasterComponentsRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterComponentsRequest::getOwnerId()const
|
||||
@@ -55,6 +57,6 @@ long DescribeCasterComponentsRequest::getOwnerId()const
|
||||
void DescribeCasterComponentsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterConfigRequest;
|
||||
|
||||
DescribeCasterConfigRequest::DescribeCasterConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterConfigRequest::~DescribeCasterConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterConfigRequest::getCasterId()const
|
||||
void DescribeCasterConfigRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterConfigRequest::getOwnerId()const
|
||||
@@ -44,6 +46,6 @@ long DescribeCasterConfigRequest::getOwnerId()const
|
||||
void DescribeCasterConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterLayoutsRequest;
|
||||
|
||||
DescribeCasterLayoutsRequest::DescribeCasterLayoutsRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterLayouts")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterLayoutsRequest::~DescribeCasterLayoutsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterLayoutsRequest::getLayoutId()const
|
||||
void DescribeCasterLayoutsRequest::setLayoutId(const std::string& layoutId)
|
||||
{
|
||||
layoutId_ = layoutId;
|
||||
setCoreParameter("LayoutId", layoutId);
|
||||
setParameter("LayoutId", layoutId);
|
||||
}
|
||||
|
||||
std::string DescribeCasterLayoutsRequest::getCasterId()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeCasterLayoutsRequest::getCasterId()const
|
||||
void DescribeCasterLayoutsRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterLayoutsRequest::getOwnerId()const
|
||||
@@ -55,6 +57,6 @@ long DescribeCasterLayoutsRequest::getOwnerId()const
|
||||
void DescribeCasterLayoutsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterProgramRequest;
|
||||
|
||||
DescribeCasterProgramRequest::DescribeCasterProgramRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterProgram")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterProgramRequest::~DescribeCasterProgramRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterProgramRequest::getStartTime()const
|
||||
void DescribeCasterProgramRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
int DescribeCasterProgramRequest::getPageNum()const
|
||||
@@ -44,7 +46,7 @@ int DescribeCasterProgramRequest::getPageNum()const
|
||||
void DescribeCasterProgramRequest::setPageNum(int pageNum)
|
||||
{
|
||||
pageNum_ = pageNum;
|
||||
setCoreParameter("PageNum", std::to_string(pageNum));
|
||||
setParameter("PageNum", std::to_string(pageNum));
|
||||
}
|
||||
|
||||
int DescribeCasterProgramRequest::getPageSize()const
|
||||
@@ -55,7 +57,7 @@ int DescribeCasterProgramRequest::getPageSize()const
|
||||
void DescribeCasterProgramRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeCasterProgramRequest::getCasterId()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeCasterProgramRequest::getCasterId()const
|
||||
void DescribeCasterProgramRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
std::string DescribeCasterProgramRequest::getEpisodeType()const
|
||||
@@ -77,7 +79,7 @@ std::string DescribeCasterProgramRequest::getEpisodeType()const
|
||||
void DescribeCasterProgramRequest::setEpisodeType(const std::string& episodeType)
|
||||
{
|
||||
episodeType_ = episodeType;
|
||||
setCoreParameter("EpisodeType", episodeType);
|
||||
setParameter("EpisodeType", episodeType);
|
||||
}
|
||||
|
||||
std::string DescribeCasterProgramRequest::getEndTime()const
|
||||
@@ -88,7 +90,7 @@ std::string DescribeCasterProgramRequest::getEndTime()const
|
||||
void DescribeCasterProgramRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeCasterProgramRequest::getOwnerId()const
|
||||
@@ -99,7 +101,7 @@ long DescribeCasterProgramRequest::getOwnerId()const
|
||||
void DescribeCasterProgramRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeCasterProgramRequest::getEpisodeId()const
|
||||
@@ -110,7 +112,7 @@ std::string DescribeCasterProgramRequest::getEpisodeId()const
|
||||
void DescribeCasterProgramRequest::setEpisodeId(const std::string& episodeId)
|
||||
{
|
||||
episodeId_ = episodeId;
|
||||
setCoreParameter("EpisodeId", episodeId);
|
||||
setParameter("EpisodeId", episodeId);
|
||||
}
|
||||
|
||||
int DescribeCasterProgramRequest::getStatus()const
|
||||
@@ -121,6 +123,6 @@ int DescribeCasterProgramRequest::getStatus()const
|
||||
void DescribeCasterProgramRequest::setStatus(int status)
|
||||
{
|
||||
status_ = status;
|
||||
setCoreParameter("Status", std::to_string(status));
|
||||
setParameter("Status", std::to_string(status));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterRtcInfoRequest;
|
||||
|
||||
DescribeCasterRtcInfoRequest::DescribeCasterRtcInfoRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterRtcInfo")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterRtcInfoRequest::~DescribeCasterRtcInfoRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterRtcInfoRequest::getCasterId()const
|
||||
void DescribeCasterRtcInfoRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterRtcInfoRequest::getOwnerId()const
|
||||
@@ -44,6 +46,6 @@ long DescribeCasterRtcInfoRequest::getOwnerId()const
|
||||
void DescribeCasterRtcInfoRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterSceneAudioRequest;
|
||||
|
||||
DescribeCasterSceneAudioRequest::DescribeCasterSceneAudioRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterSceneAudio")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterSceneAudioRequest::~DescribeCasterSceneAudioRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterSceneAudioRequest::getCasterId()const
|
||||
void DescribeCasterSceneAudioRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterSceneAudioRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DescribeCasterSceneAudioRequest::getOwnerId()const
|
||||
void DescribeCasterSceneAudioRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeCasterSceneAudioRequest::getSceneId()const
|
||||
@@ -55,6 +57,6 @@ std::string DescribeCasterSceneAudioRequest::getSceneId()const
|
||||
void DescribeCasterSceneAudioRequest::setSceneId(const std::string& sceneId)
|
||||
{
|
||||
sceneId_ = sceneId;
|
||||
setCoreParameter("SceneId", sceneId);
|
||||
setParameter("SceneId", sceneId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterScenesRequest;
|
||||
|
||||
DescribeCasterScenesRequest::DescribeCasterScenesRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterScenes")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterScenesRequest::~DescribeCasterScenesRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterScenesRequest::getCasterId()const
|
||||
void DescribeCasterScenesRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterScenesRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DescribeCasterScenesRequest::getOwnerId()const
|
||||
void DescribeCasterScenesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeCasterScenesRequest::getSceneId()const
|
||||
@@ -55,6 +57,6 @@ std::string DescribeCasterScenesRequest::getSceneId()const
|
||||
void DescribeCasterScenesRequest::setSceneId(const std::string& sceneId)
|
||||
{
|
||||
sceneId_ = sceneId;
|
||||
setCoreParameter("SceneId", sceneId);
|
||||
setParameter("SceneId", sceneId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterStreamUrlRequest;
|
||||
|
||||
DescribeCasterStreamUrlRequest::DescribeCasterStreamUrlRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterStreamUrl")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterStreamUrlRequest::~DescribeCasterStreamUrlRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterStreamUrlRequest::getCasterId()const
|
||||
void DescribeCasterStreamUrlRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterStreamUrlRequest::getOwnerId()const
|
||||
@@ -44,6 +46,6 @@ long DescribeCasterStreamUrlRequest::getOwnerId()const
|
||||
void DescribeCasterStreamUrlRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,30 +20,32 @@ using AlibabaCloud::Live::Model::DescribeCasterSyncGroupRequest;
|
||||
|
||||
DescribeCasterSyncGroupRequest::DescribeCasterSyncGroupRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterSyncGroup")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterSyncGroupRequest::~DescribeCasterSyncGroupRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeCasterSyncGroupRequest::getCasterId()const
|
||||
{
|
||||
return casterId_;
|
||||
}
|
||||
|
||||
void DescribeCasterSyncGroupRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterSyncGroupRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeCasterSyncGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeCasterSyncGroupRequest::getCasterId()const
|
||||
{
|
||||
return casterId_;
|
||||
}
|
||||
|
||||
void DescribeCasterSyncGroupRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterSyncGroupRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeCasterSyncGroupRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCasterVideoResourcesRequest;
|
||||
|
||||
DescribeCasterVideoResourcesRequest::DescribeCasterVideoResourcesRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasterVideoResources")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCasterVideoResourcesRequest::~DescribeCasterVideoResourcesRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCasterVideoResourcesRequest::getCasterId()const
|
||||
void DescribeCasterVideoResourcesRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeCasterVideoResourcesRequest::getOwnerId()const
|
||||
@@ -44,6 +46,6 @@ long DescribeCasterVideoResourcesRequest::getOwnerId()const
|
||||
void DescribeCasterVideoResourcesRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeCastersRequest;
|
||||
|
||||
DescribeCastersRequest::DescribeCastersRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeCasters")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeCastersRequest::~DescribeCastersRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeCastersRequest::getStartTime()const
|
||||
void DescribeCastersRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
int DescribeCastersRequest::getPageNum()const
|
||||
@@ -44,7 +46,7 @@ int DescribeCastersRequest::getPageNum()const
|
||||
void DescribeCastersRequest::setPageNum(int pageNum)
|
||||
{
|
||||
pageNum_ = pageNum;
|
||||
setCoreParameter("PageNum", std::to_string(pageNum));
|
||||
setParameter("PageNum", std::to_string(pageNum));
|
||||
}
|
||||
|
||||
std::string DescribeCastersRequest::getCasterName()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeCastersRequest::getCasterName()const
|
||||
void DescribeCastersRequest::setCasterName(const std::string& casterName)
|
||||
{
|
||||
casterName_ = casterName;
|
||||
setCoreParameter("CasterName", casterName);
|
||||
setParameter("CasterName", casterName);
|
||||
}
|
||||
|
||||
int DescribeCastersRequest::getPageSize()const
|
||||
@@ -66,7 +68,7 @@ int DescribeCastersRequest::getPageSize()const
|
||||
void DescribeCastersRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeCastersRequest::getCasterId()const
|
||||
@@ -77,7 +79,7 @@ std::string DescribeCastersRequest::getCasterId()const
|
||||
void DescribeCastersRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setCoreParameter("CasterId", casterId);
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
std::string DescribeCastersRequest::getEndTime()const
|
||||
@@ -88,7 +90,7 @@ std::string DescribeCastersRequest::getEndTime()const
|
||||
void DescribeCastersRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeCastersRequest::getOwnerId()const
|
||||
@@ -99,7 +101,7 @@ long DescribeCastersRequest::getOwnerId()const
|
||||
void DescribeCastersRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
int DescribeCastersRequest::getStatus()const
|
||||
@@ -110,6 +112,6 @@ int DescribeCastersRequest::getStatus()const
|
||||
void DescribeCastersRequest::setStatus(int status)
|
||||
{
|
||||
status_ = status;
|
||||
setCoreParameter("Status", std::to_string(status));
|
||||
setParameter("Status", std::to_string(status));
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeForbidPushStreamRoomListRequest;
|
||||
|
||||
DescribeForbidPushStreamRoomListRequest::DescribeForbidPushStreamRoomListRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeForbidPushStreamRoomList")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeForbidPushStreamRoomListRequest::~DescribeForbidPushStreamRoomListRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ int DescribeForbidPushStreamRoomListRequest::getPageNum()const
|
||||
void DescribeForbidPushStreamRoomListRequest::setPageNum(int pageNum)
|
||||
{
|
||||
pageNum_ = pageNum;
|
||||
setCoreParameter("PageNum", std::to_string(pageNum));
|
||||
setParameter("PageNum", std::to_string(pageNum));
|
||||
}
|
||||
|
||||
int DescribeForbidPushStreamRoomListRequest::getPageSize()const
|
||||
@@ -44,7 +46,7 @@ int DescribeForbidPushStreamRoomListRequest::getPageSize()const
|
||||
void DescribeForbidPushStreamRoomListRequest::setPageSize(int pageSize)
|
||||
{
|
||||
pageSize_ = pageSize;
|
||||
setCoreParameter("PageSize", std::to_string(pageSize));
|
||||
setParameter("PageSize", std::to_string(pageSize));
|
||||
}
|
||||
|
||||
std::string DescribeForbidPushStreamRoomListRequest::getOrder()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeForbidPushStreamRoomListRequest::getOrder()const
|
||||
void DescribeForbidPushStreamRoomListRequest::setOrder(const std::string& order)
|
||||
{
|
||||
order_ = order;
|
||||
setCoreParameter("Order", order);
|
||||
setParameter("Order", order);
|
||||
}
|
||||
|
||||
long DescribeForbidPushStreamRoomListRequest::getOwnerId()const
|
||||
@@ -66,7 +68,7 @@ long DescribeForbidPushStreamRoomListRequest::getOwnerId()const
|
||||
void DescribeForbidPushStreamRoomListRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeForbidPushStreamRoomListRequest::getAppId()const
|
||||
@@ -77,6 +79,6 @@ std::string DescribeForbidPushStreamRoomListRequest::getAppId()const
|
||||
void DescribeForbidPushStreamRoomListRequest::setAppId(const std::string& appId)
|
||||
{
|
||||
appId_ = appId;
|
||||
setCoreParameter("AppId", appId);
|
||||
setParameter("AppId", appId);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeHlsLiveStreamRealTimeBpsDataRequest;
|
||||
|
||||
DescribeHlsLiveStreamRealTimeBpsDataRequest::DescribeHlsLiveStreamRealTimeBpsDataRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeHlsLiveStreamRealTimeBpsData")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Get);
|
||||
}
|
||||
|
||||
DescribeHlsLiveStreamRealTimeBpsDataRequest::~DescribeHlsLiveStreamRealTimeBpsDataRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeHlsLiveStreamRealTimeBpsDataRequest::getDomainName()const
|
||||
void DescribeHlsLiveStreamRealTimeBpsDataRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeHlsLiveStreamRealTimeBpsDataRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DescribeHlsLiveStreamRealTimeBpsDataRequest::getOwnerId()const
|
||||
void DescribeHlsLiveStreamRealTimeBpsDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeHlsLiveStreamRealTimeBpsDataRequest::getTime()const
|
||||
@@ -55,6 +57,6 @@ std::string DescribeHlsLiveStreamRealTimeBpsDataRequest::getTime()const
|
||||
void DescribeHlsLiveStreamRealTimeBpsDataRequest::setTime(const std::string& time)
|
||||
{
|
||||
time_ = time;
|
||||
setCoreParameter("Time", time);
|
||||
setParameter("Time", time);
|
||||
}
|
||||
|
||||
|
||||
73
live/src/model/DescribeHtmlResourceRequest.cc
Normal file
73
live/src/model/DescribeHtmlResourceRequest.cc
Normal file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DescribeHtmlResourceRequest.h>
|
||||
|
||||
using AlibabaCloud::Live::Model::DescribeHtmlResourceRequest;
|
||||
|
||||
DescribeHtmlResourceRequest::DescribeHtmlResourceRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeHtmlResource")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeHtmlResourceRequest::~DescribeHtmlResourceRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeHtmlResourceRequest::getHtmlUrl()const
|
||||
{
|
||||
return htmlUrl_;
|
||||
}
|
||||
|
||||
void DescribeHtmlResourceRequest::setHtmlUrl(const std::string& htmlUrl)
|
||||
{
|
||||
htmlUrl_ = htmlUrl;
|
||||
setParameter("HtmlUrl", htmlUrl);
|
||||
}
|
||||
|
||||
std::string DescribeHtmlResourceRequest::getCasterId()const
|
||||
{
|
||||
return casterId_;
|
||||
}
|
||||
|
||||
void DescribeHtmlResourceRequest::setCasterId(const std::string& casterId)
|
||||
{
|
||||
casterId_ = casterId;
|
||||
setParameter("CasterId", casterId);
|
||||
}
|
||||
|
||||
long DescribeHtmlResourceRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeHtmlResourceRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeHtmlResourceRequest::getHtmlResourceId()const
|
||||
{
|
||||
return htmlResourceId_;
|
||||
}
|
||||
|
||||
void DescribeHtmlResourceRequest::setHtmlResourceId(const std::string& htmlResourceId)
|
||||
{
|
||||
htmlResourceId_ = htmlResourceId;
|
||||
setParameter("HtmlResourceId", htmlResourceId);
|
||||
}
|
||||
|
||||
62
live/src/model/DescribeHtmlResourceResult.cc
Normal file
62
live/src/model/DescribeHtmlResourceResult.cc
Normal file
@@ -0,0 +1,62 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DescribeHtmlResourceResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Live;
|
||||
using namespace AlibabaCloud::Live::Model;
|
||||
|
||||
DescribeHtmlResourceResult::DescribeHtmlResourceResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DescribeHtmlResourceResult::DescribeHtmlResourceResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DescribeHtmlResourceResult::~DescribeHtmlResourceResult()
|
||||
{}
|
||||
|
||||
void DescribeHtmlResourceResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto htmlResourceNode = value["HtmlResource"];
|
||||
if(!htmlResourceNode["HtmlResourceId"].isNull())
|
||||
htmlResource_.htmlResourceId = htmlResourceNode["HtmlResourceId"].asString();
|
||||
if(!htmlResourceNode["HtmlUrl"].isNull())
|
||||
htmlResource_.htmlUrl = htmlResourceNode["HtmlUrl"].asString();
|
||||
if(!htmlResourceNode["HtmlContent"].isNull())
|
||||
htmlResource_.htmlContent = htmlResourceNode["HtmlContent"].asString();
|
||||
if(!htmlResourceNode["CasterId"].isNull())
|
||||
htmlResource_.casterId = htmlResourceNode["CasterId"].asString();
|
||||
if(!htmlResourceNode["Config"].isNull())
|
||||
htmlResource_.config = htmlResourceNode["Config"].asString();
|
||||
if(!htmlResourceNode["StreamId"].isNull())
|
||||
htmlResource_.streamId = htmlResourceNode["StreamId"].asString();
|
||||
|
||||
}
|
||||
|
||||
DescribeHtmlResourceResult::HtmlResource DescribeHtmlResourceResult::getHtmlResource()const
|
||||
{
|
||||
return htmlResource_;
|
||||
}
|
||||
|
||||
73
live/src/model/DescribeLiveAudioAuditConfigRequest.cc
Normal file
73
live/src/model/DescribeLiveAudioAuditConfigRequest.cc
Normal file
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DescribeLiveAudioAuditConfigRequest.h>
|
||||
|
||||
using AlibabaCloud::Live::Model::DescribeLiveAudioAuditConfigRequest;
|
||||
|
||||
DescribeLiveAudioAuditConfigRequest::DescribeLiveAudioAuditConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeLiveAudioAuditConfig")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeLiveAudioAuditConfigRequest::~DescribeLiveAudioAuditConfigRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeLiveAudioAuditConfigRequest::getAppName()const
|
||||
{
|
||||
return appName_;
|
||||
}
|
||||
|
||||
void DescribeLiveAudioAuditConfigRequest::setAppName(const std::string& appName)
|
||||
{
|
||||
appName_ = appName;
|
||||
setParameter("AppName", appName);
|
||||
}
|
||||
|
||||
std::string DescribeLiveAudioAuditConfigRequest::getStreamName()const
|
||||
{
|
||||
return streamName_;
|
||||
}
|
||||
|
||||
void DescribeLiveAudioAuditConfigRequest::setStreamName(const std::string& streamName)
|
||||
{
|
||||
streamName_ = streamName;
|
||||
setParameter("StreamName", streamName);
|
||||
}
|
||||
|
||||
std::string DescribeLiveAudioAuditConfigRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DescribeLiveAudioAuditConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeLiveAudioAuditConfigRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeLiveAudioAuditConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
66
live/src/model/DescribeLiveAudioAuditConfigResult.cc
Normal file
66
live/src/model/DescribeLiveAudioAuditConfigResult.cc
Normal file
@@ -0,0 +1,66 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DescribeLiveAudioAuditConfigResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Live;
|
||||
using namespace AlibabaCloud::Live::Model;
|
||||
|
||||
DescribeLiveAudioAuditConfigResult::DescribeLiveAudioAuditConfigResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DescribeLiveAudioAuditConfigResult::DescribeLiveAudioAuditConfigResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DescribeLiveAudioAuditConfigResult::~DescribeLiveAudioAuditConfigResult()
|
||||
{}
|
||||
|
||||
void DescribeLiveAudioAuditConfigResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allLiveAudioAuditConfigListNode = value["LiveAudioAuditConfigList"]["LiveAudioAuditConfig"];
|
||||
for (auto valueLiveAudioAuditConfigListLiveAudioAuditConfig : allLiveAudioAuditConfigListNode)
|
||||
{
|
||||
LiveAudioAuditConfig liveAudioAuditConfigListObject;
|
||||
if(!valueLiveAudioAuditConfigListLiveAudioAuditConfig["DomainName"].isNull())
|
||||
liveAudioAuditConfigListObject.domainName = valueLiveAudioAuditConfigListLiveAudioAuditConfig["DomainName"].asString();
|
||||
if(!valueLiveAudioAuditConfigListLiveAudioAuditConfig["AppName"].isNull())
|
||||
liveAudioAuditConfigListObject.appName = valueLiveAudioAuditConfigListLiveAudioAuditConfig["AppName"].asString();
|
||||
if(!valueLiveAudioAuditConfigListLiveAudioAuditConfig["StreamName"].isNull())
|
||||
liveAudioAuditConfigListObject.streamName = valueLiveAudioAuditConfigListLiveAudioAuditConfig["StreamName"].asString();
|
||||
if(!valueLiveAudioAuditConfigListLiveAudioAuditConfig["BizType"].isNull())
|
||||
liveAudioAuditConfigListObject.bizType = valueLiveAudioAuditConfigListLiveAudioAuditConfig["BizType"].asString();
|
||||
auto allScenes = value["Scenes"]["scene"];
|
||||
for (auto value : allScenes)
|
||||
liveAudioAuditConfigListObject.scenes.push_back(value.asString());
|
||||
liveAudioAuditConfigList_.push_back(liveAudioAuditConfigListObject);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
std::vector<DescribeLiveAudioAuditConfigResult::LiveAudioAuditConfig> DescribeLiveAudioAuditConfigResult::getLiveAudioAuditConfigList()const
|
||||
{
|
||||
return liveAudioAuditConfigList_;
|
||||
}
|
||||
|
||||
51
live/src/model/DescribeLiveAudioAuditNotifyConfigRequest.cc
Normal file
51
live/src/model/DescribeLiveAudioAuditNotifyConfigRequest.cc
Normal file
@@ -0,0 +1,51 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DescribeLiveAudioAuditNotifyConfigRequest.h>
|
||||
|
||||
using AlibabaCloud::Live::Model::DescribeLiveAudioAuditNotifyConfigRequest;
|
||||
|
||||
DescribeLiveAudioAuditNotifyConfigRequest::DescribeLiveAudioAuditNotifyConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeLiveAudioAuditNotifyConfig")
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeLiveAudioAuditNotifyConfigRequest::~DescribeLiveAudioAuditNotifyConfigRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeLiveAudioAuditNotifyConfigRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DescribeLiveAudioAuditNotifyConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeLiveAudioAuditNotifyConfigRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeLiveAudioAuditNotifyConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
61
live/src/model/DescribeLiveAudioAuditNotifyConfigResult.cc
Normal file
61
live/src/model/DescribeLiveAudioAuditNotifyConfigResult.cc
Normal file
@@ -0,0 +1,61 @@
|
||||
/*
|
||||
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
#include <alibabacloud/live/model/DescribeLiveAudioAuditNotifyConfigResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Live;
|
||||
using namespace AlibabaCloud::Live::Model;
|
||||
|
||||
DescribeLiveAudioAuditNotifyConfigResult::DescribeLiveAudioAuditNotifyConfigResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
DescribeLiveAudioAuditNotifyConfigResult::DescribeLiveAudioAuditNotifyConfigResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
DescribeLiveAudioAuditNotifyConfigResult::~DescribeLiveAudioAuditNotifyConfigResult()
|
||||
{}
|
||||
|
||||
void DescribeLiveAudioAuditNotifyConfigResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
auto allLiveAudioAuditNotifyConfigListNode = value["LiveAudioAuditNotifyConfigList"]["LiveAudioAuditNotifyConfig"];
|
||||
for (auto valueLiveAudioAuditNotifyConfigListLiveAudioAuditNotifyConfig : allLiveAudioAuditNotifyConfigListNode)
|
||||
{
|
||||
LiveAudioAuditNotifyConfig liveAudioAuditNotifyConfigListObject;
|
||||
if(!valueLiveAudioAuditNotifyConfigListLiveAudioAuditNotifyConfig["DomainName"].isNull())
|
||||
liveAudioAuditNotifyConfigListObject.domainName = valueLiveAudioAuditNotifyConfigListLiveAudioAuditNotifyConfig["DomainName"].asString();
|
||||
if(!valueLiveAudioAuditNotifyConfigListLiveAudioAuditNotifyConfig["Callback"].isNull())
|
||||
liveAudioAuditNotifyConfigListObject.callback = valueLiveAudioAuditNotifyConfigListLiveAudioAuditNotifyConfig["Callback"].asString();
|
||||
if(!valueLiveAudioAuditNotifyConfigListLiveAudioAuditNotifyConfig["CallbackTemplate"].isNull())
|
||||
liveAudioAuditNotifyConfigListObject.callbackTemplate = valueLiveAudioAuditNotifyConfigListLiveAudioAuditNotifyConfig["CallbackTemplate"].asString();
|
||||
liveAudioAuditNotifyConfigList_.push_back(liveAudioAuditNotifyConfigListObject);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
std::vector<DescribeLiveAudioAuditNotifyConfigResult::LiveAudioAuditNotifyConfig> DescribeLiveAudioAuditNotifyConfigResult::getLiveAudioAuditNotifyConfigList()const
|
||||
{
|
||||
return liveAudioAuditNotifyConfigList_;
|
||||
}
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeLiveCertificateDetailRequest;
|
||||
|
||||
DescribeLiveCertificateDetailRequest::DescribeLiveCertificateDetailRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeLiveCertificateDetail")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeLiveCertificateDetailRequest::~DescribeLiveCertificateDetailRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeLiveCertificateDetailRequest::getCertName()const
|
||||
void DescribeLiveCertificateDetailRequest::setCertName(const std::string& certName)
|
||||
{
|
||||
certName_ = certName;
|
||||
setCoreParameter("CertName", certName);
|
||||
setParameter("CertName", certName);
|
||||
}
|
||||
|
||||
long DescribeLiveCertificateDetailRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DescribeLiveCertificateDetailRequest::getOwnerId()const
|
||||
void DescribeLiveCertificateDetailRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveCertificateDetailRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string DescribeLiveCertificateDetailRequest::getSecurityToken()const
|
||||
void DescribeLiveCertificateDetailRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeLiveCertificateListRequest;
|
||||
|
||||
DescribeLiveCertificateListRequest::DescribeLiveCertificateListRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeLiveCertificateList")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeLiveCertificateListRequest::~DescribeLiveCertificateListRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeLiveCertificateListRequest::getDomainName()const
|
||||
void DescribeLiveCertificateListRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeLiveCertificateListRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DescribeLiveCertificateListRequest::getOwnerId()const
|
||||
void DescribeLiveCertificateListRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveCertificateListRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string DescribeLiveCertificateListRequest::getSecurityToken()const
|
||||
void DescribeLiveCertificateListRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeLiveDetectNotifyConfigRequest;
|
||||
|
||||
DescribeLiveDetectNotifyConfigRequest::DescribeLiveDetectNotifyConfigRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeLiveDetectNotifyConfig")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeLiveDetectNotifyConfigRequest::~DescribeLiveDetectNotifyConfigRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeLiveDetectNotifyConfigRequest::getDomainName()const
|
||||
void DescribeLiveDetectNotifyConfigRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeLiveDetectNotifyConfigRequest::getOwnerId()const
|
||||
@@ -44,7 +46,7 @@ long DescribeLiveDetectNotifyConfigRequest::getOwnerId()const
|
||||
void DescribeLiveDetectNotifyConfigRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectNotifyConfigRequest::getSecurityToken()const
|
||||
@@ -55,6 +57,6 @@ std::string DescribeLiveDetectNotifyConfigRequest::getSecurityToken()const
|
||||
void DescribeLiveDetectNotifyConfigRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,118 +20,120 @@ using AlibabaCloud::Live::Model::DescribeLiveDetectPornDataRequest;
|
||||
|
||||
DescribeLiveDetectPornDataRequest::DescribeLiveDetectPornDataRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeLiveDetectPornData")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeLiveDetectPornDataRequest::~DescribeLiveDetectPornDataRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getFee()const
|
||||
{
|
||||
return fee_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setFee(const std::string& fee)
|
||||
{
|
||||
fee_ = fee;
|
||||
setCoreParameter("Fee", fee);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getStartTime()const
|
||||
{
|
||||
return startTime_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getScene()const
|
||||
{
|
||||
return scene_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setScene(const std::string& scene)
|
||||
{
|
||||
scene_ = scene;
|
||||
setCoreParameter("Scene", scene);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getStream()const
|
||||
{
|
||||
return stream_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setStream(const std::string& stream)
|
||||
{
|
||||
stream_ = stream;
|
||||
setCoreParameter("Stream", stream);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getSplitBy()const
|
||||
{
|
||||
return splitBy_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setSplitBy(const std::string& splitBy)
|
||||
{
|
||||
splitBy_ = splitBy;
|
||||
setCoreParameter("SplitBy", splitBy);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getApp()const
|
||||
{
|
||||
return app_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setApp(const std::string& app)
|
||||
{
|
||||
app_ = app;
|
||||
setCoreParameter("App", app);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getEndTime()const
|
||||
{
|
||||
return endTime_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeLiveDetectPornDataRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getRegion()const
|
||||
{
|
||||
return region_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setCoreParameter("Region", region);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getFee()const
|
||||
{
|
||||
return fee_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setFee(const std::string& fee)
|
||||
{
|
||||
fee_ = fee;
|
||||
setParameter("Fee", fee);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getStartTime()const
|
||||
{
|
||||
return startTime_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getScene()const
|
||||
{
|
||||
return scene_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setScene(const std::string& scene)
|
||||
{
|
||||
scene_ = scene;
|
||||
setParameter("Scene", scene);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getStream()const
|
||||
{
|
||||
return stream_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setStream(const std::string& stream)
|
||||
{
|
||||
stream_ = stream;
|
||||
setParameter("Stream", stream);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getSplitBy()const
|
||||
{
|
||||
return splitBy_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setSplitBy(const std::string& splitBy)
|
||||
{
|
||||
splitBy_ = splitBy;
|
||||
setParameter("SplitBy", splitBy);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getApp()const
|
||||
{
|
||||
return app_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setApp(const std::string& app)
|
||||
{
|
||||
app_ = app;
|
||||
setParameter("App", app);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getEndTime()const
|
||||
{
|
||||
return endTime_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeLiveDetectPornDataRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveDetectPornDataRequest::getRegion()const
|
||||
{
|
||||
return region_;
|
||||
}
|
||||
|
||||
void DescribeLiveDetectPornDataRequest::setRegion(const std::string& region)
|
||||
{
|
||||
region_ = region;
|
||||
setParameter("Region", region);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,63 +20,65 @@ using AlibabaCloud::Live::Model::DescribeLiveDomainBpsDataByTimeStampRequest;
|
||||
|
||||
DescribeLiveDomainBpsDataByTimeStampRequest::DescribeLiveDomainBpsDataByTimeStampRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeLiveDomainBpsDataByTimeStamp")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeLiveDomainBpsDataByTimeStampRequest::~DescribeLiveDomainBpsDataByTimeStampRequest()
|
||||
{}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataByTimeStampRequest::getLocationNames()const
|
||||
{
|
||||
return locationNames_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setLocationNames(const std::string& locationNames)
|
||||
{
|
||||
locationNames_ = locationNames;
|
||||
setCoreParameter("LocationNames", locationNames);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataByTimeStampRequest::getIspNames()const
|
||||
{
|
||||
return ispNames_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setIspNames(const std::string& ispNames)
|
||||
{
|
||||
ispNames_ = ispNames;
|
||||
setCoreParameter("IspNames", ispNames);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataByTimeStampRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeLiveDomainBpsDataByTimeStampRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataByTimeStampRequest::getTimePoint()const
|
||||
{
|
||||
return timePoint_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setTimePoint(const std::string& timePoint)
|
||||
{
|
||||
timePoint_ = timePoint;
|
||||
setCoreParameter("TimePoint", timePoint);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataByTimeStampRequest::getLocationNames()const
|
||||
{
|
||||
return locationNames_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setLocationNames(const std::string& locationNames)
|
||||
{
|
||||
locationNames_ = locationNames;
|
||||
setParameter("LocationNames", locationNames);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataByTimeStampRequest::getIspNames()const
|
||||
{
|
||||
return ispNames_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setIspNames(const std::string& ispNames)
|
||||
{
|
||||
ispNames_ = ispNames;
|
||||
setParameter("IspNames", ispNames);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataByTimeStampRequest::getDomainName()const
|
||||
{
|
||||
return domainName_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeLiveDomainBpsDataByTimeStampRequest::getOwnerId()const
|
||||
{
|
||||
return ownerId_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataByTimeStampRequest::getTimePoint()const
|
||||
{
|
||||
return timePoint_;
|
||||
}
|
||||
|
||||
void DescribeLiveDomainBpsDataByTimeStampRequest::setTimePoint(const std::string& timePoint)
|
||||
{
|
||||
timePoint_ = timePoint;
|
||||
setParameter("TimePoint", timePoint);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeLiveDomainBpsDataRequest;
|
||||
|
||||
DescribeLiveDomainBpsDataRequest::DescribeLiveDomainBpsDataRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeLiveDomainBpsData")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeLiveDomainBpsDataRequest::~DescribeLiveDomainBpsDataRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeLiveDomainBpsDataRequest::getLocationNameEn()const
|
||||
void DescribeLiveDomainBpsDataRequest::setLocationNameEn(const std::string& locationNameEn)
|
||||
{
|
||||
locationNameEn_ = locationNameEn;
|
||||
setCoreParameter("LocationNameEn", locationNameEn);
|
||||
setParameter("LocationNameEn", locationNameEn);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataRequest::getStartTime()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeLiveDomainBpsDataRequest::getStartTime()const
|
||||
void DescribeLiveDomainBpsDataRequest::setStartTime(const std::string& startTime)
|
||||
{
|
||||
startTime_ = startTime;
|
||||
setCoreParameter("StartTime", startTime);
|
||||
setParameter("StartTime", startTime);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataRequest::getIspNameEn()const
|
||||
@@ -55,7 +57,7 @@ std::string DescribeLiveDomainBpsDataRequest::getIspNameEn()const
|
||||
void DescribeLiveDomainBpsDataRequest::setIspNameEn(const std::string& ispNameEn)
|
||||
{
|
||||
ispNameEn_ = ispNameEn;
|
||||
setCoreParameter("IspNameEn", ispNameEn);
|
||||
setParameter("IspNameEn", ispNameEn);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataRequest::getDomainName()const
|
||||
@@ -66,7 +68,7 @@ std::string DescribeLiveDomainBpsDataRequest::getDomainName()const
|
||||
void DescribeLiveDomainBpsDataRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataRequest::getEndTime()const
|
||||
@@ -77,7 +79,7 @@ std::string DescribeLiveDomainBpsDataRequest::getEndTime()const
|
||||
void DescribeLiveDomainBpsDataRequest::setEndTime(const std::string& endTime)
|
||||
{
|
||||
endTime_ = endTime;
|
||||
setCoreParameter("EndTime", endTime);
|
||||
setParameter("EndTime", endTime);
|
||||
}
|
||||
|
||||
long DescribeLiveDomainBpsDataRequest::getOwnerId()const
|
||||
@@ -88,7 +90,7 @@ long DescribeLiveDomainBpsDataRequest::getOwnerId()const
|
||||
void DescribeLiveDomainBpsDataRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainBpsDataRequest::getInterval()const
|
||||
@@ -99,6 +101,6 @@ std::string DescribeLiveDomainBpsDataRequest::getInterval()const
|
||||
void DescribeLiveDomainBpsDataRequest::setInterval(const std::string& interval)
|
||||
{
|
||||
interval_ = interval;
|
||||
setCoreParameter("Interval", interval);
|
||||
setParameter("Interval", interval);
|
||||
}
|
||||
|
||||
|
||||
@@ -20,7 +20,9 @@ using AlibabaCloud::Live::Model::DescribeLiveDomainConfigsRequest;
|
||||
|
||||
DescribeLiveDomainConfigsRequest::DescribeLiveDomainConfigsRequest() :
|
||||
RpcServiceRequest("live", "2016-11-01", "DescribeLiveDomainConfigs")
|
||||
{}
|
||||
{
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
DescribeLiveDomainConfigsRequest::~DescribeLiveDomainConfigsRequest()
|
||||
{}
|
||||
@@ -33,7 +35,7 @@ std::string DescribeLiveDomainConfigsRequest::getFunctionNames()const
|
||||
void DescribeLiveDomainConfigsRequest::setFunctionNames(const std::string& functionNames)
|
||||
{
|
||||
functionNames_ = functionNames;
|
||||
setCoreParameter("FunctionNames", functionNames);
|
||||
setParameter("FunctionNames", functionNames);
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainConfigsRequest::getDomainName()const
|
||||
@@ -44,7 +46,7 @@ std::string DescribeLiveDomainConfigsRequest::getDomainName()const
|
||||
void DescribeLiveDomainConfigsRequest::setDomainName(const std::string& domainName)
|
||||
{
|
||||
domainName_ = domainName;
|
||||
setCoreParameter("DomainName", domainName);
|
||||
setParameter("DomainName", domainName);
|
||||
}
|
||||
|
||||
long DescribeLiveDomainConfigsRequest::getOwnerId()const
|
||||
@@ -55,7 +57,7 @@ long DescribeLiveDomainConfigsRequest::getOwnerId()const
|
||||
void DescribeLiveDomainConfigsRequest::setOwnerId(long ownerId)
|
||||
{
|
||||
ownerId_ = ownerId;
|
||||
setCoreParameter("OwnerId", std::to_string(ownerId));
|
||||
setParameter("OwnerId", std::to_string(ownerId));
|
||||
}
|
||||
|
||||
std::string DescribeLiveDomainConfigsRequest::getSecurityToken()const
|
||||
@@ -66,6 +68,6 @@ std::string DescribeLiveDomainConfigsRequest::getSecurityToken()const
|
||||
void DescribeLiveDomainConfigsRequest::setSecurityToken(const std::string& securityToken)
|
||||
{
|
||||
securityToken_ = securityToken;
|
||||
setCoreParameter("SecurityToken", securityToken);
|
||||
setParameter("SecurityToken", securityToken);
|
||||
}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user