Search in sources :

Example 6 with Team

use of com.google.api.ads.admanager.axis.v202108.Team in project googleads-java-lib by googleads.

the class UpdateTeams method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param teamId the ID of the team to update.
 * @throws ApiException if the API request failed with one or more service errors.
 * @throws RemoteException if the API request failed due to other errors.
 */
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, long teamId) throws RemoteException {
    // Get the TeamService.
    TeamServiceInterface teamService = adManagerServices.get(session, TeamServiceInterface.class);
    // Create a statement to only select a single team by ID.
    StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(1).withBindVariableValue("id", teamId);
    // Get the team.
    TeamPage page = teamService.getTeamsByStatement(statementBuilder.toStatement());
    Team team = Iterables.getOnlyElement(Arrays.asList(page.getResults()));
    String newDescription = team.getDescription() + " - UPDATED";
    team.setDescription(newDescription);
    // Update the team on the server.
    Team[] teams = teamService.updateTeams(new Team[] { team });
    for (Team updatedTeam : teams) {
        System.out.printf("Team with ID %d and name '%s' was updated.%n", updatedTeam.getId(), updatedTeam.getName());
    }
}
Also used : TeamServiceInterface(com.google.api.ads.admanager.axis.v202202.TeamServiceInterface) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder) TeamPage(com.google.api.ads.admanager.axis.v202202.TeamPage) Team(com.google.api.ads.admanager.axis.v202202.Team)

Example 7 with Team

use of com.google.api.ads.admanager.axis.v202108.Team in project googleads-java-lib by googleads.

the class GetUserTeamAssociationsForUser method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param userId the user ID.
 * @throws ApiException if the API request failed with one or more service errors.
 * @throws RemoteException if the API request failed due to other errors.
 */
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, long userId) throws RemoteException {
    UserTeamAssociationServiceInterface userTeamAssociationService = adManagerServices.get(session, UserTeamAssociationServiceInterface.class);
    // Create a statement to select user team associations.
    StatementBuilder statementBuilder = new StatementBuilder().where("userId = :userId").orderBy("userId ASC, teamId ASC").limit(StatementBuilder.SUGGESTED_PAGE_LIMIT).withBindVariableValue("userId", userId);
    // Retrieve a small amount of user team associations at a time, paging through
    // until all user team associations have been retrieved.
    int totalResultSetSize = 0;
    do {
        UserTeamAssociationPage page = userTeamAssociationService.getUserTeamAssociationsByStatement(statementBuilder.toStatement());
        if (page.getResults() != null) {
            // Print out some information for each user team association.
            totalResultSetSize = page.getTotalResultSetSize();
            int i = page.getStartIndex();
            for (UserTeamAssociation userTeamAssociation : page.getResults()) {
                System.out.printf("%d) User team association with user ID %d and team ID %d was found.%n", i++, userTeamAssociation.getUserId(), userTeamAssociation.getTeamId());
            }
        }
        statementBuilder.increaseOffsetBy(StatementBuilder.SUGGESTED_PAGE_LIMIT);
    } while (statementBuilder.getOffset() < totalResultSetSize);
    System.out.printf("Number of results found: %d%n", totalResultSetSize);
}
Also used : UserTeamAssociationServiceInterface(com.google.api.ads.admanager.axis.v202108.UserTeamAssociationServiceInterface) UserTeamAssociation(com.google.api.ads.admanager.axis.v202108.UserTeamAssociation) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202108.StatementBuilder) UserTeamAssociationPage(com.google.api.ads.admanager.axis.v202108.UserTeamAssociationPage)

Example 8 with Team

use of com.google.api.ads.admanager.axis.v202108.Team in project googleads-java-lib by googleads.

the class CreateTeams method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @throws ApiException if the API request failed with one or more service errors.
 * @throws RemoteException if the API request failed due to other errors.
 */
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session) throws RemoteException {
    // Get the TeamService.
    TeamServiceInterface teamService = adManagerServices.get(session, TeamServiceInterface.class);
    // Create a read/write team.
    Team readWriteTeam = new Team();
    readWriteTeam.setName("Read/write team #" + new Random().nextInt(Integer.MAX_VALUE));
    readWriteTeam.setTeamAccessType(TeamAccessType.READ_WRITE);
    readWriteTeam.setHasAllCompanies(false);
    readWriteTeam.setHasAllInventory(false);
    // Create a read-only team.
    Team readOnlyTeam = new Team();
    readOnlyTeam.setName("Read-only team #" + new Random().nextInt(Integer.MAX_VALUE));
    readOnlyTeam.setTeamAccessType(TeamAccessType.READ_ONLY);
    readOnlyTeam.setHasAllCompanies(false);
    readOnlyTeam.setHasAllInventory(false);
    // Create the teams on the server.
    Team[] teams = teamService.createTeams(new Team[] { readWriteTeam, readOnlyTeam });
    for (Team createdTeam : teams) {
        System.out.printf("A team with ID %d and name '%s' was created.%n", createdTeam.getId(), createdTeam.getName());
    }
}
Also used : TeamServiceInterface(com.google.api.ads.admanager.axis.v202108.TeamServiceInterface) Random(java.util.Random) Team(com.google.api.ads.admanager.axis.v202108.Team)

