google-apis-cloudasset_v1p5beta1 0.2.0 → 0.3.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: 519be53e1d7e2e3b5721c8438c25e82929a5bc46486769a66274e6648356fd28
4
- data.tar.gz: 9e665c491ce97eee1ff4d808986f8c26157c7f0cdb8035796ae63bd5cc216153
3
+ metadata.gz: 970547edb30384509471f55ec1d10543f926b961e0574e266226e76f826ba05b
4
+ data.tar.gz: ecce8238a62b7b3441687a8640cf38604bf97f2fc21f300fd58ef43fd8472daf
5
5
  SHA512:
6
- metadata.gz: a7e2d22cb9ce336db4471d82c37b296eddca6e1c2eec755d22904c294a737f9fb6b8942b439b6fd32ba42b1c0317211e1e3ff8e0a0c24aa76aa223d8318f347e
7
- data.tar.gz: 5e65015bd89bad643c04e906cae4d7e3fafdf3737243d2abcd4acb8c07891d62ad9c6e86100548e03cceffe577988934fa914dc58f2b3554ffa6bb0c37e821fd
6
+ metadata.gz: 98f4951418ae7c43e45247742ffa52f4ec91e0b5442d80329cce016b28e043cb07d927b4c1a5aee20ddac8e052888d5f42663d2c5581b05e8ec44dfcecb3d913
7
+ data.tar.gz: 99b3eac67f18d9eef5f2e541f2619bc23a8e1ae754fa2d3c3ffcbdd26d140fefdf8202532663d502cc58cc125700f8939646d5fdee42c4f35dcf4ed86e0ea5e7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudasset_v1p5beta1
2
2
 
3
+ ### v0.3.0 (2021-03-04)
4
+
5
+ * Regenerated from discovery document revision 20210226
6
+
3
7
  ### v0.2.0 (2021-01-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20210119
@@ -343,6 +343,326 @@ module Google
343
343
  end
344
344
  end
345
345
 
