google-apis-sqladmin_v1beta4 0.47.0 → 0.48.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: 6ffe6c423d3f7d8cdbd33cf210e0af73b2d7526d2c0515688d1772ef36b0c146
4
- data.tar.gz: '090c8b08a8c65705ebaa9d7d0b4f66dbcc859a556abd29bdc583bac5e86d157d'
3
+ metadata.gz: 8b710ae812d3c41ea90a3d713f24cb3b7b3ee3184f9fa014dfecda4ed05512e9
4
+ data.tar.gz: 857861fba8cd8562ab6d57d436e8e80f5e0f81bc5f4fb4a0f065ab2a759c7fec
5
5
  SHA512:
6
- metadata.gz: 57718695cdf3aa7871dec9c49cd427ef1ec6199c359b32292930618876517d462f078d23851e8bdb1e792352a2a6df35927f22d80e3e4bf19d81da5ce28e4da8
7
- data.tar.gz: 017c7c921b7a580a1c8f589da1e7c055e8e57894624252c014267bb2276aae15e039a383cf002f50a53e68234adcd21bafd9760e5d773b7957263bf17fce1600
6
+ metadata.gz: 8d8d0e27d382e741b89bb56a9036d24450d41fce64af745dd2cd8eba538971c89d2c15fcd98119468427aeb521a0dd519d8f6df619e60741e2cbabe14b2175cc
7
+ data.tar.gz: cd1ae25e9b4f0d616609da8792d60458d3f893ebfd1e432803c8e7b397dc7b4d1059492f0b06afd9f5dbf505d33c2a0ccf840886ea025d0042781646634cef90
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-sqladmin_v1beta4
2
2
 
3
+ ### v0.48.0 (2023-05-14)
4
+
5
+ * Regenerated from discovery document revision 20230505
6
+
3
7
  ### v0.47.0 (2023-04-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20230422
@@ -1253,6 +1253,26 @@ module Google
1253
1253
  class BakExportOptions
1254
1254
  include Google::Apis::Core::Hashable
1255
1255
 
1256
+ # Type of this bak file will be export, FULL or DIFF, SQL Server only
1257
+ # Corresponds to the JSON property `bakType`
1258
+ # @return [String]
1259
+ attr_accessor :bak_type
1260
+
1261
+ # Whether or not the export will be exeucted with COPY_ONLY, SQL Server only
1262
+ # deprecated as the behavior should default to copy_only = true use
1263
+ # differential_base instead
1264
+ # Corresponds to the JSON property `copyOnly`
1265
+ # @return [Boolean]
1266
+ attr_accessor :copy_only
1267
+ alias_method :copy_only?, :copy_only
1268
+
1269
+ # Whether or not the backup can be use as differential base only non copy only
1270
+ # backup can be served as differential base
1271
+ # Corresponds to the JSON property `differentialBase`
1272
+ # @return [Boolean]
1273
+ attr_accessor :differential_base
1274
+ alias_method :differential_base?, :differential_base
1275
+
1256
1276
  # Option for specifying how many stripes to use for the export. If blank, and
1257
1277
  # the value of the striped field is true, the number of stripes is automatically
1258
1278
  # chosen.
@@ -1272,6 +1292,9 @@ module Google
1272
1292
 
1273
1293
  # Update properties of this object
1274
1294
  def update!(**args)
1295
+ @bak_type = args[:bak_type] if args.key?(:bak_type)
1296
+ @copy_only = args[:copy_only] if args.key?(:copy_only)
1297
+ @differential_base = args[:differential_base] if args.key?(:differential_base)
1275
1298
  @stripe_count = args[:stripe_count] if args.key?(:stripe_count)
1276
1299
  @striped = args[:striped] if args.key?(:striped)
1277
1300
  end
@@ -1640,11 +1663,32 @@ module Google
1640
1663
  class BakImportOptions
1641
1664
  include Google::Apis::Core::Hashable
1642
1665
 
