google-cloud-bigquery 1.35.0 → 1.35.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 403979ca0fcee3fa41911b46cd53f9f5c4f030f85610c29870fc770f41de7d03
4
- data.tar.gz: 15060d2d7351dc8e922adf77483c48ee4be7acf98bffdcb824f699920db65d7c
3
+ metadata.gz: e3c59034942c2cde710a16645bac56870987a7357de18e76fa628abc60074faf
4
+ data.tar.gz: b146e3c8b3df4c664e4d6db5180e9fdf9d2e0ff1ee6c2e658d60605e7e055493
5
5
  SHA512:
6
- metadata.gz: 6bdcdd87c1fb4dcafdb8a071fe21322fc45c3ac94a3a89617d2a576f15733e371833ee47027056081af955e7366a817aaab3eead234d1ed2098678e6ca5e225e
7
- data.tar.gz: c46e7b144f15072b10fe16bff3ccffdc54f43801a59f6760666c3cc2c2d8b8230262163de8dadb0f705271d7b27700abe1703f39fd26cd9b97d3fdd442379e61
6
+ metadata.gz: bbbbc86abb3b12976b9ec66ef8f3e634c8928c1992bb65ef34a7e6b8e68defa5ba992377bd5868f4686d8d9cd49b691c540218fc521cb4e89d5a880d9b58f2e3
7
+ data.tar.gz: debe4ae33e83ef00f1fca7542f6eefde5f3420b28bf3ff5b9f12fb68c3effa475bfdd4a6bcae723b2fb1535cc2e194406d943913bf560e3a7d358b6453747b55
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release History
2
2
 
3
+ ### 1.35.1 / 2021-09-14
4
+
5
+ #### Documentation
6
+
7
+ * Wrap character class regex in backticks
8
+
3
9
  ### 1.35.0 / 2021-08-12
4
10
 
5
11
  #### Features
@@ -69,8 +69,8 @@ module Google
69
69
  ##
70
70
  # A unique ID for this dataset, without the project name.
71
71
  #
72
- # @return [String] The ID must contain only letters (a-z, A-Z), numbers
73
- # (0-9), or underscores (_). The maximum length is 1,024 characters.
72
+ # @return [String] The ID must contain only letters (`[A-Za-z]`), numbers
73
+ # (`[0-9]`), or underscores (`_`). The maximum length is 1,024 characters.
74
74
  #
75
75
  # @!group Attributes
76
76
  #
@@ -501,7 +501,7 @@ module Google
501
501
  # you can pass the table's schema as a hash (see example.)
502
502
  #
503
503
  # @param [String] table_id The ID of the table. The ID must contain only
504
- # letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum
504
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`). The maximum
505
505
  # length is 1,024 characters.
506
506
  # @param [String] name A descriptive name for the table.
507
507
  # @param [String] description A user-friendly description of the table.
@@ -630,7 +630,7 @@ module Google
630
630
  # @see https://cloud.google.com/bigquery/docs/views Creating views
631
631
  #
632
632
  # @param [String] table_id The ID of the view table. The ID must contain
633
- # only letters (a-z, A-Z), numbers (0-9), or underscores (_). The
633
+ # only letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`). The
634
634
  # maximum length is 1,024 characters.
635
635
  # @param [String] query The query that BigQuery executes when the view
636
636
  # is referenced.
@@ -726,8 +726,8 @@ module Google
726
726
  #
727
727
  # @see https://cloud.google.com/bigquery/docs/materialized-views-intro Introduction to materialized views
728
728
  #
729
- # @param [String] table_id The ID of the materialized view table. The ID must contain only letters (a-z, A-Z),
730
- # numbers (0-9), or underscores (_). The maximum length is 1,024 characters.
729
+ # @param [String] table_id The ID of the materialized view table. The ID must contain only letters (`[A-Za-z]`),
730
+ # numbers (`[0-9]`), or underscores (`_`). The maximum length is 1,024 characters.
731
731
  # @param [String] query The query that BigQuery executes when the materialized view is referenced.
732
732
  # @param [String] name A descriptive name for the table.
733
733
  # @param [String] description A user-friendly description of the table.
@@ -954,7 +954,7 @@ module Google
954
954
  # {Routine::Updater#description=}.
955
955
  #
956
956
  # @param [String] routine_id The ID of the routine. The ID must contain only
