google-apis-vpcaccess_v1beta1 0.6.0 → 0.8.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: fb03884922c8c0b5f394f2e52417a9e42cb0acff1c0d5373760995eee08709f8
4
- data.tar.gz: 77c1ff9644ddfed3a01130eb4eaf7347c72ac9e837efb65f5d17a5c14406db8f
3
+ metadata.gz: 22f83b19a0ef3ec886663840034bca1ba71e7b963144ccab57402c6330bd0bee
4
+ data.tar.gz: d498cb531123a10eba1a7f5beb3d5c5c88e159f02b306cf7b81e69fcd8699e3e
5
5
  SHA512:
6
- metadata.gz: 52ef03dc51bd6eb76ee6d6f3fc2f62732c85edeb8f85b2ff802c68808f91c6faaf8958cc44592ca81dae5604163cb0a05d848e388049349d962e8228d7b5acf4
7
- data.tar.gz: f02f00210e680440429ec37d444327cdb97aa6d7104045711fae4f9ce31c2493bf6e14b73c153b97fa850190e48d0d1f633130e15ea62cafb022dae3ec98e76e
6
+ metadata.gz: 0f45612dcc6d706278ec3616f8615d40f683dc1839f9427e95e52d908a80febec69162ef9a4f269be619fdd1ff0e1983764fb5d779059193d353d5a222eea4e7
7
+ data.tar.gz: 54563aea0e011c3f8ad2e5be027a9161f9d4023a542ecd0c8d0c2de6d3c9057b882e3bbbe856368f9bfa2bbbb343cec8e33e88ebc26aa3183678388943af94c0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-vpcaccess_v1beta1
2
2
 
3
+ ### v0.8.0 (2023-12-17)
4
+
5
+ * Regenerated from discovery document revision 20231207
6
+
7
+ ### v0.7.0 (2023-11-19)
8
+
9
+ * Regenerated from discovery document revision 20231110
10
+
3
11
  ### v0.6.0 (2023-09-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20230831
@@ -31,12 +31,22 @@ module Google
31
31
  # @return [Array<String>]
32
32
  attr_accessor :connected_projects
33
33
 
34
+ # Output only. The creation time of the connector.
35
+ # Corresponds to the JSON property `createTime`
36
+ # @return [String]
37
+ attr_accessor :create_time
38
+
34
39
  # The range of internal addresses that follows RFC 4632 notation. Example: `10.
35
40
  # 132.0.0/28`.
36
41
  # Corresponds to the JSON property `ipCidrRange`
37
42
  # @return [String]
38
43
  attr_accessor :ip_cidr_range
39
44
 
45
+ # Output only. The last restart time of the connector.
46
+ # Corresponds to the JSON property `lastRestartTime`
47
+ # @return [String]
48
+ attr_accessor :last_restart_time
49
+
40
50
  # Machine type of VM Instance underlying connector. Default is e2-micro
41
51
  # Corresponds to the JSON property `machineType`
42
52
  # @return [String]
@@ -47,9 +57,12 @@ module Google
47
57
  # @return [Fixnum]
48
58
  attr_accessor :max_instances
49
59
 
50
- # Maximum throughput of the connector in Mbps. Default is 300, max is 1000. If
51
- # both max-throughput and max-instances are provided, max-instances takes
52
- # precedence over max-throughput.
60
+ # Maximum throughput of the connector in Mbps. Refers to the expected throughput
61
+ # when using an `e2-micro` machine type. Value must be a multiple of 100 from
62
+ # 300 through 1000. Must be higher than the value specified by --min-throughput.
63
+ # If both max-throughput and max-instances are provided, max-instances takes
64
+ # precedence over max-throughput. The use of `max-throughput` is discouraged in
65
+ # favor of `max-instances`.
53
66
  # Corresponds to the JSON property `maxThroughput`
54
67
  # @return [Fixnum]
55
68
  attr_accessor :max_throughput
@@ -59,9 +72,12 @@ module Google
59
72
  # @return [Fixnum]
60
73
  attr_accessor :min_instances
61
74
 
62
- # Minimum throughput of the connector in Mbps. Default and min is 200. If both
63
- # min-throughput and min-instances are provided, min-instances takes precedence
64
- # over min-throughput.
75
+ # Minimum throughput of the connector in Mbps. Refers to the expected throughput
76
+ # when using an `e2-micro` machine type. Value must be a multiple of 100 from
77
+ # 200 through 900. Must be lower than the value specified by --max-throughput.
78
+ # If both min-throughput and min-instances are provided, min-instances takes
79
+ # precedence over min-throughput. The use of `min-throughput` is discouraged in
80
+ # favor of `min-instances`.
65
81
  # Corresponds to the JSON property `minThroughput`
66
82
  # @return [Fixnum]
67
83
  attr_accessor :min_throughput
@@ -93,7 +109,9 @@ module Google
93
109
  # Update properties of this object
94
110
  def update!(**args)
95
111
  @connected_projects = args[:connected_projects] if args.key?(:connected_projects)
112
+ @create_time = args[:create_time] if args.key?(:create_time)
96
113
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
114
+ @last_restart_time = args[:last_restart_time] if args.key?(:last_restart_time)
97
115
  @machine_type = args[:machine_type] if args.key?(:machine_type)
98
116
  @max_instances = args[:max_instances] if args.key?(:max_instances)
99
117
  @max_throughput = args[:max_throughput] if args.key?(:max_throughput)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VpcaccessV1beta1
18
18
  # Version of the google-apis-vpcaccess_v1beta1 gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.8.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 = "20230831"
25
+ REVISION = "20231207"
26
26
  end
27
27
  end
28
28
  end
@@ -92,7 +92,9 @@ module Google
92
92
  # @private
93
93
  class Representation < Google::Apis::Core::JsonRepresentation
94
94
  collection :connected_projects, as: 'connectedProjects'
95
+ property :create_time, as: 'createTime'
95
96
  property :ip_cidr_range, as: 'ipCidrRange'
97
+ property :last_restart_time, as: 'lastRestartTime'
96
98
  property :machine_type, as: 'machineType'
97
99
  property :max_instances, as: 'maxInstances'
98
100
  property :max_throughput, as: 'maxThroughput'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vpcaccess_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.8.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-09-10 00:00:00.000000000 Z
11
+ date: 2023-12-17 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-vpcaccess_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vpcaccess_v1beta1/v0.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vpcaccess_v1beta1/v0.8.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vpcaccess_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []