File tree Expand file tree Collapse file tree 4 files changed +33
-6
lines changed
clients/google-api-services-run/v2
com/google/api/services/run/v2/model Expand file tree Collapse file tree 4 files changed +33
-6
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-run</artifactId >
25
- <version >v2-rev20241011 -2.0.0</version >
25
+ <version >v2-rev20241025 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-run:v2-rev20241011 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-run:v2-rev20241025 -2.0.0'
39
39
}
40
40
```
41
41
Original file line number Diff line number Diff line change @@ -36,6 +36,14 @@ public final class GoogleCloudRunV2GCSVolumeSource extends com.google.api.client
36
36
@ com .google .api .client .util .Key
37
37
private java .lang .String bucket ;
38
38
39
+ /**
40
+ * A list of additional flags to pass to the gcsfuse CLI. Options should be specified without the
41
+ * leading "--".
42
+ * The value may be {@code null}.
43
+ */
44
+ @ com .google .api .client .util .Key
45
+ private java .util .List <java .lang .String > mountOptions ;
46
+
39
47
/**
40
48
* If true, the volume will be mounted as read only for all mounts.
41
49
* The value may be {@code null}.
@@ -60,6 +68,25 @@ public GoogleCloudRunV2GCSVolumeSource setBucket(java.lang.String bucket) {
60
68
return this ;
61
69
}
62
70
71
+ /**
72
+ * A list of additional flags to pass to the gcsfuse CLI. Options should be specified without the
73
+ * leading "--".
74
+ * @return value or {@code null} for none
75
+ */
76
+ public java .util .List <java .lang .String > getMountOptions () {
77
+ return mountOptions ;
78
+ }
79
+
80
+ /**
81
+ * A list of additional flags to pass to the gcsfuse CLI. Options should be specified without the
82
+ * leading "--".
83
+ * @param mountOptions mountOptions or {@code null} for none
84
+ */
85
+ public GoogleCloudRunV2GCSVolumeSource setMountOptions (java .util .List <java .lang .String > mountOptions ) {
86
+ this .mountOptions = mountOptions ;
87
+ return this ;
88
+ }
89
+
63
90
/**
64
91
* If true, the volume will be mounted as read only for all mounts.
65
92
* @return value or {@code null} for none
Original file line number Diff line number Diff line change 8
8
9
9
<groupId >com.google.apis</groupId >
10
10
<artifactId >google-api-services-run</artifactId >
11
- <version >v2-rev20241011 -2.0.0</version >
12
- <name >Cloud Run Admin API v2-rev20241011 -2.0.0</name >
11
+ <version >v2-rev20241025 -2.0.0</version >
12
+ <name >Cloud Run Admin API v2-rev20241025 -2.0.0</name >
13
13
<packaging >jar</packaging >
14
14
15
15
<inceptionYear >2011</inceptionYear >
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
22
22
<dependency >
23
23
<groupId >com.google.apis</groupId >
24
24
<artifactId >google-api-services-run</artifactId >
25
- <version >v2-rev20241011 -2.0.0</version >
25
+ <version >v2-rev20241025 -2.0.0</version >
26
26
</dependency >
27
27
</dependencies >
28
28
</project >
@@ -35,7 +35,7 @@ repositories {
35
35
mavenCentral()
36
36
}
37
37
dependencies {
38
- implementation 'com.google.apis:google-api-services-run:v2-rev20241011 -2.0.0'
38
+ implementation 'com.google.apis:google-api-services-run:v2-rev20241025 -2.0.0'
39
39
}
40
40
```
41
41
You can’t perform that action at this time.
0 commit comments