957
- # letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length
957
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`). The maximum length
958
958
  # is 256 characters.
959
959
  # @yield [routine] A block for setting properties on the routine.
960
960
  # @yieldparam [Google::Cloud::Bigquery::Routine::Updater] routine An updater to set additional properties on the
@@ -1249,8 +1249,8 @@ module Google
1249
1249
  # (without incurring a charge). Optional. If unspecified, this will be
1250
1250
  # set to your project default.
1251
1251
  # @param [String] job_id A user-defined ID for the query job. The ID
1252
- # must contain only letters (a-z, A-Z), numbers (0-9), underscores
1253
- # (_), or dashes (-). The maximum length is 1,024 characters. If
1252
+ # must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), underscores
1253
+ # (`_`), or dashes (`-`). The maximum length is 1,024 characters. If
1254
1254
  # `job_id` is provided, then `prefix` will not be used.
1255
1255
  #
1256
1256
  # See [Generating a job
@@ -1259,8 +1259,8 @@ module Google
1259
1259
  # prepended to a generated value to produce a unique job ID. For
1260
1260
  # example, the prefix `daily_import_job_` can be given to generate a
1261
1261
  # job ID such as `daily_import_job_12vEDtMQ0mbp1Mo5Z7mzAFQJZazh`. The
1262
- # prefix must contain only letters (a-z, A-Z), numbers (0-9),
1263
- # underscores (_), or dashes (-). The maximum length of the entire ID
1262
+ # prefix must contain only letters (`[A-Za-z]`), numbers (`[0-9]`),
1263
+ # underscores (`_`), or dashes (`-`). The maximum length of the entire ID
1264
1264
  # is 1,024 characters. If `job_id` is provided, then `prefix` will not
1265
1265
  # be used.
1266
1266
  # @param [Hash] labels A hash of user-provided labels associated with
@@ -1883,8 +1883,8 @@ module Google
1883
1883
  # this option. Also note that for most use cases, the block yielded by
1884
1884
  # this method is a more convenient way to configure the schema.
1885
1885
  # @param [String] job_id A user-defined ID for the load job. The ID
1886
- # must contain only letters (a-z, A-Z), numbers (0-9), underscores
1887
- # (_), or dashes (-). The maximum length is 1,024 characters. If
1886
+ # must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), underscores
1887
+ # (`_`), or dashes (`-`). The maximum length is 1,024 characters. If
1888
1888
  # `job_id` is provided, then `prefix` will not be used.
1889
1889
  #
1890
1890
  # See [Generating a job
@@ -1893,8 +1893,8 @@ module Google
1893
1893
  # prepended to a generated value to produce a unique job ID. For
1894
1894
  # example, the prefix `daily_import_job_` can be given to generate a
1895
1895
  # job ID such as `daily_import_job_12vEDtMQ0mbp1Mo5Z7mzAFQJZazh`. The
1896
- # prefix must contain only letters (a-z, A-Z), numbers (0-9),
1897
- # underscores (_), or dashes (-). The maximum length of the entire ID
1896
+ # prefix must contain only letters (`[A-Za-z]`), numbers (`[0-9]`),
1897
+ # underscores (`_`), or dashes (`-`). The maximum length of the entire ID
1898
1898
  # is 1,024 characters. If `job_id` is provided, then `prefix` will not
1899
1899
  # be used.
1900
1900
  # @param [Hash] labels A hash of user-provided labels associated with
@@ -74,8 +74,8 @@ module Google
74
74
  ##
75
75
  # The ID of the job.
76
76
  #
77
- # @return [String] The ID must contain only letters (a-z, A-Z), numbers
78
- # (0-9), underscores (_), or dashes (-). The maximum length is 1,024
77
+ # @return [String] The ID must contain only letters (`[A-Za-z]`), numbers
78
+ # (`[0-9]`), underscores (`_`), or dashes (`-`). The maximum length is 1,024
79
79
  # characters.
80
80
  #
81
81
  def job_id
@@ -744,7 +744,7 @@ module Google
744
744
  # See {Schema#string}.
745
745
  #
746
746
  # @param [String] name The field name. The name must contain only
747
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
747
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
748
748
  # start with a letter or underscore. The maximum length is 128
749
749
  # characters.
750
750
  # @param [String] description A description of the field.
@@ -778,7 +778,7 @@ module Google
778
778
  # See {Schema#integer}.
779
779
  #
780
780
  # @param [String] name The field name. The name must contain only
781
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
781
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
782
782
  # start with a letter or underscore. The maximum length is 128
783
783
  # characters.
784
784
  # @param [String] description A description of the field.
@@ -810,7 +810,7 @@ module Google
810
810
  # See {Schema#float}.
811
811
  #
812
812
  # @param [String] name The field name. The name must contain only
813
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
813
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
814
814
  # start with a letter or underscore. The maximum length is 128
815
815
  # characters.
816
816
  # @param [String] description A description of the field.
@@ -853,7 +853,7 @@ module Google
853
853
  # See {Schema#numeric}
854
854
  #
855
855
  # @param [String] name The field name. The name must contain only
856
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
856
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
857
857
  # start with a letter or underscore. The maximum length is 128
858
858
  # characters.
859
859
  # @param [String] description A description of the field.
@@ -911,7 +911,7 @@ module Google
911
911
  # See {Schema#bignumeric}
912
912
  #
913
913
  # @param [String] name The field name. The name must contain only
914
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
914
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
915
915
  # start with a letter or underscore. The maximum length is 128
916
916
  # characters.
917
917
  # @param [String] description A description of the field.
@@ -958,7 +958,7 @@ module Google
958
958
  # See {Schema#boolean}.
959
959
  #
960
960
  # @param [String] name The field name. The name must contain only
961
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
961
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
962
962
  # start with a letter or underscore. The maximum length is 128
963
963
  # characters.
964
964
  # @param [String] description A description of the field.
@@ -990,7 +990,7 @@ module Google
990
990
  # See {Schema#bytes}.
991
991
  #
992
992
  # @param [String] name The field name. The name must contain only
993
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
993
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
994
994
  # start with a letter or underscore. The maximum length is 128
995
995
  # characters.
996
996
  # @param [String] description A description of the field.
@@ -1024,7 +1024,7 @@ module Google
1024
1024
  # See {Schema#timestamp}.
1025
1025
  #
1026
1026
  # @param [String] name The field name. The name must contain only
1027
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
1027
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
1028
1028
  # start with a letter or underscore. The maximum length is 128
1029
1029
  # characters.
1030
1030
  # @param [String] description A description of the field.
@@ -1056,7 +1056,7 @@ module Google
1056
1056
  # See {Schema#time}.
1057
1057
  #
1058
1058
  # @param [String] name The field name. The name must contain only
1059
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
1059
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
1060
1060
  # start with a letter or underscore. The maximum length is 128
1061
1061
  # characters.
1062
1062
  # @param [String] description A description of the field.
@@ -1088,7 +1088,7 @@ module Google
1088
1088
  # See {Schema#datetime}.
1089
1089
  #
1090
1090
  # @param [String] name The field name. The name must contain only
1091
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
1091
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
1092
1092
  # start with a letter or underscore. The maximum length is 128
1093
1093
  # characters.
1094
1094
  # @param [String] description A description of the field.
@@ -1120,7 +1120,7 @@ module Google
1120
1120
  # See {Schema#date}.
1121
1121
  #
1122
1122
  # @param [String] name The field name. The name must contain only
1123
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
1123
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
1124
1124
  # start with a letter or underscore. The maximum length is 128
1125
1125
  # characters.
1126
1126
  # @param [String] description A description of the field.
@@ -1154,7 +1154,7 @@ module Google
1154
1154
  # @see https://cloud.google.com/bigquery/docs/gis-data Working with BigQuery GIS data
1155
1155
  #
1156
1156
  # @param [String] name The field name. The name must contain only
1157
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
1157
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
1158
1158
  # start with a letter or underscore. The maximum length is 128
1159
1159
  # characters.
1160
1160
  # @param [String] description A description of the field.
@@ -1192,7 +1192,7 @@ module Google
1192
1192
  # See {Schema#record}.
1193
1193
  #
1194
1194
  # @param [String] name The field name. The name must contain only
1195
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
1195
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
1196
1196
  # start with a letter or underscore. The maximum length is 128
1197
1197
  # characters.
1198
1198
  # @param [String] description A description of the field.
@@ -87,8 +87,8 @@ module Google
87
87
  ##
88
88
  # A unique ID for this model.
89
89
  #
90
- # @return [String] The ID must contain only letters (a-z, A-Z), numbers
91
- # (0-9), or underscores (_). The maximum length is 1,024 characters.
90
+ # @return [String] The ID must contain only letters (`[A-Za-z]`), numbers
91
+ # (`[0-9]`), or underscores (`_`). The maximum length is 1,024 characters.
92
92
  #
93
93
  # @!group Attributes
94
94
  #
@@ -100,8 +100,8 @@ module Google
100
100
  ##
101
101
  # The ID of the `Dataset` containing this model.
102
102
  #
103
- # @return [String] The ID must contain only letters (a-z, A-Z), numbers
104
- # (0-9), or underscores (_). The maximum length is 1,024 characters.
103
+ # @return [String] The ID must contain only letters (`[A-Za-z]`), numbers
104
+ # (`[0-9]`), or underscores (`_`). The maximum length is 1,024 characters.
105
105
  #
106
106
  # @!group Attributes
107
107
  #
@@ -515,8 +515,8 @@ module Google
515
515
  # * `ml_tf_saved_model` - TensorFlow SavedModel
516
516
  # * `ml_xgboost_booster` - XGBoost Booster
517
517
  # @param [String] job_id A user-defined ID for the extract job. The ID
518
- # must contain only letters (a-z, A-Z), numbers (0-9), underscores
519
- # (_), or dashes (-). The maximum length is 1,024 characters. If
518
+ # must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), underscores
519
+ # (`_`), or dashes (`-`). The maximum length is 1,024 characters. If
520
520
  # `job_id` is provided, then `prefix` will not be used.
521
521
  #
522
522
  # See [Generating a job
@@ -525,8 +525,8 @@ module Google
525
525
  # prepended to a generated value to produce a unique job ID. For
526
526
  # example, the prefix `daily_import_job_` can be given to generate a
527
527
  # job ID such as `daily_import_job_12vEDtMQ0mbp1Mo5Z7mzAFQJZazh`. The
528
- # prefix must contain only letters (a-z, A-Z), numbers (0-9),
529
- # underscores (_), or dashes (-). The maximum length of the entire ID
528
+ # prefix must contain only letters (`[A-Za-z]`), numbers (`[0-9]`),
529
+ # underscores (`_`), or dashes (`-`). The maximum length of the entire ID
530
530
  # is 1,024 characters. If `job_id` is provided, then `prefix` will not
531
531
  # be used.
532
532
  # @param [Hash] labels A hash of user-provided labels associated with
@@ -139,8 +139,8 @@ module Google
139
139
  # * `empty` - An error will be returned if the destination table
140
140
  # already contains data.
141
141
  # @param [String] job_id A user-defined ID for the copy job. The ID
142
- # must contain only letters (a-z, A-Z), numbers (0-9), underscores
143
- # (_), or dashes (-). The maximum length is 1,024 characters. If
142
+ # must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), underscores
143
+ # (`_`), or dashes (`-`). The maximum length is 1,024 characters. If
144
144
  # `job_id` is provided, then `prefix` will not be used.
145
145
  #
146
146
  # See [Generating a job
@@ -149,8 +149,8 @@ module Google
149
149
  # prepended to a generated value to produce a unique job ID. For
150
150
  # example, the prefix `daily_import_job_` can be given to generate a
151
151
  # job ID such as `daily_import_job_12vEDtMQ0mbp1Mo5Z7mzAFQJZazh`. The
152
- # prefix must contain only letters (a-z, A-Z), numbers (0-9),
153
- # underscores (_), or dashes (-). The maximum length of the entire ID
152
+ # prefix must contain only letters (`[A-Za-z]`), numbers (`[0-9]`),
153
+ # underscores (`_`), or dashes (`-`). The maximum length of the entire ID
154
154
  # is 1,024 characters. If `job_id` is provided, then `prefix` will not
155
155
  # be used.
156
156
  # @param [Hash] labels A hash of user-provided labels associated with
@@ -407,8 +407,8 @@ module Google
407
407
  # (without incurring a charge). Optional. If unspecified, this will be
408
408
  # set to your project default.
409
409
  # @param [String] job_id A user-defined ID for the query job. The ID
410
- # must contain only letters (a-z, A-Z), numbers (0-9), underscores
411
- # (_), or dashes (-). The maximum length is 1,024 characters. If
410
+ # must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), underscores
411
+ # (`_`), or dashes (`-`). The maximum length is 1,024 characters. If
412
412
  # `job_id` is provided, then `prefix` will not be used.
413
413
  #
414
414
  # See [Generating a job
@@ -417,8 +417,8 @@ module Google
417
417
  # prepended to a generated value to produce a unique job ID. For
418
418
  # example, the prefix `daily_import_job_` can be given to generate a
419
419
  # job ID such as `daily_import_job_12vEDtMQ0mbp1Mo5Z7mzAFQJZazh`. The
420
- # prefix must contain only letters (a-z, A-Z), numbers (0-9),
421
- # underscores (_), or dashes (-). The maximum length of the entire ID
420
+ # prefix must contain only letters (`[A-Za-z]`), numbers (`[0-9]`),
421
+ # underscores (`_`), or dashes (`-`). The maximum length of the entire ID
422
422
  # is 1,024 characters. If `job_id` is provided, then `prefix` will not
423
423
  # be used.
424
424
  #
@@ -986,8 +986,8 @@ module Google
986
986
  # Creates a new dataset.
987
987
  #
988
988
  # @param [String] dataset_id A unique ID for this dataset, without the
989
- # project name. The ID must contain only letters (a-z, A-Z), numbers
990
- # (0-9), or underscores (_). The maximum length is 1,024 characters.
989
+ # project name. The ID must contain only letters (`[A-Za-z]`), numbers
990
+ # (`[0-9]`), or underscores (`_`). The maximum length is 1,024 characters.
991
991
  # @param [String] name A descriptive name for the dataset.
992
992
  # @param [String] description A user-friendly description of the
993
993
  # dataset.
@@ -1524,8 +1524,8 @@ module Google
1524
1524
  # @param [Boolean] header Whether to print out a header row in table
1525
1525
  # exports. Default is `true`. Not applicable when extracting models.
1526
1526
  # @param [String] job_id A user-defined ID for the extract job. The ID
1527
- # must contain only letters (a-z, A-Z), numbers (0-9), underscores
1528
- # (_), or dashes (-). The maximum length is 1,024 characters. If
1527
+ # must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), underscores
1528
+ # (`_`), or dashes (`-`). The maximum length is 1,024 characters. If
1529
1529
  # `job_id` is provided, then `prefix` will not be used.
1530
1530
  #
1531
1531
  # See [Generating a job
@@ -1534,8 +1534,8 @@ module Google
1534
1534
  # prepended to a generated value to produce a unique job ID. For
1535
1535
  # example, the prefix `daily_import_job_` can be given to generate a
1536
1536
  # job ID such as `daily_import_job_12vEDtMQ0mbp1Mo5Z7mzAFQJZazh`. The
1537
- # prefix must contain only letters (a-z, A-Z), numbers (0-9),
1538
- # underscores (_), or dashes (-). The maximum length of the entire ID
1537
+ # prefix must contain only letters (`[A-Za-z]`), numbers (`[0-9]`),
1538
+ # underscores (`_`), or dashes (`-`). The maximum length of the entire ID
1539
1539
  # is 1,024 characters. If `job_id` is provided, then `prefix` will not
1540
1540
  # be used.
1541
1541
  # @param [Hash] labels A hash of user-provided labels associated with
@@ -116,8 +116,8 @@ module Google
116
116
  ##
117
117
  # A unique ID for this routine, without the project name.
118
118
  #
119
- # @return [String] The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum
120
- # length is 256 characters.
119
+ # @return [String] The ID must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`). The
120
+ # maximum length is 256 characters.
121
121
  #
