google-apis-servicecontrol_v1 0.24.0 → 0.26.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: e733fbb3730192c896b6cf5a23bdaf9b00ef0cf7ee026f338f33e167c5bbcd19
4
- data.tar.gz: 40816857532b9a84b3750d0d477f9a0c48646b11fb9082b8562ab91847869483
3
+ metadata.gz: 2c5b19706b0e70525a81240f613ad0978af6b2ef359d690448daf315ef2e40d6
4
+ data.tar.gz: ad581c1d06dc9734b7e6807767360462ff84ff0a2a6caf19284d8086e318e50f
5
5
  SHA512:
6
- metadata.gz: 51d9ddf227b8354225dbf2bec520f4d2493f90f23b042a37eb5033fc7981803219846949fd9dee27f83df9892b1ef8ae71460b2b68135118acab94751e54d343
7
- data.tar.gz: 801122eb51d3b4262e301f2afd2c79444536f7136ba97fcf66a7de45f94dcde56be564fcea86b7d8e853cce18a111966d702882b311ba6e89a0c60a27730acc1
6
+ metadata.gz: 7c08017d00f7e65f13c15371ce2cbb49d1cc714c50761878ca36ffda9fd7658cf77f4699e9ecb88c640d1b58e24ddd4edc768d648b548488d51f319bab5b55a1
7
+ data.tar.gz: 9b1d926863a4bab35fc7cb1e40b1c55d3998039ef686e2af9c1f644a211d59bc165d1b99c3d2c28098f479f35e527672ed81507470b9ace698b910228c4fb68d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-servicecontrol_v1
2
2
 
3
+ ### v0.26.0 (2022-10-20)
4
+
5
+ * Regenerated from discovery document revision 20221014
6
+ * Regenerated using generator version 0.11.0
7
+
8
+ ### v0.25.0 (2022-09-29)
9
+
10
+ * Regenerated from discovery document revision 20220923
11
+
3
12
  ### v0.24.0 (2022-09-21)
4
13
 
5
14
  * Regenerated using generator version 0.10.0
@@ -1575,8 +1575,8 @@ module Google
1575
1575
  attr_accessor :port
1576
1576
 
1577
1577
  # The identity of this peer. Similar to `Request.auth.principal`, but relative
1578
- # to the peer instead of the request. For example, the idenity associated with a
1579
- # load balancer that forwared the request.
1578
+ # to the peer instead of the request. For example, the identity associated with
1579
+ # a load balancer that forwarded the request.
1580
1580
  # Corresponds to the JSON property `principal`
1581
1581
  # @return [String]
1582
1582
  attr_accessor :principal
@@ -2005,13 +2005,16 @@ module Google
2005
2005
  class RequestMetadata
2006
2006
  include Google::Apis::Core::Hashable
2007
2007
 
2008
- # The IP address of the caller. For caller from internet, this will be public
2009
- # IPv4 or IPv6 address. For caller from a Compute Engine VM with external IP
2010
- # address, this will be the VM's external IP address. For caller from a Compute
2011
- # Engine VM without external IP address, if the VM is in the same organization (
2012
- # or project) as the accessed resource, `caller_ip` will be the VM's internal
2013
- # IPv4 address, otherwise the `caller_ip` will be redacted to "gce-internal-ip".
2014
- # See https://cloud.google.com/compute/docs/vpc/ for more information.
2008
+ # The IP address of the caller. For a caller from the internet, this will be the
2009
+ # public IPv4 or IPv6 address. For calls made from inside Google's internal
2010
+ # production network from one GCP service to another, `caller_ip` will be
2011
+ # redacted to "private". For a caller from a Compute Engine VM with a external
2012
+ # IP address, `caller_ip` will be the VM's external IP address. For a caller
2013
+ # from a Compute Engine VM without a external IP address, if the VM is in the
2014
+ # same organization (or project) as the accessed resource, `caller_ip` will be
2015
+ # the VM's internal IPv4 address, otherwise `caller_ip` will be redacted to "gce-
2016
+ # internal-ip". See https://cloud.google.com/compute/docs/vpc/ for more
2017
+ # information.
2015
2018
  # Corresponds to the JSON property `callerIp`
2016
2019
  # @return [String]
2017
2020
  attr_accessor :caller_ip
@@ -2031,7 +2034,7 @@ module Google
2031
2034
  # Line Tool apitools-client/1.0 gcloud/0.9.62`: The request was made by the
2032
2035
  # Google Cloud SDK CLI (gcloud). + `AppEngine-Google; (+http://code.google.com/
2033
2036
  # appengine; appid: s~my-project`: The request was made from the `my-project`
2034
- # App Engine app. NOLINT
2037
+ # App Engine app.
2035
2038
  # Corresponds to the JSON property `callerSuppliedUserAgent`
2036
2039
  # @return [String]
2037
2040
  attr_accessor :caller_supplied_user_agent
@@ -2187,6 +2190,11 @@ module Google
2187
2190
  class ResourceInfo
2188
2191
  include Google::Apis::Core::Hashable
2189
2192
 
2193
+ # The resource permission required for this request.
2194
+ # Corresponds to the JSON property `permission`
2195
+ # @return [String]
2196
+ attr_accessor :permission
2197
+
2190
2198
  # The identifier of the parent of this resource instance. Must be in one of the
2191
2199
  # following formats: - `projects/` - `folders/` - `organizations/`
2192
2200
  # Corresponds to the JSON property `resourceContainer`
@@ -2211,6 +2219,7 @@ module Google
2211
2219
 
2212
2220
  # Update properties of this object
2213
2221
  def update!(**args)
2222
+ @permission = args[:permission] if args.key?(:permission)
2214
2223
  @resource_container = args[:resource_container] if args.key?(:resource_container)
2215
2224
  @resource_location = args[:resource_location] if args.key?(:resource_location)
2216
2225
  @resource_name = args[:resource_name] if args.key?(:resource_name)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicecontrolV1
18
18
  # Version of the google-apis-servicecontrol_v1 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220506"
25
+ REVISION = "20221014"
26
26
  end
27
27
  end
28
28
  end
@@ -846,6 +846,7 @@ module Google
846
846
  class ResourceInfo
847
847
  # @private
848
848
  class Representation < Google::Apis::Core::JsonRepresentation
849
+ property :permission, as: 'permission'
849
850
  property :resource_container, as: 'resourceContainer'
850
851
  property :resource_location, as: 'resourceLocation'
851
852
  property :resource_name, as: 'resourceName'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicecontrol_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.26.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: 2022-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-servicecontrol_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v1
63
63
  post_install_message:
64
64
  rdoc_options: []