Skip to content

Commit 20b7b87

Browse files
1 parent 9a8c3c3 commit 20b7b87

File tree

4 files changed

+49
-24
lines changed

4 files changed

+49
-24
lines changed

clients/google-api-services-apigee/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-apigee</artifactId>
25-
<version>v1-rev20241004-2.0.0</version>
25+
<version>v1-rev20241011-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-apigee:v1-rev20241004-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apigee:v1-rev20241011-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-apigee/v1/2.0.0/com/google/api/services/apigee/v1/Apigee.java

Lines changed: 43 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -50564,7 +50564,7 @@ public class SecurityProfilesV2 {
5056450564
* This request holds the parameters needed by the apigee server. After setting any optional
5056550565
* parameters, call the {@link Create#execute()} method to invoke the remote operation.
5056650566
*
50567-
* @param parent Required. The parent resource name.
50567+
* @param parent Required. The parent resource name. Format: `organizations/{org}`
5056850568
* @param content the {@link com.google.api.services.apigee.v1.model.GoogleCloudApigeeV1SecurityProfileV2}
5056950569
* @return the request
5057050570
*/
@@ -50591,7 +50591,7 @@ public class Create extends ApigeeRequest<com.google.api.services.apigee.v1.mode
5059150591
* Create#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
5059250592
* be called to initialize this instance immediately after invoking the constructor. </p>
5059350593
*
50594-
* @param parent Required. The parent resource name.
50594+
* @param parent Required. The parent resource name. Format: `organizations/{org}`
5059550595
* @param content the {@link com.google.api.services.apigee.v1.model.GoogleCloudApigeeV1SecurityProfileV2}
5059650596
* @since 1.13
5059750597
*/
@@ -50660,17 +50660,17 @@ public Create setUploadProtocol(java.lang.String uploadProtocol) {
5066050660
return (Create) super.setUploadProtocol(uploadProtocol);
5066150661
}
5066250662

50663-
/** Required. The parent resource name. */
50663+
/** Required. The parent resource name. Format: `organizations/{org}` */
5066450664
@com.google.api.client.util.Key
5066550665
private java.lang.String parent;
5066650666

50667-
/** Required. The parent resource name.
50667+
/** Required. The parent resource name. Format: `organizations/{org}`
5066850668
*/
5066950669
public java.lang.String getParent() {
5067050670
return parent;
5067150671
}
5067250672

50673-
/** Required. The parent resource name. */
50673+
/** Required. The parent resource name. Format: `organizations/{org}` */
5067450674
public Create setParent(java.lang.String parent) {
5067550675
if (!getSuppressPatternChecks()) {
5067650676
com.google.api.client.util.Preconditions.checkArgument(PARENT_PATTERN.matcher(parent).matches(),
@@ -50710,7 +50710,8 @@ public Create set(String parameterName, Object value) {
5071050710
* This request holds the parameters needed by the apigee server. After setting any optional
5071150711
* parameters, call the {@link Delete#execute()} method to invoke the remote operation.
5071250712
*
50713-
* @param name Required. The name of the security profile v2 to delete.
50713+
* @param name Required. The name of the security profile v2 to delete. Format:
50714+
* `organizations/{org}/securityProfilesV2/{profile}`
5071450715
* @return the request
5071550716
*/
5071650717
public Delete delete(java.lang.String name) throws java.io.IOException {
@@ -50736,7 +50737,8 @@ public class Delete extends ApigeeRequest<com.google.api.services.apigee.v1.mode
5073650737
* Delete#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
5073750738
* be called to initialize this instance immediately after invoking the constructor. </p>
5073850739
*
50739-
* @param name Required. The name of the security profile v2 to delete.
50740+
* @param name Required. The name of the security profile v2 to delete. Format:
50741+
* `organizations/{org}/securityProfilesV2/{profile}`
5074050742
* @since 1.13
5074150743
*/
5074250744
protected Delete(java.lang.String name) {
@@ -50804,17 +50806,24 @@ public Delete setUploadProtocol(java.lang.String uploadProtocol) {
5080450806
return (Delete) super.setUploadProtocol(uploadProtocol);
5080550807
}
5080650808

50807-
/** Required. The name of the security profile v2 to delete. */
50809+
/**
50810+
* Required. The name of the security profile v2 to delete. Format:
50811+
* `organizations/{org}/securityProfilesV2/{profile}`
50812+
*/
5080850813
@com.google.api.client.util.Key
5080950814
private java.lang.String name;
5081050815

50811-
/** Required. The name of the security profile v2 to delete.
50816+
/** Required. The name of the security profile v2 to delete. Format:
50817+
`organizations/{org}/securityProfilesV2/{profile}`
5081250818
*/
5081350819
public java.lang.String getName() {
5081450820
return name;
5081550821
}
5081650822

50817-
/** Required. The name of the security profile v2 to delete. */
50823+
/**
50824+
* Required. The name of the security profile v2 to delete. Format:
50825+
* `organizations/{org}/securityProfilesV2/{profile}`
50826+
*/
5081850827
public Delete setName(java.lang.String name) {
5081950828
if (!getSuppressPatternChecks()) {
5082050829
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
@@ -50838,7 +50847,8 @@ public Delete set(String parameterName, Object value) {
5083850847
* This request holds the parameters needed by the apigee server. After setting any optional
5083950848
* parameters, call the {@link Get#execute()} method to invoke the remote operation.
5084050849
*
50841-
* @param name Required. The security profile id.
50850+
* @param name Required. The name of the security profile v2 to get. Format:
50851+
* `organizations/{org}/securityProfilesV2/{profile}`
5084250852
* @return the request
5084350853
*/
5084450854
public Get get(java.lang.String name) throws java.io.IOException {
@@ -50864,7 +50874,8 @@ public class Get extends ApigeeRequest<com.google.api.services.apigee.v1.model.G
5086450874
* Get#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must be
5086550875
* called to initialize this instance immediately after invoking the constructor. </p>
5086650876
*
50867-
* @param name Required. The security profile id.
50877+
* @param name Required. The name of the security profile v2 to get. Format:
50878+
* `organizations/{org}/securityProfilesV2/{profile}`
5086850879
* @since 1.13
5086950880
*/
5087050881
protected Get(java.lang.String name) {
@@ -50942,17 +50953,24 @@ public Get setUploadProtocol(java.lang.String uploadProtocol) {
5094250953
return (Get) super.setUploadProtocol(uploadProtocol);
5094350954
}
5094450955

50945-
/** Required. The security profile id. */
50956+
/**
50957+
* Required. The name of the security profile v2 to get. Format:
50958+
* `organizations/{org}/securityProfilesV2/{profile}`
50959+
*/
5094650960
@com.google.api.client.util.Key
5094750961
private java.lang.String name;
5094850962

50949-
/** Required. The security profile id.
50963+
/** Required. The name of the security profile v2 to get. Format:
50964+
`organizations/{org}/securityProfilesV2/{profile}`
5095050965
*/
5095150966
public java.lang.String getName() {
5095250967
return name;
5095350968
}
5095450969

50955-
/** Required. The security profile id. */
50970+
/**
50971+
* Required. The name of the security profile v2 to get. Format:
50972+
* `organizations/{org}/securityProfilesV2/{profile}`
50973+
*/
5095650974
public Get setName(java.lang.String name) {
5095750975
if (!getSuppressPatternChecks()) {
5095850976
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
@@ -51288,17 +51306,24 @@ public Patch setName(java.lang.String name) {
5128851306
return this;
5128951307
}
5129051308

51291-
/** Required. The list of fields to update. */
51309+
/**
51310+
* Optional. The list of fields to update. Valid fields to update are `description` and
51311+
* `profileAssessmentConfigs`.
51312+
*/
5129251313
@com.google.api.client.util.Key
5129351314
private String updateMask;
5129451315

51295-
/** Required. The list of fields to update.
51316+
/** Optional. The list of fields to update. Valid fields to update are `description` and
51317+
`profileAssessmentConfigs`.
5129651318
*/
5129751319
public String getUpdateMask() {
5129851320
return updateMask;
5129951321
}
5130051322

51301-
/** Required. The list of fields to update. */
51323+
/**
51324+
* Optional. The list of fields to update. Valid fields to update are `description` and
51325+
* `profileAssessmentConfigs`.
51326+
*/
5130251327
public Patch setUpdateMask(String updateMask) {
5130351328
this.updateMask = updateMask;
5130451329
return this;

clients/google-api-services-apigee/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-apigee</artifactId>
11-
<version>v1-rev20241004-2.0.0</version>
12-
<name>Apigee API v1-rev20241004-2.0.0</name>
11+
<version>v1-rev20241011-2.0.0</version>
12+
<name>Apigee API v1-rev20241011-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-apigee/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-apigee</artifactId>
25-
<version>v1-rev20241004-2.0.0</version>
25+
<version>v1-rev20241011-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-apigee:v1-rev20241004-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apigee:v1-rev20241011-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)