google-apis-bigquery_v2 0.53.0 → 0.55.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4fe69e579edffe20b9886e0bd671ac9e45f589643c403997c142e043554c6086
4
- data.tar.gz: 74bb33689f38b35f38707965e504f1dae641a1c95d8481e923f9865e250d0038
3
+ metadata.gz: 25d8500f82cbfb24ff98b21a820001c2350115e69735b53b9105ffce817abf37
4
+ data.tar.gz: fd3558fc9eb0ee8372c6fa94754c0d40fa711c28f35be23111c45c99966e946a
5
5
  SHA512:
6
- metadata.gz: f98afb802ca7e0a096cfe4aeaec8151a39af74d8268aa4d3644e68f562a0eaf1dfb2fbe54336a5feb6b9398a93cf5e6dbd0f51e46d61b1491e1b164f8f2fa2c7
7
- data.tar.gz: 2bb0db79449824cabd92e5dc8e8d42bbd9b5638b5fc9992e21e8be228f99e0628dccf25449781a5a62018f80b0edacbd3eb5acc8cdc727313262ad61f81a2d39
6
+ metadata.gz: 0b67ce265711b5c31170a8f5ab7c41ea52650e9f4d2f7ef00bbb330b76e08b08e10310edacc5abb52c083cb4c4acc060068fb5f028830d7868ad49cb192512c7
7
+ data.tar.gz: 29d8df277a6c9078070bb9ef3170b2deba2d2e129cbec1c45ca79b3bfa59c428447407b2b0ad92883ea907d10dcba33893a9f5f33cf1685a7ebb485f192f9f4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.55.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230617
6
+
7
+ ### v0.54.0 (2023-05-28)
8
+
9
+ * Regenerated from discovery document revision 20230520
10
+
3
11
  ### v0.53.0 (2023-05-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20230506
@@ -2178,7 +2178,7 @@ module Google
2178
2178
  class EncryptionConfiguration
2179
2179
  include Google::Apis::Core::Hashable
2180
2180
 
2181
- # [Optional] Describes the Cloud KMS encryption key that will be used to protect
2181
+ # Optional. Describes the Cloud KMS encryption key that will be used to protect
2182
2182
  # destination BigQuery table. The BigQuery Service Account associated with your
2183
2183
  # project requires access to this encryption key.
2184
2184
  # Corresponds to the JSON property `kmsKeyName`
@@ -2676,6 +2676,14 @@ module Google
2676
2676
  # @return [Array<String>]
2677
2677
  attr_accessor :decimal_target_types
2678
2678
 
2679
+ # [Optional] Specifies how source URIs are interpreted for constructing the file
2680
+ # set to load. By default source URIs are expanded against the underlying
2681
+ # storage. Other options include specifying manifest files. Only applicable to
2682
+ # object storage systems.
2683
+ # Corresponds to the JSON property `fileSetSpecType`
2684
+ # @return [String]
2685
+ attr_accessor :file_set_spec_type
2686
+
2679
2687
  # [Optional] Additional options if sourceFormat is set to GOOGLE_SHEETS.
2680
2688
  # Corresponds to the JSON property `googleSheetsOptions`
2681
2689
  # @return [Google::Apis::BigqueryV2::GoogleSheetsOptions]
@@ -2700,6 +2708,12 @@ module Google
2700
2708
  attr_accessor :ignore_unknown_values
2701
2709
  alias_method :ignore_unknown_values?, :ignore_unknown_values
2702
2710
 
2711
+ # Additional properties to set if `sourceFormat` is set to `
2712
+ # NEWLINE_DELIMITED_JSON`.
2713
+ # Corresponds to the JSON property `jsonOptions`
2714
+ # @return [Google::Apis::BigqueryV2::JsonOptions]
2715
+ attr_accessor :json_options
2716
+
2703
2717
  # [Optional] The maximum number of bad records that BigQuery can ignore when
2704
2718
  # reading data. If the number of bad records exceeds this value, an invalid
2705
2719
  # error is returned in the job result. This is only valid for CSV, JSON, and
@@ -2775,9 +2789,11 @@ module Google
2775
2789
  @connection_id = args[:connection_id] if args.key?(:connection_id)
2776
2790
  @csv_options = args[:csv_options] if args.key?(:csv_options)
2777
2791
  @decimal_target_types = args[:decimal_target_types] if args.key?(:decimal_target_types)
2792
+ @file_set_spec_type = args[:file_set_spec_type] if args.key?(:file_set_spec_type)
2778
2793
  @google_sheets_options = args[:google_sheets_options] if args.key?(:google_sheets_options)
