google-apis-file_v1beta1 0.50.0 → 0.51.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: 8aeb5120970fe69d2cf9d2124cf4c046fa149b7439d05edb015572c53d3524c9
|
4
|
+
data.tar.gz: 53248e62b65454188671fa9e582aa90a5c42d6c354fc1dad32550f79c284c478
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: acfcdd1cce9132286665051dcb25c97c8d7983c8803624e2f8efe7e5944fc812420726b4f15f9afcbe16b550a08a9eebc1215d36aed51905690fb7a149baae46
|
7
|
+
data.tar.gz: 69e8b2a695e01b7ce3352ac968db900657e9a0c9c8e258047dce0faa7320e6af4e8e5a48e567f5b704c17b9410a57521fbad4cfccea3f2655922e95719b9ea05
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-file_v1beta1
|
2
2
|
|
3
|
+
### v0.51.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241104
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.50.0 (2024-07-25)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240704
|
@@ -111,7 +111,7 @@ module Google
|
|
111
111
|
# @return [Fixnum]
|
112
112
|
attr_accessor :storage_bytes
|
113
113
|
|
114
|
-
# Optional. Input only. Immutable. Tag
|
114
|
+
# Optional. Input only. Immutable. Tag key-value pairs are bound to this
|
115
115
|
# resource. For example: "123/environment": "production", "123/costCenter": "
|
116
116
|
# marketing"
|
117
117
|
# Corresponds to the JSON property `tags`
|
@@ -277,7 +277,7 @@ module Google
|
|
277
277
|
include Google::Apis::Core::Hashable
|
278
278
|
|
279
279
|
# ManagedActiveDirectoryConfig contains all the parameters for connecting to
|
280
|
-
# Managed Active Directory.
|
280
|
+
# Managed Service for Microsoft Active Directory (Managed Microsoft AD).
|
281
281
|
# Corresponds to the JSON property `managedActiveDirectory`
|
282
282
|
# @return [Google::Apis::FileV1beta1::ManagedActiveDirectoryConfig]
|
283
283
|
attr_accessor :managed_active_directory
|
@@ -330,18 +330,6 @@ module Google
|
|
330
330
|
# @return [Array<Google::Apis::FileV1beta1::NfsExportOptions>]
|
331
331
|
attr_accessor :nfs_export_options
|
332
332
|
|
333
|
-
# Performance configuration. Used for setting the performance configuration.
|
334
|
-
# Defaults to `iops_by_capacity` if unset in instance creation.
|
335
|
-
# Corresponds to the JSON property `performanceConfig`
|
336
|
-
# @return [Google::Apis::FileV1beta1::PerformanceConfig]
|
337
|
-
attr_accessor :performance_config
|
338
|
-
|
339
|
-
# The enforced performance limits, calculated from the instance's performance
|
340
|
-
# configuration.
|
341
|
-
# Corresponds to the JSON property `performanceLimits`
|
342
|
-
# @return [Google::Apis::FileV1beta1::PerformanceLimits]
|
343
|
-
attr_accessor :performance_limits
|
344
|
-
|
345
333
|
# The resource name of the backup, in the format `projects/`project_id`/
|
346
334
|
# locations/`location_id`/backups/`backup_id``, that this file share has been
|
347
335
|
# restored from.
|
@@ -358,17 +346,21 @@ module Google
|
|
358
346
|
@capacity_gb = args[:capacity_gb] if args.key?(:capacity_gb)
|
359
347
|
@name = args[:name] if args.key?(:name)
|
360
348
|
@nfs_export_options = args[:nfs_export_options] if args.key?(:nfs_export_options)
|
361
|
-
@performance_config = args[:performance_config] if args.key?(:performance_config)
|
362
|
-
@performance_limits = args[:performance_limits] if args.key?(:performance_limits)
|
363
349
|
@source_backup = args[:source_backup] if args.key?(:source_backup)
|
364
350
|
end
|
365
351
|
end
|
366
352
|
|
367
|
-
# Fixed IOPS parameters.
|
353
|
+
# Fixed IOPS (input/output operations per second) parameters.
|
368
354
|
class FixedIops
|
369
355
|
include Google::Apis::Core::Hashable
|
370
356
|
|
371
|
-
# Required. Maximum
|
357
|
+
# Required. Maximum IOPS.
|
358
|
+
# Corresponds to the JSON property `maxIops`
|
359
|
+
# @return [Fixnum]
|
360
|
+
attr_accessor :max_iops
|
361
|
+
|
362
|
+
# Optional. Deprecated: `max_iops` should be used instead of this parameter.
|
363
|
+
# Maximum read IOPS.
|
372
364
|
# Corresponds to the JSON property `maxReadIops`
|
373
365
|
# @return [Fixnum]
|
374
366
|
attr_accessor :max_read_iops
|
@@ -379,6 +371,7 @@ module Google
|
|
379
371
|
|
380
372
|
# Update properties of this object
|
381
373
|
def update!(**args)
|
374
|
+
@max_iops = args[:max_iops] if args.key?(:max_iops)
|
382
375
|
@max_read_iops = args[:max_read_iops] if args.key?(:max_read_iops)
|
383
376
|
end
|
384
377
|
end
|
@@ -817,14 +810,20 @@ module Google
|
|
817
810
|
end
|
818
811
|
end
|
819
812
|
|
820
|
-
# IOPS per
|
821
|
-
class
|
813
|
+
# IOPS per TB. Filestore defines TB as 1024^4 bytes (TiB).
|
814
|
+
class IopsPerTb
|
822
815
|
include Google::Apis::Core::Hashable
|
823
816
|
|
824
|
-
# Required. Maximum
|
825
|
-
# Corresponds to the JSON property `
|
817
|
+
# Required. Maximum IOPS per TiB.
|
818
|
+
# Corresponds to the JSON property `maxIopsPerTb`
|
826
819
|
# @return [Fixnum]
|
827
|
-
attr_accessor :
|
820
|
+
attr_accessor :max_iops_per_tb
|
821
|
+
|
822
|
+
# Optional. Deprecated: `max_iops_per_tb` should be used instead of this
|
823
|
+
# parameter. Maximum read IOPS per TiB.
|
824
|
+
# Corresponds to the JSON property `maxReadIopsPerTb`
|
825
|
+
# @return [Fixnum]
|
826
|
+
attr_accessor :max_read_iops_per_tb
|
828
827
|
|
829
828
|
def initialize(**args)
|
830
829
|
update!(**args)
|
@@ -832,7 +831,8 @@ module Google
|
|
832
831
|
|
833
832
|
# Update properties of this object
|
834
833
|
def update!(**args)
|
835
|
-
@
|
834
|
+
@max_iops_per_tb = args[:max_iops_per_tb] if args.key?(:max_iops_per_tb)
|
835
|
+
@max_read_iops_per_tb = args[:max_read_iops_per_tb] if args.key?(:max_read_iops_per_tb)
|
836
836
|
end
|
837
837
|
end
|
838
838
|
|
@@ -852,11 +852,29 @@ module Google
|
|
852
852
|
# @return [Fixnum]
|
853
853
|
attr_accessor :capacity_step_size_gb
|
854
854
|
|
855
|
+
# Output only. Indicates whether this instance's performance is configurable. If
|
856
|
+
# enabled, adjust it using the 'performance_config' field.
|
857
|
+
# Corresponds to the JSON property `configurablePerformanceEnabled`
|
858
|
+
# @return [Boolean]
|
859
|
+
attr_accessor :configurable_performance_enabled
|
860
|
+
alias_method :configurable_performance_enabled?, :configurable_performance_enabled
|
861
|
+
|
855
862
|
# Output only. The time when the instance was created.
|
856
863
|
# Corresponds to the JSON property `createTime`
|
857
864
|
# @return [String]
|
858
865
|
attr_accessor :create_time
|
859
866
|
|
867
|
+
# Optional. Indicates whether the instance is protected against deletion.
|
868
|
+
# Corresponds to the JSON property `deletionProtectionEnabled`
|
869
|
+
# @return [Boolean]
|
870
|
+
attr_accessor :deletion_protection_enabled
|
871
|
+
alias_method :deletion_protection_enabled?, :deletion_protection_enabled
|
872
|
+
|
873
|
+
# Optional. The reason for enabling deletion protection.
|
874
|
+
# Corresponds to the JSON property `deletionProtectionReason`
|
875
|
+
# @return [String]
|
876
|
+
attr_accessor :deletion_protection_reason
|
877
|
+
|
860
878
|
# The description of the instance (2048 characters or less).
|
861
879
|
# Corresponds to the JSON property `description`
|
862
880
|
# @return [String]
|
@@ -919,6 +937,22 @@ module Google
|
|
919
937
|
# @return [Array<Google::Apis::FileV1beta1::NetworkConfig>]
|
920
938
|
attr_accessor :networks
|
921
939
|
|
940
|
+
# Used for setting the performance configuration. If the user doesn't specify
|
941
|
+
# PerformanceConfig, automatically provision the default performance settings as
|
942
|
+
# described in https://cloud.google.com/filestore/docs/performance. Larger
|
943
|
+
# instances will be linearly set to more IOPS. If the instance's capacity is
|
944
|
+
# increased or decreased, its performance will be automatically adjusted upwards
|
945
|
+
# or downwards accordingly (respectively).
|
946
|
+
# Corresponds to the JSON property `performanceConfig`
|
947
|
+
# @return [Google::Apis::FileV1beta1::PerformanceConfig]
|
948
|
+
attr_accessor :performance_config
|
949
|
+
|
950
|
+
# The enforced performance limits, calculated from the instance's performance
|
951
|
+
# configuration.
|
952
|
+
# Corresponds to the JSON property `performanceLimits`
|
953
|
+
# @return [Google::Apis::FileV1beta1::PerformanceLimits]
|
954
|
+
attr_accessor :performance_limits
|
955
|
+
|
922
956
|
# Immutable. The protocol indicates the access protocol for all shares in the
|
923
957
|
# instance. This field is immutable and it cannot be changed after the instance
|
924
958
|
# has been created. Default value: `NFS_V3`.
|
@@ -959,7 +993,7 @@ module Google
|
|
959
993
|
# @return [Array<String>]
|
960
994
|
attr_accessor :suspension_reasons
|
961
995
|
|
962
|
-
# Optional. Input only. Immutable. Tag
|
996
|
+
# Optional. Input only. Immutable. Tag key-value pairs are bound to this
|
963
997
|
# resource. For example: "123/environment": "production", "123/costCenter": "
|
964
998
|
# marketing"
|
965
999
|
# Corresponds to the JSON property `tags`
|
@@ -979,7 +1013,10 @@ module Google
|
|
979
1013
|
def update!(**args)
|
980
1014
|
@capacity_gb = args[:capacity_gb] if args.key?(:capacity_gb)
|
981
1015
|
@capacity_step_size_gb = args[:capacity_step_size_gb] if args.key?(:capacity_step_size_gb)
|
1016
|
+
@configurable_performance_enabled = args[:configurable_performance_enabled] if args.key?(:configurable_performance_enabled)
|
982
1017
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1018
|
+
@deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
|
1019
|
+
@deletion_protection_reason = args[:deletion_protection_reason] if args.key?(:deletion_protection_reason)
|
983
1020
|
@description = args[:description] if args.key?(:description)
|
984
1021
|
@directory_services = args[:directory_services] if args.key?(:directory_services)
|
985
1022
|
@etag = args[:etag] if args.key?(:etag)
|
@@ -991,6 +1028,8 @@ module Google
|
|
991
1028
|
@multi_share_enabled = args[:multi_share_enabled] if args.key?(:multi_share_enabled)
|
992
1029
|
@name = args[:name] if args.key?(:name)
|
993
1030
|
@networks = args[:networks] if args.key?(:networks)
|
1031
|
+
@performance_config = args[:performance_config] if args.key?(:performance_config)
|
1032
|
+
@performance_limits = args[:performance_limits] if args.key?(:performance_limits)
|
994
1033
|
@protocol = args[:protocol] if args.key?(:protocol)
|
995
1034
|
@replication = args[:replication] if args.key?(:replication)
|
996
1035
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
@@ -1318,13 +1357,13 @@ module Google
|
|
1318
1357
|
end
|
1319
1358
|
|
1320
1359
|
# ManagedActiveDirectoryConfig contains all the parameters for connecting to
|
1321
|
-
# Managed Active Directory.
|
1360
|
+
# Managed Service for Microsoft Active Directory (Managed Microsoft AD).
|
1322
1361
|
class ManagedActiveDirectoryConfig
|
1323
1362
|
include Google::Apis::Core::Hashable
|
1324
1363
|
|
1325
|
-
# Required. The computer name is used as a prefix
|
1326
|
-
#
|
1327
|
-
# mount -o vers=4.1,sec=krb5 my-computer.filestore.: `.
|
1364
|
+
# Required. The computer name is used as a prefix in the command to mount the
|
1365
|
+
# remote target. For example: if the computer is `my-computer`, the mount
|
1366
|
+
# command will look like: `$mount -o vers=4.1,sec=krb5 my-computer.filestore.: `.
|
1328
1367
|
# Corresponds to the JSON property `computer`
|
1329
1368
|
# @return [String]
|
1330
1369
|
attr_accessor :computer
|
@@ -1589,30 +1628,24 @@ module Google
|
|
1589
1628
|
end
|
1590
1629
|
end
|
1591
1630
|
|
1592
|
-
#
|
1593
|
-
#
|
1631
|
+
# Used for setting the performance configuration. If the user doesn't specify
|
1632
|
+
# PerformanceConfig, automatically provision the default performance settings as
|
1633
|
+
# described in https://cloud.google.com/filestore/docs/performance. Larger
|
1634
|
+
# instances will be linearly set to more IOPS. If the instance's capacity is
|
1635
|
+
# increased or decreased, its performance will be automatically adjusted upwards
|
1636
|
+
# or downwards accordingly (respectively).
|
1594
1637
|
class PerformanceConfig
|
1595
1638
|
include Google::Apis::Core::Hashable
|
1596
1639
|
|
1597
|
-
# Fixed IOPS parameters.
|
1640
|
+
# Fixed IOPS (input/output operations per second) parameters.
|
1598
1641
|
# Corresponds to the JSON property `fixedIops`
|
1599
1642
|
# @return [Google::Apis::FileV1beta1::FixedIops]
|
1600
1643
|
attr_accessor :fixed_iops
|
1601
1644
|
|
1602
|
-
#
|
1603
|
-
#
|
1604
|
-
#
|
1605
|
-
|
1606
|
-
# defined in Filestore documentation.
|
1607
|
-
# Corresponds to the JSON property `iopsByCapacity`
|
1608
|
-
# @return [Boolean]
|
1609
|
-
attr_accessor :iops_by_capacity
|
1610
|
-
alias_method :iops_by_capacity?, :iops_by_capacity
|
1611
|
-
|
1612
|
-
# IOPS per capacity parameters.
|
1613
|
-
# Corresponds to the JSON property `iopsPerGb`
|
1614
|
-
# @return [Google::Apis::FileV1beta1::IopsPerGb]
|
1615
|
-
attr_accessor :iops_per_gb
|
1645
|
+
# IOPS per TB. Filestore defines TB as 1024^4 bytes (TiB).
|
1646
|
+
# Corresponds to the JSON property `iopsPerTb`
|
1647
|
+
# @return [Google::Apis::FileV1beta1::IopsPerTb]
|
1648
|
+
attr_accessor :iops_per_tb
|
1616
1649
|
|
1617
1650
|
def initialize(**args)
|
1618
1651
|
update!(**args)
|
@@ -1621,8 +1654,7 @@ module Google
|
|
1621
1654
|
# Update properties of this object
|
1622
1655
|
def update!(**args)
|
1623
1656
|
@fixed_iops = args[:fixed_iops] if args.key?(:fixed_iops)
|
1624
|
-
@
|
1625
|
-
@iops_per_gb = args[:iops_per_gb] if args.key?(:iops_per_gb)
|
1657
|
+
@iops_per_tb = args[:iops_per_tb] if args.key?(:iops_per_tb)
|
1626
1658
|
end
|
1627
1659
|
end
|
1628
1660
|
|
@@ -1636,20 +1668,20 @@ module Google
|
|
1636
1668
|
# @return [Fixnum]
|
1637
1669
|
attr_accessor :max_read_iops
|
1638
1670
|
|
1639
|
-
# Output only. The max read throughput.
|
1640
|
-
# Corresponds to the JSON property `
|
1671
|
+
# Output only. The max read throughput in bytes per second.
|
1672
|
+
# Corresponds to the JSON property `maxReadThroughputBps`
|
1641
1673
|
# @return [Fixnum]
|
1642
|
-
attr_accessor :
|
1674
|
+
attr_accessor :max_read_throughput_bps
|
1643
1675
|
|
1644
1676
|
# Output only. The max write IOPS.
|
1645
1677
|
# Corresponds to the JSON property `maxWriteIops`
|
1646
1678
|
# @return [Fixnum]
|
1647
1679
|
attr_accessor :max_write_iops
|
1648
1680
|
|
1649
|
-
# Output only. The max write throughput.
|
1650
|
-
# Corresponds to the JSON property `
|
1681
|
+
# Output only. The max write throughput in bytes per second.
|
1682
|
+
# Corresponds to the JSON property `maxWriteThroughputBps`
|
1651
1683
|
# @return [Fixnum]
|
1652
|
-
attr_accessor :
|
1684
|
+
attr_accessor :max_write_throughput_bps
|
1653
1685
|
|
1654
1686
|
def initialize(**args)
|
1655
1687
|
update!(**args)
|
@@ -1658,9 +1690,9 @@ module Google
|
|
1658
1690
|
# Update properties of this object
|
1659
1691
|
def update!(**args)
|
1660
1692
|
@max_read_iops = args[:max_read_iops] if args.key?(:max_read_iops)
|
1661
|
-
@
|
1693
|
+
@max_read_throughput_bps = args[:max_read_throughput_bps] if args.key?(:max_read_throughput_bps)
|
1662
1694
|
@max_write_iops = args[:max_write_iops] if args.key?(:max_write_iops)
|
1663
|
-
@
|
1695
|
+
@max_write_throughput_bps = args[:max_write_throughput_bps] if args.key?(:max_write_throughput_bps)
|
1664
1696
|
end
|
1665
1697
|
end
|
1666
1698
|
|
@@ -1719,8 +1751,8 @@ module Google
|
|
1719
1751
|
class Replication
|
1720
1752
|
include Google::Apis::Core::Hashable
|
1721
1753
|
|
1722
|
-
#
|
1723
|
-
# is supported.
|
1754
|
+
# Replication configuration for the replica instance associated with this
|
1755
|
+
# instance. Only a single replica is supported.
|
1724
1756
|
# Corresponds to the JSON property `replicas`
|
1725
1757
|
# @return [Array<Google::Apis::FileV1beta1::ReplicaConfig>]
|
1726
1758
|
attr_accessor :replicas
|
@@ -1944,7 +1976,7 @@ module Google
|
|
1944
1976
|
# @return [String]
|
1945
1977
|
attr_accessor :state
|
1946
1978
|
|
1947
|
-
# Optional. Input only. Immutable. Tag
|
1979
|
+
# Optional. Input only. Immutable. Tag key-value pairs are bound to this
|
1948
1980
|
# resource. For example: "123/environment": "production", "123/costCenter": "
|
1949
1981
|
# marketing"
|
1950
1982
|
# Corresponds to the JSON property `tags`
|
@@ -2012,24 +2044,28 @@ module Google
|
|
2012
2044
|
class TimeOfDay
|
2013
2045
|
include Google::Apis::Core::Hashable
|
2014
2046
|
|
2015
|
-
# Hours of day in 24 hour format.
|
2016
|
-
#
|
2047
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
2048
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
2049
|
+
# value "24:00:00" for scenarios like business closing time.
|
2017
2050
|
# Corresponds to the JSON property `hours`
|
2018
2051
|
# @return [Fixnum]
|
2019
2052
|
attr_accessor :hours
|
2020
2053
|
|
2021
|
-
# Minutes of hour
|
2054
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or equal
|
2055
|
+
# to 59.
|
2022
2056
|
# Corresponds to the JSON property `minutes`
|
2023
2057
|
# @return [Fixnum]
|
2024
2058
|
attr_accessor :minutes
|
2025
2059
|
|
2026
|
-
# Fractions of seconds in nanoseconds. Must be
|
2060
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
|
2061
|
+
# less than or equal to 999,999,999.
|
2027
2062
|
# Corresponds to the JSON property `nanos`
|
2028
2063
|
# @return [Fixnum]
|
2029
2064
|
attr_accessor :nanos
|
2030
2065
|
|
2031
|
-
# Seconds of
|
2032
|
-
# allow the value 60 if it allows leap-
|
2066
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must be
|
2067
|
+
# less than or equal to 59. An API may allow the value 60 if it allows leap-
|
2068
|
+
# seconds.
|
2033
2069
|
# Corresponds to the JSON property `seconds`
|
2034
2070
|
# @return [Fixnum]
|
2035
2071
|
attr_accessor :seconds
|
@@ -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.51.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241104"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,7 +130,7 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
-
class
|
133
|
+
class IopsPerTb
|
134
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
135
|
|
136
136
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -389,10 +389,6 @@ module Google
|
|
389
389
|
property :name, as: 'name'
|
390
390
|
collection :nfs_export_options, as: 'nfsExportOptions', class: Google::Apis::FileV1beta1::NfsExportOptions, decorator: Google::Apis::FileV1beta1::NfsExportOptions::Representation
|
391
391
|
|
392
|
-
property :performance_config, as: 'performanceConfig', class: Google::Apis::FileV1beta1::PerformanceConfig, decorator: Google::Apis::FileV1beta1::PerformanceConfig::Representation
|
393
|
-
|
394
|
-
property :performance_limits, as: 'performanceLimits', class: Google::Apis::FileV1beta1::PerformanceLimits, decorator: Google::Apis::FileV1beta1::PerformanceLimits::Representation
|
395
|
-
|
396
392
|
property :source_backup, as: 'sourceBackup'
|
397
393
|
end
|
398
394
|
end
|
@@ -400,6 +396,7 @@ module Google
|
|
400
396
|
class FixedIops
|
401
397
|
# @private
|
402
398
|
class Representation < Google::Apis::Core::JsonRepresentation
|
399
|
+
property :max_iops, :numeric_string => true, as: 'maxIops'
|
403
400
|
property :max_read_iops, :numeric_string => true, as: 'maxReadIops'
|
404
401
|
end
|
405
402
|
end
|
@@ -505,10 +502,11 @@ module Google
|
|
505
502
|
end
|
506
503
|
end
|
507
504
|
|
508
|
-
class
|
505
|
+
class IopsPerTb
|
509
506
|
# @private
|
510
507
|
class Representation < Google::Apis::Core::JsonRepresentation
|
511
|
-
property :
|
508
|
+
property :max_iops_per_tb, :numeric_string => true, as: 'maxIopsPerTb'
|
509
|
+
property :max_read_iops_per_tb, :numeric_string => true, as: 'maxReadIopsPerTb'
|
512
510
|
end
|
513
511
|
end
|
514
512
|
|
@@ -517,7 +515,10 @@ module Google
|
|
517
515
|
class Representation < Google::Apis::Core::JsonRepresentation
|
518
516
|
property :capacity_gb, :numeric_string => true, as: 'capacityGb'
|
519
517
|
property :capacity_step_size_gb, :numeric_string => true, as: 'capacityStepSizeGb'
|
518
|
+
property :configurable_performance_enabled, as: 'configurablePerformanceEnabled'
|
520
519
|
property :create_time, as: 'createTime'
|
520
|
+
property :deletion_protection_enabled, as: 'deletionProtectionEnabled'
|
521
|
+
property :deletion_protection_reason, as: 'deletionProtectionReason'
|
521
522
|
property :description, as: 'description'
|
522
523
|
property :directory_services, as: 'directoryServices', class: Google::Apis::FileV1beta1::DirectoryServicesConfig, decorator: Google::Apis::FileV1beta1::DirectoryServicesConfig::Representation
|
523
524
|
|
@@ -532,6 +533,10 @@ module Google
|
|
532
533
|
property :name, as: 'name'
|
533
534
|
collection :networks, as: 'networks', class: Google::Apis::FileV1beta1::NetworkConfig, decorator: Google::Apis::FileV1beta1::NetworkConfig::Representation
|
534
535
|
|
536
|
+
property :performance_config, as: 'performanceConfig', class: Google::Apis::FileV1beta1::PerformanceConfig, decorator: Google::Apis::FileV1beta1::PerformanceConfig::Representation
|
537
|
+
|
538
|
+
property :performance_limits, as: 'performanceLimits', class: Google::Apis::FileV1beta1::PerformanceLimits, decorator: Google::Apis::FileV1beta1::PerformanceLimits::Representation
|
539
|
+
|
535
540
|
property :protocol, as: 'protocol'
|
536
541
|
property :replication, as: 'replication', class: Google::Apis::FileV1beta1::Replication, decorator: Google::Apis::FileV1beta1::Replication::Representation
|
537
542
|
|
@@ -698,8 +703,7 @@ module Google
|
|
698
703
|
class Representation < Google::Apis::Core::JsonRepresentation
|
699
704
|
property :fixed_iops, as: 'fixedIops', class: Google::Apis::FileV1beta1::FixedIops, decorator: Google::Apis::FileV1beta1::FixedIops::Representation
|
700
705
|
|
701
|
-
property :
|
702
|
-
property :iops_per_gb, as: 'iopsPerGb', class: Google::Apis::FileV1beta1::IopsPerGb, decorator: Google::Apis::FileV1beta1::IopsPerGb::Representation
|
706
|
+
property :iops_per_tb, as: 'iopsPerTb', class: Google::Apis::FileV1beta1::IopsPerTb, decorator: Google::Apis::FileV1beta1::IopsPerTb::Representation
|
703
707
|
|
704
708
|
end
|
705
709
|
end
|
@@ -708,9 +712,9 @@ module Google
|
|
708
712
|
# @private
|
709
713
|
class Representation < Google::Apis::Core::JsonRepresentation
|
710
714
|
property :max_read_iops, :numeric_string => true, as: 'maxReadIops'
|
711
|
-
property :
|
715
|
+
property :max_read_throughput_bps, :numeric_string => true, as: 'maxReadThroughputBps'
|
712
716
|
property :max_write_iops, :numeric_string => true, as: 'maxWriteIops'
|
713
|
-
property :
|
717
|
+
property :max_write_throughput_bps, :numeric_string => true, as: 'maxWriteThroughputBps'
|
714
718
|
end
|
715
719
|
end
|
716
720
|
|
@@ -480,7 +480,9 @@ module Google
|
|
480
480
|
# @param [String] update_mask
|
481
481
|
# Required. Mask of fields to update. At least one path must be supplied in this
|
482
482
|
# field. The elements of the repeated paths field may only include these fields:
|
483
|
-
# * "description" * "directory_services" * "file_shares" * "labels"
|
483
|
+
# * "description" * "directory_services" * "file_shares" * "labels" * "
|
484
|
+
# performance_config" * "deletion_protection_enabled" * "
|
485
|
+
# deletion_protection_reason"
|
484
486
|
# @param [String] fields
|
485
487
|
# Selector specifying which fields to include in a partial response.
|
486
488
|
# @param [String] quota_user
|
@@ -511,7 +513,7 @@ module Google
|
|
511
513
|
execute_or_queue_command(command, &block)
|
512
514
|
end
|
513
515
|
|
514
|
-
# Promote
|
516
|
+
# Promote the standby instance (replica).
|
515
517
|
# @param [String] name
|
516
518
|
# Required. The resource name of the instance, in the format `projects/`
|
517
519
|
# project_id`/locations/`location_id`/instances/`instance_id``.
|
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.51.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: 2024-
|
11
|
+
date: 2024-12-04 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.51.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Filestore API V1beta1
|