122
122
  # @!group Attributes
123
123
  #
@@ -64,7 +64,7 @@ module Google
64
64
  # The name of the field.
65
65
  #
66
66
  # @return [String] The field name. The name must contain only
67
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
67
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
68
68
  # start with a letter or underscore. The maximum length is 128
69
69
  # characters.
70
70
  #
@@ -76,7 +76,7 @@ module Google
76
76
  # Updates the name of the field.
77
77
  #
78
78
  # @param [String] new_name The field name. The name must contain only
79
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
79
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
80
80
  # start with a letter or underscore. The maximum length is 128
81
81
  # characters.
82
82
  #
@@ -495,7 +495,7 @@ module Google
495
495
  # This can only be called on fields that are of type `RECORD`.
496
496
  #
497
497
  # @param [String] name The field name. The name must contain only
498
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
498
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
499
499
  # start with a letter or underscore. The maximum length is 128
500
500
  # characters.
501
501
  # @param [String] description A description of the field.
@@ -526,7 +526,7 @@ module Google
526
526
  # This can only be called on fields that are of type `RECORD`.
527
527
  #
528
528
  # @param [String] name The field name. The name must contain only
529
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
529
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
530
530
  # start with a letter or underscore. The maximum length is 128
531
531
  # characters.
532
532
  # @param [String] description A description of the field.
