Skip to content

Commit

Permalink
chore: regenerate prod_tt_sasportal client (#18205)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Sep 23, 2023
1 parent 8449760 commit f33ad7c
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
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-prod_tt_sasportal</artifactId>
<version>v1alpha1-rev20230816-2.0.0</version>
<version>v1alpha1-rev20230921-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-prod_tt_sasportal:v1alpha1-rev20230816-2.0.0'
implementation 'com.google.apis:google-api-services-prod_tt_sasportal:v1alpha1-rev20230921-2.0.0'
}
```

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

/**
* Optional. User id to setup analytics for, if not provided the user id associated with the
* project is used. optional
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String userId;

/**
* Optional. User id to setup analytics for, if not provided the user id associated with the
* project is used. optional
* @return value or {@code null} for none
*/
public java.lang.String getUserId() {
return userId;
}

/**
* Optional. User id to setup analytics for, if not provided the user id associated with the
* project is used. optional
* @param userId userId or {@code null} for none
*/
public SasPortalSetupSasAnalyticsRequest setUserId(java.lang.String userId) {
this.userId = userId;
return this;
}

@Override
public SasPortalSetupSasAnalyticsRequest set(String fieldName, Object value) {
return (SasPortalSetupSasAnalyticsRequest) super.set(fieldName, value);
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-prod_tt_sasportal</artifactId>
<version>v1alpha1-rev20230816-2.0.0</version>
<name>SAS Portal API (Testing) v1alpha1-rev20230816-2.0.0</name>
<version>v1alpha1-rev20230921-2.0.0</version>
<name>SAS Portal API (Testing) v1alpha1-rev20230921-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down

0 comments on commit f33ad7c

Please sign in to comment.