Skip to content

Commit b1852d4

Browse files
feat(generator): update protoc to v3.15.3 (googleapis#163)
This PR was generated using Autosynth. 🌈 Synth log will be available here: https://source.cloud.google.com/results/invocations/be3f3d7d-9836-42f7-b80c-ebaa93e845f1/targets - [ ] To automatically regenerate this PR, check this box. PiperOrigin-RevId: 359781040 Source-Link: googleapis/googleapis@f6dd7e4 Source-Link: googleapis/googleapis-gen@a9e44ab
1 parent 7192fb5 commit b1852d4

15 files changed

Lines changed: 384 additions & 6 deletions

File tree

proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValue.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,20 @@ public OneValueCase getOneValueCase() {
154154
}
155155

156156
public static final int VALUE_FIELD_NUMBER = 1;
157+
/**
158+
*
159+
*
160+
* <pre>
161+
* Value as a string if the dimension type is a string.
162+
* </pre>
163+
*
164+
* <code>string value = 1;</code>
165+
*
166+
* @return Whether the value field is set.
167+
*/
168+
public boolean hasValue() {
169+
return oneValueCase_ == 1;
170+
}
157171
/**
158172
*
159173
*
@@ -565,6 +579,21 @@ public Builder clearOneValue() {
565579
return this;
566580
}
567581

582+
/**
583+
*
584+
*
585+
* <pre>
586+
* Value as a string if the dimension type is a string.
587+
* </pre>
588+
*
589+
* <code>string value = 1;</code>
590+
*
591+
* @return Whether the value field is set.
592+
*/
593+
@java.lang.Override
594+
public boolean hasValue() {
595+
return oneValueCase_ == 1;
596+
}
568597
/**
569598
*
570599
*

proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/DimensionValueOrBuilder.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ public interface DimensionValueOrBuilder
2323
// @@protoc_insertion_point(interface_extends:google.analytics.data.v1alpha.DimensionValue)
2424
com.google.protobuf.MessageOrBuilder {
2525

26+
/**
27+
*
28+
*
29+
* <pre>
30+
* Value as a string if the dimension type is a string.
31+
* </pre>
32+
*
33+
* <code>string value = 1;</code>
34+
*
35+
* @return Whether the value field is set.
36+
*/
37+
boolean hasValue();
2638
/**
2739
*
2840
*

proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/Filter.java

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4637,6 +4637,24 @@ public com.google.protobuf.ByteString getFieldNameBytes() {
46374637
}
46384638

46394639
public static final int NULL_FILTER_FIELD_NUMBER = 2;
4640+
/**
4641+
*
4642+
*
4643+
* <pre>
4644+
* A filter for null values. If True, a null dimension value is matched by
4645+
* this filter. Null filter is commonly used inside a NOT filter
4646+
* expression. For example, a NOT expression of a null filter removes rows
4647+
* when a dimension is null.
4648+
* </pre>
4649+
*
4650+
* <code>bool null_filter = 2;</code>
4651+
*
4652+
* @return Whether the nullFilter field is set.
4653+
*/
4654+
@java.lang.Override
4655+
public boolean hasNullFilter() {
4656+
return oneFilterCase_ == 2;
4657+
}
46404658
/**
46414659
*
46424660
*
@@ -5454,6 +5472,23 @@ public Builder setFieldNameBytes(com.google.protobuf.ByteString value) {
54545472
return this;
54555473
}
54565474

5475+
/**
5476+
*
5477+
*
5478+
* <pre>
5479+
* A filter for null values. If True, a null dimension value is matched by
5480+
* this filter. Null filter is commonly used inside a NOT filter
5481+
* expression. For example, a NOT expression of a null filter removes rows
5482+
* when a dimension is null.
5483+
* </pre>
5484+
*
5485+
* <code>bool null_filter = 2;</code>
5486+
*
5487+
* @return Whether the nullFilter field is set.
5488+
*/
5489+
public boolean hasNullFilter() {
5490+
return oneFilterCase_ == 2;
5491+
}
54575492
/**
54585493
*
54595494
*

proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/FilterOrBuilder.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,21 @@ public interface FilterOrBuilder
5050
*/
5151
com.google.protobuf.ByteString getFieldNameBytes();
5252

53+
/**
54+
*
55+
*
56+
* <pre>
57+
* A filter for null values. If True, a null dimension value is matched by
58+
* this filter. Null filter is commonly used inside a NOT filter
59+
* expression. For example, a NOT expression of a null filter removes rows
60+
* when a dimension is null.
61+
* </pre>
62+
*
63+
* <code>bool null_filter = 2;</code>
64+
*
65+
* @return Whether the nullFilter field is set.
66+
*/
67+
boolean hasNullFilter();
5368
/**
5469
*
5570
*

proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValue.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,20 @@ public OneValueCase getOneValueCase() {
154154
}
155155

156156
public static final int VALUE_FIELD_NUMBER = 4;
157+
/**
158+
*
159+
*
160+
* <pre>
161+
* Measurement value. See MetricHeader for type.
162+
* </pre>
163+
*
164+
* <code>string value = 4;</code>
165+
*
166+
* @return Whether the value field is set.
167+
*/
168+
public boolean hasValue() {
169+
return oneValueCase_ == 4;
170+
}
157171
/**
158172
*
159173
*
@@ -564,6 +578,21 @@ public Builder clearOneValue() {
564578
return this;
565579
}
566580

581+
/**
582+
*
583+
*
584+
* <pre>
585+
* Measurement value. See MetricHeader for type.
586+
* </pre>
587+
*
588+
* <code>string value = 4;</code>
589+
*
590+
* @return Whether the value field is set.
591+
*/
592+
@java.lang.Override
593+
public boolean hasValue() {
594+
return oneValueCase_ == 4;
595+
}
567596
/**
568597
*
569598
*

proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/MetricValueOrBuilder.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ public interface MetricValueOrBuilder
2323
// @@protoc_insertion_point(interface_extends:google.analytics.data.v1alpha.MetricValue)
2424
com.google.protobuf.MessageOrBuilder {
2525

26+
/**
27+
*
28+
*
29+
* <pre>
30+
* Measurement value. See MetricHeader for type.
31+
* </pre>
32+
*
33+
* <code>string value = 4;</code>
34+
*
35+
* @return Whether the value field is set.
36+
*/
37+
boolean hasValue();
2638
/**
2739
*
2840
*

proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValue.java

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,21 @@ public OneValueCase getOneValueCase() {
162162
}
163163

164164
public static final int INT64_VALUE_FIELD_NUMBER = 1;
165+
/**
166+
*
167+
*
168+
* <pre>
169+
* Integer value
170+
* </pre>
171+
*
172+
* <code>int64 int64_value = 1;</code>
173+
*
174+
* @return Whether the int64Value field is set.
175+
*/
176+
@java.lang.Override
177+
public boolean hasInt64Value() {
178+
return oneValueCase_ == 1;
179+
}
165180
/**
166181
*
167182
*
@@ -182,6 +197,21 @@ public long getInt64Value() {
182197
}
183198

184199
public static final int DOUBLE_VALUE_FIELD_NUMBER = 2;
200+
/**
201+
*
202+
*
203+
* <pre>
204+
* Double value
205+
* </pre>
206+
*
207+
* <code>double double_value = 2;</code>
208+
*
209+
* @return Whether the doubleValue field is set.
210+
*/
211+
@java.lang.Override
212+
public boolean hasDoubleValue() {
213+
return oneValueCase_ == 2;
214+
}
185215
/**
186216
*
187217
*
@@ -583,6 +613,20 @@ public Builder clearOneValue() {
583613
return this;
584614
}
585615

616+
/**
617+
*
618+
*
619+
* <pre>
620+
* Integer value
621+
* </pre>
622+
*
623+
* <code>int64 int64_value = 1;</code>
624+
*
625+
* @return Whether the int64Value field is set.
626+
*/
627+
public boolean hasInt64Value() {
628+
return oneValueCase_ == 1;
629+
}
586630
/**
587631
*
588632
*
@@ -638,6 +682,20 @@ public Builder clearInt64Value() {
638682
return this;
639683
}
640684

685+
/**
686+
*
687+
*
688+
* <pre>
689+
* Double value
690+
* </pre>
691+
*
692+
* <code>double double_value = 2;</code>
693+
*
694+
* @return Whether the doubleValue field is set.
695+
*/
696+
public boolean hasDoubleValue() {
697+
return oneValueCase_ == 2;
698+
}
641699
/**
642700
*
643701
*

proto-google-analytics-data-v1alpha/src/main/java/com/google/analytics/data/v1alpha/NumericValueOrBuilder.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ public interface NumericValueOrBuilder
2323
// @@protoc_insertion_point(interface_extends:google.analytics.data.v1alpha.NumericValue)
2424
com.google.protobuf.MessageOrBuilder {
2525

26+
/**
27+
*
28+
*
29+
* <pre>
30+
* Integer value
31+
* </pre>
32+
*
33+
* <code>int64 int64_value = 1;</code>
34+
*
35+
* @return Whether the int64Value field is set.
36+
*/
37+
boolean hasInt64Value();
2638
/**
2739
*
2840
*
@@ -36,6 +48,18 @@ public interface NumericValueOrBuilder
3648
*/
3749
long getInt64Value();
3850

51+
/**
52+
*
53+
*
54+
* <pre>
55+
* Double value
56+
* </pre>
57+
*
58+
* <code>double double_value = 2;</code>
59+
*
60+
* @return Whether the doubleValue field is set.
61+
*/
62+
boolean hasDoubleValue();
3963
/**
4064
*
4165
*

proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValue.java

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,20 @@ public OneValueCase getOneValueCase() {
154154
}
155155

156156
public static final int VALUE_FIELD_NUMBER = 1;
157+
/**
158+
*
159+
*
160+
* <pre>
161+
* Value as a string if the dimension type is a string.
162+
* </pre>
163+
*
164+
* <code>string value = 1;</code>
165+
*
166+
* @return Whether the value field is set.
167+
*/
168+
public boolean hasValue() {
169+
return oneValueCase_ == 1;
170+
}
157171
/**
158172
*
159173
*
@@ -565,6 +579,21 @@ public Builder clearOneValue() {
565579
return this;
566580
}
567581

582+
/**
583+
*
584+
*
585+
* <pre>
586+
* Value as a string if the dimension type is a string.
587+
* </pre>
588+
*
589+
* <code>string value = 1;</code>
590+
*
591+
* @return Whether the value field is set.
592+
*/
593+
@java.lang.Override
594+
public boolean hasValue() {
595+
return oneValueCase_ == 1;
596+
}
568597
/**
569598
*
570599
*

proto-google-analytics-data-v1beta/src/main/java/com/google/analytics/data/v1beta/DimensionValueOrBuilder.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ public interface DimensionValueOrBuilder
2323
// @@protoc_insertion_point(interface_extends:google.analytics.data.v1beta.DimensionValue)
2424
com.google.protobuf.MessageOrBuilder {
2525

26+
/**
27+
*
28+
*
29+
* <pre>
30+
* Value as a string if the dimension type is a string.
31+
* </pre>
32+
*
33+
* <code>string value = 1;</code>
34+
*
35+
* @return Whether the value field is set.
36+
*/
37+
boolean hasValue();
2638
/**
2739
*
2840
*

0 commit comments

Comments
 (0)