Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Refactor PHP discovery snippetgen for MVVM #714

Merged
merged 7 commits into from
Nov 7, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,8 @@ import java.util.Arrays;

public class StoragetransferExample {
public static void main(String args[]) throws IOException, GeneralSecurityException {
// The ID of the Google Developers Console project that the Google service account is associated with.
// Required.
String projectId = ""; // TODO: Update placeholder value.

Storagetransfer storagetransferService = createStoragetransferService();
Storagetransfer.GoogleServiceAccounts.Get request = storagetransferService.googleServiceAccounts().get(projectId);
Storagetransfer.V1.GetGoogleServiceAccount request = storagetransferService.v1().getGoogleServiceAccount();

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.


GoogleServiceAccount response = request.execute();

Expand Down
Loading