Skip to content

Commit 8ee7c1f

Browse files
1 parent 8acde09 commit 8ee7c1f

17 files changed

+4617
-93
lines changed

clients/google-api-services-oracledatabase/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-oracledatabase</artifactId>
25-
<version>v1-rev20250914-2.0.0</version>
25+
<version>v1-rev20250918-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-oracledatabase:v1-rev20250914-2.0.0'
38+
implementation 'com.google.apis:google-api-services-oracledatabase:v1-rev20250918-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-oracledatabase/v1/2.0.0/com/google/api/services/oracledatabase/v1/OracleDatabase.java

Lines changed: 2374 additions & 87 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.oracledatabase.v1.model;
18+
19+
/**
20+
* Data collection options for diagnostics. https://docs.oracle.com/en-
21+
* us/iaas/api/#/en/database/20160918/datatypes/DataCollectionOptions
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Oracle Database@Google Cloud API. For a detailed
25+
* explanation see:
26+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class DataCollectionOptionsCommon extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Optional. Indicates whether to enable data collection for diagnostics.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.Boolean isDiagnosticsEventsEnabled;
40+
41+
/**
42+
* Optional. Indicates whether to enable health monitoring.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.Boolean isHealthMonitoringEnabled;
47+
48+
/**
49+
* Optional. Indicates whether to enable incident logs and trace collection.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.Boolean isIncidentLogsEnabled;
54+
55+
/**
56+
* Optional. Indicates whether to enable data collection for diagnostics.
57+
* @return value or {@code null} for none
58+
*/
59+
public java.lang.Boolean getIsDiagnosticsEventsEnabled() {
60+
return isDiagnosticsEventsEnabled;
61+
}
62+
63+
/**
64+
* Optional. Indicates whether to enable data collection for diagnostics.
65+
* @param isDiagnosticsEventsEnabled isDiagnosticsEventsEnabled or {@code null} for none
66+
*/
67+
public DataCollectionOptionsCommon setIsDiagnosticsEventsEnabled(java.lang.Boolean isDiagnosticsEventsEnabled) {
68+
this.isDiagnosticsEventsEnabled = isDiagnosticsEventsEnabled;
69+
return this;
70+
}
71+
72+
/**
73+
* Optional. Indicates whether to enable health monitoring.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.Boolean getIsHealthMonitoringEnabled() {
77+
return isHealthMonitoringEnabled;
78+
}
79+
80+
/**
81+
* Optional. Indicates whether to enable health monitoring.
82+
* @param isHealthMonitoringEnabled isHealthMonitoringEnabled or {@code null} for none
83+
*/
84+
public DataCollectionOptionsCommon setIsHealthMonitoringEnabled(java.lang.Boolean isHealthMonitoringEnabled) {
85+
this.isHealthMonitoringEnabled = isHealthMonitoringEnabled;
86+
return this;
87+
}
88+
89+
/**
90+
* Optional. Indicates whether to enable incident logs and trace collection.
91+
* @return value or {@code null} for none
92+
*/
93+
public java.lang.Boolean getIsIncidentLogsEnabled() {
94+
return isIncidentLogsEnabled;
95+
}
96+
97+
/**
98+
* Optional. Indicates whether to enable incident logs and trace collection.
99+
* @param isIncidentLogsEnabled isIncidentLogsEnabled or {@code null} for none
100+
*/
101+
public DataCollectionOptionsCommon setIsIncidentLogsEnabled(java.lang.Boolean isIncidentLogsEnabled) {
102+
this.isIncidentLogsEnabled = isIncidentLogsEnabled;
103+
return this;
104+
}
105+
106+
@Override
107+
public DataCollectionOptionsCommon set(String fieldName, Object value) {
108+
return (DataCollectionOptionsCommon) super.set(fieldName, value);
109+
}
110+
111+
@Override
112+
public DataCollectionOptionsCommon clone() {
113+
return (DataCollectionOptionsCommon) super.clone();
114+
}
115+
116+
}

0 commit comments

Comments
 (0)