2779
2794
  @hive_partitioning_options = args[:hive_partitioning_options] if args.key?(:hive_partitioning_options)
2780
2795
  @ignore_unknown_values = args[:ignore_unknown_values] if args.key?(:ignore_unknown_values)
2796
+ @json_options = args[:json_options] if args.key?(:json_options)
2781
2797
  @max_bad_records = args[:max_bad_records] if args.key?(:max_bad_records)
2782
2798
  @metadata_cache_mode = args[:metadata_cache_mode] if args.key?(:metadata_cache_mode)
2783
2799
  @object_metadata = args[:object_metadata] if args.key?(:object_metadata)
@@ -3893,6 +3909,14 @@ module Google
3893
3909
  # @return [String]
3894
3910
  attr_accessor :field_delimiter
3895
3911
 
3912
+ # [Optional] Specifies how source URIs are interpreted for constructing the file
3913
+ # set to load. By default source URIs are expanded against the underlying
3914
+ # storage. Other options include specifying manifest files. Only applicable to
3915
+ # object storage systems.
3916
+ # Corresponds to the JSON property `fileSetSpecType`
3917
+ # @return [String]
3918
+ attr_accessor :file_set_spec_type
3919
+
3896
3920
  # [Optional] Options to configure hive partitioning support.
3897
3921
  # Corresponds to the JSON property `hivePartitioningOptions`
3898
3922
  # @return [Google::Apis::BigqueryV2::HivePartitioningOptions]
@@ -4083,6 +4107,7 @@ module Google
4083
4107
  @destination_table_properties = args[:destination_table_properties] if args.key?(:destination_table_properties)
4084
4108
  @encoding = args[:encoding] if args.key?(:encoding)
4085
4109
  @field_delimiter = args[:field_delimiter] if args.key?(:field_delimiter)
4110
+ @file_set_spec_type = args[:file_set_spec_type] if args.key?(:file_set_spec_type)
4086
4111
  @hive_partitioning_options = args[:hive_partitioning_options] if args.key?(:hive_partitioning_options)
4087
4112
  @ignore_unknown_values = args[:ignore_unknown_values] if args.key?(:ignore_unknown_values)
4088
4113
  @json_extension = args[:json_extension] if args.key?(:json_extension)
@@ -5126,6 +5151,26 @@ module Google
5126
5151
  end
5127
5152
  end
5128
5153
 
5154
+ #
5155
+ class JsonOptions
5156
+ include Google::Apis::Core::Hashable
5157
+
5158
+ # [Optional] The character encoding of the data. The supported values are UTF-8,
5159
+ # UTF-16BE, UTF-16LE, UTF-32BE, and UTF-32LE. The default value is UTF-8.
5160
+ # Corresponds to the JSON property `encoding`
5161
+ # @return [String]
5162
+ attr_accessor :encoding
5163
+
5164
+ def initialize(**args)
5165
+ update!(**args)
5166
+ end
5167
+
5168
+ # Update properties of this object
5169
+ def update!(**args)
5170
+ @encoding = args[:encoding] if args.key?(:encoding)
5171
+ end
5172
+ end
5173
+
5129
5174
  #
5130
5175
  class ListModelsResponse
5131
5176
  include Google::Apis::Core::Hashable
@@ -5535,18 +5580,18 @@ module Google
5535
5580
  class ModelReference
5536
5581
  include Google::Apis::Core::Hashable
5537
5582
 
5538
- # [Required] The ID of the dataset containing this model.
5583
+ # Required. The ID of the dataset containing this model.
5539
5584
  # Corresponds to the JSON property `datasetId`
5540
5585
  # @return [String]
5541
5586
  attr_accessor :dataset_id
5542
5587
 
5543
- # [Required] The ID of the model. The ID must contain only letters (a-z, A-Z),
5588
+ # Required. The ID of the model. The ID must contain only letters (a-z, A-Z),
5544
5589
  # numbers (0-9), or underscores (_). The maximum length is 1,024 characters.
5545
5590
  # Corresponds to the JSON property `modelId`
5546
5591
  # @return [String]
5547
5592
  attr_accessor :model_id
5548
5593
 
5549
- # [Required] The ID of the project containing this model.
5594
+ # Required. The ID of the project containing this model.
5550
5595
  # Corresponds to the JSON property `projectId`
5551
5596
  # @return [String]
5552
5597
  attr_accessor :project_id
