google-apis-cloudasset_v1 0.29.0 → 0.32.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: 6394ca318b1b5457c36b094414951ad8fc39e0cf4d3f1ab971471a6d2e19ea40
4
- data.tar.gz: 3d2c9839dac9afaf6c11ea449c886dd3ae0ccb839bb4e8122dea5b029ea174d8
3
+ metadata.gz: 34504d2e4a42a95b7cbebe3f5f46bf2df68b5380d716d15240144196c30b7d37
4
+ data.tar.gz: 486d14d659d1c5e7b2ef4dcf94e24819cb896d686e0dd07b0941befa4b898c4b
5
5
  SHA512:
6
- metadata.gz: 05b1640b88ffefd6e3dae9c91f7a7a013bbbbb466ebe5869a56f9b1486a2b1bb70f1c2a44988b185ba34bbd1280c3c7fcf01f8fce362d31c4eb6057ec7aa79b9
7
- data.tar.gz: b55e4e54d6a849826ef5cbf98806b627ef60fe05f7abbb3d10d0fc5ec85abe9c119c6ff9126d6b969dc5fc0bbc7e772857949e252c44e08a505c10861d0f4f66
6
+ metadata.gz: a1391bf8bb813d2c5fd10c242f3173471a4d8d228eb51210500611624b4c748270fd71df233704dff1276abdfbfa7808599bb93e642cc9e8e3c5816ebd564460
7
+ data.tar.gz: 7ba8987653f843d4b258f3ed2b8e4e6d984979edb2b46d9bfbd1eee239281bd1557d440a20edceba9d77c0888b648d0a5f6a58078e77e491e05387b148a2b9b8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-cloudasset_v1
2
2
 
3
+ ### v0.32.0 (2022-04-13)
4
+
5
+ * Regenerated from discovery document revision 20220412
6
+
7
+ ### v0.31.0 (2022-03-24)
8
+
9
+ * Regenerated from discovery document revision 20220318
10
+
11
+ ### v0.30.0 (2022-03-09)
12
+
13
+ * Regenerated from discovery document revision 20220304
14
+
3
15
  ### v0.29.0 (2022-03-02)
4
16
 
5
17
  * Regenerated from discovery document revision 20220225
@@ -568,7 +568,7 @@ module Google
568
568
  # @return [Google::Apis::CloudassetV1::Expr]
569
569
  attr_accessor :condition
570
570
 
571
- # Specifies the principals requesting access for a Cloud Platform resource. `
571
+ # Specifies the principals requesting access for a Google Cloud resource. `
572
572
  # members` can have the following values: * `allUsers`: A special identifier
573
573
  # that represents anyone who is on the internet; with or without a Google
574
574
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -688,11 +688,11 @@ module Google
688
688
  # Represents a whole or partial calendar date, such as a birthday. The time of
689
689
  # day and time zone are either specified elsewhere or are insignificant. The
690
690
  # date is relative to the Gregorian Calendar. This can represent one of the
691
- # following: * A full date, with non-zero year, month, and day values * A month
692
- # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
693
- # zero month and a zero day * A year and month, with a zero day (e.g., a credit
694
- # card expiration date) Related types: * google.type.TimeOfDay * google.type.
695
- # DateTime * google.protobuf.Timestamp
691
+ # following: * A full date, with non-zero year, month, and day values. * A month
692
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
693
+ # with a zero month and a zero day. * A year and month, with a zero day (for
694
+ # example, a credit card expiration date). Related types: * google.type.
695
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
696
696
  class Date
697
697
  include Google::Apis::Core::Hashable
698
698
 
@@ -763,8 +763,7 @@ module Google
763
763
  # A generic empty message that you can re-use to avoid defining duplicated empty
764
764
  # messages in your APIs. A typical example is to use it as the request or the
765
765
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
766
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
767
- # `Empty` is empty JSON object ````.
766
+ # protobuf.Empty) returns (google.protobuf.Empty); `
768
767
  class Empty
769
768
  include Google::Apis::Core::Hashable
770
769
 
@@ -4272,6 +4271,30 @@ module Google
4272
4271
  # @return [String]
4273
4272
  attr_accessor :state
4274
4273
 
4274
+ # TagKey namespaced names, in the format of `ORG_ID`/`TAG_KEY_SHORT_NAME`. To
4275
+ # search against the `tagKeys`: * use a field query. Example: - `tagKeys:"
4276
+ # 123456789/e*"` - `tagKeys="123456789/env"` - `tagKeys:"env"` * use a free text
4277
+ # query. Example: - `env`
4278
+ # Corresponds to the JSON property `tagKeys`
4279
+ # @return [Array<String>]
4280
+ attr_accessor :tag_keys
4281
+
4282
+ # TagValue IDs, in the format of tagValues/`TAG_VALUE_ID`. To search against the
4283
+ # `tagValueIds`: * use a field query. Example: - `tagValueIds:"456"` - `
4284
+ # tagValueIds="tagValues/456"` * use a free text query. Example: - `456`
4285
+ # Corresponds to the JSON property `tagValueIds`
4286
+ # @return [Array<String>]
4287
+ attr_accessor :tag_value_ids
4288
+
4289
+ # TagValue namespaced names, in the format of `ORG_ID`/`TAG_KEY_SHORT_NAME`/`
4290
+ # TAG_VALUE_SHORT_NAME`. To search against the `tagValues`: * use a field query.
4291
+ # Example: - `tagValues:"env"` - `tagValues:"env/prod"` - `tagValues:"123456789/
4292
+ # env/pr*"` - `tagValues="123456789/env/prod"` * use a free text query. Example:
4293
+ # - `prod`
4294
+ # Corresponds to the JSON property `tagValues`
4295
+ # @return [Array<String>]
4296
+ attr_accessor :tag_values
4297
+
4275
4298
  # The last update timestamp of this resource, at which the resource was last
