Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-admin-directory</artifactId>
<version>directory_v1-rev20260421-2.0.0</version>
<version>directory_v1-rev20260522-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-admin-directory:directory_v1-rev20260421-2.0.0'
implementation 'com.google.apis:google-api-services-admin-directory:directory_v1-rev20260522-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17395,8 +17395,8 @@ public class Users {

/**
* Create a guest user with access to a [subset of Workspace
* capabilities](https://support.google.com/a/answer/16558545). This feature is currently in Alpha.
* Please reach out to support if you are interested in trying this feature.
* capabilities](https://support.google.com/a/answer/16558545). This feature is currently in Open
* Beta.
*
* Create a request for the method "users.createGuest".
*
Expand All @@ -17418,8 +17418,8 @@ public class CreateGuest extends DirectoryRequest<com.google.api.services.direct

/**
* Create a guest user with access to a [subset of Workspace
* capabilities](https://support.google.com/a/answer/16558545). This feature is currently in
* Alpha. Please reach out to support if you are interested in trying this feature.
* capabilities](https://support.google.com/a/answer/16558545). This feature is currently in Open
* Beta.
*
* Create a request for the method "users.createGuest".
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,32 @@
public final class DirectoryUsersCreateGuestRequest extends com.google.api.client.json.GenericJson {

/**
* Optional. Immutable ID of the Google Workspace account.
* Optional. Immutable ID of the Google Workspace account. Only required when request is created
* by a service account. Defaults to the authenticated user's customer ID otherwise.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String customer;

/**
* Immutable. External email of the guest user being created.
* Required. External email of the guest user being created.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String primaryGuestEmail;

/**
* Optional. Immutable ID of the Google Workspace account.
* Optional. Immutable ID of the Google Workspace account. Only required when request is created
* by a service account. Defaults to the authenticated user's customer ID otherwise.
* @return value or {@code null} for none
*/
public java.lang.String getCustomer() {
return customer;
}

/**
* Optional. Immutable ID of the Google Workspace account.
* Optional. Immutable ID of the Google Workspace account. Only required when request is created
* by a service account. Defaults to the authenticated user's customer ID otherwise.
* @param customer customer or {@code null} for none
*/
public DirectoryUsersCreateGuestRequest setCustomer(java.lang.String customer) {
Expand All @@ -61,15 +64,15 @@ public DirectoryUsersCreateGuestRequest setCustomer(java.lang.String customer) {
}

/**
* Immutable. External email of the guest user being created.
* Required. External email of the guest user being created.
* @return value or {@code null} for none
*/
public java.lang.String getPrimaryGuestEmail() {
return primaryGuestEmail;
}

/**
* Immutable. External email of the guest user being created.
* Required. External email of the guest user being created.
* @param primaryGuestEmail primaryGuestEmail or {@code null} for none
*/
public DirectoryUsersCreateGuestRequest setPrimaryGuestEmail(java.lang.String primaryGuestEmail) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-admin-directory</artifactId>
<version>directory_v1-rev20260421-2.0.0</version>
<name>Admin SDK API directory_v1-rev20260421-2.0.0</name>
<version>directory_v1-rev20260522-2.0.0</version>
<name>Admin SDK API directory_v1-rev20260522-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-admin/directory_v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-admin-directory</artifactId>
<version>directory_v1-rev20260421-2.0.0</version>
<version>directory_v1-rev20260522-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-admin-directory:directory_v1-rev20260421-2.0.0'
implementation 'com.google.apis:google-api-services-admin-directory:directory_v1-rev20260522-2.0.0'
}
```

Expand Down