@@ -6692,17 +6737,17 @@ module Google
6692
6737
  class RoutineReference
6693
6738
  include Google::Apis::Core::Hashable
6694
6739
 
6695
- # [Required] The ID of the dataset containing this routine.
6740
+ # Required. The ID of the dataset containing this routine.
6696
6741
  # Corresponds to the JSON property `datasetId`
6697
6742
  # @return [String]
6698
6743
  attr_accessor :dataset_id
6699
6744
 
6700
- # [Required] The ID of the project containing this routine.
6745
+ # Required. The ID of the project containing this routine.
6701
6746
  # Corresponds to the JSON property `projectId`
6702
6747
  # @return [String]
6703
6748
  attr_accessor :project_id
6704
6749
 
6705
- # [Required] The ID of the routine. The ID must contain only letters (a-z, A-Z),
6750
+ # Required. The ID of the routine. The ID must contain only letters (a-z, A-Z),
6706
6751
  # numbers (0-9), or underscores (_). The maximum length is 256 characters.
6707
6752
  # Corresponds to the JSON property `routineId`
6708
6753
  # @return [String]
@@ -6799,24 +6844,24 @@ module Google
6799
6844
  class RowAccessPolicyReference
6800
6845
  include Google::Apis::Core::Hashable
6801
6846
 
6802
- # [Required] The ID of the dataset containing this row access policy.
6847
+ # Required. The ID of the dataset containing this row access policy.
6803
6848
  # Corresponds to the JSON property `datasetId`
6804
6849
  # @return [String]
6805
6850
  attr_accessor :dataset_id
6806
6851
 
6807
- # [Required] The ID of the row access policy. The ID must contain only letters (
6808
- # a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256
6852
+ # Required. The ID of the row access policy. The ID must contain only letters (a-
6853
+ # z, A-Z), numbers (0-9), or underscores (_). The maximum length is 256
6809
6854
  # characters.
6810
6855
  # Corresponds to the JSON property `policyId`
6811
6856
  # @return [String]
6812
6857
  attr_accessor :policy_id
6813
6858
 
6814
- # [Required] The ID of the project containing this row access policy.
6859
+ # Required. The ID of the project containing this row access policy.
6815
6860
  # Corresponds to the JSON property `projectId`
6816
6861
  # @return [String]
6817
6862
  attr_accessor :project_id
6818
6863
 
6819
- # [Required] The ID of the table containing this row access policy.
6864
+ # Required. The ID of the table containing this row access policy.
6820
6865
  # Corresponds to the JSON property `tableId`
6821
6866
  # @return [String]
6822
6867
  attr_accessor :table_id
@@ -7707,12 +7752,12 @@ module Google
7707
7752
  include Google::Apis::Core::Hashable
7708
7753
 
7709
7754
  # [Optional] The foreign keys of the tables.
7710
- # Corresponds to the JSON property `foreign_keys`
7755
+ # Corresponds to the JSON property `foreignKeys`
7711
7756
  # @return [Array<Google::Apis::BigqueryV2::TableConstraints::ForeignKey>]
7712
7757
  attr_accessor :foreign_keys
7713
7758
 
7714
7759
  # [Optional] The primary key of the table.
7715
- # Corresponds to the JSON property `primary_key`
7760
+ # Corresponds to the JSON property `primaryKey`
7716
7761
  # @return [Google::Apis::BigqueryV2::TableConstraints::PrimaryKey]
7717
7762
  attr_accessor :primary_key
7718
7763
 
@@ -7731,7 +7776,7 @@ module Google
7731
7776
  include Google::Apis::Core::Hashable
7732
7777
 
7733
7778
  #
7734
- # Corresponds to the JSON property `column_references`
7779
+ # Corresponds to the JSON property `columnReferences`
7735
7780
  # @return [Array<Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ColumnReference>]
7736
7781
  attr_accessor :column_references
7737
7782
 
@@ -7741,7 +7786,7 @@ module Google
7741
7786
  attr_accessor :name
7742
7787
 
7743
7788
  #
7744
- # Corresponds to the JSON property `referenced_table`
7789
+ # Corresponds to the JSON property `referencedTable`
7745
7790
  # @return [Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ReferencedTable]
7746
7791
  attr_accessor :referenced_table
7747
7792
 
@@ -7761,12 +7806,12 @@ module Google
7761
7806
  include Google::Apis::Core::Hashable
7762
7807
 
7763
7808
  #