@@ -551,7 +551,7 @@ module Google
551
551
  # This can only be called on fields that are of type `RECORD`.
552
552
  #
553
553
  # @param [String] name The field name. The name must contain only
554
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
554
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
555
555
  # start with a letter or underscore. The maximum length is 128
556
556
  # characters.
557
557
  # @param [String] description A description of the field.
@@ -586,7 +586,7 @@ module Google
586
586
  # This can only be called on fields that are of type `RECORD`.
587
587
  #
588
588
  # @param [String] name The field name. The name must contain only
589
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
589
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
590
590
  # start with a letter or underscore. The maximum length is 128
591
591
  # characters.
592
592
  # @param [String] description A description of the field.
@@ -637,7 +637,7 @@ module Google
637
637
  # This can only be called on fields that are of type `RECORD`.
638
638
  #
639
639
  # @param [String] name The field name. The name must contain only
640
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
640
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
641
641
  # start with a letter or underscore. The maximum length is 128
642
642
  # characters.
643
643
  # @param [String] description A description of the field.
@@ -677,7 +677,7 @@ module Google
677
677
  # This can only be called on fields that are of type `RECORD`.
678
678
  #
679
679
  # @param [String] name The field name. The name must contain only
680
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
680
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
681
681
  # start with a letter or underscore. The maximum length is 128
