Skip to content

Commit

Permalink
chore: regenerate oslogin client (#18034)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Sep 8, 2023
1 parent 08f4d97 commit 2b13296
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 8 deletions.
4 changes: 2 additions & 2 deletions clients/google-api-services-oslogin/v1alpha/2.0.0/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-oslogin</artifactId>
<version>v1alpha-rev20230729-2.0.0</version>
<version>v1alpha-rev20230903-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-oslogin:v1alpha-rev20230729-2.0.0'
implementation 'com.google.apis:google-api-services-oslogin:v1alpha-rev20230903-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@
@SuppressWarnings("javadoc")
public final class SecurityKey extends com.google.api.client.json.GenericJson {

/**
* The security key nickname explicitly set by the user.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String deviceNickname;

/**
* Hardware-backed private key text in SSH format.
* The value may be {@code null}.
Expand Down Expand Up @@ -58,6 +65,23 @@ public final class SecurityKey extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private WebAuthn webAuthn;

/**
* The security key nickname explicitly set by the user.
* @return value or {@code null} for none
*/
public java.lang.String getDeviceNickname() {
return deviceNickname;
}

/**
* The security key nickname explicitly set by the user.
* @param deviceNickname deviceNickname or {@code null} for none
*/
public SecurityKey setDeviceNickname(java.lang.String deviceNickname) {
this.deviceNickname = deviceNickname;
return this;
}

/**
* Hardware-backed private key text in SSH format.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-oslogin/v1alpha/2.0.0/pom.xml
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-oslogin</artifactId>
<version>v1alpha-rev20230729-2.0.0</version>
<name>Cloud OS Login API v1alpha-rev20230729-2.0.0</name>
<version>v1alpha-rev20230903-2.0.0</version>
<name>Cloud OS Login API v1alpha-rev20230903-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-oslogin/v1beta/2.0.0/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-oslogin</artifactId>
<version>v1beta-rev20230729-2.0.0</version>
<version>v1beta-rev20230903-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-oslogin:v1beta-rev20230729-2.0.0'
implementation 'com.google.apis:google-api-services-oslogin:v1beta-rev20230903-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@
@SuppressWarnings("javadoc")
public final class SecurityKey extends com.google.api.client.json.GenericJson {

/**
* The security key nickname explicitly set by the user.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String deviceNickname;

/**
* Hardware-backed private key text in SSH format.
* The value may be {@code null}.
Expand Down Expand Up @@ -58,6 +65,23 @@ public final class SecurityKey extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private WebAuthn webAuthn;

/**
* The security key nickname explicitly set by the user.
* @return value or {@code null} for none
*/
public java.lang.String getDeviceNickname() {
return deviceNickname;
}

/**
* The security key nickname explicitly set by the user.
* @param deviceNickname deviceNickname or {@code null} for none
*/
public SecurityKey setDeviceNickname(java.lang.String deviceNickname) {
this.deviceNickname = deviceNickname;
return this;
}

/**
* Hardware-backed private key text in SSH format.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-oslogin/v1beta/2.0.0/pom.xml
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-oslogin</artifactId>
<version>v1beta-rev20230729-2.0.0</version>
<name>Cloud OS Login API v1beta-rev20230729-2.0.0</name>
<version>v1beta-rev20230903-2.0.0</version>
<name>Cloud OS Login API v1beta-rev20230903-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down

0 comments on commit 2b13296

Please sign in to comment.