4276
4299
  # modified or deleted. The granularity is in seconds. Timestamp.nanos will
4277
4300
  # always be 0. This field is available only when the resource's Protobuf
@@ -4316,6 +4339,9 @@ module Google
4316
4339
  @project = args[:project] if args.key?(:project)
4317
4340
  @relationships = args[:relationships] if args.key?(:relationships)
4318
4341
  @state = args[:state] if args.key?(:state)
4342
+ @tag_keys = args[:tag_keys] if args.key?(:tag_keys)
4343
+ @tag_value_ids = args[:tag_value_ids] if args.key?(:tag_value_ids)
4344
+ @tag_values = args[:tag_values] if args.key?(:tag_values)
4319
4345
  @update_time = args[:update_time] if args.key?(:update_time)
4320
4346
  @versioned_resources = args[:versioned_resources] if args.key?(:versioned_resources)
4321
4347
  end
@@ -4790,11 +4816,11 @@ module Google
4790
4816
  # Represents a whole or partial calendar date, such as a birthday. The time of
4791
4817
  # day and time zone are either specified elsewhere or are insignificant. The
4792
4818
  # date is relative to the Gregorian Calendar. This can represent one of the
4793
- # following: * A full date, with non-zero year, month, and day values * A month
4794
- # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
4795
- # zero month and a zero day * A year and month, with a zero day (e.g., a credit
4796
- # card expiration date) Related types: * google.type.TimeOfDay * google.type.
4797
- # DateTime * google.protobuf.Timestamp
4819
+ # following: * A full date, with non-zero year, month, and day values. * A month
4820
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
4821
+ # with a zero month and a zero day. * A year and month, with a zero day (for
4822
+ # example, a credit card expiration date). Related types: * google.type.
4823
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
4798
4824
  # Corresponds to the JSON property `installDate`
4799
4825
  # @return [Google::Apis::CloudassetV1::Date]
4800
4826
  attr_accessor :install_date
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudassetV1
18
18
  # Version of the google-apis-cloudasset_v1 gem
19
- GEM_VERSION = "0.29.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220225"
25
+ REVISION = "20220412"
26
26
  end
27
27
  end
28
28
  end
@@ -1654,6 +1654,9 @@ module Google
1654
1654
  hash :relationships, as: 'relationships', class: Google::Apis::CloudassetV1::RelatedResources, decorator: Google::Apis::CloudassetV1::RelatedResources::Representation
1655
1655
 
1656
1656
  property :state, as: 'state'
1657
+ collection :tag_keys, as: 'tagKeys'
1658
+ collection :tag_value_ids, as: 'tagValueIds'
1659
+ collection :tag_values, as: 'tagValues'
1657
1660
  property :update_time, as: 'updateTime'
1658
1661
  collection :versioned_resources, as: 'versionedResources', class: Google::Apis::CloudassetV1::VersionedResource, decorator: Google::Apis::CloudassetV1::VersionedResource::Representation
1659
1662
 
@@ -1116,11 +1116,12 @@ module Google
1116
1116
  # Examples: `"*"`, `"name,location"`, `"name,versionedResources"`. The read_mask
1117
1117
  # paths must be valid field paths listed but not limited to (both snake_case and
1118
1118
  # camelCase are supported): * name * assetType * project * displayName *
1119
- # description * location * labels * networkTags * kmsKey * createTime *
1120
- # updateTime * state * additionalAttributes * versionedResources If read_mask is
1121
- # not specified, all fields except versionedResources will be returned. If only '
1122
- # *' is specified, all fields including versionedResources will be returned. Any
1123
- # invalid field path will trigger INVALID_ARGUMENT error.
1119
+ # description * location * tagKeys * tagValues * tagValueIds * labels *
1120
+ # networkTags * kmsKey * createTime * updateTime * state * additionalAttributes *
1121
+ # versionedResources If read_mask is not specified, all fields except
1122
+ # versionedResources will be returned. If only '*' is specified, all fields
1123
+ # including versionedResources will be returned. Any invalid field path will
1124
+ # trigger INVALID_ARGUMENT error.
1124
1125
  # @param [String] fields
1125
1126
  # Selector specifying which fields to include in a partial response.
1126
1127
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudasset_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.32.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-03-07 00:00:00.000000000 Z
11
+ date: 2022-04-18 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-cloudasset_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.32.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1
63
63
  post_install_message:
64
64
  rdoc_options: []