682
682
  # characters.
683
683
  # @param [String] description A description of the field.
@@ -701,7 +701,7 @@ module Google
701
701
  # This can only be called on fields that are of type `RECORD`.
702
702
  #
703
703
  # @param [String] name The field name. The name must contain only
704
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
704
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
705
705
  # start with a letter or underscore. The maximum length is 128
706
706
  # characters.
707
707
  # @param [String] description A description of the field.
@@ -732,7 +732,7 @@ module Google
732
732
  # This can only be called on fields that are of type `RECORD`.
733
733
  #
734
734
  # @param [String] name The field name. The name must contain only
735
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
735
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
736
736
  # start with a letter or underscore. The maximum length is 128
737
737
  # characters.
738
738
  # @param [String] description A description of the field.
@@ -756,7 +756,7 @@ module Google
756
756
  # This can only be called on fields that are of type `RECORD`.
757
757
  #
758
758
  # @param [String] name The field name. The name must contain only
759
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
759
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
760
760
  # start with a letter or underscore. The maximum length is 128
761
761
  # characters.
762
762
  # @param [String] description A description of the field.
@@ -780,7 +780,7 @@ module Google
780
780
  # This can only be called on fields that are of type `RECORD`.
781
781
  #
782
782
  # @param [String] name The field name. The name must contain only
783
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
783
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
784
784
  # start with a letter or underscore. The maximum length is 128
785
785
  # characters.
786
786
  # @param [String] description A description of the field.
@@ -804,7 +804,7 @@ module Google
804
804
  # This can only be called on fields that are of type `RECORD`.
805
805
  #
806
806
  # @param [String] name The field name. The name must contain only
807
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
807
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
808
808
  # start with a letter or underscore. The maximum length is 128
809
809
  # characters.
810
810
  # @param [String] description A description of the field.
@@ -828,7 +828,7 @@ module Google
828
828
  # @see https://cloud.google.com/bigquery/docs/gis-data Working with BigQuery GIS data
829
829
  #
830
830
  # @param [String] name The field name. The name must contain only
831
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
831
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
832
832
  # start with a letter or underscore. The maximum length is 128
833
833
  # characters.
834
834
  # @param [String] description A description of the field.
@@ -855,7 +855,7 @@ module Google
855
855
  # This can only be called on fields that are of type `RECORD`.
856
856
  #
857
857
  # @param [String] name The field name. The name must contain only
858
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
858
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
859
859
  # start with a letter or underscore. The maximum length is 128
860
860
  # characters.
