google-apis-bigquery_v2 0.48.0 → 0.49.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: 050ec5de859ea2fe3d643055fbde1fa75a1f3d5b49cedad7fe1cd4eff4936d2c
4
- data.tar.gz: 3492e6a7675b2fc2654a975f2c8dfd2fd2a2acad048ddc03a47b1aa574e5bce3
3
+ metadata.gz: 43cff4a870f25e5a1982a90dda77d94ec2a1b333ffac08c0d54a89eeeb97f17b
4
+ data.tar.gz: e47d5466b325b2c675a97fd26ed95ddf0ef55f78801fd929c30fb53688d0de6f
5
5
  SHA512:
6
- metadata.gz: 7227554c135ae8930aef73a5dbc459d3c06b0e2dfbda805d676c0991f907c35e7f8daa0ed61578b5f1a8842c493c5792546a3ad22e97a8b17d3298b894b4e009
7
- data.tar.gz: be8f7514a94e0d1f8f6aad25f4345b1708f5238f34bf9a3478b251c77d4ae1c1b1bb56845122e93005c7abc61e9030a20936d1dca6714bd5c8753521079e9e60
6
+ metadata.gz: 37e0eb924ea2413cb6599a6a0573908563689bc7e92a4ad63d6b49dd022a21035de192c7364593b047147dee1c21cc1c312cbd2a6161bfd21829f8c8d515cd85
7
+ data.tar.gz: ec277bc27295326d3e5275ca4f3d44b86ac4852a8e7a4a2a43d4aecf2c3c5b4ebf135e5460b1a64e4056ea5cfce2671e0ffcea909c396002720f9bcf2343f195
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.49.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230311
6
+
3
7
  ### v0.48.0 (2023-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230210
@@ -4122,6 +4122,13 @@ module Google
4122
4122
  # @return [Array<Google::Apis::BigqueryV2::ConnectionProperty>]
4123
4123
  attr_accessor :connection_properties
4124
4124
 
4125
+ # [Optional] Specifies whether the query should be executed as a continuous
4126
+ # query. The default value is false.
4127
+ # Corresponds to the JSON property `continuous`
4128
+ # @return [Boolean]
4129
+ attr_accessor :continuous
4130
+ alias_method :continuous?, :continuous
4131
+
4125
4132
  # [Optional] Specifies whether the job is allowed to create new tables. The
4126
4133
  # following values are supported: CREATE_IF_NEEDED: If the table does not exist,
4127
4134
  # BigQuery creates the table. CREATE_NEVER: The table must already exist. If it
@@ -4288,6 +4295,7 @@ module Google
4288
4295
  @allow_large_results = args[:allow_large_results] if args.key?(:allow_large_results)
4289
4296
  @clustering = args[:clustering] if args.key?(:clustering)
4290
4297
  @connection_properties = args[:connection_properties] if args.key?(:connection_properties)
4298
+ @continuous = args[:continuous] if args.key?(:continuous)
4291
4299
  @create_disposition = args[:create_disposition] if args.key?(:create_disposition)
4292
4300
  @create_session = args[:create_session] if args.key?(:create_session)
4293
4301
  @default_dataset = args[:default_dataset] if args.key?(:default_dataset)
@@ -5971,6 +5979,13 @@ module Google
5971
5979
  # @return [Array<Google::Apis::BigqueryV2::ConnectionProperty>]
5972
5980
  attr_accessor :connection_properties
5973
5981
 
5982
+ # [Optional] Specifies whether the query should be executed as a continuous
5983
+ # query. The default value is false.
5984
+ # Corresponds to the JSON property `continuous`
5985
+ # @return [Boolean]
5986
+ attr_accessor :continuous
5987
+ alias_method :continuous?, :continuous
5988
+
5974
5989
  # If true, creates a new session, where session id will be a server generated
5975
5990
  # random id. If false, runs query with an existing session_id passed in
5976
5991
  # ConnectionProperty, otherwise runs query in non-session mode.
@@ -6113,6 +6128,7 @@ module Google
6113
6128
  # Update properties of this object
6114
6129
  def update!(**args)
6115
6130
  @connection_properties = args[:connection_properties] if args.key?(:connection_properties)
6131
+ @continuous = args[:continuous] if args.key?(:continuous)
6116
6132
  @create_session = args[:create_session] if args.key?(:create_session)
6117
6133
  @default_dataset = args[:default_dataset] if args.key?(:default_dataset)
