google-apis-servicecontrol_v2 0.3.0 → 0.8.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: 5038f1df98914e336ed73c4a56df230521f2b11caa5a380ff9f09264c55871e0
4
- data.tar.gz: d2a107d9af7a91205bc1c9165b40f8f0ed1b7715f95bce8175eecd1e1ef16f27
3
+ metadata.gz: de6f554daf4d741173e192b51ee7a6efb0639351e88fc73702e26b0509c08bb1
4
+ data.tar.gz: cdaa27fc4aec2489be2b0d115880a3376b75491013d5bc4c70dd5e8f5e790cf2
5
5
  SHA512:
6
- metadata.gz: b4be2ed6cfd95b6c97fef674497eba068d823219507e27b001fa6a68475b87700cb91c6133b523db19de4902566a4531f05776a9a7bab0c2adf459519606079a
7
- data.tar.gz: 87135e8b671e259b517380992e6f3f24774857c65a854bda63a0f31ef6560ef7fcc42e3f53d49d4ad82e078ea901b2cef34807193eb0b40844ba2ce218680e7a
6
+ metadata.gz: a9bb1c4abc4bf315c54cd54f9b58837118e5f900cc80c81d8dafc2a8b3c4964c5381bcaf36708ca48567186957188816a73a5552d633ec03308844457fcc33e9
7
+ data.tar.gz: 17f0df2bb79642590b2248937658be035a7584faacc4f40c5b1237e571e020bedc4692d7e6dbe3b71ebc3c132977ef29ad0a90984c0a13abfc3c42ed5a7e4453
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-servicecontrol_v2
2
2
 
3
+ ### v0.8.0 (2021-05-27)
4
+
5
+ * Regenerated from discovery document revision 20210513
6
+
7
+ ### v0.7.0 (2021-05-20)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.6.0 (2021-05-01)
12
+
13
+ * Regenerated from discovery document revision 20210422
14
+
15
+ ### v0.5.0 (2021-04-02)
16
+
17
+ * Regenerated from discovery document revision 20210326
18
+ * Regenerated using generator version 0.2.0
19
+
20
+ ### v0.4.0 (2021-03-04)
21
+
22
+ * Unspecified changes
23
+
3
24
  ### v0.3.0 (2021-02-12)
4
25
 
5
26
  * Regenerated from discovery document revision 20210205
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V2'
32
32
 
33
- # View and manage your data across Google Cloud Platform services
33
+ # See, edit, configure, and delete your Google Cloud Platform data
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
 
36
36
  # Manage your Google Service Control data
@@ -690,7 +690,7 @@ module Google
690
690
  # @return [String]
691
691
  attr_accessor :method_prop
692
692
 
693
- # The HTTP URL path.
693
+ # The HTTP URL path, excluding the query parameters.
694
694
  # Corresponds to the JSON property `path`
695
695
  # @return [String]
696
696
  attr_accessor :path
@@ -938,6 +938,21 @@ module Google
938
938
  class ResourceInfo
939
939
  include Google::Apis::Core::Hashable
940
940
 
941
+ # Optional. The identifier of the container of this resource. For Google Cloud
942
+ # APIs, the resource container must be one of the following formats: - `projects/
943
+ # ` - `folders/` - `organizations/` For the policy enforcement on the container
944
+ # level (VPCSC and Location Policy check), this field takes precedence on the
945
+ # container extracted from name when presents.
946
+ # Corresponds to the JSON property `container`
947
+ # @return [String]
948
+ attr_accessor :container
949
+
950
+ # Optional. The location of the resource. The value must be a valid zone, region
951
+ # or multiregion. For example: "europe-west4" or "northamerica-northeast1-a"
952
+ # Corresponds to the JSON property `location`
953
+ # @return [String]
954
+ attr_accessor :location
955
+
941
956
  # The name of the resource referenced in the request.
942
957
  # Corresponds to the JSON property `name`
943
958
  # @return [String]
@@ -960,6 +975,8 @@ module Google
960
975
 
961
976
  # Update properties of this object
962
977
  def update!(**args)
978
+ @container = args[:container] if args.key?(:container)
979
+ @location = args[:location] if args.key?(:location)
963
980
  @name = args[:name] if args.key?(:name)
964
981
  @permission = args[:permission] if args.key?(:permission)
965
982
  @type = args[:type] if args.key?(:type)
@@ -1002,7 +1019,7 @@ module Google
1002
1019
  class Response
1003
1020
  include Google::Apis::Core::Hashable
1004
1021
 
1005
- # The length of time it takes the backend service to fully respond to a request.
1022
+ # The amount of time it takes the backend service to fully respond to a request.
1006
1023
  # Measured from when the destination service starts to send the request to the
1007
1024
  # backend until when the destination service receives the complete response from
1008
1025
  # the backend.
@@ -1079,8 +1096,8 @@ module Google
1079
1096
  end
1080
1097
  end
1081
1098
 
1082
- # The context of a span, attached to Exemplars in Distribution values during
1083
- # aggregation. It contains the name of a span with format: projects/[
1099
+ # The context of a span. This is attached to an Exemplar in Distribution values
1100
+ # during aggregation. It contains the name of a span with format: projects/[
1084
1101
  # PROJECT_ID_OR_NUMBER]/traces/[TRACE_ID]/spans/[SPAN_ID]
1085
1102
  class SpanContext
1086
1103
  include Google::Apis::Core::Hashable
@@ -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.3.0"
19
+ GEM_VERSION = "0.8.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210205"
25
+ REVISION = "20210513"
26
26
  end
27
27
  end
28
28
  end
@@ -353,6 +353,8 @@ module Google
353
353
  class ResourceInfo
354
354
  # @private
355
355
  class Representation < Google::Apis::Core::JsonRepresentation
356
+ property :container, as: 'container'
357
+ property :location, as: 'location'
356
358
  property :name, as: 'name'
357
359
  property :permission, as: 'permission'
358
360
  property :type, as: 'type'
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.3.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: 2021-02-15 00:00:00.000000000 Z
11
+ date: 2021-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicecontrol_v2/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.8.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicecontrol_v2
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Service Control API V2