7764
- # Corresponds to the JSON property `referenced_column`
7809
+ # Corresponds to the JSON property `referencedColumn`
7765
7810
  # @return [String]
7766
7811
  attr_accessor :referenced_column
7767
7812
 
7768
7813
  #
7769
- # Corresponds to the JSON property `referencing_column`
7814
+ # Corresponds to the JSON property `referencingColumn`
7770
7815
  # @return [String]
7771
7816
  attr_accessor :referencing_column
7772
7817
 
@@ -8807,14 +8852,6 @@ module Google
8807
8852
  # @return [String]
8808
8853
  attr_accessor :optimization_strategy
8809
8854
 
8810
- # Whether to preserve the input structs in output feature names. Suppose there
8811
- # is a struct A with field b. When false (default), the output feature name is
8812
- # A_b. When true, the output feature name is A.b.
8813
- # Corresponds to the JSON property `preserveInputStructs`
8814
- # @return [Boolean]
8815
- attr_accessor :preserve_input_structs
8816
- alias_method :preserve_input_structs?, :preserve_input_structs
8817
-
8818
8855
  # Number of paths for the sampled Shapley explain method.
8819
8856
  # Corresponds to the JSON property `sampledShapleyNumPaths`
8820
8857
  # @return [Fixnum]
@@ -8951,7 +8988,6 @@ module Google
8951
8988
  @num_parallel_tree = args[:num_parallel_tree] if args.key?(:num_parallel_tree)
8952
8989
  @num_trials = args[:num_trials] if args.key?(:num_trials)
8953
8990
  @optimization_strategy = args[:optimization_strategy] if args.key?(:optimization_strategy)
8954
- @preserve_input_structs = args[:preserve_input_structs] if args.key?(:preserve_input_structs)
8955
8991
  @sampled_shapley_num_paths = args[:sampled_shapley_num_paths] if args.key?(:sampled_shapley_num_paths)
8956
8992
  @subsample = args[:subsample] if args.key?(:subsample)
8957
8993
  @tf_version = args[:tf_version] if args.key?(:tf_version)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigqueryV2
18
18
  # Version of the google-apis-bigquery_v2 gem
19
- GEM_VERSION = "0.53.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230506"
25
+ REVISION = "20230617"
26
26
  end
27
27
  end
28
28
  end
@@ -580,6 +580,12 @@ module Google
580
580
  include Google::Apis::Core::JsonObjectSupport
581
581
  end
582
582
 
583
+ class JsonOptions
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
583
589
  class ListModelsResponse
584
590
  class Representation < Google::Apis::Core::JsonRepresentation; end
585
591
 
@@ -1715,11 +1721,14 @@ module Google
1715
1721
  property :csv_options, as: 'csvOptions', class: Google::Apis::BigqueryV2::CsvOptions, decorator: Google::Apis::BigqueryV2::CsvOptions::Representation
1716
1722
 
1717
1723
  collection :decimal_target_types, as: 'decimalTargetTypes'
1724
+ property :file_set_spec_type, as: 'fileSetSpecType'
1718
1725
  property :google_sheets_options, as: 'googleSheetsOptions', class: Google::Apis::BigqueryV2::GoogleSheetsOptions, decorator: Google::Apis::BigqueryV2::GoogleSheetsOptions::Representation
1719
1726
 
1720
1727
  property :hive_partitioning_options, as: 'hivePartitioningOptions', class: Google::Apis::BigqueryV2::HivePartitioningOptions, decorator: Google::Apis::BigqueryV2::HivePartitioningOptions::Representation
1721
1728
 
1722
1729
  property :ignore_unknown_values, as: 'ignoreUnknownValues'
1730
+ property :json_options, as: 'jsonOptions', class: Google::Apis::BigqueryV2::JsonOptions, decorator: Google::Apis::BigqueryV2::JsonOptions::Representation
1731
+
1723
1732
  property :max_bad_records, as: 'maxBadRecords'
1724
1733
  property :metadata_cache_mode, as: 'metadataCacheMode'
1725
1734
  property :object_metadata, as: 'objectMetadata'
@@ -2030,6 +2039,7 @@ module Google
2030
2039
 
2031
2040
  property :encoding, as: 'encoding'
2032
2041
  property :field_delimiter, as: 'fieldDelimiter'
2042
+ property :file_set_spec_type, as: 'fileSetSpecType'
2033
2043
  property :hive_partitioning_options, as: 'hivePartitioningOptions', class: Google::Apis::BigqueryV2::HivePartitioningOptions, decorator: Google::Apis::BigqueryV2::HivePartitioningOptions::Representation