1666
+ # Type of the bak content, FULL or DIFF.
1667
+ # Corresponds to the JSON property `bakType`
1668
+ # @return [String]
1669
+ attr_accessor :bak_type
1670
+
1643
1671
  #
1644
1672
  # Corresponds to the JSON property `encryptionOptions`
1645
1673
  # @return [Google::Apis::SqladminV1beta4::ImportContext::BakImportOptions::EncryptionOptions]
1646
1674
  attr_accessor :encryption_options
1647
1675
 
1676
+ # Whether or not the backup importing will restore database with NORECOVERY
1677
+ # option Applies only to Cloud SQL for SQL Server.
1678
+ # Corresponds to the JSON property `noRecovery`
1679
+ # @return [Boolean]
1680
+ attr_accessor :no_recovery
1681
+ alias_method :no_recovery?, :no_recovery
1682
+
1683
+ # Whether or not the backup importing request will just bring database online
1684
+ # without downloading Bak content only one of "no_recovery" and "recovery_only"
1685
+ # can be true otherwise error will return. Applies only to Cloud SQL for SQL
1686
+ # Server.
1687
+ # Corresponds to the JSON property `recoveryOnly`
1688
+ # @return [Boolean]
1689
+ attr_accessor :recovery_only
1690
+ alias_method :recovery_only?, :recovery_only
1691
+
1648
1692
  # Whether or not the backup set being restored is striped. Applies only to Cloud
1649
1693
  # SQL for SQL Server.
1650
1694
  # Corresponds to the JSON property `striped`
@@ -1658,7 +1702,10 @@ module Google
1658
1702
 
1659
1703
  # Update properties of this object
1660
1704
  def update!(**args)
1705
+ @bak_type = args[:bak_type] if args.key?(:bak_type)
1661
1706
  @encryption_options = args[:encryption_options] if args.key?(:encryption_options)
1707
+ @no_recovery = args[:no_recovery] if args.key?(:no_recovery)
1708
+ @recovery_only = args[:recovery_only] if args.key?(:recovery_only)
1662
1709
  @striped = args[:striped] if args.key?(:striped)
1663
1710
  end
1664
1711
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SqladminV1beta4
18
18
  # Version of the google-apis-sqladmin_v1beta4 gem
19
- GEM_VERSION = "0.47.0"
19
+ GEM_VERSION = "0.48.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 = "20230422"
25
+ REVISION = "20230505"
26
26
  end
27
27
  end
28
28
  end
@@ -888,6 +888,9 @@ module Google
888
888
  class BakExportOptions
889
889
  # @private
890
890
  class Representation < Google::Apis::Core::JsonRepresentation
891
+ property :bak_type, as: 'bakType'
892
+ property :copy_only, as: 'copyOnly'
893
+ property :differential_base, as: 'differentialBase'
891
894
  property :stripe_count, as: 'stripeCount'
892
895
  property :striped, as: 'striped'
893
896
  end
@@ -990,8 +993,11 @@ module Google
990
993
  class BakImportOptions
991
994
  # @private
992
995
  class Representation < Google::Apis::Core::JsonRepresentation
996
+ property :bak_type, as: 'bakType'
993
997
  property :encryption_options, as: 'encryptionOptions', class: Google::Apis::SqladminV1beta4::ImportContext::BakImportOptions::EncryptionOptions, decorator: Google::Apis::SqladminV1beta4::ImportContext::BakImportOptions::EncryptionOptions::Representation
994
998
 
999
+ property :no_recovery, as: 'noRecovery'
1000
+ property :recovery_only, as: 'recoveryOnly'
995
1001
  property :striped, as: 'striped'
996
1002
  end
997
1003
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sqladmin_v1beta4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.47.0
4
+ version: 0.48.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-04-30 00:00:00.000000000 Z
11
+ date: 2023-05-21 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-sqladmin_v1beta4/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.48.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
63
63
  post_install_message:
64
64
  rdoc_options: []