Example 9 with Team

use of com.google.api.ads.admanager.axis.v202108.Team in project googleads-java-lib by googleads.

the class UpdateTeams method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param teamId the ID of the team to update.
 * @throws ApiException if the API request failed with one or more service errors.
 * @throws RemoteException if the API request failed due to other errors.
 */
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, long teamId) throws RemoteException {
    // Get the TeamService.
    TeamServiceInterface teamService = adManagerServices.get(session, TeamServiceInterface.class);
    // Create a statement to only select a single team by ID.
    StatementBuilder statementBuilder = new StatementBuilder().where("id = :id").orderBy("id ASC").limit(1).withBindVariableValue("id", teamId);
    // Get the team.
    TeamPage page = teamService.getTeamsByStatement(statementBuilder.toStatement());
    Team team = Iterables.getOnlyElement(Arrays.asList(page.getResults()));
    String newDescription = team.getDescription() + " - UPDATED";
    team.setDescription(newDescription);
    // Update the team on the server.
    Team[] teams = teamService.updateTeams(new Team[] { team });
    for (Team updatedTeam : teams) {
        System.out.printf("Team with ID %d and name '%s' was updated.%n", updatedTeam.getId(), updatedTeam.getName());
    }
}
Also used : TeamServiceInterface(com.google.api.ads.admanager.axis.v202108.TeamServiceInterface) StatementBuilder(com.google.api.ads.admanager.axis.utils.v202108.StatementBuilder) TeamPage(com.google.api.ads.admanager.axis.v202108.TeamPage) Team(com.google.api.ads.admanager.axis.v202108.Team)

Example 10 with Team

use of com.google.api.ads.admanager.axis.v202108.Team in project googleads-java-lib by googleads.

the class CreateUserTeamAssociations method runExample.

/**
 * Runs the example.
 *
 * @param adManagerServices the services factory.
 * @param session the session.
 * @param userId the user ID of the user team association.
 * @param teamId the team ID of the user team association (i.e. what team the user will be added
 *     to).
 * @throws ApiException if the API request failed with one or more service errors.
 * @throws RemoteException if the API request failed due to other errors.
 */
public static void runExample(AdManagerServices adManagerServices, AdManagerSession session, long userId, long teamId) throws RemoteException {
    // Get the UserTeamAssociationService.
    UserTeamAssociationServiceInterface userTeamAssociationService = adManagerServices.get(session, UserTeamAssociationServiceInterface.class);
    // Create a user team association.
    UserTeamAssociation userTeamAssociation = new UserTeamAssociation();
    userTeamAssociation.setUserId(userId);
    userTeamAssociation.setTeamId(teamId);
    // Create the user team association on the server.
    UserTeamAssociation[] userTeamAssociations = userTeamAssociationService.createUserTeamAssociations(new UserTeamAssociation[] { userTeamAssociation });
    for (UserTeamAssociation createdUserTeamAssociation : userTeamAssociations) {
        System.out.printf("A user team association with user ID %d and team ID %d was created.%n", createdUserTeamAssociation.getUserId(), createdUserTeamAssociation.getTeamId());
    }
}
Also used : UserTeamAssociationServiceInterface(com.google.api.ads.admanager.axis.v202108.UserTeamAssociationServiceInterface) UserTeamAssociation(com.google.api.ads.admanager.axis.v202108.UserTeamAssociation)

Aggregations

StatementBuilder (com.google.api.ads.admanager.axis.utils.v202108.StatementBuilder)6 UserTeamAssociation (com.google.api.ads.admanager.axis.v202108.UserTeamAssociation)5 UserTeamAssociationServiceInterface (com.google.api.ads.admanager.axis.v202108.UserTeamAssociationServiceInterface)5 UserTeamAssociationPage (com.google.api.ads.admanager.axis.v202108.UserTeamAssociationPage)4 Team (com.google.api.ads.admanager.axis.v202108.Team)3 TeamServiceInterface (com.google.api.ads.admanager.axis.v202108.TeamServiceInterface)3 Team (com.google.api.ads.admanager.axis.v202111.Team)3 TeamServiceInterface (com.google.api.ads.admanager.axis.v202111.TeamServiceInterface)3 Team (com.google.api.ads.admanager.axis.v202202.Team)3 TeamServiceInterface (com.google.api.ads.admanager.axis.v202202.TeamServiceInterface)3 Random (java.util.Random)3 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202111.StatementBuilder)2 StatementBuilder (com.google.api.ads.admanager.axis.utils.v202202.StatementBuilder)2 TeamPage (com.google.api.ads.admanager.axis.v202108.TeamPage)2 TeamPage (com.google.api.ads.admanager.axis.v202111.TeamPage)2 TeamPage (com.google.api.ads.admanager.axis.v202202.TeamPage)2 UpdateResult (com.google.api.ads.admanager.axis.v202108.UpdateResult)1