2034
2044
 
2035
2045
  property :ignore_unknown_values, as: 'ignoreUnknownValues'
@@ -2305,6 +2315,13 @@ module Google
2305
2315
  end
2306
2316
  end
2307
2317
 
2318
+ class JsonOptions
2319
+ # @private
2320
+ class Representation < Google::Apis::Core::JsonRepresentation
2321
+ property :encoding, as: 'encoding'
2322
+ end
2323
+ end
2324
+
2308
2325
  class ListModelsResponse
2309
2326
  # @private
2310
2327
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2949,27 +2966,27 @@ module Google
2949
2966
  class TableConstraints
2950
2967
  # @private
2951
2968
  class Representation < Google::Apis::Core::JsonRepresentation
2952
- collection :foreign_keys, as: 'foreign_keys', class: Google::Apis::BigqueryV2::TableConstraints::ForeignKey, decorator: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::Representation
2969
+ collection :foreign_keys, as: 'foreignKeys', class: Google::Apis::BigqueryV2::TableConstraints::ForeignKey, decorator: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::Representation
2953
2970
 
2954
- property :primary_key, as: 'primary_key', class: Google::Apis::BigqueryV2::TableConstraints::PrimaryKey, decorator: Google::Apis::BigqueryV2::TableConstraints::PrimaryKey::Representation
2971
+ property :primary_key, as: 'primaryKey', class: Google::Apis::BigqueryV2::TableConstraints::PrimaryKey, decorator: Google::Apis::BigqueryV2::TableConstraints::PrimaryKey::Representation
2955
2972
 
2956
2973
  end
2957
2974
 
2958
2975
  class ForeignKey
2959
2976
  # @private
2960
2977
  class Representation < Google::Apis::Core::JsonRepresentation
2961
- collection :column_references, as: 'column_references', class: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ColumnReference, decorator: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ColumnReference::Representation
2978
+ collection :column_references, as: 'columnReferences', class: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ColumnReference, decorator: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ColumnReference::Representation
2962
2979
 
2963
2980
  property :name, as: 'name'
2964
- property :referenced_table, as: 'referenced_table', class: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ReferencedTable, decorator: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ReferencedTable::Representation
2981
+ property :referenced_table, as: 'referencedTable', class: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ReferencedTable, decorator: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ReferencedTable::Representation
2965
2982
 
2966
2983
  end
2967
2984
 
2968
2985
  class ColumnReference
2969
2986
  # @private
2970
2987
  class Representation < Google::Apis::Core::JsonRepresentation
2971
- property :referenced_column, as: 'referenced_column'
2972
- property :referencing_column, as: 'referencing_column'
2988
+ property :referenced_column, as: 'referencedColumn'
2989
+ property :referencing_column, as: 'referencingColumn'
2973
2990
  end
2974
2991
  end
2975
2992
 
@@ -3229,7 +3246,6 @@ module Google
3229
3246
  property :num_parallel_tree, :numeric_string => true, as: 'numParallelTree'
3230
3247
  property :num_trials, :numeric_string => true, as: 'numTrials'
3231
3248
  property :optimization_strategy, as: 'optimizationStrategy'
3232
- property :preserve_input_structs, as: 'preserveInputStructs'
3233
3249
  property :sampled_shapley_num_paths, :numeric_string => true, as: 'sampledShapleyNumPaths'
3234
3250
  property :subsample, as: 'subsample'
3235
3251
  property :tf_version, as: 'tfVersion'
@@ -982,9 +982,9 @@ module Google
982
982
  # @param [String] dataset_id
983
983
  # Required. Dataset ID of the routines to list
984
984
  # @param [String] filter
985
- # If set, then only the Routines matching this filter are returned. The current
986
- # supported form is either "routine_type:" or "routineType:", where is a
987
- # RoutineType enum. Example: "routineType:SCALAR_FUNCTION".
985
+ # If set, then only the Routines matching this filter are returned. The
986
+ # supported format is `routineType:`RoutineType``, where ``RoutineType`` is a
987
+ # RoutineType enum. For example: `routineType:SCALAR_FUNCTION`.
988
988
  # @param [Fixnum] max_results
989
989
  # The maximum number of results to return in a single response page. Leverage
990
990
  # the page tokens to iterate through the entire collection.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquery_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.0
4
+ version: 0.55.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-21 00:00:00.000000000 Z
11
+ date: 2023-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.53.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.55.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
63
63
  post_install_message:
64
64
  rdoc_options: []