google-apis-servicecontrol_v2 0.1.0 → 0.2.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: acc5346e27c3ac301b087d84ec6253dc183a2c65133760c2c1b3ecdab4a820f7
|
4
|
+
data.tar.gz: 1af7c4c21705c88e6fc0ae67414617987a7047a0f51a34aa7ddecbaee8e405ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4487c1b20f9864e855958abbb3e485d3bc9286332368fb92927e24112ab9e9cb05261fba178692f3f235386d1627106bc81bbdaaaa3c450c57a39ef3cf774194
|
7
|
+
data.tar.gz: 49b12c1bd3826f3afa7e14498894049319c3a4992b04bf9d2f02c6c3b7e4e30647841942d6e7c8a7b7c0c7829bb9594cb821e1c340c95f22e368b8b322254252
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-servicecontrol_v2
|
2
2
|
|
3
|
+
### v0.2.0 (2021-02-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210130
|
6
|
+
* Regenerated using generator version 0.1.2
|
7
|
+
|
3
8
|
### v0.1.0 (2021-01-07)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.1.1
|
@@ -430,8 +430,9 @@ module Google
|
|
430
430
|
# @return [String]
|
431
431
|
attr_accessor :permission
|
432
432
|
|
433
|
-
# The resource being accessed, as a REST-style string. For
|
434
|
-
# googleapis.com/projects/PROJECTID/datasets/DATASETID
|
433
|
+
# The resource being accessed, as a REST-style or cloud resource string. For
|
434
|
+
# example: bigquery.googleapis.com/projects/PROJECTID/datasets/DATASETID or
|
435
|
+
# projects/PROJECTID/datasets/DATASETID
|
435
436
|
# Corresponds to the JSON property `resource`
|
436
437
|
# @return [String]
|
437
438
|
attr_accessor :resource
|
@@ -475,6 +476,11 @@ module Google
|
|
475
476
|
# @return [Google::Apis::ServicecontrolV2::AttributeContext]
|
476
477
|
attr_accessor :attributes
|
477
478
|
|
479
|
+
# Optional. Contains a comma-separated list of flags.
|
480
|
+
# Corresponds to the JSON property `flags`
|
481
|
+
# @return [String]
|
482
|
+
attr_accessor :flags
|
483
|
+
|
478
484
|
# Describes the resources and the policies applied to each resource.
|
479
485
|
# Corresponds to the JSON property `resources`
|
480
486
|
# @return [Array<Google::Apis::ServicecontrolV2::ResourceInfo>]
|
@@ -494,6 +500,7 @@ module Google
|
|
494
500
|
# Update properties of this object
|
495
501
|
def update!(**args)
|
496
502
|
@attributes = args[:attributes] if args.key?(:attributes)
|
503
|
+
@flags = args[:flags] if args.key?(:flags)
|
497
504
|
@resources = args[:resources] if args.key?(:resources)
|
498
505
|
@service_config_id = args[:service_config_id] if args.key?(:service_config_id)
|
499
506
|
end
|
@@ -817,8 +824,8 @@ module Google
|
|
817
824
|
|
818
825
|
# Annotations is an unstructured key-value map stored with a resource that may
|
819
826
|
# be set by external tools to store and retrieve arbitrary metadata. They are
|
820
|
-
# not queryable and should be preserved when modifying objects. More info:
|
821
|
-
#
|
827
|
+
# not queryable and should be preserved when modifying objects. More info: https:
|
828
|
+
# //kubernetes.io/docs/user-guide/annotations
|
822
829
|
# Corresponds to the JSON property `annotations`
|
823
830
|
# @return [Hash<String,String>]
|
824
831
|
attr_accessor :annotations
|
@@ -853,6 +860,16 @@ module Google
|
|
853
860
|
# @return [Hash<String,String>]
|
854
861
|
attr_accessor :labels
|
855
862
|
|
863
|
+
# Immutable. The location of the resource. The location encoding is specific to
|
864
|
+
# the service provider, and new encoding may be introduced as the service
|
865
|
+
# evolves. For Google Cloud products, the encoding is what is used by Google
|
866
|
+
# Cloud APIs, such as `us-east1`, `aws-us-east-1`, and `azure-eastus2`. The
|
867
|
+
# semantics of `location` is identical to the `cloud.googleapis.com/location`
|
868
|
+
# label used by some Google Cloud APIs.
|
869
|
+
# Corresponds to the JSON property `location`
|
870
|
+
# @return [String]
|
871
|
+
attr_accessor :location
|
872
|
+
|
856
873
|
# The stable identifier (name) of a resource on the `service`. A resource can be
|
857
874
|
# logically identified as "//`resource.service`/`resource.name`". The
|
858
875
|
# differences between a resource name and a URI are: * Resource name is a
|
@@ -908,6 +925,7 @@ module Google
|
|
908
925
|
@display_name = args[:display_name] if args.key?(:display_name)
|
909
926
|
@etag = args[:etag] if args.key?(:etag)
|
910
927
|
@labels = args[:labels] if args.key?(:labels)
|
928
|
+
@location = args[:location] if args.key?(:location)
|
911
929
|
@name = args[:name] if args.key?(:name)
|
912
930
|
@service = args[:service] if args.key?(:service)
|
913
931
|
@type = args[:type] if args.key?(:type)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.2.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.1.
|
22
|
+
GENERATOR_VERSION = "0.1.2"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -250,6 +250,7 @@ module Google
|
|
250
250
|
class Representation < Google::Apis::Core::JsonRepresentation
|
251
251
|
property :attributes, as: 'attributes', class: Google::Apis::ServicecontrolV2::AttributeContext, decorator: Google::Apis::ServicecontrolV2::AttributeContext::Representation
|
252
252
|
|
253
|
+
property :flags, as: 'flags'
|
253
254
|
collection :resources, as: 'resources', class: Google::Apis::ServicecontrolV2::ResourceInfo, decorator: Google::Apis::ServicecontrolV2::ResourceInfo::Representation
|
254
255
|
|
255
256
|
property :service_config_id, as: 'serviceConfigId'
|
@@ -340,6 +341,7 @@ module Google
|
|
340
341
|
property :display_name, as: 'displayName'
|
341
342
|
property :etag, as: 'etag'
|
342
343
|
hash :labels, as: 'labels'
|
344
|
+
property :location, as: 'location'
|
343
345
|
property :name, as: 'name'
|
344
346
|
property :service, as: 'service'
|
345
347
|
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.
|
4
|
+
version: 0.2.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-
|
11
|
+
date: 2021-02-08 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.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.2.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: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.2.6
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Service Control API V2
|