Skip to content

Commit

Permalink
Add RunSynchronizationJob API.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 30, 2024
1 parent 6401190 commit 99ac893
Show file tree
Hide file tree
Showing 22 changed files with 4,070 additions and 2 deletions.
5 changes: 5 additions & 0 deletions aliyun-java-sdk-eiam/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2024-07-30 Version: 1.0.6
- Add RunSynchronizationJob API.
- Add GetSynchronizationJob API.
- Update ListSynchronizationJobs API.

2023-12-21 Version: 1.0.5
- Support vpn api.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-eiam/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-eiam</artifactId>
<packaging>jar</packaging>
<version>1.0.5</version>
<version>1.0.6</version>
<name>aliyun-java-sdk-eiam</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,45 @@ public void setApplicationProvisioningScope(ApplicationProvisioningScope applica

public static class ApplicationProvisioningScope {

private Integer usedQuota;

private Integer maxQuota;

private List<String> organizationalUnitIds;

private List<String> groupIds;

public Integer getUsedQuota() {
return this.usedQuota;
}

public void setUsedQuota(Integer usedQuota) {
this.usedQuota = usedQuota;
}

public Integer getMaxQuota() {
return this.maxQuota;
}

public void setMaxQuota(Integer maxQuota) {
this.maxQuota = maxQuota;
}

public List<String> getOrganizationalUnitIds() {
return this.organizationalUnitIds;
}

public void setOrganizationalUnitIds(List<String> organizationalUnitIds) {
this.organizationalUnitIds = organizationalUnitIds;
}

public List<String> getGroupIds() {
return this.groupIds;
}

public void setGroupIds(List<String> groupIds) {
this.groupIds = groupIds;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* 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.
*/

package com.aliyuncs.eiam.model.v20211201;

import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;

/**
* @author auto create
* @version
*/
public class GetSynchronizationJobRequest extends RpcAcsRequest<GetSynchronizationJobResponse> {


private String synchronizationJobId;

private String instanceId;
public GetSynchronizationJobRequest() {
super("Eiam", "2021-12-01", "GetSynchronizationJob", "eiam");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}

public String getSynchronizationJobId() {
return this.synchronizationJobId;
}

public void setSynchronizationJobId(String synchronizationJobId) {
this.synchronizationJobId = synchronizationJobId;
if(synchronizationJobId != null){
putQueryParameter("SynchronizationJobId", synchronizationJobId);
}
}

public String getInstanceId() {
return this.instanceId;
}

public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}

@Override
public Class<GetSynchronizationJobResponse> getResponseClass() {
return GetSynchronizationJobResponse.class;
}

}
Loading

0 comments on commit 99ac893

Please sign in to comment.