google-apis-servicecontrol_v2 0.25.0 → 0.27.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: 90e503a1e10f6b351bb5ad787107fddd1e711dba745caf09fcdad5235b03492f
4
- data.tar.gz: 8ad7403091b734c6f9f49ba386b3ac73f4929bbf3b556cbd54bc9e69fd35fbab
3
+ metadata.gz: 3bb81876ae346788e47372203556f06e11d784e209f9db17167f6a8fccefd984
4
+ data.tar.gz: 53391009ac05dc13d519406b8836b800d754cceed911ef431e6239132e8546ec
5
5
  SHA512:
6
- metadata.gz: 1d74b2687fb46ade4ae5ced51c76bd9f68bb5f15466873662600ceb6f3d9d416f074d0ee383be3b6043f2067ec42632fcdedc786c0f493eacc0e4ce672679683
7
- data.tar.gz: bde58a57697cbdda7a9c8a9315cd2248f7540740474b28ba43bb0ac45822b09adff87c36c537f6f1e43e5f9db32594d067af35ea24e687ec3f0a194ad7c73c6b
6
+ metadata.gz: dc4255a0a417ae45429d761a15e7f70a63c36c30a0755ec2d25db21f123d3e26bc72cd4cbaa2d1466cd2a4eef758427c651997a5c54bb1fe3dc52ea3998fdc26
7
+ data.tar.gz: dc9e034003967c7487f4bcb88bc5b7ee440d4b3bd1505c279a2e53ac8f67c6ce906de23f9bf0c436db0c7d6da175397fae2c1fda32f7d6aef1a233d838772adf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-servicecontrol_v2
2
2
 
3
+ ### v0.27.0 (2023-02-12)
4
+
5
+ * Regenerated from discovery document revision 20230127
6
+ * Regenerated using generator version 0.11.1
7
+
8
+ ### v0.26.0 (2022-10-28)
9
+
10
+ * Regenerated from discovery document revision 20221014
11
+
3
12
  ### v0.25.0 (2022-10-19)
4
13
 
5
14
  * Regenerated using generator version 0.11.0
@@ -516,6 +516,11 @@ module Google
516
516
  class CheckResponse
517
517
  include Google::Apis::Core::Hashable
518
518
 
519
+ # Esf migration server override during chemist check v2 migration
520
+ # Corresponds to the JSON property `esfMigrationServerOverride`
521
+ # @return [Google::Apis::ServicecontrolV2::EsfMigrationServerOverride]
522
+ attr_accessor :esf_migration_server_override
523
+
519
524
  # Returns a set of request contexts generated from the `CheckRequest`.
520
525
  # Corresponds to the JSON property `headers`
521
526
  # @return [Hash<String,String>]
@@ -537,11 +542,31 @@ module Google
537
542
 
538
543
  # Update properties of this object
539
544
  def update!(**args)
545
+ @esf_migration_server_override = args[:esf_migration_server_override] if args.key?(:esf_migration_server_override)
540
546
  @headers = args[:headers] if args.key?(:headers)
541
547
  @status = args[:status] if args.key?(:status)
542
548
  end
543
549
  end
544
550
 
551
+ # Esf migration server override during chemist check v2 migration
552
+ class EsfMigrationServerOverride
553
+ include Google::Apis::Core::Hashable
554
+
555
+ # Esf migration override mode
556
+ # Corresponds to the JSON property `overrideMode`
557
+ # @return [String]
558
+ attr_accessor :override_mode
559
+
560
+ def initialize(**args)
561
+ update!(**args)
562
+ end
563
+
564
+ # Update properties of this object
565
+ def update!(**args)
566
+ @override_mode = args[:override_mode] if args.key?(:override_mode)
567
+ end
568
+ end
569
+
545
570
  # First party identity principal.
546
571
  class FirstPartyPrincipal
547
572
  include Google::Apis::Core::Hashable
@@ -825,13 +850,16 @@ module Google
825
850
  class RequestMetadata
826
851
  include Google::Apis::Core::Hashable
827
852
 
828
- # The IP address of the caller. For caller from internet, this will be public
829
- # IPv4 or IPv6 address. For caller from a Compute Engine VM with external IP
830
- # address, this will be the VM's external IP address. For caller from a Compute
831
- # Engine VM without external IP address, if the VM is in the same organization (
832
- # or project) as the accessed resource, `caller_ip` will be the VM's internal
833
- # IPv4 address, otherwise the `caller_ip` will be redacted to "gce-internal-ip".
834
- # See https://cloud.google.com/compute/docs/vpc/ for more information.
853
+ # The IP address of the caller. For a caller from the internet, this will be the
854
+ # public IPv4 or IPv6 address. For calls made from inside Google's internal
855
+ # production network from one GCP service to another, `caller_ip` will be
856
+ # redacted to "private". For a caller from a Compute Engine VM with a external
857
+ # IP address, `caller_ip` will be the VM's external IP address. For a caller
858
+ # from a Compute Engine VM without a external IP address, if the VM is in the
859
+ # same organization (or project) as the accessed resource, `caller_ip` will be
860
+ # the VM's internal IPv4 address, otherwise `caller_ip` will be redacted to "gce-
861
+ # internal-ip". See https://cloud.google.com/compute/docs/vpc/ for more
862
+ # information.
835
863
  # Corresponds to the JSON property `callerIp`
836
864
  # @return [String]
837
865
  attr_accessor :caller_ip
@@ -851,7 +879,7 @@ module Google
851
879
  # Line Tool apitools-client/1.0 gcloud/0.9.62`: The request was made by the
852
880
  # Google Cloud SDK CLI (gcloud). + `AppEngine-Google; (+http://code.google.com/
853
881
  # appengine; appid: s~my-project`: The request was made from the `my-project`
854
- # App Engine app. NOLINT
882
+ # App Engine app.
855
883
  # Corresponds to the JSON property `callerSuppliedUserAgent`
856
884
  # @return [String]
857
885
  attr_accessor :caller_supplied_user_agent
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicecontrolV2
18
18
  # Version of the google-apis-servicecontrol_v2 gem
19
- GEM_VERSION = "0.25.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220915"
25
+ REVISION = "20230127"
26
26
  end
27
27
  end
28
28
  end
@@ -70,6 +70,12 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
+ class EsfMigrationServerOverride
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
73
79
  class FirstPartyPrincipal
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
@@ -304,12 +310,21 @@ module Google
304
310
  class CheckResponse
305
311
  # @private
306
312
  class Representation < Google::Apis::Core::JsonRepresentation
313
+ property :esf_migration_server_override, as: 'esfMigrationServerOverride', class: Google::Apis::ServicecontrolV2::EsfMigrationServerOverride, decorator: Google::Apis::ServicecontrolV2::EsfMigrationServerOverride::Representation
314
+
307
315
  hash :headers, as: 'headers'
308
316
  property :status, as: 'status', class: Google::Apis::ServicecontrolV2::Status, decorator: Google::Apis::ServicecontrolV2::Status::Representation
309
317
 
310
318
  end
311
319
  end
312
320
 
321
+ class EsfMigrationServerOverride
322
+ # @private
323
+ class Representation < Google::Apis::Core::JsonRepresentation
324
+ property :override_mode, as: 'overrideMode'
325
+ end
326
+ end
327
+
313
328
  class FirstPartyPrincipal
314
329
  # @private
315
330
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicecontrol_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.0
4
+ version: 0.27.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-10-21 00:00:00.000000000 Z
11
+ date: 2023-02-12 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-servicecontrol_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v2
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.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Control API V2