346
+ # An asset in Google Cloud. An asset can be any resource in the Google Cloud [
347
+ # resource hierarchy](https://cloud.google.com/resource-manager/docs/cloud-
348
+ # platform-resource-hierarchy), a resource outside the Google Cloud resource
349
+ # hierarchy (such as Google Kubernetes Engine clusters and objects), or a policy
350
+ # (e.g. Cloud IAM policy). See [Supported asset types](https://cloud.google.com/
351
+ # asset-inventory/docs/supported-asset-types) for more information.
352
+ class GoogleCloudAssetV1p7beta1Asset
353
+ include Google::Apis::Core::Hashable
354
+
355
+ # An `AccessLevel` is a label that can be applied to requests to Google Cloud
356
+ # services, along with a list of requirements necessary for the label to be
357
+ # applied.
358
+ # Corresponds to the JSON property `accessLevel`
359
+ # @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1AccessLevel]
360
+ attr_accessor :access_level
361
+
362
+ # `AccessPolicy` is a container for `AccessLevels` (which define the necessary
363
+ # attributes to use Google Cloud services) and `ServicePerimeters` (which define
364
+ # regions of services able to freely pass data within a perimeter). An access
365
+ # policy is globally visible within an organization, and the restrictions it
366
+ # specifies apply to all projects within an organization.
367
+ # Corresponds to the JSON property `accessPolicy`
368
+ # @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1AccessPolicy]
369
+ attr_accessor :access_policy
370
+
371
+ # The ancestry path of an asset in Google Cloud [resource hierarchy](https://
372
+ # cloud.google.com/resource-manager/docs/cloud-platform-resource-hierarchy),
373
+ # represented as a list of relative resource names. An ancestry path starts with
374
+ # the closest ancestor in the hierarchy and ends at root. If the asset is a
375
+ # project, folder, or organization, the ancestry path starts from the asset
376
+ # itself. Example: `["projects/123456789", "folders/5432", "organizations/1234"]`
377
+ # Corresponds to the JSON property `ancestors`
378
+ # @return [Array<String>]
379
+ attr_accessor :ancestors
380
+
381
+ # The type of the asset. Example: `compute.googleapis.com/Disk` See [Supported
382
+ # asset types](https://cloud.google.com/asset-inventory/docs/supported-asset-
383
+ # types) for more information.
384
+ # Corresponds to the JSON property `assetType`
385
+ # @return [String]
386
+ attr_accessor :asset_type
387
+
388
+ # An Identity and Access Management (IAM) policy, which specifies access
389
+ # controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
390
+ # A `binding` binds one or more `members` to a single `role`. Members can be
391
+ # user accounts, service accounts, Google groups, and domains (such as G Suite).
392
+ # A `role` is a named list of permissions; each `role` can be an IAM predefined
393
+ # role or a user-created custom role. For some types of Google Cloud resources,
394
+ # a `binding` can also specify a `condition`, which is a logical expression that
395
+ # allows access to a resource only if the expression evaluates to `true`. A
396
+ # condition can add constraints based on attributes of the request, the resource,
397
+ # or both. To learn which resources support conditions in their IAM policies,
398
+ # see the [IAM documentation](https://cloud.google.com/iam/help/conditions/
399
+ # resource-policies). **JSON example:** ` "bindings": [ ` "role": "roles/
400
+ # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
401
+ # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
402
+ # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
403
+ # organizationViewer", "members": [ "user:eve@example.com" ], "condition": ` "
404
+ # title": "expirable access", "description": "Does not grant access after Sep
405
+ # 2020", "expression": "request.time < timestamp('2020-10-01T00:00:00.000Z')", `
406
+ # ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:** bindings: -
407
+ # members: - user:mike@example.com - group:admins@example.com - domain:google.
408
+ # com - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/
409
+ # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
410
+ # roles/resourcemanager.organizationViewer condition: title: expirable access
411
+ # description: Does not grant access after Sep 2020 expression: request.time <
412
+ # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
413
+ # description of IAM and its features, see the [IAM documentation](https://cloud.
414
+ # google.com/iam/docs/).
415
+ # Corresponds to the JSON property `iamPolicy`
416
+ # @return [Google::Apis::CloudassetV1p5beta1::Policy]
417
+ attr_accessor :iam_policy
418
+
419
+ # The full name of the asset. Example: `//compute.googleapis.com/projects/
420
+ # my_project_123/zones/zone1/instances/instance1` See [Resource names](https://
421
+ # cloud.google.com/apis/design/resource_names#full_resource_name) for more
422
+ # information.
423
+ # Corresponds to the JSON property `name`
424
+ # @return [String]
425
+ attr_accessor :name
426
+
427
+ # A representation of an [organization policy](https://cloud.google.com/resource-
428
+ # manager/docs/organization-policy/overview#organization_policy). There can be
429
+ # more than one organization policy with different constraints set on a given
430
+ # resource.
431
+ # Corresponds to the JSON property `orgPolicy`
432
+ # @return [Array<Google::Apis::CloudassetV1p5beta1::GoogleCloudOrgpolicyV1Policy>]
433
+ attr_accessor :org_policy
434
+
435
+ # The detailed related assets with the `relationship_type`.
436
+ # Corresponds to the JSON property `relatedAssets`
437
+ # @return [Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1RelatedAssets]
438
+ attr_accessor :related_assets
439
+
440
+ # A representation of a Google Cloud resource.
441
+ # Corresponds to the JSON property `resource`
442
+ # @return [Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1Resource]
443
+ attr_accessor :resource
444
+
445
+ # `ServicePerimeter` describes a set of Google Cloud resources which can freely
446
+ # import and export data amongst themselves, but not export outside of the `
447
+ # ServicePerimeter`. If a request with a source within this `ServicePerimeter`
448
+ # has a target outside of the `ServicePerimeter`, the request will be blocked.
449
+ # Otherwise the request is allowed. There are two types of Service Perimeter -
450
+ # Regular and Bridge. Regular Service Perimeters cannot overlap, a single Google
451
+ # Cloud project can only belong to a single regular Service Perimeter. Service
452
+ # Perimeter Bridges can contain only Google Cloud projects as members, a single
453
+ # Google Cloud project may belong to multiple Service Perimeter Bridges.
454
+ # Corresponds to the JSON property `servicePerimeter`
455
+ # @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1ServicePerimeter]
456
+ attr_accessor :service_perimeter
457
+
458
+ # The last update timestamp of an asset. update_time is updated when create/
459
+ # update/delete operation is performed.
460
+ # Corresponds to the JSON property `updateTime`
461
+ # @return [String]
462
+ attr_accessor :update_time
463
+
464
+ def initialize(**args)
465
+ update!(**args)
466
+ end
467
+
468
+ # Update properties of this object
469
+ def update!(**args)
470
+ @access_level = args[:access_level] if args.key?(:access_level)
471
+ @access_policy = args[:access_policy] if args.key?(:access_policy)
472
+ @ancestors = args[:ancestors] if args.key?(:ancestors)
473
+ @asset_type = args[:asset_type] if args.key?(:asset_type)
474
+ @iam_policy = args[:iam_policy] if args.key?(:iam_policy)
475
+ @name = args[:name] if args.key?(:name)
476
+ @org_policy = args[:org_policy] if args.key?(:org_policy)
477
+ @related_assets = args[:related_assets] if args.key?(:related_assets)
478
+ @resource = args[:resource] if args.key?(:resource)
479
+ @service_perimeter = args[:service_perimeter] if args.key?(:service_perimeter)
480
+ @update_time = args[:update_time] if args.key?(:update_time)
481
+ end
482
+ end
483
+
484
+ # An asset identify in Google Cloud which contains its name, type and ancestors.
485
+ # An asset can be any resource in the Google Cloud [resource hierarchy](https://
486
+ # cloud.google.com/resource-manager/docs/cloud-platform-resource-hierarchy), a
487
+ # resource outside the Google Cloud resource hierarchy (such as Google
488
+ # Kubernetes Engine clusters and objects), or a policy (e.g. Cloud IAM policy).
489
+ # See [Supported asset types](https://cloud.google.com/asset-inventory/docs/
490
+ # supported-asset-types) for more information.
491
+ class GoogleCloudAssetV1p7beta1RelatedAsset
492
+ include Google::Apis::Core::Hashable
493
+
494
+ # The ancestors of an asset in Google Cloud [resource hierarchy](https://cloud.
495
+ # google.com/resource-manager/docs/cloud-platform-resource-hierarchy),
496
+ # represented as a list of relative resource names. An ancestry path starts with
497
+ # the closest ancestor in the hierarchy and ends at root. Example: `["projects/
498
+ # 123456789", "folders/5432", "organizations/1234"]`
499
+ # Corresponds to the JSON property `ancestors`
500
+ # @return [Array<String>]
501
+ attr_accessor :ancestors
502
+
503
+ # The full name of the asset. Example: `//compute.googleapis.com/projects/
504
+ # my_project_123/zones/zone1/instances/instance1` See [Resource names](https://
505
+ # cloud.google.com/apis/design/resource_names#full_resource_name) for more
506
+ # information.
507
+ # Corresponds to the JSON property `asset`
508
+ # @return [String]
509
+ attr_accessor :asset
510
+
511
+ # The type of the asset. Example: `compute.googleapis.com/Disk` See [Supported
512
+ # asset types](https://cloud.google.com/asset-inventory/docs/supported-asset-
513
+ # types) for more information.
514
+ # Corresponds to the JSON property `assetType`
515
+ # @return [String]
516
+ attr_accessor :asset_type
517
+
518
+ def initialize(**args)
519
+ update!(**args)
520
+ end
521
+
522
+ # Update properties of this object
523
+ def update!(**args)
524
+ @ancestors = args[:ancestors] if args.key?(:ancestors)
525
+ @asset = args[:asset] if args.key?(:asset)
526
+ @asset_type = args[:asset_type] if args.key?(:asset_type)
527
+ end
528
+ end
529
+
530
+ # The detailed related assets with the `relationship_type`.
531
+ class GoogleCloudAssetV1p7beta1RelatedAssets
532
+ include Google::Apis::Core::Hashable
533
+
534
+ # The peer resources of the relationship.
535
+ # Corresponds to the JSON property `assets`
536
+ # @return [Array<Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1RelatedAsset>]
537
+ attr_accessor :assets
538
+
539
+ # The relationship attributes which include `type`, `source_resource_type`, `
540
+ # target_resource_type` and `action`.
541
+ # Corresponds to the JSON property `relationshipAttributes`
542
+ # @return [Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1RelationshipAttributes]
543
+ attr_accessor :relationship_attributes
544
+
545
+ def initialize(**args)
546
+ update!(**args)
547
+ end
548
+
549
+ # Update properties of this object
550
+ def update!(**args)
551
+ @assets = args[:assets] if args.key?(:assets)
552
+ @relationship_attributes = args[:relationship_attributes] if args.key?(:relationship_attributes)
553
+ end
554
+ end
555
+
556
+ # The relationship attributes which include `type`, `source_resource_type`, `
557
+ # target_resource_type` and `action`.
558
+ class GoogleCloudAssetV1p7beta1RelationshipAttributes
559
+ include Google::Apis::Core::Hashable
560
+
561
+ # The detail of the relationship, e.g. `contains`, `attaches`
562
+ # Corresponds to the JSON property `action`
563
+ # @return [String]
564
+ attr_accessor :action
565
+
566
+ # The source asset type. Example: `compute.googleapis.com/Instance`
567
+ # Corresponds to the JSON property `sourceResourceType`
568
+ # @return [String]
569
+ attr_accessor :source_resource_type
570
+
571
+ # The target asset type. Example: `compute.googleapis.com/Disk`
572
+ # Corresponds to the JSON property `targetResourceType`
573
+ # @return [String]
574
+ attr_accessor :target_resource_type
575
+
576
+ # The unique identifier of the relationship type. Example: `
577
+ # INSTANCE_TO_INSTANCEGROUP`
578
+ # Corresponds to the JSON property `type`
579
+ # @return [String]
580
+ attr_accessor :type
581
+
582
+ def initialize(**args)
583
+ update!(**args)
584
+ end
585
+
586
+ # Update properties of this object
587
+ def update!(**args)
588
+ @action = args[:action] if args.key?(:action)
589
+ @source_resource_type = args[:source_resource_type] if args.key?(:source_resource_type)
590
+ @target_resource_type = args[:target_resource_type] if args.key?(:target_resource_type)
591
+ @type = args[:type] if args.key?(:type)
592
+ end
593
+ end
594
+
595
+ # A representation of a Google Cloud resource.
596
+ class GoogleCloudAssetV1p7beta1Resource
597
+ include Google::Apis::Core::Hashable
598
+
599
+ # The content of the resource, in which some sensitive fields are removed and
600
+ # may not be present.
601
+ # Corresponds to the JSON property `data`
602
+ # @return [Hash<String,Object>]
603
+ attr_accessor :data
604
+
605
+ # The URL of the discovery document containing the resource's JSON schema.
606
+ # Example: `https://www.googleapis.com/discovery/v1/apis/compute/v1/rest` This
607
+ # value is unspecified for resources that do not have an API based on a
608
+ # discovery document, such as Cloud Bigtable.
609
+ # Corresponds to the JSON property `discoveryDocumentUri`
610
+ # @return [String]
611
+ attr_accessor :discovery_document_uri
612
+
613
+ # The JSON schema name listed in the discovery document. Example: `Project` This
614
+ # value is unspecified for resources that do not have an API based on a
615
+ # discovery document, such as Cloud Bigtable.
616
+ # Corresponds to the JSON property `discoveryName`
617
+ # @return [String]
618
+ attr_accessor :discovery_name
619
+
620
+ # The location of the resource in Google Cloud, such as its zone and region. For
621
+ # more information, see https://cloud.google.com/about/locations/.
622
+ # Corresponds to the JSON property `location`
623
+ # @return [String]
624
+ attr_accessor :location
625
+
626
+ # The full name of the immediate parent of this resource. See [Resource Names](
627
+ # https://cloud.google.com/apis/design/resource_names#full_resource_name) for
628
+ # more information. For Google Cloud assets, this value is the parent resource
629
+ # defined in the [Cloud IAM policy hierarchy](https://cloud.google.com/iam/docs/
630
+ # overview#policy_hierarchy). Example: `//cloudresourcemanager.googleapis.com/
631
+ # projects/my_project_123` For third-party assets, this field may be set
632
+ # differently.
633
+ # Corresponds to the JSON property `parent`
634
+ # @return [String]
635
+ attr_accessor :parent
636
+
637
+ # The REST URL for accessing the resource. An HTTP `GET` request using this URL
638
+ # returns the resource itself. Example: `https://cloudresourcemanager.googleapis.
639
+ # com/v1/projects/my-project-123` This value is unspecified for resources
640
+ # without a REST API.
641
+ # Corresponds to the JSON property `resourceUrl`
642
+ # @return [String]
643
+ attr_accessor :resource_url
644
+
645
+ # The API version. Example: `v1`
646
+ # Corresponds to the JSON property `version`
647
+ # @return [String]
648
+ attr_accessor :version
649
+
650
+ def initialize(**args)
651
+ update!(**args)
652
+ end
653
+
654
+ # Update properties of this object
655
+ def update!(**args)
656
+ @data = args[:data] if args.key?(:data)
657
+ @discovery_document_uri = args[:discovery_document_uri] if args.key?(:discovery_document_uri)
658
+ @discovery_name = args[:discovery_name] if args.key?(:discovery_name)
659
+ @location = args[:location] if args.key?(:location)
660
+ @parent = args[:parent] if args.key?(:parent)
661
+ @resource_url = args[:resource_url] if args.key?(:resource_url)
662
+ @version = args[:version] if args.key?(:version)
663
+ end
664
+ end
665
+
346
666
  # Used in `policy_type` to specify how `boolean_policy` will behave at this