861
861
  # @param [String] description A description of the field.
@@ -287,7 +287,7 @@ module Google
287
287
  # Adds a string field to the schema.
288
288
  #
289
289
  # @param [String] name The field name. The name must contain only
290
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
290
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
291
291
  # start with a letter or underscore. The maximum length is 128
292
292
  # characters.
293
293
  # @param [String] description A description of the field.
@@ -314,7 +314,7 @@ module Google
314
314
  # Adds an integer field to the schema.
315
315
  #
316
316
  # @param [String] name The field name. The name must contain only
317
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
317
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
318
318
  # start with a letter or underscore. The maximum length is 128
319
319
  # characters.
320
320
  # @param [String] description A description of the field.
@@ -334,7 +334,7 @@ module Google
334
334
  # Adds a floating-point number field to the schema.
335
335
  #
336
336
  # @param [String] name The field name. The name must contain only
337
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
337
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
338
338
  # start with a letter or underscore. The maximum length is 128
339
339
  # characters.
340
340
  # @param [String] description A description of the field.
@@ -365,7 +365,7 @@ module Google
365
365
  # for financial calculations.
366
366
  #
367
367
  # @param [String] name The field name. The name must contain only
368
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
368
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
369
369
  # start with a letter or underscore. The maximum length is 128
370
370
  # characters.
371
371
  # @param [String] description A description of the field.
@@ -412,7 +412,7 @@ module Google
412
412
  # for financial calculations.
413
413
  #
414
414
  # @param [String] name The field name. The name must contain only
415
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
415
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
416
416
  # start with a letter or underscore. The maximum length is 128
417
417
  # characters.
418
418
  # @param [String] description A description of the field.
@@ -448,7 +448,7 @@ module Google
448
448
  # Adds a boolean field to the schema.
449
449
  #
450
450
  # @param [String] name The field name. The name must contain only
451
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
451
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
452
452
  # start with a letter or underscore. The maximum length is 128
453
453
  # characters.
454
454
  # @param [String] description A description of the field.
@@ -468,7 +468,7 @@ module Google
468
468
  # Adds a bytes field to the schema.
469
469
  #
470
470
  # @param [String] name The field name. The name must contain only
471
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
471
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
472
472
  # start with a letter or underscore. The maximum length is 128
473
473
  # characters.
474
474
  # @param [String] description A description of the field.
@@ -490,7 +490,7 @@ module Google
490
490
  # Adds a timestamp field to the schema.
491
491
  #
492
492
  # @param [String] name The field name. The name must contain only
493
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
493
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
494
494
  # start with a letter or underscore. The maximum length is 128
495
495
  # characters.
496
496
  # @param [String] description A description of the field.
@@ -510,7 +510,7 @@ module Google
510
510
  # Adds a time field to the schema.
511
511
  #
512
512
  # @param [String] name The field name. The name must contain only
513
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
513
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
514
514
  # start with a letter or underscore. The maximum length is 128
515
515
  # characters.
516
516
  # @param [String] description A description of the field.
@@ -530,7 +530,7 @@ module Google
530
530
  # Adds a datetime field to the schema.
531
531
  #
532
532
  # @param [String] name The field name. The name must contain only
533
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
533
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
534
534
  # start with a letter or underscore. The maximum length is 128
535
535
  # characters.
536
536
  # @param [String] description A description of the field.
@@ -550,7 +550,7 @@ module Google
550
550
  # Adds a date field to the schema.
551
551
  #
552
552
  # @param [String] name The field name. The name must contain only
553
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
553
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
554
554
  # start with a letter or underscore. The maximum length is 128
555
555
  # characters.
556
556
  # @param [String] description A description of the field.
@@ -572,7 +572,7 @@ module Google
572
572
  # @see https://cloud.google.com/bigquery/docs/gis-data Working with BigQuery GIS data
573
573
  #
574
574
  # @param [String] name The field name. The name must contain only
575
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
575
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
576
576
  # start with a letter or underscore. The maximum length is 128
577
577
  # characters.
578
578
  # @param [String] description A description of the field.
@@ -596,7 +596,7 @@ module Google
596
596
  # ](https://cloud.google.com/bigquery/docs/loading-data#loading_denormalized_nested_and_repeated_data).
597
597
  #
598
598
  # @param [String] name The field name. The name must contain only
599
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
599
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
600
600
  # start with a letter or underscore. The maximum length is 128
601
601
  # characters.
602
602
  # @param [String] description A description of the field.
@@ -119,8 +119,8 @@ module Google
119
119
  ##
120
120
  # A unique ID for this table.
121
121
  #
122
- # @return [String] The ID must contain only letters (a-z, A-Z), numbers
123
- # (0-9), or underscores (_). The maximum length is 1,024 characters.
122
+ # @return [String] The ID must contain only letters (`[A-Za-z]`), numbers
123
+ # (`[0-9]`), or underscores (`_`). The maximum length is 1,024 characters.
124
124
  #
125
125
  # @!group Attributes
126
126
  #
@@ -132,8 +132,8 @@ module Google
132
132
  ##
133
133
  # The ID of the `Dataset` containing this table.
134
134
  #
