Skip to content

Commit

Permalink
Auto-generated by Jenkins job OTT-Generate-ClientLibs-ios-and-android…
Browse files Browse the repository at this point in the history
…/507, branch 7_9_1
  • Loading branch information
Backend CI committed Aug 21, 2022
1 parent 39fd09d commit 84b7de5
Show file tree
Hide file tree
Showing 10 changed files with 277 additions and 751 deletions.
4 changes: 2 additions & 2 deletions KalturaClient/src/main/java/com/kaltura/client/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public class Client extends ClientBase {
public Client(ConnectionConfiguration config) {
super(config);

this.setClientTag("java:22-08-18");
this.setApiVersion("7.9.0.29995");
this.setClientTag("java:22-08-21");
this.setApiVersion("7.9.0.29996");
this.clientConfiguration.put("format", 1); // JSON
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
// ===================================================================================================
package com.kaltura.client.services;

import com.kaltura.client.types.IotProfile;
import com.kaltura.client.utils.request.RequestBuilder;

/**
Expand All @@ -39,64 +38,17 @@

public class IotProfileService {

public static class AddIotProfileBuilder extends RequestBuilder<IotProfile, IotProfile.Tokenizer, AddIotProfileBuilder> {
public static class AddIotProfileBuilder extends RequestBuilder<Boolean, String, AddIotProfileBuilder> {

public AddIotProfileBuilder(IotProfile objectToAdd) {
super(IotProfile.class, "iotprofile", "add");
params.add("objectToAdd", objectToAdd);
public AddIotProfileBuilder() {
super(Boolean.class, "iotprofile", "add");
}
}

/**
* Add new KalturaIotProfile
*
* @param objectToAdd KalturaIotProfile Object to add
* Add new environment in aws
*/
public static AddIotProfileBuilder add(IotProfile objectToAdd) {
return new AddIotProfileBuilder(objectToAdd);
}

public static class GetIotProfileBuilder extends RequestBuilder<IotProfile, IotProfile.Tokenizer, GetIotProfileBuilder> {

public GetIotProfileBuilder(long id) {
super(IotProfile.class, "iotprofile", "get");
params.add("id", id);
}

public void id(String multirequestToken) {
params.add("id", multirequestToken);
}
}

/**
* Get existing KalturaIotProfile
*
* @param id KalturaIotProfile identifier
*/
public static GetIotProfileBuilder get(long id) {
return new GetIotProfileBuilder(id);
}

public static class UpdateIotProfileBuilder extends RequestBuilder<IotProfile, IotProfile.Tokenizer, UpdateIotProfileBuilder> {

public UpdateIotProfileBuilder(long id, IotProfile objectToUpdate) {
super(IotProfile.class, "iotprofile", "update");
params.add("id", id);
params.add("objectToUpdate", objectToUpdate);
}

public void id(String multirequestToken) {
params.add("id", multirequestToken);
}
}

/**
* Update existing KalturaIotProfile
*
* @param id id of KalturaIotProfile to update
* @param objectToUpdate KalturaIotProfile Object to update
*/
public static UpdateIotProfileBuilder update(long id, IotProfile objectToUpdate) {
return new UpdateIotProfileBuilder(id, objectToUpdate);
public static AddIotProfileBuilder add() {
return new AddIotProfileBuilder();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
// ===================================================================================================
package com.kaltura.client.services;

import com.kaltura.client.types.Iot;
import com.kaltura.client.types.IotClientConfiguration;
import com.kaltura.client.utils.request.RequestBuilder;

Expand All @@ -54,10 +53,10 @@ public static GetClientConfigurationIotBuilder getClientConfiguration() {
return new GetClientConfigurationIotBuilder();
}

public static class RegisterIotBuilder extends RequestBuilder<Iot, Iot.Tokenizer, RegisterIotBuilder> {
public static class RegisterIotBuilder extends RequestBuilder<Boolean, String, RegisterIotBuilder> {

public RegisterIotBuilder() {
super(Iot.class, "iot", "register");
super(Boolean.class, "iot", "register");
}
}

Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 84b7de5

Please sign in to comment.