347
667
  # resource.
348
668
  class GoogleCloudOrgpolicyV1BooleanPolicy
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudassetV1p5beta1
18
18
  # Version of the google-apis-cloudasset_v1p5beta1 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.1.2"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210119"
25
+ REVISION = "20210226"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,36 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class GoogleCloudAssetV1p7beta1Asset
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class GoogleCloudAssetV1p7beta1RelatedAsset
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
67
+ class GoogleCloudAssetV1p7beta1RelatedAssets
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class GoogleCloudAssetV1p7beta1RelationshipAttributes
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
79
+ class GoogleCloudAssetV1p7beta1Resource
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
55
85
  class GoogleCloudOrgpolicyV1BooleanPolicy
56
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
87
 
@@ -266,6 +296,72 @@ module Google
266
296
  end
267
297
  end
268
298
 
299
+ class GoogleCloudAssetV1p7beta1Asset
300
+ # @private
301
+ class Representation < Google::Apis::Core::JsonRepresentation
302
+ property :access_level, as: 'accessLevel', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1AccessLevel, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1AccessLevel::Representation
303
+
304
+ property :access_policy, as: 'accessPolicy', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1AccessPolicy, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1AccessPolicy::Representation
305
+
306
+ collection :ancestors, as: 'ancestors'
307
+ property :asset_type, as: 'assetType'
308
+ property :iam_policy, as: 'iamPolicy', class: Google::Apis::CloudassetV1p5beta1::Policy, decorator: Google::Apis::CloudassetV1p5beta1::Policy::Representation
309
+
310
+ property :name, as: 'name'
311
+ collection :org_policy, as: 'orgPolicy', class: Google::Apis::CloudassetV1p5beta1::GoogleCloudOrgpolicyV1Policy, decorator: Google::Apis::CloudassetV1p5beta1::GoogleCloudOrgpolicyV1Policy::Representation
312
+
313
+ property :related_assets, as: 'relatedAssets', class: Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1RelatedAssets, decorator: Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1RelatedAssets::Representation
314
+
315
+ property :resource, as: 'resource', class: Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1Resource, decorator: Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1Resource::Representation
316
+
317
+ property :service_perimeter, as: 'servicePerimeter', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1ServicePerimeter, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1ServicePerimeter::Representation
318
+
319
+ property :update_time, as: 'updateTime'
320
+ end
321
+ end
322
+
323
+ class GoogleCloudAssetV1p7beta1RelatedAsset
324
+ # @private
325
+ class Representation < Google::Apis::Core::JsonRepresentation
326
+ collection :ancestors, as: 'ancestors'
327
+ property :asset, as: 'asset'
328
+ property :asset_type, as: 'assetType'
329
+ end
330
+ end
331
+
332
+ class GoogleCloudAssetV1p7beta1RelatedAssets
333
+ # @private
334
+ class Representation < Google::Apis::Core::JsonRepresentation
335
+ collection :assets, as: 'assets', class: Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1RelatedAsset, decorator: Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1RelatedAsset::Representation
336
+
337
+ property :relationship_attributes, as: 'relationshipAttributes', class: Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1RelationshipAttributes, decorator: Google::Apis::CloudassetV1p5beta1::GoogleCloudAssetV1p7beta1RelationshipAttributes::Representation
338
+
339
+ end
340
+ end
341
+
342
+ class GoogleCloudAssetV1p7beta1RelationshipAttributes
343
+ # @private
344
+ class Representation < Google::Apis::Core::JsonRepresentation
345
+ property :action, as: 'action'
346
+ property :source_resource_type, as: 'sourceResourceType'
347
+ property :target_resource_type, as: 'targetResourceType'
348
+ property :type, as: 'type'
349
+ end
350
+ end
351
+
352
+ class GoogleCloudAssetV1p7beta1Resource
353
+ # @private
354
+ class Representation < Google::Apis::Core::JsonRepresentation
355
+ hash :data, as: 'data'
356
+ property :discovery_document_uri, as: 'discoveryDocumentUri'
357
+ property :discovery_name, as: 'discoveryName'
358
+ property :location, as: 'location'
359
+ property :parent, as: 'parent'
360
+ property :resource_url, as: 'resourceUrl'
361
+ property :version, as: 'version'
362
+ end
363
+ end
364
+
269
365
  class GoogleCloudOrgpolicyV1BooleanPolicy
270
366
  # @private
271
367
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudasset_v1p5beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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-08 00:00:00.000000000 Z
11
+ date: 2021-03-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-cloudasset_v1p5beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.3.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1p5beta1
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.13
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Asset API V1p5beta1