135
- # @return [String] The ID must contain only letters (a-z, A-Z), numbers
136
- # (0-9), or underscores (_). The maximum length is 1,024 characters.
135
+ # @return [String] The ID must contain only letters (`[A-Za-z]`), numbers
136
+ # (`[0-9]`), or underscores (`_`). The maximum length is 1,024 characters.
137
137
  #
138
138
  # @!group Attributes
139
139
  #
@@ -1633,8 +1633,8 @@ module Google
1633
1633
  # * `empty` - An error will be returned if the destination table
1634
1634
  # already contains data.
1635
1635
  # @param [String] job_id A user-defined ID for the copy job. The ID
1636
- # must contain only letters (a-z, A-Z), numbers (0-9), underscores
1637
- # (_), or dashes (-). The maximum length is 1,024 characters. If
1636
+ # must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), underscores
1637
+ # (`_`), or dashes (`-`). The maximum length is 1,024 characters. If
1638
1638
  # `job_id` is provided, then `prefix` will not be used.
1639
1639
  #
1640
1640
  # See [Generating a job
@@ -1643,8 +1643,8 @@ module Google
1643
1643
  # prepended to a generated value to produce a unique job ID. For
1644
1644
  # example, the prefix `daily_import_job_` can be given to generate a
1645
1645
  # job ID such as `daily_import_job_12vEDtMQ0mbp1Mo5Z7mzAFQJZazh`. The
1646
- # prefix must contain only letters (a-z, A-Z), numbers (0-9),
1647
- # underscores (_), or dashes (-). The maximum length of the entire ID
1646
+ # prefix must contain only letters (`[A-Za-z]`), numbers (`[0-9]`),
1647
+ # underscores (`_`), or dashes (`-`). The maximum length of the entire ID
1648
1648
  # is 1,024 characters. If `job_id` is provided, then `prefix` will not
1649
1649
  # be used.
1650
1650
  # @param [Hash] labels A hash of user-provided labels associated with
@@ -1822,8 +1822,8 @@ module Google
1822
1822
  # @param [Boolean] header Whether to print out a header row in the
1823
1823
  # results. Default is `true`.
1824
1824
  # @param [String] job_id A user-defined ID for the extract job. The ID
1825
- # must contain only letters (a-z, A-Z), numbers (0-9), underscores
1826
- # (_), or dashes (-). The maximum length is 1,024 characters. If
1825
+ # must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), underscores
1826
+ # (`_`), or dashes (`-`). The maximum length is 1,024 characters. If
1827
1827
  # `job_id` is provided, then `prefix` will not be used.
1828
1828
  #
1829
1829
  # See [Generating a job
@@ -1832,8 +1832,8 @@ module Google
1832
1832
  # prepended to a generated value to produce a unique job ID. For
1833
1833
  # example, the prefix `daily_import_job_` can be given to generate a
1834
1834
  # job ID such as `daily_import_job_12vEDtMQ0mbp1Mo5Z7mzAFQJZazh`. The
1835
- # prefix must contain only letters (a-z, A-Z), numbers (0-9),
1836
- # underscores (_), or dashes (-). The maximum length of the entire ID
1835
+ # prefix must contain only letters (`[A-Za-z]`), numbers (`[0-9]`),
1836
+ # underscores (`_`), or dashes (`-`). The maximum length of the entire ID
1837
1837
  # is 1,024 characters. If `job_id` is provided, then `prefix` will not
1838
1838
  # be used.
1839
1839
  # @param [Hash] labels A hash of user-provided labels associated with
@@ -2070,8 +2070,8 @@ module Google
2070
2070
  # value is `0`. This property is useful if you have header rows in the
2071
2071
  # file that should be skipped.
2072
2072
  # @param [String] job_id A user-defined ID for the load job. The ID
2073
- # must contain only letters (a-z, A-Z), numbers (0-9), underscores
2074
- # (_), or dashes (-). The maximum length is 1,024 characters. If
2073
+ # must contain only letters (`[A-Za-z]`), numbers (`[0-9]`), underscores
2074
+ # (`_`), or dashes (`-`). The maximum length is 1,024 characters. If
2075
2075
  # `job_id` is provided, then `prefix` will not be used.
2076
2076
  #
2077
2077
  # See [Generating a job
@@ -2080,8 +2080,8 @@ module Google
2080
2080
  # prepended to a generated value to produce a unique job ID. For
2081
2081
  # example, the prefix `daily_import_job_` can be given to generate a
2082
2082
  # job ID such as `daily_import_job_12vEDtMQ0mbp1Mo5Z7mzAFQJZazh`. The
2083
- # prefix must contain only letters (a-z, A-Z), numbers (0-9),
2084
- # underscores (_), or dashes (-). The maximum length of the entire ID
2083
+ # prefix must contain only letters (`[A-Za-z]`), numbers (`[0-9]`),
2084
+ # underscores (`_`), or dashes (`-`). The maximum length of the entire ID
2085
2085
  # is 1,024 characters. If `job_id` is provided, then `prefix` will not
2086
2086
  # be used.
2087
2087
  # @param [Hash] labels A hash of user-provided labels associated with
@@ -3234,7 +3234,7 @@ module Google
3234
3234
  # See {Schema#string}.
3235
3235
  #
