google-apis-file_v1beta1 0.34.0 → 0.35.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2730adafafbb979deb3d5897015d2caa226f8465dc0afe23f92ce6c6be4bf209
|
|
4
|
+
data.tar.gz: 88a5fdb0a5f84f6ed084a4448fa2dfc7785559f4be13da0191659b11668f6117
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 312b4fd78ad528ce635b36c07843bddec73010eec9be0e94fb55fbc8cfc247d67060b27086bcf798496935ff07b0abc2e58cca811bf0b30a1495737df52c8c17
|
|
7
|
+
data.tar.gz: 07a580bfcdd62a3aa1a388ae3ebdbfe81c02bae65572e02e3a8fe62135b9b8805aa5a761e31cb543376cdcd4578f8922b323ab69ebb9ed5053abc45066967c6d
|
data/CHANGELOG.md
CHANGED
|
@@ -1526,6 +1526,14 @@ module Google
|
|
|
1526
1526
|
class Share
|
|
1527
1527
|
include Google::Apis::Core::Hashable
|
|
1528
1528
|
|
|
1529
|
+
# Immutable. Full name of the Cloud Filestore Backup resource that this Share is
|
|
1530
|
+
# restored from, in the format of projects/`project_id`/locations/`location_id`/
|
|
1531
|
+
# backups/`backup_id`. Empty, if the Share is created from scratch and not
|
|
1532
|
+
# restored from a backup.
|
|
1533
|
+
# Corresponds to the JSON property `backup`
|
|
1534
|
+
# @return [String]
|
|
1535
|
+
attr_accessor :backup
|
|
1536
|
+
|
|
1529
1537
|
# File share capacity in gigabytes (GB). Filestore defines 1 GB as 1024^3 bytes.
|
|
1530
1538
|
# Must be greater than 0.
|
|
1531
1539
|
# Corresponds to the JSON property `capacityGb`
|
|
@@ -1576,6 +1584,7 @@ module Google
|
|
|
1576
1584
|
|
|
1577
1585
|
# Update properties of this object
|
|
1578
1586
|
def update!(**args)
|
|
1587
|
+
@backup = args[:backup] if args.key?(:backup)
|
|
1579
1588
|
@capacity_gb = args[:capacity_gb] if args.key?(:capacity_gb)
|
|
1580
1589
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1581
1590
|
@description = args[:description] if args.key?(:description)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module FileV1beta1
|
|
18
18
|
# Version of the google-apis-file_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.35.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 = "
|
|
25
|
+
REVISION = "20230405"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -624,6 +624,7 @@ module Google
|
|
|
624
624
|
class Share
|
|
625
625
|
# @private
|
|
626
626
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
627
|
+
property :backup, as: 'backup'
|
|
627
628
|
property :capacity_gb, :numeric_string => true, as: 'capacityGb'
|
|
628
629
|
property :create_time, as: 'createTime'
|
|
629
630
|
property :description, as: 'description'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-file_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.35.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-
|
|
11
|
+
date: 2023-04-23 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-file_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.35.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|