6118
6134
  @dry_run = args[:dry_run] if args.key?(:dry_run)
@@ -7044,6 +7060,13 @@ module Google
7044
7060
  # @return [Array<String>]
7045
7061
  attr_accessor :jar_uris
7046
7062
 
7063
+ # The fully qualified name of a class in jar_uris, for example, com.example.
7064
+ # wordcount. Exactly one of main_class and main_jar_uri field should be set for
7065
+ # Java/Scala language type.
7066
+ # Corresponds to the JSON property `mainClass`
7067
+ # @return [String]
7068
+ attr_accessor :main_class
7069
+
7047
7070
  # The main file/jar URI of the Spark application. Exactly one of the
7048
7071
  # definition_body field and the main_file_uri field must be set for Python.
7049
7072
  # Exactly one of main_class and main_file_uri field should be set for Java/Scala
@@ -7082,6 +7105,7 @@ module Google
7082
7105
  @container_image = args[:container_image] if args.key?(:container_image)
7083
7106
  @file_uris = args[:file_uris] if args.key?(:file_uris)
7084
7107
  @jar_uris = args[:jar_uris] if args.key?(:jar_uris)
7108
+ @main_class = args[:main_class] if args.key?(:main_class)
7085
7109
  @main_file_uri = args[:main_file_uri] if args.key?(:main_file_uri)
7086
7110
  @properties = args[:properties] if args.key?(:properties)
7087
7111
  @py_file_uris = args[:py_file_uris] if args.key?(:py_file_uris)
@@ -7150,8 +7174,8 @@ module Google
7150
7174
  # @return [Google::Apis::BigqueryV2::StandardSqlStructType]
7151
7175
  attr_accessor :struct_type
7152
7176
 
7153
- # Required. The top level type of this field. Can be any standard SQL data type (
7154
- # e.g., "INT64", "DATE", "ARRAY").
7177
+ # Required. The top level type of this field. Can be any GoogleSQL data type (e.
7178
+ # g., "INT64", "DATE", "ARRAY").
7155
7179
  # Corresponds to the JSON property `typeKind`
7156
7180
  # @return [String]
7157
7181
  attr_accessor :type_kind
@@ -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.48.0"
19
+ GEM_VERSION = "0.49.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 = "20230210"
25
+ REVISION = "20230311"
26
26
  end
27
27
  end
28
28
  end
@@ -2030,6 +2030,7 @@ module Google
2030
2030
 
2031
2031
  collection :connection_properties, as: 'connectionProperties', class: Google::Apis::BigqueryV2::ConnectionProperty, decorator: Google::Apis::BigqueryV2::ConnectionProperty::Representation
2032
2032
 
2033
+ property :continuous, as: 'continuous'
2033
2034
  property :create_disposition, as: 'createDisposition'
2034
2035
  property :create_session, as: 'createSession'
2035
2036
  property :default_dataset, as: 'defaultDataset', class: Google::Apis::BigqueryV2::DatasetReference, decorator: Google::Apis::BigqueryV2::DatasetReference::Representation
@@ -2501,6 +2502,7 @@ module Google
2501
2502
  class Representation < Google::Apis::Core::JsonRepresentation
2502
2503
  collection :connection_properties, as: 'connectionProperties', class: Google::Apis::BigqueryV2::ConnectionProperty, decorator: Google::Apis::BigqueryV2::ConnectionProperty::Representation
2503
2504
 
2505
+ property :continuous, as: 'continuous'
2504
2506
  property :create_session, as: 'createSession'
2505
2507
  property :default_dataset, as: 'defaultDataset', class: Google::Apis::BigqueryV2::DatasetReference, decorator: Google::Apis::BigqueryV2::DatasetReference::Representation
2506
2508
 
@@ -2755,6 +2757,7 @@ module Google
2755
2757
  property :container_image, as: 'containerImage'
2756
2758
  collection :file_uris, as: 'fileUris'
2757
2759
  collection :jar_uris, as: 'jarUris'
2760
+ property :main_class, as: 'mainClass'
2758
2761
  property :main_file_uri, as: 'mainFileUri'
2759
2762
  hash :properties, as: 'properties'
2760
2763
  collection :py_file_uris, as: 'pyFileUris'
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.48.0
4
+ version: 0.49.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-02-26 00:00:00.000000000 Z
11
+ date: 2023-03-19 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.48.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.49.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: []