3236
3236
  # @param [String] name The field name. The name must contain only
3237
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3237
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3238
3238
  # start with a letter or underscore. The maximum length is 128
3239
3239
  # characters.
3240
3240
  # @param [String] description A description of the field.
@@ -3268,7 +3268,7 @@ module Google
3268
3268
  # See {Schema#integer}.
3269
3269
  #
3270
3270
  # @param [String] name The field name. The name must contain only
3271
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3271
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3272
3272
  # start with a letter or underscore. The maximum length is 128
3273
3273
  # characters.
3274
3274
  # @param [String] description A description of the field.
@@ -3300,7 +3300,7 @@ module Google
3300
3300
  # See {Schema#float}.
3301
3301
  #
3302
3302
  # @param [String] name The field name. The name must contain only
3303
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3303
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3304
3304
  # start with a letter or underscore. The maximum length is 128
3305
3305
  # characters.
3306
3306
  # @param [String] description A description of the field.
@@ -3343,7 +3343,7 @@ module Google
3343
3343
  # See {Schema#numeric}
3344
3344
  #
3345
3345
  # @param [String] name The field name. The name must contain only
3346
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3346
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3347
3347
  # start with a letter or underscore. The maximum length is 128
3348
3348
  # characters.
3349
3349
  # @param [String] description A description of the field.
@@ -3401,7 +3401,7 @@ module Google
3401
3401
  # See {Schema#bignumeric}
3402
3402
  #
3403
3403
  # @param [String] name The field name. The name must contain only
3404
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3404
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3405
3405
  # start with a letter or underscore. The maximum length is 128
3406
3406
  # characters.
3407
3407
  # @param [String] description A description of the field.
@@ -3448,7 +3448,7 @@ module Google
3448
3448
  # See {Schema#boolean}.
3449
3449
  #
3450
3450
  # @param [String] name The field name. The name must contain only
3451
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3451
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3452
3452
  # start with a letter or underscore. The maximum length is 128
3453
3453
  # characters.
3454
3454
  # @param [String] description A description of the field.
@@ -3480,7 +3480,7 @@ module Google
3480
3480
  # See {Schema#bytes}.
3481
3481
  #
3482
3482
  # @param [String] name The field name. The name must contain only
3483
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3483
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3484
3484
  # start with a letter or underscore. The maximum length is 128
3485
3485
  # characters.
3486
3486
  # @param [String] description A description of the field.
@@ -3514,7 +3514,7 @@ module Google
3514
3514
  # See {Schema#timestamp}.
3515
3515
  #
3516
3516
  # @param [String] name The field name. The name must contain only
3517
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3517
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3518
3518
  # start with a letter or underscore. The maximum length is 128
3519
3519
  # characters.
3520
3520
  # @param [String] description A description of the field.
@@ -3546,7 +3546,7 @@ module Google
3546
3546
  # See {Schema#time}.
3547
3547
  #
3548
3548
  # @param [String] name The field name. The name must contain only
3549
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3549
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3550
3550
  # start with a letter or underscore. The maximum length is 128
3551
3551
  # characters.
3552
3552
  # @param [String] description A description of the field.
@@ -3578,7 +3578,7 @@ module Google
3578
3578
  # See {Schema#datetime}.
3579
3579
  #
3580
3580
  # @param [String] name The field name. The name must contain only
3581
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3581
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3582
3582
  # start with a letter or underscore. The maximum length is 128
3583
3583
  # characters.
3584
3584
  # @param [String] description A description of the field.
@@ -3610,7 +3610,7 @@ module Google
3610
3610
  # See {Schema#date}.
3611
3611
  #
3612
3612
  # @param [String] name The field name. The name must contain only
3613
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3613
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3614
3614
  # start with a letter or underscore. The maximum length is 128
3615
3615
  # characters.
3616
3616
  # @param [String] description A description of the field.
@@ -3642,7 +3642,7 @@ module Google
3642
3642
  # @see https://cloud.google.com/bigquery/docs/gis-data Working with BigQuery GIS data
3643
3643
  #
3644
3644
  # @param [String] name The field name. The name must contain only
3645
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3645
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3646
3646
  # start with a letter or underscore. The maximum length is 128
3647
3647
  # characters.
3648
3648
  # @param [String] description A description of the field.
@@ -3677,7 +3677,7 @@ module Google
3677
3677
  # See {Schema#record}.
3678
3678
  #
3679
3679
  # @param [String] name The field name. The name must contain only
3680
- # letters (a-z, A-Z), numbers (0-9), or underscores (_), and must
3680
+ # letters (`[A-Za-z]`), numbers (`[0-9]`), or underscores (`_`), and must
3681
3681
  # start with a letter or underscore. The maximum length is 128
3682
3682
  # characters.
3683
3683
  # @param [String] description A description of the field.
@@ -16,7 +16,7 @@
16
16
  module Google
17
17
  module Cloud
18
18
  module Bigquery
19
- VERSION = "1.35.0".freeze
19
+ VERSION = "1.35.1".freeze
20
20
  end
21
21
  end
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-bigquery
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.35.0
4
+ version: 1.35.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Moore
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-08-13 00:00:00.000000000 Z
12
+ date: 2021-09-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby